diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..026b3ccb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.json text +*.md text +*.py text +*.svg text +*.txt text +*.yml text +*.yaml text + +*.png binary \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..a04df2e7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore" + include: "scope" \ No newline at end of file diff --git a/.github/workflows/scripts/icon_path_validator.py b/.github/workflows/scripts/icon_path_validator.py index a41f24dd..f98a2acf 100644 --- a/.github/workflows/scripts/icon_path_validator.py +++ b/.github/workflows/scripts/icon_path_validator.py @@ -2,6 +2,7 @@ import pathlib import string from typing import Final +from xml.etree import ElementTree class InvalidStructureException(Exception): @@ -9,6 +10,11 @@ def __init__(self, msg: str): super().__init__(msg) +class InvalidSVGException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + class IconValidator: def __init__(self): self._SOURCE_DIR: Final[str] = "src" @@ -23,6 +29,16 @@ def validate(self) -> None: for file in self._FULL_IMAGES_DIR.iterdir(): if file.name not in json_icons: raise InvalidStructureException(f"{file.name} must be used, {file} isn't used!") + if file.name.lower().endswith(".svg"): + self._validate_svg(file) + + def _validate_svg(self, file: pathlib.Path) -> None: + try: + with file.open("r", encoding="utf8") as f: + content: str = f.read() + ElementTree.fromstring(content) + except ElementTree.ParseError as e: + raise InvalidSVGException(f"Invalid SVG '{file.name}': {e}") def get_json_icons(self) -> set[str]: letters: list[str] = list(string.ascii_lowercase) diff --git a/.github/workflows/scripts/order_validator.py b/.github/workflows/scripts/order_validator.py new file mode 100644 index 00000000..97658d96 --- /dev/null +++ b/.github/workflows/scripts/order_validator.py @@ -0,0 +1,64 @@ +import json +import pathlib +from typing import Final, Any + + +class DuplicateKeyException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class OrderingException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class InvalidStructureException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class OrderValidator: + def __init__(self): + self._SOURCE_DIR: Final[str] = "src" + self._TECH_DIR: Final[str] = "technologies" + self._FULL_TECH_DIR: Final[pathlib.Path] = pathlib.Path(self._SOURCE_DIR).joinpath(self._TECH_DIR) + + def validate(self) -> None: + if not self._FULL_TECH_DIR.is_dir(): + raise InvalidStructureException(f"{self._FULL_TECH_DIR} is not a valid directory") + for tech_file in sorted(self._FULL_TECH_DIR.iterdir()): + if not tech_file.name.endswith(".json"): + continue + self._check_ordering(tech_file) + + def _check_ordering(self, tech_file: pathlib.Path) -> None: + with tech_file.open("r", encoding="utf8") as f: + data: dict = json.load(f, object_pairs_hook=self._duplicate_key_validator) + if not isinstance(data, dict): + raise InvalidStructureException(f"{tech_file.name} root must be an object") + keys: list[str] = list(data.keys()) + sorted_keys: list[str] = sorted(keys, key=lambda x: x.lower()) + if keys != sorted_keys: + mismatches: list[str] = [ + f"Found '{actual}' expected '{expected}'" + for actual, expected in zip(keys, sorted_keys) + if actual != expected + ] + raise OrderingException( + f"{tech_file.name} entries are not ordered alphabetically by keys:\n " + + "\n ".join(mismatches) + ) + + @classmethod + def _duplicate_key_validator(cls, pairs: list[tuple[str, Any]]) -> dict[str, Any]: + result: dict[str, Any] = {} + for key, value in pairs: + if key in result: + raise DuplicateKeyException(f"Duplicate key found: '{key}'") + result[key] = value + return result + + +if __name__ == '__main__': + OrderValidator().validate() diff --git a/.github/workflows/scripts/schema_validator.py b/.github/workflows/scripts/schema_validator.py new file mode 100644 index 00000000..3766b90e --- /dev/null +++ b/.github/workflows/scripts/schema_validator.py @@ -0,0 +1,38 @@ +import json +import pathlib +from typing import Final + +from jsonschema import validate, ValidationError + + +class SchemaValidationException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class SchemaValidator: + def __init__(self): + self._SOURCE_DIR: Final[str] = "src" + self._TECH_DIR: Final[str] = "technologies" + self._FULL_TECH_DIR: Final[pathlib.Path] = pathlib.Path(self._SOURCE_DIR).joinpath(self._TECH_DIR) + self._SCHEMA_FILE: Final[pathlib.Path] = pathlib.Path("schema.json") + + def validate(self) -> None: + if not self._SCHEMA_FILE.is_file(): + raise FileNotFoundError(f"Schema file '{self._SCHEMA_FILE}' not found!") + with self._SCHEMA_FILE.open("r", encoding="utf8") as f: + schema: dict = json.load(f) + for tech_file in sorted(self._FULL_TECH_DIR.iterdir()): + if not tech_file.name.endswith(".json"): + continue + with tech_file.open("r", encoding="utf8") as f: + technologies: dict = json.load(f) + try: + validate(instance=technologies, schema=schema) + except ValidationError as e: + path: str = " -> ".join(str(p) for p in e.absolute_path) if e.absolute_path else "root" + raise SchemaValidationException(f"{tech_file.name}: {e.message} (at {path})") + + +if __name__ == '__main__': + SchemaValidator().validate() diff --git a/.github/workflows/scripts/technology_validator.py b/.github/workflows/scripts/technology_validator.py index fdcdcc0c..27094259 100644 --- a/.github/workflows/scripts/technology_validator.py +++ b/.github/workflows/scripts/technology_validator.py @@ -74,6 +74,16 @@ def __init__(self, msg: str): super().__init__(msg) +class TechNotFoundException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class InvalidURLException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + class AbstractValidator: def __init__(self, required: bool = False): self._required = required @@ -185,6 +195,27 @@ def get_type(self) -> list[Type]: return [str] +class URLValidator(StringValidator): + def __init__(self, required: bool = False): + super().__init__(required) + self._url_pattern: Final[re.Pattern] = re.compile( + r"^https?://" + r"(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?\.)+" + r"[A-Za-z0-9-]{2,}" + r"(?::\d+)?" + r"(?:/[^\s]*)?" + r"$" + ) + + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + if not self._url_pattern.match(data): + self._set_custom_error(InvalidURLException(f"Tech '{tech_name}' has invalid URL: '{data}'")) + return False + return True + + class BoolValidator(AbstractValidator): def get_type(self) -> list[Type]: return [bool] @@ -200,6 +231,26 @@ def get_type(self) -> list[Type]: return [dict] +class DNSValidator(DictValidator): + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + for k, v in data.items(): + if not isinstance(k, str): + self._set_custom_error(InvalidKeyException(f"key in DNS for tech '{tech_name}' has an invalid type. 'str' is required, got type '{type(k).__name__}' -> '{k}'")) + return False + if not isinstance(v, list): + self._set_custom_error(InvalidKeyException(f"value in DNS for tech '{tech_name}' has an invalid type. 'list' is required, got type '{type(v).__name__}' -> '{v}'")) + return False + for record in v: + if not isinstance(record, str): + self._set_custom_error(InvalidTypeForFieldException(f"Invalid type for dns in tech '{tech_name}', selector '{v}' '{record}' key must be string!")) + return False + if not self._validate_regex(tech_name, record): + return False + return True + + class CategoryValidator(ArrayValidator): def __init__(self, categories: list[int], required: bool = False): super().__init__(required) @@ -297,6 +348,22 @@ def _validate(self, tech_name: str, data: Any) -> bool: return True +class ReferenceValidator(ArrayValidator): + def __init__(self, all_techs: set[str]): + super().__init__() + self._all_techs: Final[set[str]] = all_techs + + def _validate(self, tech_name: str, data: Any) -> bool: + if not super()._validate(tech_name, data): + return False + for ref in data: + clean_ref: str = ref.split(r"\;")[0] + if clean_ref not in self._all_techs: + self._set_custom_error(TechNotFoundException(f"Tech '{tech_name}' references '{clean_ref}' but it doesn't exist!")) + return False + return True + + class TechnologiesValidator: def __init__(self, file_name: str): self._SOURCE_DIR: Final[str] = "src" @@ -308,22 +375,23 @@ def __init__(self, file_name: str): self._IMAGES_DIR: Final[str] = "images" self._ICONS_DIR: Final[str] = "icons" self._ICONS: Final[list[str]] = [icon.name for icon in pathlib.Path(self._SOURCE_DIR).joinpath(self._IMAGES_DIR).joinpath(self._ICONS_DIR).iterdir()] + self._ALL_TECHS: Final[set[str]] = self._get_all_tech_names() self._validators: dict[str, AbstractValidator] = { # TODO confidence and version validator "cats": CategoryValidator(self._CATEGORIES, True), - "website": StringValidator(True), + "website": URLValidator(True), "description": StringValidator(), "icon": IconValidator(self._ICONS), "cpe": CPEValidator(), "saas": BoolValidator(), "oss": BoolValidator(), "pricing": PricingValidator(), - "implies": ArrayValidator(), # TODO cat validation - "requires": ArrayValidator(), # TODO ^ - "excludes": ArrayValidator(), # TODO ^ + "implies": ReferenceValidator(self._ALL_TECHS), + "requires": ReferenceValidator(self._ALL_TECHS), + "excludes": ReferenceValidator(self._ALL_TECHS), "requiresCategory": CategoryValidator(self._CATEGORIES), "cookies": DictValidator(contains_regex=True), "dom": DomValidator(), - "dns": DictValidator(contains_regex=True), + "dns": DNSValidator(contains_regex=True), "js": DictValidator(contains_regex=True), "headers": DictValidator(contains_regex=True), "text": ArrayValidator(contains_regex=True), @@ -365,6 +433,16 @@ def _duplicate_key_validator(cls, pairs: list[tuple[str, Any]]) -> dict[str, Any result[key] = value return result + def _get_all_tech_names(self) -> set[str]: + all_techs: set[str] = set() + for letter in list(string.ascii_lowercase) + ["_"]: + tech_file: pathlib.Path = self._FULL_TECH_DIR.joinpath(f"{letter}.json") + if tech_file.exists(): + with tech_file.open("r", encoding="utf8") as f: + technologies: dict = json.load(f) + all_techs.update(technologies.keys()) + return all_techs + class TechnologyProcessor: def __init__(self, tech_name: str, tech_data: dict, validators: dict[str, AbstractValidator]): @@ -389,4 +467,4 @@ def process(self) -> None: if __name__ == '__main__': # for letter in string.ascii_lowercase + "_": # TechnologiesValidator(os.getenv("TECH_FILE_NAME", f"{letter}.json")).validate() - TechnologiesValidator(os.getenv("TECH_FILE_NAME", f"a.json")).validate() + TechnologiesValidator(os.getenv("TECH_FILE_NAME")).validate() diff --git a/.github/workflows/tech_matrix_prep.yml b/.github/workflows/tech_matrix_prep.yml index 3da62124..538452e6 100644 --- a/.github/workflows/tech_matrix_prep.yml +++ b/.github/workflows/tech_matrix_prep.yml @@ -7,14 +7,14 @@ on: value: ${{ jobs.tech_prep.outputs.technologies }} jobs: tech_prep: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: get current technology matrix id: getTechMatrix run: python3 .github/workflows/scripts/tech_list_matrix_generator.py outputs: - technologies: ${{ steps.getTechMatrix.outputs.technologies }} \ No newline at end of file + technologies: ${{ steps.getTechMatrix.outputs.technologies }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c1903672..2c7ffc2b 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,23 +2,23 @@ name: Validate on: [push, pull_request, workflow_dispatch] jobs: validate_structure: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: - python-version: [ "3.12" ] + python-version: [ "3.13" ] steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: run structure validator run: python3 .github/workflows/scripts/structure_validator.py - validate_categories: + validate_order_duplication: runs-on: ubuntu-22.04 needs: validate_structure strategy: @@ -26,10 +26,49 @@ jobs: python-version: [ "3.12" ] steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python-version }} + + - name: run order validator + run: python3 .github/workflows/scripts/order_validator.py src/technologies + + validate_schema: + runs-on: ubuntu-24.04 + needs: validate_structure + strategy: + matrix: + python-version: [ "3.13" ] + steps: + - name: checkout repository + uses: actions/checkout@v6 + + - name: set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python-version }} + + - name: install dependencies + run: python3 -m pip install jsonschema + + - name: run schema validator + run: python3 .github/workflows/scripts/schema_validator.py + + validate_categories: + runs-on: ubuntu-24.04 + needs: validate_structure + strategy: + matrix: + python-version: [ "3.13" ] + steps: + - name: checkout repository + uses: actions/checkout@v6 + + - name: set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -37,17 +76,17 @@ jobs: run: python3 .github/workflows/scripts/category_validator.py validate_groups: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: validate_structure strategy: matrix: - python-version: [ "3.12" ] + python-version: [ "3.13" ] steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -59,19 +98,19 @@ jobs: uses: ./.github/workflows/tech_matrix_prep.yml validate_techs: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: tech_matrix_prep strategy: max-parallel: 20 matrix: file_name: ${{ fromJson(needs.tech_matrix_prep.outputs.technologies) }} - python-version: [ "3.12" ] + python-version: [ "3.13" ] steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -81,17 +120,17 @@ jobs: TECH_FILE_NAME: ${{ matrix.file_name }} validate_icon_path: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: validate_techs strategy: matrix: - python-version: [ "3.12" ] + python-version: [ "3.13" ] steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} diff --git a/.gitignore b/.gitignore index 4a4caa46..af87b6b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -.idea/ - -.project -.settings \ No newline at end of file +.idea/ + +.project +.settings + +.sync/ \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66e83960..372d7693 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,10 @@ # Contributing -WebAppAnalyzer is an [GPLv3 licensed](https://github.com/wappalyzer/wappalyzer/blob/master/LICENSE), open source project written in JavaScript. Anyone is welcome to contribute. +WebAppAnalyzer is an [GPLv3 licensed](https://github.com/enthec/webappanalyzer/blob/master/LICENSE), open source project written in JavaScript. Anyone is welcome to contribute. ## Getting started -To get started, see the [README](https://github.com/wappalyzer/wappalyzer/blob/master/README.md). +To get started, see the [README](https://github.com/enthec/webappanalyzer/blob/master/README.md). ## Adding a new technology diff --git a/README.md b/README.md index 7700ebd4..03e64564 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,14 @@ [![Validator Status](https://github.com/enthec/webappanalyzer/actions/workflows/validate.yml/badge.svg)](https://github.com/enthec/webappanalyzer/actions/workflows/validate.yml) [![License](https://img.shields.io/github/license/enthec/webappanalyzer.svg)](https://opensource.org/license/gpl-3-0/) -This project is a continuation of the iconic [**Wappalyzer**](https://github.com/wappalyzer/wappalyzer) that went private recently on August 2023. - -First and foremost, Enthec is committed not to set this repo private at any moment since this would be out of the scope of the company's business. - -Our interest is to keep it growing, so it can be helpful to the community as it has been until now. - -There are no changes to be expected in the library. We will update it with the same JSON structure currently in use so the user experience will not be modified. +> [!NOTE] +> This project is a continuation of the iconic [**Wappalyzer**](https://github.com/wappalyzer/wappalyzer) that went private in August 2023. +> +> First and foremost, Enthec is committed not to set this repo private at any moment since this would be out of the scope of the company's business. +> +> Our interest is to keep it growing, so it can be helpful to the community as it has been until now. +> +> There are no changes to be expected in the library. We will update it with the same JSON structure currently in use so the user experience will not be modified. ## Specification @@ -19,59 +20,89 @@ Patterns (regular expressions) are kept in [`src/technologies/`](https://github. #### Example -```json -"Example": { - "description": "A short description of the technology.", - "cats": [ - "1" - ], - "cookies": { - "cookie_name": "Example" - }, - "dom": { - "#example-id": { - "exists": "", - "attributes": { - "class": "example-class" - }, - "properties": { - "example-property": "" - }, - "text": "Example text content" - } - }, - "dns": { - "MX": [ +```json5 +{ + "Example": { + "description": "A short description of the technology.", + "cats": [ + 1 + ], + "cookies": { + "cookie_name": "Example" + }, + "dom": { + "#example-id": { + "exists": "", + "attributes": { + "class": "example-class" + }, + "properties": { + "example-property": "" + }, + "text": "Example text content" + } + }, + "dns": { + "MX": [ + "example\\.com" + ] + }, + "icon": "Example.svg", + "cpe": "cpe:2.3:a:example:example:*:*:*:*:*:*:*:*", + "js": { + "Example.method": "" + }, + "excludes": [ + "Example" + ], + "headers": { + "X-Powered-By": "Example" + }, + "text": [ + "\bexample\b" + ], + "css": [ + "\\.example-class" + ], + "robots": [ + "Disallow: /unique-path/" + ], + "implies": [ + "PHP\\;confidence:50" + ], + "requires": [ + "WordPress" + ], + "requiresCategory": [ + 6 + ], + "meta": { + "generator": "(?:Example|Another Example)" + }, + "probe": { + "/path": "" + }, + "scriptSrc": [ + "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1" + ], + "scripts": [ + "function webpackJsonpCallback\\(data\\) {" + ], + "url": [ + "example\\.com" + ], + "xhr": [ "example\\.com" - ] - }, - "js": { - "Example.method": "" - }, - "excludes": "Example", - "headers": { - "X-Powered-By": "Example" - }, - "text": "\bexample\b", - "css": "\\.example-class", - "robots": "Disallow: /unique-path/", - "implies": "PHP\\;confidence:50", - "requires": "WordPress", - "requiresCategory": "Ecommerce", - "meta": { - "generator": "(?:Example|Another Example)" - }, - "probe": { - "/path": "" - }, - "scriptSrc": "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1", - "scripts": "function webpackJsonpCallback\\(data\\) {", - "url": "example\\.com", - "xhr": "example\\.com", - "oss": true, - "saas": true, - "pricing": ["mid", "freemium", "recurring"], - "website": "https://example.com", + ], + "oss": true, + "saas": true, + "pricing": [ + "mid", + "freemium" + ], + "website": "https://example.com", + "certIssuer": "Example", + } } ``` @@ -79,317 +110,64 @@ Patterns (regular expressions) are kept in [`src/technologies/`](https://github. Find the JSON schema at [`schema.json`](https://github.com/enthec/webappanalyzer/blob/main/schema.json). -### Required properties - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
catsArray - One or more category IDs. - [1, 6]
websiteStringURL of the application's website. - "https://example.com" -
- -### Optional properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
descriptionString - A short description of the technology in British English (max. - 250 characters). Write in a neutral, factual tone; not like an - ad. - "A short description."
iconStringApplication icon filename."WordPress.svg"
cpeString - CPE - is a structured naming scheme for technologies. To check if a CPE is valid and exists (using v2.3), use the search). - "cpe:2.3:a:apache:http_server
:*:*:*:*:*:*:*:*"
saasBoolean - The technology is offered as a Software-as-a-Service (SaaS), i.e. hosted or cloud-based. - true
ossBoolean - The technology has an open-source license. - true
pricingArray -Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only. - -One of: - -
    -
  • lowLess than US $100 / mo
  • -
  • midBetween US $100 - $1,000 / mo
  • -
  • highMore than US $1,000 / mo
  • -
- -Plus any of: - -
    -
  • freemium Free plan available
  • -
  • onetime One-time payments accepted
  • -
  • recurring Subscriptions available
  • -
  • poa Price on asking
  • -
  • payg Pay as you go (e.g. commissions or usage-based fees)
  • -
-
["low", "freemium"]
- -### Implies, requires and excludes (optional) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
impliesString | Array - The presence of one application can imply the presence of - another, e.g. WordPress means PHP is also in use. - "PHP"
requiresString | Array - Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS. - "WordPress"
requiresCategoryint | Array - Similar to requires; detection only runs if a technology in the required category id has been identified. - "Ecommerce"
excludesString | Array - Opposite of implies. The presence of one application can exclude - the presence of another. - "Apache"
- -### Patterns (optional) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescriptionExample
cookiesObjectCookies.{ "cookie_name": "Cookie value" }
domString | Array | Object - Uses a - query selector - to inspect element properties, attributes and text content. - - { "#example-id": { "property": { "example-prop": "" } } - } -
dnsObject - DNS records: supports MX, TXT, SOA and NS. - - { "MX": "example\\.com" } -
jsObject - JavaScript properties (case sensitive). Avoid short property - names to prevent matching minified code. - { "jQuery.fn.jquery": "" }
headersObjectHTTP response headers.{ "X-Powered-By": "^WordPress$" }
textString | Array - Matches plain text. Should only be used in very specific cases where other methods can't be used. - \bexample\b
cssString | Array - CSS rules. Unavailable when a website enforces a same-origin - policy. For performance reasons, only a portion of the available - CSS rules are used to find matches. - "\\.example-class"
probeObject - Request a URL to test for its existence or match text content. - { "/path": "Example text" }
robotsString | Array - Robots.txt contents. - "Disallow: /unique-path/"
urlString | ArrayFull URL of the page."^https?//.+\\.wordpress\\.com"
xhrString | ArrayHostnames of XHR requests."cdn\\.netlify\\.com"
metaObjectHTML meta tags, e.g. generator.{ "generator": "^WordPress$" }
scriptSrcString | Array - URLs of JavaScript files included on the page. - "jquery\\.js"
scriptsString | Array - JavaScript source code. Inspects inline and external scripts. For performance reasons, avoid - scripts where possible and use - js instead. - "function webpackJsonpCallback\\(data\\) {"
html (deprecated)String | Array - HTML source code. Patterns must include an HTML opening tag to - avoid matching plain text. For performance reasons, avoid - html where possible and use - dom instead. - "<a [^>]*href=\"index.html"
+## Required properties + +--- + +| Field | Type | Description | Example | +|-------------|----------|----------------------------------|-------------------------| +| **cats** | `[]int` | Category ids | `[1, 6]` | +| **website** | `string` | URL of the application's website | `"https://example.com"` | + +## Optional properties + +--- + +### Base + +| Field | Type | Description | Example | +|-----------------|---------------------|-----------------------------------------------------------|--------------------------------------------------| +| **description** | `string` | A short description of the technology | `"short description"` | +| **icon** | `string` | Application icon filename | `"Example.svg"` | +| **cpe** | `string` | Application v2.3 [CPE](https://nvd.nist.gov/products/cpe) | `"cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:*"` | +| **saas** | `boolean` | Software As A Service | `true` | +| **oss** | `boolean` | Open Source Software | `true` | +| **pricing** | [Pricing](#Pricing) | Cost indicator | `["low", "freemium"]` | + +### Implies, requires and excludes + +| Field | Type | Description | Example | +|----------------------|------------|-------------------------------------------------------------------------------------------|-----------------| +| **implies** | `[]string` | The presence of one application can imply the presence of another | `["PHP"]` | +| **requires** | `[]string` | Similar to implies but detection only runs if the required technology has been identified | `["WordPress"]` | +| **excludes** | `[]string` | The presence of one application can exclude the presence of another | `["Apache"]` | +| **requiresCategory** | `[]int` | Similar to requires, but with category ID | `[6]` | + +### Patterns + +| Field | Type | Description | Regex | Example | +|--------------------------|---------------------|-----------------------------------------------------------------------------------------------|-------|-------------------------------------------------| +| **cookies** | `{string:string}` | Cookies | true | `{"cookie_name": "Cookie value"}` | +| **dom** | [DOM](#DOM) | [Query selectors](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) | false | `["img[src*='example']"]` | +| **dns** | `{string:[]string}` | DNS records | true | `{"MX": ["example\\.com"]}` | +| **js** | `{string:string}` | JavaScript properties | true | `{"jQuery.fn.jquery": ""}` | +| **headers** | `{string:string}` | HTTP response headers | true | `{"X-Powered-By": "^WordPress$"}` | +| **text** | `[]string` | Matches plain text | true | `["\bexample\b"]` | +| **css** | `[]string` | CSS rules | true | `["\\.example-class"]` | +| **probe** | `{string:string}` | Request a URL to test for its existence or match text content | false | `{"/path": "Example text"}` | +| **robots** | `[]string` | Robots.txt contents | false | `["Disallow: /unique-path/"]` | +| **url** | `[]string` | Full URL of the page | true | `["^https?//.+\\.wordpress\\.com"]` | +| **xhr** | `[]string` | Hostnames of XHR requests | true | `["cdn\\.netlify\\.com"]` | +| **meta** | `{string:string}` | HTML meta tags | true | `{"generator": "^WordPress$"}` | +| **scriptSrc** | `[]string` | URLs of JavaScript files | true | `["jquery\\.js"]` | +| **scripts** | `[]string` | JavaScript source code | true | `["function webpackJsonpCallback\\(data\\) {"]` | +| ~~**html**~~(deprecated) | `[]string` | HTML source code | true | `["]*href=\"index.html"]` | +| **certIssuer** | `string` | SSL certificate issuer | false | `"Let's Encrypt"` | ## Patterns +--- + Patterns are essentially JavaScript regular expressions written as strings, but with some additions. ### Quirks and pitfalls @@ -404,80 +182,95 @@ Patterns are essentially JavaScript regular expressions written as strings, but Tags (a non-standard syntax) can be appended to patterns (and implies and excludes, separated by `\\;`) to store additional information. - - - - - - - - - - - - - - - - - - - - -
TagDescriptionExample
confidence - Indicates a less reliable pattern that may cause false - positives. The aim is to achieve a combined confidence of 100%. - Defaults to 100% if not specified. - - "js": { "Mage": "\\;confidence:50" } -
version - Gets the version number from a pattern match using a special - syntax. - - "scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1" -
+ +| Tag | Description | Example | +|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------| +| **confidence** | Indicates a less reliable pattern that may cause false positives. The aim is to achieve a combined confidence of 100%. Defaults to 100% if not specified | `"js": {"Mage": "\\;confidence:50"}` | +| **version** | Gets the version number from a pattern match using a special syntax | `"scriptSrc": "jquery-([0-9.]+)\.js\\;version:\\1"` | + ### Version syntax Application version information can be obtained from a pattern using a capture group. A condition can be evaluated using the ternary operator (`?:`). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ExampleDescription
\\1Returns the first match.
\\1?a: - Returns a if the first match contains a value, nothing - otherwise. -
\\1?a:b - Returns a if the first match contains a value, b otherwise. -
\\1?:b - Returns nothing if the first match contains a value, b - otherwise. -
foo\\1 - Returns foo with the first match appended. -
+ +| Example | Description | +|-----------|------------------------------------------------------------------| +| `\\1` | Returns the first match | +| `\\1?a:` | Returns a if the first match contains a value, nothing otherwise | +| `\\1?a:b` | Returns a if the first match contains a value, b otherwise | +| `\\1?:b` | Returns nothing if the first match contains a value, b otherwise | +| `foo\\1` | Returns foo with the first match appended | + + +## Types + +### DOM + +Dom data type can be either: + +- `[]string`: list of [query selectors](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) + +- `JSON Object`: **key** is the [query selector](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll) & **value** is an object that requires the following structure: + - value requirements: + 1. {"attributes": {string: `pattern`}} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + - example: {"attributes": {"href": "pattern", "src": "pattern"}} + 2. {"properties": {string: `pattern`}} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + - example: {"attributes": {"href": "pattern", "src": "pattern"}} + 3. {"text": `pattern`} + - `pattern` can be a regex + - `pattern` is compatible with [tags](#Tags) + 4. {"exists": ""} + - `value` is an empty string + - `empty string` is compatible with [tags](#Tags) + +```json5 +// example []string +{ + "dom": ["img[src*='example']", "form[action*='example.com/forms/']"] +} +``` +```json5 +// example JSON Object +{ + "dom": { + "link[href*='fonts.g']": { + "attributes": { + "href": "fonts\\.(?:googleapis|google|gstatic)\\.com" + }, + "properties": { + "container": "" + }, + "text": "GLPI\\s+version\\s+([\\d\\.]+)\\;version:\\1" + }, + "style[data-href*='fonts.g']": { + "attributes": { + "data-href": "fonts\\.(?:googleapis|google|gstatic)\\.com" + }, + "exists": "\\;confidence:50" + } + } +} +``` + +### Pricing + +Cost indicator (based on a typical plan or average monthly price) and available pricing models. For paid products only. + +**One of**: + +- `low`: Less than US $100/mo +- `mid`: Between US \$100-\$1,000/mo +- `high`: More than US \$1,000/mo + +**Plus any of**: + +- `freemium`: Free plan available +- `onetime`: One-time payments accepted +- `recurring`: Subscriptions available +- `poa`: Price on asking +- `payg`: Pay as you go (e.g. commissions or usage-based fees) diff --git a/schema.json b/schema.json index 302244a7..a2a88a0c 100644 --- a/schema.json +++ b/schema.json @@ -1,6 +1,93 @@ { + "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Wappalyzer schema", - "definitions": { + "description": "This schema defines the information related to web based technologies for the purposes of identification (finger printing)", + "examples": [ + { + "Example": { + "description": "A short description of the technology.", + "cats": [ + 1 + ], + "cookies": { + "cookie_name": "Example" + }, + "dom": { + "#example-id": { + "exists": "", + "attributes": { + "class": "example-class" + }, + "properties": { + "example-property": "" + }, + "text": "Example text content" + } + }, + "dns": { + "MX": [ + "example\\.com" + ] + }, + "icon": "Example.svg", + "cpe": "cpe:2.3:a:example:example:*:*:*:*:*:*:*:*", + "js": { + "Example.method": "" + }, + "excludes": [ + "Example" + ], + "headers": { + "X-Powered-By": "Example" + }, + "text": [ + "\bexample\b" + ], + "css": [ + "\\.example-class" + ], + "robots": [ + "Disallow: /unique-path/" + ], + "implies": [ + "PHP\\;confidence:50" + ], + "requires": [ + "WordPress" + ], + "requiresCategory": [ + 6 + ], + "meta": { + "generator": "(?:Example|Another Example)" + }, + "probe": { + "/path": "" + }, + "scriptSrc": [ + "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1" + ], + "scripts": [ + "function webpackJsonpCallback\\(data\\) {" + ], + "url": [ + "example\\.com" + ], + "xhr": [ + "example\\.com" + ], + "oss": true, + "saas": true, + "pricing": [ + "mid", + "freemium" + ], + "website": "https://example.com", + "certIssuer": "Example" + } + } + ], + "$defs": { "non-empty-non-blank-string": { "type": "string", "pattern": "^(?!\\s*$).+" @@ -16,7 +103,7 @@ "properties": { "description": { "type": "string", - "pattern": "^.{0,500}$" + "pattern": "^.{0,550}$" }, "oss": { "type": "boolean" @@ -40,7 +127,7 @@ }, "cpe": { "type": "string", - "pattern": "cpe:2.3:(a|h|o):[^*:]+:[^:]+:\\*:\\*:\\*:\\*:\\*:[^:]+:\\*:\\*" + "pattern": "^[Cc][Pp][Ee]:(\/|\\d+\\.\\d+)[^:]*(:?[^:]*){0,11}$" }, "cookies": { "type": "object", @@ -69,11 +156,11 @@ { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, { "type": "object", @@ -107,25 +194,25 @@ "html": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "text": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "css": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "robots": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "probe": { @@ -140,24 +227,24 @@ } }, "certIssuer": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "excludes": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "implies": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "requires": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "requiresCategory": { @@ -180,31 +267,31 @@ "scriptSrc": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "scripts": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "url": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } }, "website": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "icon": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" }, "xhr": { "type": "array", "items": { - "$ref": "#/definitions/non-empty-non-blank-string" + "$ref": "#/$defs/non-empty-non-blank-string" } } } diff --git a/scripts/fix.py b/scripts/fix.py new file mode 100644 index 00000000..cbd28196 --- /dev/null +++ b/scripts/fix.py @@ -0,0 +1,58 @@ +import json +import pathlib +from typing import Any, Callable + + +class StructureFix: + def __init__(self): + self._src_path: pathlib.Path = pathlib.Path("src") + self._transform: dict[str, Callable[[str | int], list]] = { + "html": self._fix_to_list, + "text": self._fix_to_list, + "css": self._fix_to_list, + "excludes": self._fix_to_list, + "implies": self._fix_to_list, + "requires": self._fix_to_list, + "requiresCategory": self._fix_to_list, + "scriptSrc": self._fix_to_list, + "scripts": self._fix_to_list, + "url": self._fix_to_list, + "xhr": self._fix_to_list, + "robots": self._fix_to_list, + "dom": self._fix_to_list, + "dns": self._dns_fix + } + + @staticmethod + def _dns_fix(current_detector) -> dict[str, list[str]]: + for k, v in current_detector.items(): + if isinstance(v, str): + current_detector[k] = [v] + return current_detector + + @staticmethod + def _fix_to_list(current_detector) -> list: + if isinstance(current_detector, str) or isinstance(current_detector, int): + return [current_detector] + return current_detector + + @staticmethod + def _do_nothing(current_detector): + return current_detector + + def fix(self): + for file in self._src_path.joinpath("technologies").iterdir(): + if not file.name.endswith(".json"): + continue + with file.open("r") as f: + techs: dict[str, dict[str, Any]] = json.loads(f.read()) + for tech_name, tech_detectors in techs.copy().items(): + for detector_name, detector in tech_detectors.copy().items(): + tech_detectors[detector_name] = self._transform.get(detector_name, self._do_nothing)(detector) + techs[tech_name.strip()] = tech_detectors + with file.open("w") as f: + f.write(json.dumps(techs, indent=2, sort_keys=True, ensure_ascii=False)) + + +if __name__ == '__main__': + StructureFix().fix() diff --git a/scripts/fix_order.py b/scripts/fix_order.py new file mode 100644 index 00000000..a27973ba --- /dev/null +++ b/scripts/fix_order.py @@ -0,0 +1,41 @@ +import json +import pathlib +from typing import Final, Any + + +class DuplicateKeyException(Exception): + def __init__(self, msg: str): + super().__init__(msg) + + +class OrderFixer: + def __init__(self): + self._SOURCE_DIR: Final[str] = "src" + self._TECH_DIR: Final[str] = "technologies" + self._FULL_TECH_DIR: Final[pathlib.Path] = pathlib.Path(self._SOURCE_DIR).joinpath(self._TECH_DIR) + + def fix(self) -> None: + for tech_file in sorted(self._FULL_TECH_DIR.iterdir()): + if not tech_file.name.endswith(".json"): + continue + with tech_file.open("r", encoding="utf8") as f: + data: dict = json.load(f, object_pairs_hook=self._duplicate_key_validator) + sorted_data: dict[str, Any] = { + key: data[key] for key in sorted(data.keys(), key=lambda x: x.lower()) + } + with tech_file.open("w", encoding="utf8") as f: + json.dump(sorted_data, f, indent=2, ensure_ascii=False) + f.write("\n") + + @classmethod + def _duplicate_key_validator(cls, pairs: list[tuple[str, Any]]) -> dict[str, Any]: + result: dict[str, Any] = {} + for key, value in pairs: + if key in result: + raise DuplicateKeyException(f"Duplicate key found: '{key}'") + result[key] = value + return result + + +if __name__ == '__main__': + OrderFixer().fix() diff --git a/src/groups.json b/src/groups.json index 3160ecf6..cf430441 100644 --- a/src/groups.json +++ b/src/groups.json @@ -50,4 +50,4 @@ "18": { "name": "User generated content" } -} +} \ No newline at end of file diff --git a/src/images/icons/321CMS.svg b/src/images/icons/321CMS.svg new file mode 100644 index 00000000..dc867e45 --- /dev/null +++ b/src/images/icons/321CMS.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/42Chat.svg b/src/images/icons/42Chat.svg new file mode 100644 index 00000000..3ad8afdd --- /dev/null +++ b/src/images/icons/42Chat.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/52Degrees.svg b/src/images/icons/52Degrees.svg new file mode 100644 index 00000000..0aea0e0b --- /dev/null +++ b/src/images/icons/52Degrees.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/6ValleyEcommerceCMS.svg b/src/images/icons/6ValleyEcommerceCMS.svg new file mode 100644 index 00000000..2e0ce005 --- /dev/null +++ b/src/images/icons/6ValleyEcommerceCMS.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/7moor.svg b/src/images/icons/7moor.svg new file mode 100644 index 00000000..a721ad3d --- /dev/null +++ b/src/images/icons/7moor.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/8x8.svg b/src/images/icons/8x8.svg new file mode 100644 index 00000000..86887161 --- /dev/null +++ b/src/images/icons/8x8.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/91App.svg b/src/images/icons/91App.svg new file mode 100644 index 00000000..16c0f1cd --- /dev/null +++ b/src/images/icons/91App.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/99minds.svg b/src/images/icons/99minds.svg new file mode 100644 index 00000000..c783324a --- /dev/null +++ b/src/images/icons/99minds.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/ABlyft.svg b/src/images/icons/ABlyft.svg new file mode 100644 index 00000000..ba07b111 --- /dev/null +++ b/src/images/icons/ABlyft.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AINIRO.svg b/src/images/icons/AINIRO.svg new file mode 100644 index 00000000..88482450 --- /dev/null +++ b/src/images/icons/AINIRO.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AOLserver.png b/src/images/icons/AOLserver.png deleted file mode 100644 index 482bcdd9..00000000 Binary files a/src/images/icons/AOLserver.png and /dev/null differ diff --git a/src/images/icons/AOLserver.svg b/src/images/icons/AOLserver.svg new file mode 100644 index 00000000..facaab30 --- /dev/null +++ b/src/images/icons/AOLserver.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/APISpreadsheets.svg b/src/images/icons/APISpreadsheets.svg new file mode 100644 index 00000000..b1e40cb3 --- /dev/null +++ b/src/images/icons/APISpreadsheets.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/APPLOVIN.png b/src/images/icons/APPLOVIN.png new file mode 100644 index 00000000..58aada3c Binary files /dev/null and b/src/images/icons/APPLOVIN.png differ diff --git a/src/images/icons/ARCaptcha.svg b/src/images/icons/ARCaptcha.svg new file mode 100644 index 00000000..f6a96368 --- /dev/null +++ b/src/images/icons/ARCaptcha.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ARMJS.svg b/src/images/icons/ARMJS.svg new file mode 100644 index 00000000..1ba2cc53 --- /dev/null +++ b/src/images/icons/ARMJS.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aacio.svg b/src/images/icons/Aacio.svg new file mode 100644 index 00000000..e8201b71 --- /dev/null +++ b/src/images/icons/Aacio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Aarki.svg b/src/images/icons/Aarki.svg new file mode 100644 index 00000000..efd3a557 --- /dev/null +++ b/src/images/icons/Aarki.svg @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Aasaan.svg b/src/images/icons/Aasaan.svg new file mode 100644 index 00000000..407c8353 --- /dev/null +++ b/src/images/icons/Aasaan.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AbanteCart.svg b/src/images/icons/AbanteCart.svg new file mode 100644 index 00000000..48f1f6fb --- /dev/null +++ b/src/images/icons/AbanteCart.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AbleCDP.svg b/src/images/icons/AbleCDP.svg new file mode 100644 index 00000000..1e89e4f6 --- /dev/null +++ b/src/images/icons/AbleCDP.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AboutMyClinic.svg b/src/images/icons/AboutMyClinic.svg new file mode 100644 index 00000000..9c878336 --- /dev/null +++ b/src/images/icons/AboutMyClinic.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Abralytics.svg b/src/images/icons/Abralytics.svg new file mode 100644 index 00000000..55f5de4e --- /dev/null +++ b/src/images/icons/Abralytics.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Acceptd.svg b/src/images/icons/Acceptd.svg new file mode 100644 index 00000000..ca173679 --- /dev/null +++ b/src/images/icons/Acceptd.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AccessAlly.svg b/src/images/icons/AccessAlly.svg new file mode 100644 index 00000000..bf042008 --- /dev/null +++ b/src/images/icons/AccessAlly.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/AccessiWay.svg b/src/images/icons/AccessiWay.svg new file mode 100644 index 00000000..7d61b13c --- /dev/null +++ b/src/images/icons/AccessiWay.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Accredible.svg b/src/images/icons/Accredible.svg new file mode 100644 index 00000000..3b8608d5 --- /dev/null +++ b/src/images/icons/Accredible.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AceShop.svg b/src/images/icons/AceShop.svg new file mode 100644 index 00000000..07d1005b --- /dev/null +++ b/src/images/icons/AceShop.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Acecounter.svg b/src/images/icons/Acecounter.svg new file mode 100644 index 00000000..305bd9a6 --- /dev/null +++ b/src/images/icons/Acecounter.svg @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ActivEngage.svg b/src/images/icons/ActivEngage.svg new file mode 100644 index 00000000..11dabe0b --- /dev/null +++ b/src/images/icons/ActivEngage.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdCalls.svg b/src/images/icons/AdCalls.svg new file mode 100644 index 00000000..4e73214d --- /dev/null +++ b/src/images/icons/AdCalls.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdGlare.svg b/src/images/icons/AdGlare.svg new file mode 100644 index 00000000..3188203b --- /dev/null +++ b/src/images/icons/AdGlare.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdNabu.svg b/src/images/icons/AdNabu.svg new file mode 100644 index 00000000..764c803e --- /dev/null +++ b/src/images/icons/AdNabu.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Adalte.svg b/src/images/icons/Adalte.svg new file mode 100644 index 00000000..87de1103 --- /dev/null +++ b/src/images/icons/Adalte.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adaptix.svg b/src/images/icons/Adaptix.svg new file mode 100644 index 00000000..acbe2d5c --- /dev/null +++ b/src/images/icons/Adaptix.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adenzo.svg b/src/images/icons/Adenzo.svg new file mode 100644 index 00000000..ad7ba615 --- /dev/null +++ b/src/images/icons/Adenzo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Adevole.svg b/src/images/icons/Adevole.svg new file mode 100644 index 00000000..81df5e29 --- /dev/null +++ b/src/images/icons/Adevole.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AdminBuy.svg b/src/images/icons/AdminBuy.svg new file mode 100644 index 00000000..49691c5f --- /dev/null +++ b/src/images/icons/AdminBuy.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Adnymics.svg b/src/images/icons/Adnymics.svg new file mode 100644 index 00000000..2afbb110 --- /dev/null +++ b/src/images/icons/Adnymics.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/Adtriba.svg b/src/images/icons/Adtriba.svg new file mode 100644 index 00000000..f905b884 --- /dev/null +++ b/src/images/icons/Adtriba.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/AforestLMS.svg b/src/images/icons/AforestLMS.svg new file mode 100644 index 00000000..57db1fca --- /dev/null +++ b/src/images/icons/AforestLMS.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Agendize.svg b/src/images/icons/Agendize.svg new file mode 100644 index 00000000..c024bf93 --- /dev/null +++ b/src/images/icons/Agendize.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/AgentFire.svg b/src/images/icons/AgentFire.svg new file mode 100644 index 00000000..e6e4f218 --- /dev/null +++ b/src/images/icons/AgentFire.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AgileCRM.svg b/src/images/icons/AgileCRM.svg new file mode 100644 index 00000000..95101fa9 --- /dev/null +++ b/src/images/icons/AgileCRM.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Agility.svg b/src/images/icons/Agility.svg new file mode 100644 index 00000000..b4370326 --- /dev/null +++ b/src/images/icons/Agility.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Agillic.svg b/src/images/icons/Agillic.svg new file mode 100644 index 00000000..1fd9e42c --- /dev/null +++ b/src/images/icons/Agillic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Agora.svg b/src/images/icons/Agora.svg new file mode 100644 index 00000000..feb8d02c --- /dev/null +++ b/src/images/icons/Agora.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Agorize.svg b/src/images/icons/Agorize.svg new file mode 100644 index 00000000..9e9052ad --- /dev/null +++ b/src/images/icons/Agorize.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aimbase.svg b/src/images/icons/Aimbase.svg new file mode 100644 index 00000000..4a2faec9 --- /dev/null +++ b/src/images/icons/Aimbase.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aimy.svg b/src/images/icons/Aimy.svg new file mode 100644 index 00000000..d8e45956 --- /dev/null +++ b/src/images/icons/Aimy.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aircall.svg b/src/images/icons/Aircall.svg new file mode 100644 index 00000000..970865fb --- /dev/null +++ b/src/images/icons/Aircall.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Airdata.svg b/src/images/icons/Airdata.svg new file mode 100644 index 00000000..9a08e225 --- /dev/null +++ b/src/images/icons/Airdata.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AirshipCRM.svg b/src/images/icons/AirshipCRM.svg new file mode 100644 index 00000000..306b3b3a --- /dev/null +++ b/src/images/icons/AirshipCRM.svg @@ -0,0 +1,853 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aiva.svg b/src/images/icons/Aiva.svg new file mode 100644 index 00000000..6c86d3a5 --- /dev/null +++ b/src/images/icons/Aiva.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akavita.svg b/src/images/icons/Akavita.svg new file mode 100644 index 00000000..67b24a97 --- /dev/null +++ b/src/images/icons/Akavita.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akero.svg b/src/images/icons/Akero.svg new file mode 100644 index 00000000..60bcc30a --- /dev/null +++ b/src/images/icons/Akero.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Akia.svg b/src/images/icons/Akia.svg new file mode 100644 index 00000000..07fca3f6 --- /dev/null +++ b/src/images/icons/Akia.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Akinon.svg b/src/images/icons/Akinon.svg new file mode 100644 index 00000000..66d71731 --- /dev/null +++ b/src/images/icons/Akinon.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/AkoCommerce.svg b/src/images/icons/AkoCommerce.svg new file mode 100644 index 00000000..c49e935d --- /dev/null +++ b/src/images/icons/AkoCommerce.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alboom.svg b/src/images/icons/Alboom.svg new file mode 100644 index 00000000..1c3389ad --- /dev/null +++ b/src/images/icons/Alboom.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alia.png b/src/images/icons/Alia.png new file mode 100644 index 00000000..bacc6e36 Binary files /dev/null and b/src/images/icons/Alia.png differ diff --git a/src/images/icons/Alimama.svg b/src/images/icons/Alimama.svg new file mode 100644 index 00000000..0c2163d3 --- /dev/null +++ b/src/images/icons/Alimama.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alinea.svg b/src/images/icons/Alinea.svg new file mode 100644 index 00000000..9364f695 --- /dev/null +++ b/src/images/icons/Alinea.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/AllClients.svg b/src/images/icons/AllClients.svg new file mode 100644 index 00000000..c59c3494 --- /dev/null +++ b/src/images/icons/AllClients.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AllMyLinks.svg b/src/images/icons/AllMyLinks.svg new file mode 100644 index 00000000..596f32d6 --- /dev/null +++ b/src/images/icons/AllMyLinks.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Allbookable.svg b/src/images/icons/Allbookable.svg new file mode 100644 index 00000000..d37ec053 --- /dev/null +++ b/src/images/icons/Allbookable.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alloka.svg b/src/images/icons/Alloka.svg new file mode 100644 index 00000000..24781201 --- /dev/null +++ b/src/images/icons/Alloka.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Allstate.svg b/src/images/icons/Allstate.svg new file mode 100644 index 00000000..28918c44 --- /dev/null +++ b/src/images/icons/Allstate.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Alohome.svg b/src/images/icons/Alohome.svg new file mode 100644 index 00000000..9c45c6b1 --- /dev/null +++ b/src/images/icons/Alohome.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AlphaReview.svg b/src/images/icons/AlphaReview.svg new file mode 100644 index 00000000..b2fcd0c1 --- /dev/null +++ b/src/images/icons/AlphaReview.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Alpharank.svg b/src/images/icons/Alpharank.svg new file mode 100644 index 00000000..b820ba40 --- /dev/null +++ b/src/images/icons/Alpharank.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Altcha.svg b/src/images/icons/Altcha.svg new file mode 100644 index 00000000..4edfeb7c --- /dev/null +++ b/src/images/icons/Altcha.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Amap.svg b/src/images/icons/Amap.svg new file mode 100644 index 00000000..642562a0 --- /dev/null +++ b/src/images/icons/Amap.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Amasty.svg b/src/images/icons/Amasty.svg new file mode 100644 index 00000000..37a89efc --- /dev/null +++ b/src/images/icons/Amasty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Amilia.svg b/src/images/icons/Amilia.svg new file mode 100644 index 00000000..68fe1bc5 --- /dev/null +++ b/src/images/icons/Amilia.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Amped.svg b/src/images/icons/Amped.svg new file mode 100644 index 00000000..a54f2fe1 --- /dev/null +++ b/src/images/icons/Amped.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ampry.svg b/src/images/icons/Ampry.svg new file mode 100644 index 00000000..eabc2567 --- /dev/null +++ b/src/images/icons/Ampry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AnalyticOwl.svg b/src/images/icons/AnalyticOwl.svg new file mode 100644 index 00000000..794ce943 --- /dev/null +++ b/src/images/icons/AnalyticOwl.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Analytick.svg b/src/images/icons/Analytick.svg new file mode 100644 index 00000000..f3742631 --- /dev/null +++ b/src/images/icons/Analytick.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/AnalyticsConnect.svg b/src/images/icons/AnalyticsConnect.svg new file mode 100644 index 00000000..2cb7f003 --- /dev/null +++ b/src/images/icons/AnalyticsConnect.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Analyzati.svg b/src/images/icons/Analyzati.svg new file mode 100644 index 00000000..bad6aa02 --- /dev/null +++ b/src/images/icons/Analyzati.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Analyzz.svg b/src/images/icons/Analyzz.svg new file mode 100644 index 00000000..118d528f --- /dev/null +++ b/src/images/icons/Analyzz.svg @@ -0,0 +1,397 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Anexis.svg b/src/images/icons/Anexis.svg new file mode 100644 index 00000000..cb921ee1 --- /dev/null +++ b/src/images/icons/Anexis.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Angler.svg b/src/images/icons/Angler.svg new file mode 100644 index 00000000..be08c525 --- /dev/null +++ b/src/images/icons/Angler.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/AnimalChat.svg b/src/images/icons/AnimalChat.svg new file mode 100644 index 00000000..69e43b8c --- /dev/null +++ b/src/images/icons/AnimalChat.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Animation Addons.svg b/src/images/icons/Animation Addons.svg new file mode 100644 index 00000000..43a711d0 --- /dev/null +++ b/src/images/icons/Animation Addons.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Annoto.svg b/src/images/icons/Annoto.svg new file mode 100644 index 00000000..1673c121 --- /dev/null +++ b/src/images/icons/Annoto.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Answerbase.svg b/src/images/icons/Answerbase.svg new file mode 100644 index 00000000..0c4814dc --- /dev/null +++ b/src/images/icons/Answerbase.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Antavo.svg b/src/images/icons/Antavo.svg new file mode 100644 index 00000000..869d3ca0 --- /dev/null +++ b/src/images/icons/Antavo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Anubis.svg b/src/images/icons/Anubis.svg new file mode 100644 index 00000000..21c4bedc --- /dev/null +++ b/src/images/icons/Anubis.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AnyChat.svg b/src/images/icons/AnyChat.svg new file mode 100644 index 00000000..d581c51a --- /dev/null +++ b/src/images/icons/AnyChat.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apanio.svg b/src/images/icons/Apanio.svg new file mode 100644 index 00000000..c76b0af4 --- /dev/null +++ b/src/images/icons/Apanio.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apiary.svg b/src/images/icons/Apiary.svg new file mode 100644 index 00000000..839dec8e --- /dev/null +++ b/src/images/icons/Apiary.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apodle.svg b/src/images/icons/Apodle.svg new file mode 100644 index 00000000..3697959f --- /dev/null +++ b/src/images/icons/Apodle.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppSell.svg b/src/images/icons/AppSell.svg new file mode 100644 index 00000000..ff45457a --- /dev/null +++ b/src/images/icons/AppSell.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appjustable.svg b/src/images/icons/Appjustable.svg new file mode 100644 index 00000000..0f8b6235 --- /dev/null +++ b/src/images/icons/Appjustable.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppliedCSR24.svg b/src/images/icons/AppliedCSR24.svg new file mode 100644 index 00000000..210d33c7 --- /dev/null +++ b/src/images/icons/AppliedCSR24.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Appstle.svg b/src/images/icons/Appstle.svg new file mode 100644 index 00000000..e756db56 --- /dev/null +++ b/src/images/icons/Appstle.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AppuOnline.svg b/src/images/icons/AppuOnline.svg new file mode 100644 index 00000000..3ffb051a --- /dev/null +++ b/src/images/icons/AppuOnline.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appypie.svg b/src/images/icons/Appypie.svg new file mode 100644 index 00000000..7241fec3 --- /dev/null +++ b/src/images/icons/Appypie.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Appzi.svg b/src/images/icons/Appzi.svg new file mode 100644 index 00000000..d3ba70a9 --- /dev/null +++ b/src/images/icons/Appzi.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Apruvd.svg b/src/images/icons/Apruvd.svg new file mode 100644 index 00000000..aee75e8a --- /dev/null +++ b/src/images/icons/Apruvd.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aptania.svg b/src/images/icons/Aptania.svg new file mode 100644 index 00000000..91205506 --- /dev/null +++ b/src/images/icons/Aptania.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Arabot.svg b/src/images/icons/Arabot.svg new file mode 100644 index 00000000..8868fb7f --- /dev/null +++ b/src/images/icons/Arabot.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Arketa.svg b/src/images/icons/Arketa.svg new file mode 100644 index 00000000..011f0662 --- /dev/null +++ b/src/images/icons/Arketa.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArkoseLabs.svg b/src/images/icons/ArkoseLabs.svg new file mode 100644 index 00000000..0165e7fd --- /dev/null +++ b/src/images/icons/ArkoseLabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Arlo.svg b/src/images/icons/Arlo.svg new file mode 100644 index 00000000..fea8092d --- /dev/null +++ b/src/images/icons/Arlo.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Armin.svg b/src/images/icons/Armin.svg new file mode 100644 index 00000000..1187259c --- /dev/null +++ b/src/images/icons/Armin.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Arnica.svg b/src/images/icons/Arnica.svg new file mode 100644 index 00000000..175f4b4e --- /dev/null +++ b/src/images/icons/Arnica.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Arreva.png b/src/images/icons/Arreva.png deleted file mode 100644 index 57b1c0b8..00000000 Binary files a/src/images/icons/Arreva.png and /dev/null differ diff --git a/src/images/icons/Arreva.svg b/src/images/icons/Arreva.svg new file mode 100644 index 00000000..9d046113 --- /dev/null +++ b/src/images/icons/Arreva.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArrowChat.svg b/src/images/icons/ArrowChat.svg new file mode 100644 index 00000000..5bce033c --- /dev/null +++ b/src/images/icons/ArrowChat.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArtSchema.svg b/src/images/icons/ArtSchema.svg new file mode 100644 index 00000000..e5175bfd --- /dev/null +++ b/src/images/icons/ArtSchema.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ArtiBot.svg b/src/images/icons/ArtiBot.svg new file mode 100644 index 00000000..6c272fae --- /dev/null +++ b/src/images/icons/ArtiBot.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Artifi.svg b/src/images/icons/Artifi.svg new file mode 100644 index 00000000..a305c771 --- /dev/null +++ b/src/images/icons/Artifi.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Artplacer.svg b/src/images/icons/Artplacer.svg new file mode 100644 index 00000000..d98c98ea --- /dev/null +++ b/src/images/icons/Artplacer.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aryeo.svg b/src/images/icons/Aryeo.svg new file mode 100644 index 00000000..13a01065 --- /dev/null +++ b/src/images/icons/Aryeo.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Asapp.svg b/src/images/icons/Asapp.svg new file mode 100644 index 00000000..3b12b4af --- /dev/null +++ b/src/images/icons/Asapp.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aseqbase.svg b/src/images/icons/Aseqbase.svg new file mode 100644 index 00000000..ad0b5002 --- /dev/null +++ b/src/images/icons/Aseqbase.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ashop.svg b/src/images/icons/Ashop.svg new file mode 100644 index 00000000..896c7120 --- /dev/null +++ b/src/images/icons/Ashop.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AsisteClick.svg b/src/images/icons/AsisteClick.svg new file mode 100644 index 00000000..173eb006 --- /dev/null +++ b/src/images/icons/AsisteClick.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AskHandle.svg b/src/images/icons/AskHandle.svg new file mode 100644 index 00000000..d722422e --- /dev/null +++ b/src/images/icons/AskHandle.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/AskNicely.svg b/src/images/icons/AskNicely.svg new file mode 100644 index 00000000..b0e4c11f --- /dev/null +++ b/src/images/icons/AskNicely.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AskSpot.svg b/src/images/icons/AskSpot.svg new file mode 100644 index 00000000..84751360 --- /dev/null +++ b/src/images/icons/AskSpot.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Askas.svg b/src/images/icons/Askas.svg new file mode 100644 index 00000000..fcc4228b --- /dev/null +++ b/src/images/icons/Askas.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Asksuite.svg b/src/images/icons/Asksuite.svg new file mode 100644 index 00000000..294584b0 --- /dev/null +++ b/src/images/icons/Asksuite.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aspin.svg b/src/images/icons/Aspin.svg new file mode 100644 index 00000000..416fd6b9 --- /dev/null +++ b/src/images/icons/Aspin.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Aspio.svg b/src/images/icons/Aspio.svg new file mode 100644 index 00000000..3a573913 --- /dev/null +++ b/src/images/icons/Aspio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Assemble.svg b/src/images/icons/Assemble.svg new file mode 100644 index 00000000..81a3c54c --- /dev/null +++ b/src/images/icons/Assemble.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/AstraFit.svg b/src/images/icons/AstraFit.svg new file mode 100644 index 00000000..e51ffc72 --- /dev/null +++ b/src/images/icons/AstraFit.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Astro.svg b/src/images/icons/Astro.svg index 9c1ced0b..cfb72904 100644 --- a/src/images/icons/Astro.svg +++ b/src/images/icons/Astro.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/src/images/icons/Athos Commerce.svg b/src/images/icons/Athos Commerce.svg new file mode 100644 index 00000000..bdc6de8e --- /dev/null +++ b/src/images/icons/Athos Commerce.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Atlasmic.svg b/src/images/icons/Atlasmic.svg new file mode 100644 index 00000000..9219847d --- /dev/null +++ b/src/images/icons/Atlasmic.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Atomseo.svg b/src/images/icons/Atomseo.svg new file mode 100644 index 00000000..46995571 --- /dev/null +++ b/src/images/icons/Atomseo.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Attracta.svg b/src/images/icons/Attracta.svg new file mode 100644 index 00000000..6b40a87b --- /dev/null +++ b/src/images/icons/Attracta.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Auglio.svg b/src/images/icons/Auglio.svg new file mode 100644 index 00000000..19c01b2a --- /dev/null +++ b/src/images/icons/Auglio.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ausha.svg b/src/images/icons/Ausha.svg new file mode 100644 index 00000000..2ecb7313 --- /dev/null +++ b/src/images/icons/Ausha.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Authy.svg b/src/images/icons/Authy.svg new file mode 100644 index 00000000..2074d8f6 --- /dev/null +++ b/src/images/icons/Authy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoHQ.svg b/src/images/icons/AutoHQ.svg new file mode 100644 index 00000000..fdaba4f0 --- /dev/null +++ b/src/images/icons/AutoHQ.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoOps.svg b/src/images/icons/AutoOps.svg new file mode 100644 index 00000000..b6f0b01e --- /dev/null +++ b/src/images/icons/AutoOps.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/AutoVitals.svg b/src/images/icons/AutoVitals.svg new file mode 100644 index 00000000..f9bde5c1 --- /dev/null +++ b/src/images/icons/AutoVitals.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Autocommerce.svg b/src/images/icons/Autocommerce.svg new file mode 100644 index 00000000..762abdf1 --- /dev/null +++ b/src/images/icons/Autocommerce.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Autoconf.svg b/src/images/icons/Autoconf.svg new file mode 100644 index 00000000..a745740d --- /dev/null +++ b/src/images/icons/Autoconf.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Automabots.svg b/src/images/icons/Automabots.svg new file mode 100644 index 00000000..d3a81cf8 --- /dev/null +++ b/src/images/icons/Automabots.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomatePro.svg b/src/images/icons/AutomatePro.svg new file mode 100644 index 00000000..7ad20f3a --- /dev/null +++ b/src/images/icons/AutomatePro.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomateWoo.svg b/src/images/icons/AutomateWoo.svg new file mode 100644 index 00000000..7971b498 --- /dev/null +++ b/src/images/icons/AutomateWoo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/AutomatedGrowth.svg b/src/images/icons/AutomatedGrowth.svg new file mode 100644 index 00000000..8babb99d --- /dev/null +++ b/src/images/icons/AutomatedGrowth.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomaticMembers.svg b/src/images/icons/AutomaticMembers.svg new file mode 100644 index 00000000..cc3f98b0 --- /dev/null +++ b/src/images/icons/AutomaticMembers.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AutomaticSales.svg b/src/images/icons/AutomaticSales.svg new file mode 100644 index 00000000..8e9443f9 --- /dev/null +++ b/src/images/icons/AutomaticSales.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avasam.svg b/src/images/icons/Avasam.svg new file mode 100644 index 00000000..a2aae5f4 --- /dev/null +++ b/src/images/icons/Avasam.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avasize.png b/src/images/icons/Avasize.png deleted file mode 100755 index 753c8fcc..00000000 Binary files a/src/images/icons/Avasize.png and /dev/null differ diff --git a/src/images/icons/Avasize.svg b/src/images/icons/Avasize.svg new file mode 100644 index 00000000..93eea12c --- /dev/null +++ b/src/images/icons/Avasize.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avature.svg b/src/images/icons/Avature.svg new file mode 100644 index 00000000..f35972cf --- /dev/null +++ b/src/images/icons/Avature.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/AvidAI.svg b/src/images/icons/AvidAI.svg new file mode 100644 index 00000000..1d389faa --- /dev/null +++ b/src/images/icons/AvidAI.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/AvidTrak.svg b/src/images/icons/AvidTrak.svg new file mode 100644 index 00000000..6c81db35 --- /dev/null +++ b/src/images/icons/AvidTrak.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Avizi.svg b/src/images/icons/Avizi.svg new file mode 100644 index 00000000..3e7a7dee --- /dev/null +++ b/src/images/icons/Avizi.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Awtomic.svg b/src/images/icons/Awtomic.svg new file mode 100644 index 00000000..ebecb031 --- /dev/null +++ b/src/images/icons/Awtomic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/AzuraCast.svg b/src/images/icons/AzuraCast.svg new file mode 100644 index 00000000..f9be958d --- /dev/null +++ b/src/images/icons/AzuraCast.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Azuriom.svg b/src/images/icons/Azuriom.svg new file mode 100644 index 00000000..2a7c895e --- /dev/null +++ b/src/images/icons/Azuriom.svg @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/B12.svg b/src/images/icons/B12.svg new file mode 100644 index 00000000..5edf5262 --- /dev/null +++ b/src/images/icons/B12.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/B2Chat.svg b/src/images/icons/B2Chat.svg new file mode 100644 index 00000000..bae21781 --- /dev/null +++ b/src/images/icons/B2Chat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BIGLIST.svg b/src/images/icons/BIGLIST.svg new file mode 100644 index 00000000..25ac5e6e --- /dev/null +++ b/src/images/icons/BIGLIST.svg @@ -0,0 +1,2238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BILLmanager.svg b/src/images/icons/BILLmanager.svg new file mode 100644 index 00000000..fe7ceb6c --- /dev/null +++ b/src/images/icons/BILLmanager.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/BITE.svg b/src/images/icons/BITE.svg new file mode 100644 index 00000000..caed632c --- /dev/null +++ b/src/images/icons/BITE.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BLAZE.svg b/src/images/icons/BLAZE.svg new file mode 100644 index 00000000..4b3b934b --- /dev/null +++ b/src/images/icons/BLAZE.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BLiNKAI.svg b/src/images/icons/BLiNKAI.svg new file mode 100644 index 00000000..43d96d4a --- /dev/null +++ b/src/images/icons/BLiNKAI.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BMTMicro.svg b/src/images/icons/BMTMicro.svg new file mode 100644 index 00000000..814f8873 --- /dev/null +++ b/src/images/icons/BMTMicro.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BRYNK.svg b/src/images/icons/BRYNK.svg new file mode 100644 index 00000000..109ad544 --- /dev/null +++ b/src/images/icons/BRYNK.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BTOLEAD.svg b/src/images/icons/BTOLEAD.svg new file mode 100644 index 00000000..f2b637a6 --- /dev/null +++ b/src/images/icons/BTOLEAD.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BUROGU.svg b/src/images/icons/BUROGU.svg new file mode 100644 index 00000000..fa37afa9 --- /dev/null +++ b/src/images/icons/BUROGU.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Backstage.svg b/src/images/icons/Backstage.svg new file mode 100644 index 00000000..f729231e --- /dev/null +++ b/src/images/icons/Backstage.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bag.svg b/src/images/icons/Bag.svg new file mode 100644 index 00000000..da32b920 --- /dev/null +++ b/src/images/icons/Bag.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bagisto.svg b/src/images/icons/Bagisto.svg new file mode 100644 index 00000000..b92015be --- /dev/null +++ b/src/images/icons/Bagisto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bahooosh.svg b/src/images/icons/Bahooosh.svg new file mode 100644 index 00000000..0811f1af --- /dev/null +++ b/src/images/icons/Bahooosh.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Balance.svg b/src/images/icons/Balance.svg new file mode 100644 index 00000000..0f77d6d8 --- /dev/null +++ b/src/images/icons/Balance.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bandwango.svg b/src/images/icons/Bandwango.svg new file mode 100644 index 00000000..108230ff --- /dev/null +++ b/src/images/icons/Bandwango.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Banno.svg b/src/images/icons/Banno.svg new file mode 100644 index 00000000..696aae2b --- /dev/null +++ b/src/images/icons/Banno.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bant.svg b/src/images/icons/Bant.svg new file mode 100644 index 00000000..e2f30c0c --- /dev/null +++ b/src/images/icons/Bant.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Base44.png b/src/images/icons/Base44.png new file mode 100644 index 00000000..70132eb6 Binary files /dev/null and b/src/images/icons/Base44.png differ diff --git a/src/images/icons/BaseUI.svg b/src/images/icons/BaseUI.svg new file mode 100644 index 00000000..c9997de2 --- /dev/null +++ b/src/images/icons/BaseUI.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BaskHealth.svg b/src/images/icons/BaskHealth.svg new file mode 100644 index 00000000..2c182cec --- /dev/null +++ b/src/images/icons/BaskHealth.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Batch.svg b/src/images/icons/Batch.svg new file mode 100644 index 00000000..e83d9b76 --- /dev/null +++ b/src/images/icons/Batch.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BatmanJS.svg b/src/images/icons/BatmanJS.svg new file mode 100644 index 00000000..b9702272 --- /dev/null +++ b/src/images/icons/BatmanJS.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Baya.svg b/src/images/icons/Baya.svg new file mode 100644 index 00000000..5455666f --- /dev/null +++ b/src/images/icons/Baya.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beacons.svg b/src/images/icons/Beacons.svg new file mode 100644 index 00000000..dbad1127 --- /dev/null +++ b/src/images/icons/Beacons.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beae.svg b/src/images/icons/Beae.svg new file mode 100644 index 00000000..4c3ae057 --- /dev/null +++ b/src/images/icons/Beae.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BeamImpact.svg b/src/images/icons/BeamImpact.svg new file mode 100644 index 00000000..d30650fa --- /dev/null +++ b/src/images/icons/BeamImpact.svg @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beamery.svg b/src/images/icons/Beamery.svg new file mode 100644 index 00000000..c465feb1 --- /dev/null +++ b/src/images/icons/Beamery.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BearBlog.svg b/src/images/icons/BearBlog.svg new file mode 100644 index 00000000..435abc2e --- /dev/null +++ b/src/images/icons/BearBlog.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BedBooking.svg b/src/images/icons/BedBooking.svg new file mode 100644 index 00000000..cf39dfd3 --- /dev/null +++ b/src/images/icons/BedBooking.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beeshop.svg b/src/images/icons/Beeshop.svg new file mode 100644 index 00000000..715cf292 --- /dev/null +++ b/src/images/icons/Beeshop.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beezer.svg b/src/images/icons/Beezer.svg new file mode 100644 index 00000000..829d7aa9 --- /dev/null +++ b/src/images/icons/Beezer.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Behzi.svg b/src/images/icons/Behzi.svg new file mode 100644 index 00000000..f172c1f0 --- /dev/null +++ b/src/images/icons/Behzi.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Belliza.svg b/src/images/icons/Belliza.svg new file mode 100644 index 00000000..c7839712 --- /dev/null +++ b/src/images/icons/Belliza.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Benchmark.svg b/src/images/icons/Benchmark.svg new file mode 100644 index 00000000..790a560e --- /dev/null +++ b/src/images/icons/Benchmark.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bento.svg b/src/images/icons/Bento.svg new file mode 100644 index 00000000..5b87f4dd --- /dev/null +++ b/src/images/icons/Bento.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BernetCloud.svg b/src/images/icons/BernetCloud.svg new file mode 100644 index 00000000..9c6452ee --- /dev/null +++ b/src/images/icons/BernetCloud.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BerqWP.svg b/src/images/icons/BerqWP.svg new file mode 100644 index 00000000..9462216d --- /dev/null +++ b/src/images/icons/BerqWP.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BespokeChat.svg b/src/images/icons/BespokeChat.svg new file mode 100644 index 00000000..9e37b229 --- /dev/null +++ b/src/images/icons/BespokeChat.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bestie.svg b/src/images/icons/Bestie.svg new file mode 100644 index 00000000..708c6481 --- /dev/null +++ b/src/images/icons/Bestie.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bettermode.svg b/src/images/icons/Bettermode.svg new file mode 100644 index 00000000..88f5bd78 --- /dev/null +++ b/src/images/icons/Bettermode.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Bevy.svg b/src/images/icons/Bevy.svg new file mode 100644 index 00000000..6a30d8be --- /dev/null +++ b/src/images/icons/Bevy.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beyond.svg b/src/images/icons/Beyond.svg new file mode 100644 index 00000000..d565732b --- /dev/null +++ b/src/images/icons/Beyond.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Beyonk.svg b/src/images/icons/Beyonk.svg new file mode 100644 index 00000000..a49410d2 --- /dev/null +++ b/src/images/icons/Beyonk.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BigMarker.svg b/src/images/icons/BigMarker.svg new file mode 100644 index 00000000..588f453a --- /dev/null +++ b/src/images/icons/BigMarker.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bigshop.svg b/src/images/icons/Bigshop.svg new file mode 100644 index 00000000..df68610b --- /dev/null +++ b/src/images/icons/Bigshop.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bileto.svg b/src/images/icons/Bileto.svg new file mode 100644 index 00000000..c411268c --- /dev/null +++ b/src/images/icons/Bileto.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Billgang.svg b/src/images/icons/Billgang.svg new file mode 100644 index 00000000..b2158180 --- /dev/null +++ b/src/images/icons/Billgang.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BirdSeed.svg b/src/images/icons/BirdSeed.svg new file mode 100644 index 00000000..c5b5fbf2 --- /dev/null +++ b/src/images/icons/BirdSeed.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BitPay.svg b/src/images/icons/BitPay.svg new file mode 100644 index 00000000..0ecebb05 --- /dev/null +++ b/src/images/icons/BitPay.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Bitmovin.svg b/src/images/icons/Bitmovin.svg new file mode 100644 index 00000000..809efbe0 --- /dev/null +++ b/src/images/icons/Bitmovin.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BizSpring.svg b/src/images/icons/BizSpring.svg new file mode 100644 index 00000000..756105c4 --- /dev/null +++ b/src/images/icons/BizSpring.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlackBook.svg b/src/images/icons/BlackBook.svg new file mode 100644 index 00000000..886878c9 --- /dev/null +++ b/src/images/icons/BlackBook.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BlackCrow.svg b/src/images/icons/BlackCrow.svg new file mode 100644 index 00000000..423d8379 --- /dev/null +++ b/src/images/icons/BlackCrow.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Blackcart.svg b/src/images/icons/Blackcart.svg new file mode 100644 index 00000000..bdbba631 --- /dev/null +++ b/src/images/icons/Blackcart.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blazor.png b/src/images/icons/Blazor.png deleted file mode 100644 index 08283f19..00000000 Binary files a/src/images/icons/Blazor.png and /dev/null differ diff --git a/src/images/icons/Blazor.svg b/src/images/icons/Blazor.svg new file mode 100644 index 00000000..2e4dc887 --- /dev/null +++ b/src/images/icons/Blazor.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Blendee.svg b/src/images/icons/Blendee.svg new file mode 100644 index 00000000..38b45249 --- /dev/null +++ b/src/images/icons/Blendee.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blendle.svg b/src/images/icons/Blendle.svg new file mode 100644 index 00000000..8b23baa1 --- /dev/null +++ b/src/images/icons/Blendle.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blinklink.svg b/src/images/icons/Blinklink.svg new file mode 100644 index 00000000..d44db221 --- /dev/null +++ b/src/images/icons/Blinklink.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blip.svg b/src/images/icons/Blip.svg new file mode 100644 index 00000000..8a5dc9ae --- /dev/null +++ b/src/images/icons/Blip.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Blippa.svg b/src/images/icons/Blippa.svg new file mode 100644 index 00000000..53c10f11 --- /dev/null +++ b/src/images/icons/Blippa.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Blockly.svg b/src/images/icons/Blockly.svg new file mode 100644 index 00000000..83196d19 --- /dev/null +++ b/src/images/icons/Blockly.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlogHunch.svg b/src/images/icons/BlogHunch.svg new file mode 100644 index 00000000..0e75df7b --- /dev/null +++ b/src/images/icons/BlogHunch.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blogger.png b/src/images/icons/Blogger.png deleted file mode 100644 index 17bd56bd..00000000 Binary files a/src/images/icons/Blogger.png and /dev/null differ diff --git a/src/images/icons/Blogger.svg b/src/images/icons/Blogger.svg new file mode 100644 index 00000000..564432e1 --- /dev/null +++ b/src/images/icons/Blogger.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlokID.svg b/src/images/icons/BlokID.svg new file mode 100644 index 00000000..a485898a --- /dev/null +++ b/src/images/icons/BlokID.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Bloom.svg b/src/images/icons/Bloom.svg new file mode 100644 index 00000000..aa5db6df --- /dev/null +++ b/src/images/icons/Bloom.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BloomIO.svg b/src/images/icons/BloomIO.svg new file mode 100644 index 00000000..f6ab0418 --- /dev/null +++ b/src/images/icons/BloomIO.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BloomWine.svg b/src/images/icons/BloomWine.svg new file mode 100644 index 00000000..283aff9f --- /dev/null +++ b/src/images/icons/BloomWine.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bludit.svg b/src/images/icons/Bludit.svg new file mode 100644 index 00000000..8b2cdf78 --- /dev/null +++ b/src/images/icons/Bludit.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BlueCorona.svg b/src/images/icons/BlueCorona.svg new file mode 100644 index 00000000..1b26ac10 --- /dev/null +++ b/src/images/icons/BlueCorona.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Blutui.svg b/src/images/icons/Blutui.svg new file mode 100644 index 00000000..b92f30f8 --- /dev/null +++ b/src/images/icons/Blutui.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BoatChat.svg b/src/images/icons/BoatChat.svg new file mode 100644 index 00000000..dcef9d87 --- /dev/null +++ b/src/images/icons/BoatChat.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Boberdoo.svg b/src/images/icons/Boberdoo.svg new file mode 100644 index 00000000..d046f4a4 --- /dev/null +++ b/src/images/icons/Boberdoo.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bobgo.svg b/src/images/icons/Bobgo.svg new file mode 100644 index 00000000..e5327f34 --- /dev/null +++ b/src/images/icons/Bobgo.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Boei.svg b/src/images/icons/Boei.svg new file mode 100644 index 00000000..b2ae085c --- /dev/null +++ b/src/images/icons/Boei.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bogos.svg b/src/images/icons/Bogos.svg new file mode 100644 index 00000000..e40c14c2 --- /dev/null +++ b/src/images/icons/Bogos.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BokaBord.svg b/src/images/icons/BokaBord.svg new file mode 100644 index 00000000..33c26dbc --- /dev/null +++ b/src/images/icons/BokaBord.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BoldOptions.svg b/src/images/icons/BoldOptions.svg new file mode 100644 index 00000000..4bc726f8 --- /dev/null +++ b/src/images/icons/BoldOptions.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BombBomb.svg b/src/images/icons/BombBomb.svg new file mode 100644 index 00000000..18b3ae9e --- /dev/null +++ b/src/images/icons/BombBomb.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bonsai.svg b/src/images/icons/Bonsai.svg new file mode 100644 index 00000000..d4e73d11 --- /dev/null +++ b/src/images/icons/Bonsai.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BookBanket.svg b/src/images/icons/BookBanket.svg new file mode 100644 index 00000000..fc2cf2d0 --- /dev/null +++ b/src/images/icons/BookBanket.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BookNPay.svg b/src/images/icons/BookNPay.svg new file mode 100644 index 00000000..4bef7724 --- /dev/null +++ b/src/images/icons/BookNPay.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Bookboost.svg b/src/images/icons/Bookboost.svg new file mode 100644 index 00000000..ba1bf29f --- /dev/null +++ b/src/images/icons/Bookboost.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Booked.svg b/src/images/icons/Booked.svg new file mode 100644 index 00000000..b20dd450 --- /dev/null +++ b/src/images/icons/Booked.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Booker.svg b/src/images/icons/Booker.svg new file mode 100644 index 00000000..44a304ce --- /dev/null +++ b/src/images/icons/Booker.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BookingExperts.svg b/src/images/icons/BookingExperts.svg new file mode 100644 index 00000000..a187d0e4 --- /dev/null +++ b/src/images/icons/BookingExperts.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BookingFactory.svg b/src/images/icons/BookingFactory.svg new file mode 100644 index 00000000..fdb716a0 --- /dev/null +++ b/src/images/icons/BookingFactory.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/BookingKoala.svg b/src/images/icons/BookingKoala.svg new file mode 100644 index 00000000..6f3f0339 --- /dev/null +++ b/src/images/icons/BookingKoala.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bookitit.svg b/src/images/icons/Bookitit.svg new file mode 100644 index 00000000..bcb8ab69 --- /dev/null +++ b/src/images/icons/Bookitit.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Booklux.svg b/src/images/icons/Booklux.svg new file mode 100644 index 00000000..20ed911b --- /dev/null +++ b/src/images/icons/Booklux.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bookteq.svg b/src/images/icons/Bookteq.svg new file mode 100644 index 00000000..18116f43 --- /dev/null +++ b/src/images/icons/Bookteq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/BoolTypeScript.svg b/src/images/icons/BoolTypeScript.svg new file mode 100644 index 00000000..06f581d0 --- /dev/null +++ b/src/images/icons/BoolTypeScript.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bootpay.svg b/src/images/icons/Bootpay.svg new file mode 100644 index 00000000..ebdcaa14 --- /dev/null +++ b/src/images/icons/Bootpay.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bot9.svg b/src/images/icons/Bot9.svg new file mode 100644 index 00000000..39a2771d --- /dev/null +++ b/src/images/icons/Bot9.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BotStar.svg b/src/images/icons/BotStar.svg new file mode 100644 index 00000000..c113bba8 --- /dev/null +++ b/src/images/icons/BotStar.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Bothive.svg b/src/images/icons/Bothive.svg new file mode 100644 index 00000000..0b7b87bd --- /dev/null +++ b/src/images/icons/Bothive.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Botpress.svg b/src/images/icons/Botpress.svg new file mode 100644 index 00000000..e225d0e7 --- /dev/null +++ b/src/images/icons/Botpress.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Botsify.svg b/src/images/icons/Botsify.svg new file mode 100644 index 00000000..4f25ee60 --- /dev/null +++ b/src/images/icons/Botsify.svg @@ -0,0 +1,464 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Botsonic.svg b/src/images/icons/Botsonic.svg new file mode 100644 index 00000000..460b8945 --- /dev/null +++ b/src/images/icons/Botsonic.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Botsplash.svg b/src/images/icons/Botsplash.svg new file mode 100644 index 00000000..111dcbca --- /dev/null +++ b/src/images/icons/Botsplash.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bottle360.svg b/src/images/icons/Bottle360.svg new file mode 100644 index 00000000..5a8b3aa3 --- /dev/null +++ b/src/images/icons/Bottle360.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/BounceCommerce.svg b/src/images/icons/BounceCommerce.svg new file mode 100644 index 00000000..df6b4318 --- /dev/null +++ b/src/images/icons/BounceCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Boxmode.svg b/src/images/icons/Boxmode.svg new file mode 100644 index 00000000..d7622933 --- /dev/null +++ b/src/images/icons/Boxmode.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brafton.svg b/src/images/icons/Brafton.svg new file mode 100644 index 00000000..b6142dc8 --- /dev/null +++ b/src/images/icons/Brafton.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brainlead.svg b/src/images/icons/Brainlead.svg new file mode 100644 index 00000000..c26adecc --- /dev/null +++ b/src/images/icons/Brainlead.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BrandBuilderAI.svg b/src/images/icons/BrandBuilderAI.svg new file mode 100644 index 00000000..7a5e3641 --- /dev/null +++ b/src/images/icons/BrandBuilderAI.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brandquiz.svg b/src/images/icons/Brandquiz.svg new file mode 100644 index 00000000..989e4851 --- /dev/null +++ b/src/images/icons/Brandquiz.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BreadButter.svg b/src/images/icons/BreadButter.svg new file mode 100644 index 00000000..bbce4e38 --- /dev/null +++ b/src/images/icons/BreadButter.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Breeze.svg b/src/images/icons/Breeze.svg new file mode 100644 index 00000000..3fc95640 --- /dev/null +++ b/src/images/icons/Breeze.svg @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BreezyHR.svg b/src/images/icons/BreezyHR.svg new file mode 100644 index 00000000..d36974d9 --- /dev/null +++ b/src/images/icons/BreezyHR.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/BridgerPay.svg b/src/images/icons/BridgerPay.svg new file mode 100644 index 00000000..cc649d84 --- /dev/null +++ b/src/images/icons/BridgerPay.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Bringie.svg b/src/images/icons/Bringie.svg new file mode 100644 index 00000000..29cc8743 --- /dev/null +++ b/src/images/icons/Bringie.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/BrinkCommerce.svg b/src/images/icons/BrinkCommerce.svg new file mode 100644 index 00000000..24dc6907 --- /dev/null +++ b/src/images/icons/BrinkCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Briqpay.svg b/src/images/icons/Briqpay.svg new file mode 100644 index 00000000..5f82b843 --- /dev/null +++ b/src/images/icons/Briqpay.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brivity.svg b/src/images/icons/Brivity.svg new file mode 100644 index 00000000..e2edd20a --- /dev/null +++ b/src/images/icons/Brivity.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brizy.svg b/src/images/icons/Brizy.svg new file mode 100644 index 00000000..71ed6209 --- /dev/null +++ b/src/images/icons/Brizy.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Browsee.svg b/src/images/icons/Browsee.svg new file mode 100644 index 00000000..e4b49823 --- /dev/null +++ b/src/images/icons/Browsee.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Brushd.svg b/src/images/icons/Brushd.svg new file mode 100644 index 00000000..476db91e --- /dev/null +++ b/src/images/icons/Brushd.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Bsport.svg b/src/images/icons/Bsport.svg new file mode 100644 index 00000000..af1e176d --- /dev/null +++ b/src/images/icons/Bsport.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Builder.svg b/src/images/icons/Builder.svg index 2af96827..d6aa0326 100644 --- a/src/images/icons/Builder.svg +++ b/src/images/icons/Builder.svg @@ -1 +1,11 @@ - + + + + + \ No newline at end of file diff --git a/src/images/icons/Bunting.svg b/src/images/icons/Bunting.svg new file mode 100644 index 00000000..f98cfd0f --- /dev/null +++ b/src/images/icons/Bunting.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Burst.svg b/src/images/icons/Burst.svg new file mode 100644 index 00000000..a672583f --- /dev/null +++ b/src/images/icons/Burst.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Busify.svg b/src/images/icons/Busify.svg new file mode 100644 index 00000000..a42e6bd1 --- /dev/null +++ b/src/images/icons/Busify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ButterMove.svg b/src/images/icons/ButterMove.svg new file mode 100644 index 00000000..dfa8c20b --- /dev/null +++ b/src/images/icons/ButterMove.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Buyee.svg b/src/images/icons/Buyee.svg new file mode 100644 index 00000000..03c3ceac --- /dev/null +++ b/src/images/icons/Buyee.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Buyist.svg b/src/images/icons/Buyist.svg new file mode 100644 index 00000000..ef700a54 --- /dev/null +++ b/src/images/icons/Buyist.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CAPYS.svg b/src/images/icons/CAPYS.svg new file mode 100644 index 00000000..c30f0fcc --- /dev/null +++ b/src/images/icons/CAPYS.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CATS.svg b/src/images/icons/CATS.svg new file mode 100644 index 00000000..f438013f --- /dev/null +++ b/src/images/icons/CATS.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CHIIRP.svg b/src/images/icons/CHIIRP.svg new file mode 100644 index 00000000..7d859dd7 --- /dev/null +++ b/src/images/icons/CHIIRP.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CIMcloud.svg b/src/images/icons/CIMcloud.svg new file mode 100644 index 00000000..e5e19f80 --- /dev/null +++ b/src/images/icons/CIMcloud.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CINC.svg b/src/images/icons/CINC.svg new file mode 100644 index 00000000..13c8b0e8 --- /dev/null +++ b/src/images/icons/CINC.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CLIKdata.svg b/src/images/icons/CLIKdata.svg new file mode 100644 index 00000000..a0d4bee9 --- /dev/null +++ b/src/images/icons/CLIKdata.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CMSCaddy.svg b/src/images/icons/CMSCaddy.svg new file mode 100644 index 00000000..894f3eaa --- /dev/null +++ b/src/images/icons/CMSCaddy.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CMoffer.svg b/src/images/icons/CMoffer.svg new file mode 100644 index 00000000..1603e10a --- /dev/null +++ b/src/images/icons/CMoffer.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/COCON.svg b/src/images/icons/COCON.svg new file mode 100644 index 00000000..4f287d0b --- /dev/null +++ b/src/images/icons/COCON.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CRMBOOST.svg b/src/images/icons/CRMBOOST.svg new file mode 100644 index 00000000..8d843afc --- /dev/null +++ b/src/images/icons/CRMBOOST.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CRMDoneBetter.svg b/src/images/icons/CRMDoneBetter.svg new file mode 100644 index 00000000..dc42e01e --- /dev/null +++ b/src/images/icons/CRMDoneBetter.svg @@ -0,0 +1,510 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CTAwidget.svg b/src/images/icons/CTAwidget.svg new file mode 100644 index 00000000..4261d846 --- /dev/null +++ b/src/images/icons/CTAwidget.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CTRWow.svg b/src/images/icons/CTRWow.svg new file mode 100644 index 00000000..d0257f14 --- /dev/null +++ b/src/images/icons/CTRWow.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CUChat.svg b/src/images/icons/CUChat.svg new file mode 100644 index 00000000..99f11702 --- /dev/null +++ b/src/images/icons/CUChat.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/CUE.svg b/src/images/icons/CUE.svg new file mode 100644 index 00000000..7dab05ce --- /dev/null +++ b/src/images/icons/CUE.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CXDP.svg b/src/images/icons/CXDP.svg new file mode 100644 index 00000000..d9dad981 --- /dev/null +++ b/src/images/icons/CXDP.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CYBERBIZ.svg b/src/images/icons/CYBERBIZ.svg new file mode 100644 index 00000000..cfef3c33 --- /dev/null +++ b/src/images/icons/CYBERBIZ.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cackle.svg b/src/images/icons/Cackle.svg new file mode 100644 index 00000000..38ee80af --- /dev/null +++ b/src/images/icons/Cackle.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CaliberMind.svg b/src/images/icons/CaliberMind.svg new file mode 100644 index 00000000..466f54e8 --- /dev/null +++ b/src/images/icons/CaliberMind.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CallRoot.svg b/src/images/icons/CallRoot.svg new file mode 100644 index 00000000..9c72f19f --- /dev/null +++ b/src/images/icons/CallRoot.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Callgear.svg b/src/images/icons/Callgear.svg new file mode 100644 index 00000000..10d61188 --- /dev/null +++ b/src/images/icons/Callgear.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Campflow.svg b/src/images/icons/Campflow.svg new file mode 100644 index 00000000..42e327cb --- /dev/null +++ b/src/images/icons/Campflow.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/CanJS.svg b/src/images/icons/CanJS.svg new file mode 100644 index 00000000..a7de7f36 --- /dev/null +++ b/src/images/icons/CanJS.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Candid.svg b/src/images/icons/Candid.svg new file mode 100644 index 00000000..1735350b --- /dev/null +++ b/src/images/icons/Candid.svg @@ -0,0 +1,777 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CanopyConnect.svg b/src/images/icons/CanopyConnect.svg new file mode 100644 index 00000000..01e79fb8 --- /dev/null +++ b/src/images/icons/CanopyConnect.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Canvy.svg b/src/images/icons/Canvy.svg new file mode 100644 index 00000000..df8034f7 --- /dev/null +++ b/src/images/icons/Canvy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Canyon.svg b/src/images/icons/Canyon.svg new file mode 100644 index 00000000..8e88cc7f --- /dev/null +++ b/src/images/icons/Canyon.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Capacity.svg b/src/images/icons/Capacity.svg new file mode 100644 index 00000000..b9a670cf --- /dev/null +++ b/src/images/icons/Capacity.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CapsuleCRM.svg b/src/images/icons/CapsuleCRM.svg new file mode 100644 index 00000000..f033557e --- /dev/null +++ b/src/images/icons/CapsuleCRM.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Captify.svg b/src/images/icons/Captify.svg new file mode 100644 index 00000000..6635f43b --- /dev/null +++ b/src/images/icons/Captify.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Capturly.svg b/src/images/icons/Capturly.svg new file mode 100644 index 00000000..ca9c8c97 --- /dev/null +++ b/src/images/icons/Capturly.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CarChat24.svg b/src/images/icons/CarChat24.svg new file mode 100644 index 00000000..55893fc4 --- /dev/null +++ b/src/images/icons/CarChat24.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CarWeb.svg b/src/images/icons/CarWeb.svg new file mode 100644 index 00000000..5ae9d63a --- /dev/null +++ b/src/images/icons/CarWeb.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Caramella.svg b/src/images/icons/Caramella.svg new file mode 100644 index 00000000..9d13b9f2 --- /dev/null +++ b/src/images/icons/Caramella.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CarbonDesignSystem.svg b/src/images/icons/CarbonDesignSystem.svg new file mode 100644 index 00000000..1e53da53 --- /dev/null +++ b/src/images/icons/CarbonDesignSystem.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cardina.svg b/src/images/icons/Cardina.svg new file mode 100644 index 00000000..4264604e --- /dev/null +++ b/src/images/icons/Cardina.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Caremerge.svg b/src/images/icons/Caremerge.svg new file mode 100644 index 00000000..5a7f9a40 --- /dev/null +++ b/src/images/icons/Caremerge.svg @@ -0,0 +1,445 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CargoServer.svg b/src/images/icons/CargoServer.svg new file mode 100644 index 00000000..51119c4d --- /dev/null +++ b/src/images/icons/CargoServer.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartBot.svg b/src/images/icons/CartBot.svg new file mode 100644 index 00000000..8fa9a1af --- /dev/null +++ b/src/images/icons/CartBot.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartHook.svg b/src/images/icons/CartHook.svg new file mode 100644 index 00000000..2a11eb57 --- /dev/null +++ b/src/images/icons/CartHook.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartPops.svg b/src/images/icons/CartPops.svg new file mode 100644 index 00000000..a607d0b3 --- /dev/null +++ b/src/images/icons/CartPops.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CartRocket.svg b/src/images/icons/CartRocket.svg new file mode 100644 index 00000000..dc0c4b03 --- /dev/null +++ b/src/images/icons/CartRocket.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Carta.svg b/src/images/icons/Carta.svg new file mode 100644 index 00000000..1dbbfbbd --- /dev/null +++ b/src/images/icons/Carta.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CarteraCommerce.svg b/src/images/icons/CarteraCommerce.svg new file mode 100644 index 00000000..0cbdb260 --- /dev/null +++ b/src/images/icons/CarteraCommerce.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cartflows.svg b/src/images/icons/Cartflows.svg new file mode 100644 index 00000000..6e484140 --- /dev/null +++ b/src/images/icons/Cartflows.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cartful.svg b/src/images/icons/Cartful.svg new file mode 100644 index 00000000..13cbdbed --- /dev/null +++ b/src/images/icons/Cartful.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Carto.svg b/src/images/icons/Carto.svg new file mode 100644 index 00000000..fce7953e --- /dev/null +++ b/src/images/icons/Carto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cartylabs.svg b/src/images/icons/Cartylabs.svg new file mode 100644 index 00000000..cd2d0bc0 --- /dev/null +++ b/src/images/icons/Cartylabs.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Carussel.svg b/src/images/icons/Carussel.svg new file mode 100644 index 00000000..2022b3f5 --- /dev/null +++ b/src/images/icons/Carussel.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Casafari.svg b/src/images/icons/Casafari.svg new file mode 100644 index 00000000..6c017aa9 --- /dev/null +++ b/src/images/icons/Casafari.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CatchJS.svg b/src/images/icons/CatchJS.svg new file mode 100644 index 00000000..d435b572 --- /dev/null +++ b/src/images/icons/CatchJS.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Celebros.svg b/src/images/icons/Celebros.svg new file mode 100644 index 00000000..c7a9d029 --- /dev/null +++ b/src/images/icons/Celebros.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Celerant.svg b/src/images/icons/Celerant.svg new file mode 100644 index 00000000..691d7627 --- /dev/null +++ b/src/images/icons/Celerant.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cellxpert.svg b/src/images/icons/Cellxpert.svg new file mode 100644 index 00000000..7ae73ea8 --- /dev/null +++ b/src/images/icons/Cellxpert.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Cerkl.svg b/src/images/icons/Cerkl.svg new file mode 100644 index 00000000..5098067c --- /dev/null +++ b/src/images/icons/Cerkl.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ceros.svg b/src/images/icons/Ceros.svg new file mode 100644 index 00000000..93c8eed5 --- /dev/null +++ b/src/images/icons/Ceros.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Certishopping.svg b/src/images/icons/Certishopping.svg new file mode 100644 index 00000000..ad9693ac --- /dev/null +++ b/src/images/icons/Certishopping.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cevoid.svg b/src/images/icons/Cevoid.svg new file mode 100644 index 00000000..6f4ea30b --- /dev/null +++ b/src/images/icons/Cevoid.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Cfixe.svg b/src/images/icons/Cfixe.svg new file mode 100644 index 00000000..773fa0e7 --- /dev/null +++ b/src/images/icons/Cfixe.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChameleonPower.svg b/src/images/icons/ChameleonPower.svg new file mode 100644 index 00000000..864ceec9 --- /dev/null +++ b/src/images/icons/ChameleonPower.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chaser.svg b/src/images/icons/Chaser.svg new file mode 100644 index 00000000..3e6337e5 --- /dev/null +++ b/src/images/icons/Chaser.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ChatBotBuilder.svg b/src/images/icons/ChatBotBuilder.svg new file mode 100644 index 00000000..d6626c82 --- /dev/null +++ b/src/images/icons/ChatBotBuilder.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatBullet.svg b/src/images/icons/ChatBullet.svg new file mode 100644 index 00000000..9dd3798b --- /dev/null +++ b/src/images/icons/ChatBullet.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatChasers.svg b/src/images/icons/ChatChasers.svg new file mode 100644 index 00000000..0510f2ba --- /dev/null +++ b/src/images/icons/ChatChasers.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatFood.svg b/src/images/icons/ChatFood.svg new file mode 100644 index 00000000..fa7dadb3 --- /dev/null +++ b/src/images/icons/ChatFood.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatLab.svg b/src/images/icons/ChatLab.svg new file mode 100644 index 00000000..3c7b1cff --- /dev/null +++ b/src/images/icons/ChatLab.svg @@ -0,0 +1,769 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatNode.svg b/src/images/icons/ChatNode.svg new file mode 100644 index 00000000..2b578640 --- /dev/null +++ b/src/images/icons/ChatNode.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ChatThing.svg b/src/images/icons/ChatThing.svg new file mode 100644 index 00000000..aab5bfce --- /dev/null +++ b/src/images/icons/ChatThing.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ChatWING.svg b/src/images/icons/ChatWING.svg new file mode 100644 index 00000000..9c74db22 --- /dev/null +++ b/src/images/icons/ChatWING.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Chatbaby.svg b/src/images/icons/Chatbaby.svg new file mode 100644 index 00000000..db3221fb --- /dev/null +++ b/src/images/icons/Chatbaby.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatgo.svg b/src/images/icons/Chatgo.svg new file mode 100644 index 00000000..a221e0ab --- /dev/null +++ b/src/images/icons/Chatgo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chative.svg b/src/images/icons/Chative.svg new file mode 100644 index 00000000..5b840a38 --- /dev/null +++ b/src/images/icons/Chative.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatlio.svg b/src/images/icons/Chatlio.svg new file mode 100644 index 00000000..b4f9c3b8 --- /dev/null +++ b/src/images/icons/Chatlio.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatlyn.svg b/src/images/icons/Chatlyn.svg new file mode 100644 index 00000000..899a8483 --- /dev/null +++ b/src/images/icons/Chatlyn.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatroll.svg b/src/images/icons/Chatroll.svg new file mode 100644 index 00000000..0e82ac9f --- /dev/null +++ b/src/images/icons/Chatroll.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatt.svg b/src/images/icons/Chatt.svg new file mode 100644 index 00000000..c6b7dec9 --- /dev/null +++ b/src/images/icons/Chatt.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatway.svg b/src/images/icons/Chatway.svg new file mode 100644 index 00000000..d944d424 --- /dev/null +++ b/src/images/icons/Chatway.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chatwee.svg b/src/images/icons/Chatwee.svg new file mode 100644 index 00000000..5c80fb1e --- /dev/null +++ b/src/images/icons/Chatwee.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chaty.svg b/src/images/icons/Chaty.svg new file mode 100644 index 00000000..84335f94 --- /dev/null +++ b/src/images/icons/Chaty.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Chayns.svg b/src/images/icons/Chayns.svg new file mode 100644 index 00000000..67a1b2aa --- /dev/null +++ b/src/images/icons/Chayns.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Checkin.svg b/src/images/icons/Checkin.svg new file mode 100644 index 00000000..a4ebb56e --- /dev/null +++ b/src/images/icons/Checkin.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CheckoutChamp.svg b/src/images/icons/CheckoutChamp.svg new file mode 100644 index 00000000..1d67a4ee --- /dev/null +++ b/src/images/icons/CheckoutChamp.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CheerPJ.svg b/src/images/icons/CheerPJ.svg new file mode 100644 index 00000000..9c7a327e --- /dev/null +++ b/src/images/icons/CheerPJ.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chefpreneur.svg b/src/images/icons/Chefpreneur.svg new file mode 100644 index 00000000..5764bdd2 --- /dev/null +++ b/src/images/icons/Chefpreneur.svg @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Chimpify.svg b/src/images/icons/Chimpify.svg new file mode 100644 index 00000000..c5553b8e --- /dev/null +++ b/src/images/icons/Chimpify.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Circle.svg b/src/images/icons/Circle.svg index 4b09fb24..dd1c6a64 100644 --- a/src/images/icons/Circle.svg +++ b/src/images/icons/Circle.svg @@ -1,6 +1,11 @@ - - - - - + + + + + + + + + + diff --git a/src/images/icons/CitizenSpace.png b/src/images/icons/CitizenSpace.png deleted file mode 100644 index a4a626ba..00000000 Binary files a/src/images/icons/CitizenSpace.png and /dev/null differ diff --git a/src/images/icons/CitizenSpace.svg b/src/images/icons/CitizenSpace.svg new file mode 100644 index 00000000..884b4223 --- /dev/null +++ b/src/images/icons/CitizenSpace.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/CitrusLime.svg b/src/images/icons/CitrusLime.svg new file mode 100644 index 00000000..238c3c0d --- /dev/null +++ b/src/images/icons/CitrusLime.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CivicChamps.svg b/src/images/icons/CivicChamps.svg new file mode 100644 index 00000000..f1c839a5 --- /dev/null +++ b/src/images/icons/CivicChamps.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CivicPlus.svg b/src/images/icons/CivicPlus.svg new file mode 100644 index 00000000..29645bdf --- /dev/null +++ b/src/images/icons/CivicPlus.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clarifai.svg b/src/images/icons/Clarifai.svg new file mode 100644 index 00000000..77f31d39 --- /dev/null +++ b/src/images/icons/Clarifai.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clarivoy.svg b/src/images/icons/Clarivoy.svg new file mode 100644 index 00000000..5f6753c3 --- /dev/null +++ b/src/images/icons/Clarivoy.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Claspo.svg b/src/images/icons/Claspo.svg new file mode 100644 index 00000000..d5e1ca54 --- /dev/null +++ b/src/images/icons/Claspo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ClassCreator.svg b/src/images/icons/ClassCreator.svg new file mode 100644 index 00000000..05e2c040 --- /dev/null +++ b/src/images/icons/ClassCreator.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClassFit.svg b/src/images/icons/ClassFit.svg new file mode 100644 index 00000000..0fe2b4b4 --- /dev/null +++ b/src/images/icons/ClassFit.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clayful.svg b/src/images/icons/Clayful.svg new file mode 100644 index 00000000..ceee9032 --- /dev/null +++ b/src/images/icons/Clayful.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/CleanCore.svg b/src/images/icons/CleanCore.svg new file mode 100644 index 00000000..721bf63a --- /dev/null +++ b/src/images/icons/CleanCore.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleanTalk.svg b/src/images/icons/CleanTalk.svg new file mode 100644 index 00000000..16b0ee47 --- /dev/null +++ b/src/images/icons/CleanTalk.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clear.svg b/src/images/icons/Clear.svg new file mode 100644 index 00000000..cfe2a2fa --- /dev/null +++ b/src/images/icons/Clear.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clearlink.svg b/src/images/icons/Clearlink.svg new file mode 100644 index 00000000..db54e117 --- /dev/null +++ b/src/images/icons/Clearlink.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clearout.svg b/src/images/icons/Clearout.svg new file mode 100644 index 00000000..17846d5d --- /dev/null +++ b/src/images/icons/Clearout.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clearstream.svg b/src/images/icons/Clearstream.svg new file mode 100644 index 00000000..065ad979 --- /dev/null +++ b/src/images/icons/Clearstream.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Cleeng.svg b/src/images/icons/Cleeng.svg new file mode 100644 index 00000000..0b4382dc --- /dev/null +++ b/src/images/icons/Cleeng.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clever.svg b/src/images/icons/Clever.svg new file mode 100644 index 00000000..244055a0 --- /dev/null +++ b/src/images/icons/Clever.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleverData.svg b/src/images/icons/CleverData.svg new file mode 100644 index 00000000..9e5e2417 --- /dev/null +++ b/src/images/icons/CleverData.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CleverInsight.svg b/src/images/icons/CleverInsight.svg new file mode 100644 index 00000000..74e92e27 --- /dev/null +++ b/src/images/icons/CleverInsight.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/CleverReach.svg b/src/images/icons/CleverReach.svg new file mode 100644 index 00000000..ad88db03 --- /dev/null +++ b/src/images/icons/CleverReach.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clevy.svg b/src/images/icons/Clevy.svg new file mode 100644 index 00000000..51cb8cdf --- /dev/null +++ b/src/images/icons/Clevy.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickBus.svg b/src/images/icons/ClickBus.svg new file mode 100644 index 00000000..19bf0b4b --- /dev/null +++ b/src/images/icons/ClickBus.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickChat.svg b/src/images/icons/ClickChat.svg new file mode 100644 index 00000000..0470964f --- /dev/null +++ b/src/images/icons/ClickChat.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickFreeze.svg b/src/images/icons/ClickFreeze.svg new file mode 100644 index 00000000..6198e931 --- /dev/null +++ b/src/images/icons/ClickFreeze.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ClickGUARD.svg b/src/images/icons/ClickGUARD.svg new file mode 100644 index 00000000..8a3048f7 --- /dev/null +++ b/src/images/icons/ClickGUARD.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ClickReport.svg b/src/images/icons/ClickReport.svg new file mode 100644 index 00000000..9e4f5c85 --- /dev/null +++ b/src/images/icons/ClickReport.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Clickaine.svg b/src/images/icons/Clickaine.svg new file mode 100644 index 00000000..7c3991d5 --- /dev/null +++ b/src/images/icons/Clickaine.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clickbrainiacs.svg b/src/images/icons/Clickbrainiacs.svg new file mode 100644 index 00000000..030aff76 --- /dev/null +++ b/src/images/icons/Clickbrainiacs.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clickskeks.svg b/src/images/icons/Clickskeks.svg new file mode 100644 index 00000000..ab249a79 --- /dev/null +++ b/src/images/icons/Clickskeks.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cliengo.svg b/src/images/icons/Cliengo.svg new file mode 100644 index 00000000..b19a55c7 --- /dev/null +++ b/src/images/icons/Cliengo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClientChatLive.svg b/src/images/icons/ClientChatLive.svg new file mode 100644 index 00000000..464159cf --- /dev/null +++ b/src/images/icons/ClientChatLive.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClientDiary.svg b/src/images/icons/ClientDiary.svg new file mode 100644 index 00000000..0a509cee --- /dev/null +++ b/src/images/icons/ClientDiary.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Clientacquisition.svg b/src/images/icons/Clientacquisition.svg new file mode 100644 index 00000000..8731d32d --- /dev/null +++ b/src/images/icons/Clientacquisition.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/ClinicSense.svg b/src/images/icons/ClinicSense.svg new file mode 100644 index 00000000..a7cb9bf7 --- /dev/null +++ b/src/images/icons/ClinicSense.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClinicSites.svg b/src/images/icons/ClinicSites.svg new file mode 100644 index 00000000..f26740f5 --- /dev/null +++ b/src/images/icons/ClinicSites.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clio.svg b/src/images/icons/Clio.svg new file mode 100644 index 00000000..c0d44099 --- /dev/null +++ b/src/images/icons/Clio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Clipara.svg b/src/images/icons/Clipara.svg new file mode 100644 index 00000000..ef065ea4 --- /dev/null +++ b/src/images/icons/Clipara.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Clonando.svg b/src/images/icons/Clonando.svg new file mode 100644 index 00000000..336d04a8 --- /dev/null +++ b/src/images/icons/Clonando.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clorder.svg b/src/images/icons/Clorder.svg new file mode 100644 index 00000000..093b35f4 --- /dev/null +++ b/src/images/icons/Clorder.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ClosingBoost.svg b/src/images/icons/ClosingBoost.svg new file mode 100644 index 00000000..ae1a02e7 --- /dev/null +++ b/src/images/icons/ClosingBoost.svg @@ -0,0 +1,487 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CloudSponge.svg b/src/images/icons/CloudSponge.svg new file mode 100644 index 00000000..4185b59a --- /dev/null +++ b/src/images/icons/CloudSponge.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cloudfy.svg b/src/images/icons/Cloudfy.svg new file mode 100644 index 00000000..060d26db --- /dev/null +++ b/src/images/icons/Cloudfy.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clubcast.svg b/src/images/icons/Clubcast.svg new file mode 100644 index 00000000..63e6edfd --- /dev/null +++ b/src/images/icons/Clubcast.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cludo.svg b/src/images/icons/Cludo.svg new file mode 100644 index 00000000..16f2c9cb --- /dev/null +++ b/src/images/icons/Cludo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Clym.svg b/src/images/icons/Clym.svg new file mode 100644 index 00000000..76b7d652 --- /dev/null +++ b/src/images/icons/Clym.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CmonSite.svg b/src/images/icons/CmonSite.svg new file mode 100644 index 00000000..e74aa3ad --- /dev/null +++ b/src/images/icons/CmonSite.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cnvert.svg b/src/images/icons/Cnvert.svg new file mode 100644 index 00000000..e007d3fd --- /dev/null +++ b/src/images/icons/Cnvert.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoCoAI.svg b/src/images/icons/CoCoAI.svg new file mode 100644 index 00000000..d449b5ce --- /dev/null +++ b/src/images/icons/CoCoAI.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Coax.svg b/src/images/icons/Coax.svg new file mode 100644 index 00000000..76548e99 --- /dev/null +++ b/src/images/icons/Coax.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CodeClimate.svg b/src/images/icons/CodeClimate.svg new file mode 100644 index 00000000..65448101 --- /dev/null +++ b/src/images/icons/CodeClimate.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Codetipi.svg b/src/images/icons/Codetipi.svg new file mode 100644 index 00000000..911a383e --- /dev/null +++ b/src/images/icons/Codetipi.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoffeeCup.svg b/src/images/icons/CoffeeCup.svg new file mode 100644 index 00000000..1459cd9c --- /dev/null +++ b/src/images/icons/CoffeeCup.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CollectiveAudience.svg b/src/images/icons/CollectiveAudience.svg new file mode 100644 index 00000000..a657d7c6 --- /dev/null +++ b/src/images/icons/CollectiveAudience.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ComarcheSklep.svg b/src/images/icons/ComarcheSklep.svg new file mode 100644 index 00000000..e292aac6 --- /dev/null +++ b/src/images/icons/ComarcheSklep.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CometChat.svg b/src/images/icons/CometChat.svg new file mode 100644 index 00000000..4b8fbd9e --- /dev/null +++ b/src/images/icons/CometChat.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CometD.svg b/src/images/icons/CometD.svg new file mode 100644 index 00000000..bd7fca69 --- /dev/null +++ b/src/images/icons/CometD.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Comgem.svg b/src/images/icons/Comgem.svg new file mode 100644 index 00000000..26e23bf9 --- /dev/null +++ b/src/images/icons/Comgem.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CommentSold.svg b/src/images/icons/CommentSold.svg new file mode 100644 index 00000000..914aab70 --- /dev/null +++ b/src/images/icons/CommentSold.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Commerce Engine.svg b/src/images/icons/Commerce Engine.svg new file mode 100644 index 00000000..07899d3e --- /dev/null +++ b/src/images/icons/Commerce Engine.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/CommerceHQ.svg b/src/images/icons/CommerceHQ.svg new file mode 100644 index 00000000..87750bc1 --- /dev/null +++ b/src/images/icons/CommerceHQ.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CommerceVision.svg b/src/images/icons/CommerceVision.svg new file mode 100644 index 00000000..c58f886d --- /dev/null +++ b/src/images/icons/CommerceVision.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Commercio.svg b/src/images/icons/Commercio.svg new file mode 100644 index 00000000..ad8a4d9b --- /dev/null +++ b/src/images/icons/Commercio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CommonGround.svg b/src/images/icons/CommonGround.svg new file mode 100644 index 00000000..0e8b0a0b --- /dev/null +++ b/src/images/icons/CommonGround.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Comms.svg b/src/images/icons/Comms.svg new file mode 100644 index 00000000..b279bef6 --- /dev/null +++ b/src/images/icons/Comms.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Community.svg b/src/images/icons/Community.svg new file mode 100644 index 00000000..cfea08e0 --- /dev/null +++ b/src/images/icons/Community.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/CommunityBox.svg b/src/images/icons/CommunityBox.svg new file mode 100644 index 00000000..c70e9afe --- /dev/null +++ b/src/images/icons/CommunityBox.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ComplyAuto.svg b/src/images/icons/ComplyAuto.svg new file mode 100644 index 00000000..839c4060 --- /dev/null +++ b/src/images/icons/ComplyAuto.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CompositeProducts.svg b/src/images/icons/CompositeProducts.svg new file mode 100644 index 00000000..39e7e46f --- /dev/null +++ b/src/images/icons/CompositeProducts.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conduit.svg b/src/images/icons/Conduit.svg new file mode 100644 index 00000000..8065a810 --- /dev/null +++ b/src/images/icons/Conduit.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Conduze.svg b/src/images/icons/Conduze.svg new file mode 100644 index 00000000..3b80a09f --- /dev/null +++ b/src/images/icons/Conduze.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Conexa.svg b/src/images/icons/Conexa.svg new file mode 100644 index 00000000..dd6f4372 --- /dev/null +++ b/src/images/icons/Conexa.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Connectally.svg b/src/images/icons/Connectally.svg new file mode 100644 index 00000000..e19d70ab --- /dev/null +++ b/src/images/icons/Connectally.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conneqto.svg b/src/images/icons/Conneqto.svg new file mode 100644 index 00000000..f604db41 --- /dev/null +++ b/src/images/icons/Conneqto.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Connexity.svg b/src/images/icons/Connexity.svg new file mode 100644 index 00000000..b627b99c --- /dev/null +++ b/src/images/icons/Connexity.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Construct3.svg b/src/images/icons/Construct3.svg new file mode 100644 index 00000000..68e794b1 --- /dev/null +++ b/src/images/icons/Construct3.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConstructorIO.png b/src/images/icons/ConstructorIO.png new file mode 100644 index 00000000..d90eb5cb Binary files /dev/null and b/src/images/icons/ConstructorIO.png differ diff --git a/src/images/icons/ContactUs.svg b/src/images/icons/ContactUs.svg new file mode 100644 index 00000000..da89f310 --- /dev/null +++ b/src/images/icons/ContactUs.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ContentBot.svg b/src/images/icons/ContentBot.svg new file mode 100644 index 00000000..9fc08f62 --- /dev/null +++ b/src/images/icons/ContentBot.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ContentGems.svg b/src/images/icons/ContentGems.svg new file mode 100644 index 00000000..bf6951de --- /dev/null +++ b/src/images/icons/ContentGems.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Contentder.svg b/src/images/icons/Contentder.svg new file mode 100644 index 00000000..44ade771 --- /dev/null +++ b/src/images/icons/Contentder.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Contento.svg b/src/images/icons/Contento.svg new file mode 100644 index 00000000..bdbced22 --- /dev/null +++ b/src/images/icons/Contento.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Contents.svg b/src/images/icons/Contents.svg new file mode 100644 index 00000000..af391183 --- /dev/null +++ b/src/images/icons/Contents.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convead.svg b/src/images/icons/Convead.svg new file mode 100644 index 00000000..e6c60c50 --- /dev/null +++ b/src/images/icons/Convead.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Converdiant.svg b/src/images/icons/Converdiant.svg new file mode 100644 index 00000000..35856b1d --- /dev/null +++ b/src/images/icons/Converdiant.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Converge.svg b/src/images/icons/Converge.svg new file mode 100644 index 00000000..f27e6af1 --- /dev/null +++ b/src/images/icons/Converge.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convermax.svg b/src/images/icons/Convermax.svg new file mode 100644 index 00000000..b9dda62c --- /dev/null +++ b/src/images/icons/Convermax.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConversionBear.svg b/src/images/icons/ConversionBear.svg new file mode 100644 index 00000000..48dffb35 --- /dev/null +++ b/src/images/icons/ConversionBear.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ConvertAndFlow.svg b/src/images/icons/ConvertAndFlow.svg new file mode 100644 index 00000000..85249133 --- /dev/null +++ b/src/images/icons/ConvertAndFlow.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ConvertBox.svg b/src/images/icons/ConvertBox.svg new file mode 100644 index 00000000..dc46a123 --- /dev/null +++ b/src/images/icons/ConvertBox.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convertful.svg b/src/images/icons/Convertful.svg new file mode 100644 index 00000000..b7527d68 --- /dev/null +++ b/src/images/icons/Convertful.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convertiser.svg b/src/images/icons/Convertiser.svg new file mode 100644 index 00000000..699b0078 --- /dev/null +++ b/src/images/icons/Convertiser.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Converzee.svg b/src/images/icons/Converzee.svg new file mode 100644 index 00000000..e8f8e181 --- /dev/null +++ b/src/images/icons/Converzee.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convincely.svg b/src/images/icons/Convincely.svg new file mode 100644 index 00000000..5b23f8db --- /dev/null +++ b/src/images/icons/Convincely.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Convious.svg b/src/images/icons/Convious.svg new file mode 100644 index 00000000..6a9c2775 --- /dev/null +++ b/src/images/icons/Convious.svg @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Convrrt.svg b/src/images/icons/Convrrt.svg new file mode 100644 index 00000000..4f3ae486 --- /dev/null +++ b/src/images/icons/Convrrt.svg @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Conword.svg b/src/images/icons/Conword.svg new file mode 100644 index 00000000..3c8b383f --- /dev/null +++ b/src/images/icons/Conword.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cookie Seal.svg b/src/images/icons/Cookie Seal.svg index e8e7433f..9aabb5f6 100644 --- a/src/images/icons/Cookie Seal.svg +++ b/src/images/icons/Cookie Seal.svg @@ -1,20 +1,3 @@ - - - - - - - - - - - - - - - - - - - + + diff --git a/src/images/icons/CookieBAR.svg b/src/images/icons/CookieBAR.svg new file mode 100644 index 00000000..07bb925a --- /dev/null +++ b/src/images/icons/CookieBAR.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoolPopup.svg b/src/images/icons/CoolPopup.svg new file mode 100644 index 00000000..a4bc3fa6 --- /dev/null +++ b/src/images/icons/CoolPopup.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cooltix.svg b/src/images/icons/Cooltix.svg new file mode 100644 index 00000000..6e1066b5 --- /dev/null +++ b/src/images/icons/Cooltix.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Copernica.svg b/src/images/icons/Copernica.svg new file mode 100644 index 00000000..936b145e --- /dev/null +++ b/src/images/icons/Copernica.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/CopilotAI.svg b/src/images/icons/CopilotAI.svg new file mode 100644 index 00000000..40d9d4dc --- /dev/null +++ b/src/images/icons/CopilotAI.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CopilotLive.svg b/src/images/icons/CopilotLive.svg new file mode 100644 index 00000000..222611f3 --- /dev/null +++ b/src/images/icons/CopilotLive.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Copiny.svg b/src/images/icons/Copiny.svg new file mode 100644 index 00000000..ddf53cb7 --- /dev/null +++ b/src/images/icons/Copiny.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CoreMedia.svg b/src/images/icons/CoreMedia.svg new file mode 100644 index 00000000..cab51cce --- /dev/null +++ b/src/images/icons/CoreMedia.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cornerstone.svg b/src/images/icons/Cornerstone.svg new file mode 100644 index 00000000..bdeb0dfc --- /dev/null +++ b/src/images/icons/Cornerstone.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Corso.svg b/src/images/icons/Corso.svg new file mode 100644 index 00000000..b8049b25 --- /dev/null +++ b/src/images/icons/Corso.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CosmedCloud.svg b/src/images/icons/CosmedCloud.svg new file mode 100644 index 00000000..9d188b88 --- /dev/null +++ b/src/images/icons/CosmedCloud.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CouchDB.png b/src/images/icons/CouchDB.png deleted file mode 100644 index a0a44225..00000000 Binary files a/src/images/icons/CouchDB.png and /dev/null differ diff --git a/src/images/icons/CouchDB.svg b/src/images/icons/CouchDB.svg new file mode 100644 index 00000000..1bdc3a4c --- /dev/null +++ b/src/images/icons/CouchDB.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CounselingKit.svg b/src/images/icons/CounselingKit.svg new file mode 100644 index 00000000..4dcfc9ba --- /dev/null +++ b/src/images/icons/CounselingKit.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Countable.svg b/src/images/icons/Countable.svg new file mode 100644 index 00000000..21455d56 --- /dev/null +++ b/src/images/icons/Countable.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cova.svg b/src/images/icons/Cova.svg new file mode 100644 index 00000000..941df210 --- /dev/null +++ b/src/images/icons/Cova.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Cove.svg b/src/images/icons/Cove.svg new file mode 100644 index 00000000..1f81a97d --- /dev/null +++ b/src/images/icons/Cove.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Covery.svg b/src/images/icons/Covery.svg new file mode 100644 index 00000000..d5b69359 --- /dev/null +++ b/src/images/icons/Covery.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Creaitor.svg b/src/images/icons/Creaitor.svg new file mode 100644 index 00000000..a67defc9 --- /dev/null +++ b/src/images/icons/Creaitor.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CreateDemand.svg b/src/images/icons/CreateDemand.svg new file mode 100644 index 00000000..0a7c3a64 --- /dev/null +++ b/src/images/icons/CreateDemand.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Creoline.svg b/src/images/icons/Creoline.svg new file mode 100644 index 00000000..7ccb93c9 --- /dev/null +++ b/src/images/icons/Creoline.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Crexi.svg b/src/images/icons/Crexi.svg new file mode 100644 index 00000000..345e3640 --- /dev/null +++ b/src/images/icons/Crexi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CriticalMention.svg b/src/images/icons/CriticalMention.svg new file mode 100644 index 00000000..aefd0f90 --- /dev/null +++ b/src/images/icons/CriticalMention.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Croct.svg b/src/images/icons/Croct.svg new file mode 100644 index 00000000..ec6de122 --- /dev/null +++ b/src/images/icons/Croct.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cronitor.svg b/src/images/icons/Cronitor.svg new file mode 100644 index 00000000..dd01ca3e --- /dev/null +++ b/src/images/icons/Cronitor.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Croogo.svg b/src/images/icons/Croogo.svg new file mode 100644 index 00000000..dc2f5a2c --- /dev/null +++ b/src/images/icons/Croogo.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Crowdin.svg b/src/images/icons/Crowdin.svg new file mode 100644 index 00000000..58106517 --- /dev/null +++ b/src/images/icons/Crowdin.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Crowdsignal.svg b/src/images/icons/Crowdsignal.svg new file mode 100644 index 00000000..bbb36e44 --- /dev/null +++ b/src/images/icons/Crowdsignal.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CuasalFunnel.svg b/src/images/icons/CuasalFunnel.svg new file mode 100644 index 00000000..a8de6729 --- /dev/null +++ b/src/images/icons/CuasalFunnel.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Culqi.svg b/src/images/icons/Culqi.svg new file mode 100644 index 00000000..3ddfa48c --- /dev/null +++ b/src/images/icons/Culqi.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Curated.svg b/src/images/icons/Curated.svg new file mode 100644 index 00000000..cee3501c --- /dev/null +++ b/src/images/icons/Curated.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Curaytor.svg b/src/images/icons/Curaytor.svg new file mode 100644 index 00000000..98aca488 --- /dev/null +++ b/src/images/icons/Curaytor.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Custobar.svg b/src/images/icons/Custobar.svg new file mode 100644 index 00000000..016f0a70 --- /dev/null +++ b/src/images/icons/Custobar.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomDonations.svg b/src/images/icons/CustomDonations.svg new file mode 100644 index 00000000..66f90208 --- /dev/null +++ b/src/images/icons/CustomDonations.svg @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomFit.svg b/src/images/icons/CustomFit.svg new file mode 100644 index 00000000..93df3eea --- /dev/null +++ b/src/images/icons/CustomFit.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomerStories.svg b/src/images/icons/CustomerStories.svg new file mode 100644 index 00000000..2fde086d --- /dev/null +++ b/src/images/icons/CustomerStories.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/CustomerSure.svg b/src/images/icons/CustomerSure.svg new file mode 100644 index 00000000..eed3f397 --- /dev/null +++ b/src/images/icons/CustomerSure.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Cybot.svg b/src/images/icons/Cybot.svg new file mode 100644 index 00000000..56f799c9 --- /dev/null +++ b/src/images/icons/Cybot.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DCKAPCommerce.svg b/src/images/icons/DCKAPCommerce.svg new file mode 100644 index 00000000..2ab8bb5f --- /dev/null +++ b/src/images/icons/DCKAPCommerce.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DESTOON.svg b/src/images/icons/DESTOON.svg new file mode 100644 index 00000000..e3fd890c --- /dev/null +++ b/src/images/icons/DESTOON.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DEUNA.svg b/src/images/icons/DEUNA.svg new file mode 100644 index 00000000..a440b84b --- /dev/null +++ b/src/images/icons/DEUNA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/DISH.svg b/src/images/icons/DISH.svg new file mode 100644 index 00000000..b98d9824 --- /dev/null +++ b/src/images/icons/DISH.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DSpace.svg b/src/images/icons/DSpace.svg new file mode 100644 index 00000000..8b99b16d --- /dev/null +++ b/src/images/icons/DSpace.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dable.svg b/src/images/icons/Dable.svg new file mode 100644 index 00000000..a7fe150f --- /dev/null +++ b/src/images/icons/Dable.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dakno.svg b/src/images/icons/Dakno.svg new file mode 100644 index 00000000..0b4469a0 --- /dev/null +++ b/src/images/icons/Dakno.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Daktela.svg b/src/images/icons/Daktela.svg new file mode 100644 index 00000000..b0053ba4 --- /dev/null +++ b/src/images/icons/Daktela.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dalue.svg b/src/images/icons/Dalue.svg new file mode 100644 index 00000000..eb738d83 --- /dev/null +++ b/src/images/icons/Dalue.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DanAds.svg b/src/images/icons/DanAds.svg new file mode 100644 index 00000000..a8f6d95a --- /dev/null +++ b/src/images/icons/DanAds.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dapta.svg b/src/images/icons/Dapta.svg new file mode 100644 index 00000000..76036633 --- /dev/null +++ b/src/images/icons/Dapta.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DarwinPriicing.svg b/src/images/icons/DarwinPriicing.svg new file mode 100644 index 00000000..117184a4 --- /dev/null +++ b/src/images/icons/DarwinPriicing.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/DatHuis.svg b/src/images/icons/DatHuis.svg new file mode 100644 index 00000000..18a7d6da --- /dev/null +++ b/src/images/icons/DatHuis.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Data8.svg b/src/images/icons/Data8.svg new file mode 100644 index 00000000..97c72b23 --- /dev/null +++ b/src/images/icons/Data8.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/DataDojo.svg b/src/images/icons/DataDojo.svg new file mode 100644 index 00000000..9cb24567 --- /dev/null +++ b/src/images/icons/DataDojo.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DataGrail.svg b/src/images/icons/DataGrail.svg new file mode 100644 index 00000000..f0cc9507 --- /dev/null +++ b/src/images/icons/DataGrail.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DataNugget.svg b/src/images/icons/DataNugget.svg new file mode 100644 index 00000000..7f50e80d --- /dev/null +++ b/src/images/icons/DataNugget.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Databuddy.svg b/src/images/icons/Databuddy.svg new file mode 100644 index 00000000..c354bfcd --- /dev/null +++ b/src/images/icons/Databuddy.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Datacrush.svg b/src/images/icons/Datacrush.svg new file mode 100644 index 00000000..a261bd44 --- /dev/null +++ b/src/images/icons/Datacrush.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Datalitics.svg b/src/images/icons/Datalitics.svg new file mode 100644 index 00000000..ee64c1d8 --- /dev/null +++ b/src/images/icons/Datalitics.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Datarize.svg b/src/images/icons/Datarize.svg new file mode 100644 index 00000000..d167ba88 --- /dev/null +++ b/src/images/icons/Datarize.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Dataships.svg b/src/images/icons/Dataships.svg new file mode 100644 index 00000000..a6ff3b17 --- /dev/null +++ b/src/images/icons/Dataships.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Datastar.svg b/src/images/icons/Datastar.svg new file mode 100644 index 00000000..0749dc42 --- /dev/null +++ b/src/images/icons/Datastar.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Daxko.svg b/src/images/icons/Daxko.svg new file mode 100644 index 00000000..83e363ea --- /dev/null +++ b/src/images/icons/Daxko.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeadlineFunnel.svg b/src/images/icons/DeadlineFunnel.svg new file mode 100644 index 00000000..130a5f92 --- /dev/null +++ b/src/images/icons/DeadlineFunnel.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/DealAI.svg b/src/images/icons/DealAI.svg new file mode 100644 index 00000000..873d2f61 --- /dev/null +++ b/src/images/icons/DealAI.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dealspotr.svg b/src/images/icons/Dealspotr.svg new file mode 100644 index 00000000..4ea118d3 --- /dev/null +++ b/src/images/icons/Dealspotr.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DearDoc.svg b/src/images/icons/DearDoc.svg new file mode 100644 index 00000000..5f5de7a4 --- /dev/null +++ b/src/images/icons/DearDoc.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DecapCMS.svg b/src/images/icons/DecapCMS.svg new file mode 100644 index 00000000..e3ca1224 --- /dev/null +++ b/src/images/icons/DecapCMS.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deco.svg b/src/images/icons/Deco.svg new file mode 100644 index 00000000..efb397ee --- /dev/null +++ b/src/images/icons/Deco.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/DeepAR.svg b/src/images/icons/DeepAR.svg new file mode 100644 index 00000000..288fb996 --- /dev/null +++ b/src/images/icons/DeepAR.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeepLawn.svg b/src/images/icons/DeepLawn.svg new file mode 100644 index 00000000..46a816f9 --- /dev/null +++ b/src/images/icons/DeepLawn.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeepMarkit.svg b/src/images/icons/DeepMarkit.svg new file mode 100644 index 00000000..a671b8fd --- /dev/null +++ b/src/images/icons/DeepMarkit.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deko.svg b/src/images/icons/Deko.svg new file mode 100644 index 00000000..8582d7a0 --- /dev/null +++ b/src/images/icons/Deko.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Delera.svg b/src/images/icons/Delera.svg new file mode 100644 index 00000000..d67c98e9 --- /dev/null +++ b/src/images/icons/Delera.svg @@ -0,0 +1,1079 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Delivra.svg b/src/images/icons/Delivra.svg new file mode 100644 index 00000000..efa2698b --- /dev/null +++ b/src/images/icons/Delivra.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DeltaMedia.svg b/src/images/icons/DeltaMedia.svg new file mode 100644 index 00000000..d2ea7020 --- /dev/null +++ b/src/images/icons/DeltaMedia.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dema.svg b/src/images/icons/Dema.svg new file mode 100644 index 00000000..266ce032 --- /dev/null +++ b/src/images/icons/Dema.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Demandforce.svg b/src/images/icons/Demandforce.svg new file mode 100644 index 00000000..0723ba30 --- /dev/null +++ b/src/images/icons/Demandforce.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dengage.svg b/src/images/icons/Dengage.svg new file mode 100644 index 00000000..7910b8c5 --- /dev/null +++ b/src/images/icons/Dengage.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Deriv.svg b/src/images/icons/Deriv.svg new file mode 100644 index 00000000..f647af75 --- /dev/null +++ b/src/images/icons/Deriv.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Descartes.svg b/src/images/icons/Descartes.svg new file mode 100644 index 00000000..ef91a767 --- /dev/null +++ b/src/images/icons/Descartes.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Destini.svg b/src/images/icons/Destini.svg new file mode 100644 index 00000000..8db32bce --- /dev/null +++ b/src/images/icons/Destini.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Desty.svg b/src/images/icons/Desty.svg new file mode 100644 index 00000000..6e2499ea --- /dev/null +++ b/src/images/icons/Desty.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevRev.svg b/src/images/icons/DevRev.svg new file mode 100644 index 00000000..b26f4b1c --- /dev/null +++ b/src/images/icons/DevRev.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Develic.svg b/src/images/icons/Develic.svg new file mode 100644 index 00000000..79a97295 --- /dev/null +++ b/src/images/icons/Develic.svg @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevelopingAzerbaijan.svg b/src/images/icons/DevelopingAzerbaijan.svg new file mode 100644 index 00000000..df96dbcd --- /dev/null +++ b/src/images/icons/DevelopingAzerbaijan.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Devuelving.svg b/src/images/icons/Devuelving.svg new file mode 100644 index 00000000..9b539878 --- /dev/null +++ b/src/images/icons/Devuelving.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevupUI.svg b/src/images/icons/DevupUI.svg new file mode 100644 index 00000000..73b90786 --- /dev/null +++ b/src/images/icons/DevupUI.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DevzCart.svg b/src/images/icons/DevzCart.svg new file mode 100644 index 00000000..0c189da6 --- /dev/null +++ b/src/images/icons/DevzCart.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dexem.svg b/src/images/icons/Dexem.svg new file mode 100644 index 00000000..f58dd65a --- /dev/null +++ b/src/images/icons/Dexem.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dexter.svg b/src/images/icons/Dexter.svg new file mode 100644 index 00000000..70725ae0 --- /dev/null +++ b/src/images/icons/Dexter.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DialogInsight.svg b/src/images/icons/DialogInsight.svg new file mode 100644 index 00000000..731f4492 --- /dev/null +++ b/src/images/icons/DialogInsight.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DialogShift.svg b/src/images/icons/DialogShift.svg new file mode 100644 index 00000000..b739f838 --- /dev/null +++ b/src/images/icons/DialogShift.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DialogTab.svg b/src/images/icons/DialogTab.svg new file mode 100644 index 00000000..c18ad2f7 --- /dev/null +++ b/src/images/icons/DialogTab.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dialogity.svg b/src/images/icons/Dialogity.svg new file mode 100644 index 00000000..55b08878 --- /dev/null +++ b/src/images/icons/Dialogity.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dice.svg b/src/images/icons/Dice.svg new file mode 100644 index 00000000..ad9a83b8 --- /dev/null +++ b/src/images/icons/Dice.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Didar.svg b/src/images/icons/Didar.svg new file mode 100644 index 00000000..865a836d --- /dev/null +++ b/src/images/icons/Didar.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Digioh.png b/src/images/icons/Digioh.png new file mode 100644 index 00000000..5e410320 Binary files /dev/null and b/src/images/icons/Digioh.png differ diff --git a/src/images/icons/Dimensions.svg b/src/images/icons/Dimensions.svg new file mode 100644 index 00000000..506f80f0 --- /dev/null +++ b/src/images/icons/Dimensions.svg @@ -0,0 +1,797 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dimml.svg b/src/images/icons/Dimml.svg new file mode 100644 index 00000000..b04ba5e9 --- /dev/null +++ b/src/images/icons/Dimml.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DinaKunder.svg b/src/images/icons/DinaKunder.svg new file mode 100644 index 00000000..70ad7f09 --- /dev/null +++ b/src/images/icons/DinaKunder.svg @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Directorist.svg b/src/images/icons/Directorist.svg new file mode 100644 index 00000000..01970ccb --- /dev/null +++ b/src/images/icons/Directorist.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Direktonline.svg b/src/images/icons/Direktonline.svg new file mode 100644 index 00000000..b03fb259 --- /dev/null +++ b/src/images/icons/Direktonline.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Disciple.svg b/src/images/icons/Disciple.svg new file mode 100644 index 00000000..4f5a7584 --- /dev/null +++ b/src/images/icons/Disciple.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ditto.svg b/src/images/icons/Ditto.svg new file mode 100644 index 00000000..c668b9e2 --- /dev/null +++ b/src/images/icons/Ditto.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Divide.svg b/src/images/icons/Divide.svg new file mode 100644 index 00000000..7a2f944c --- /dev/null +++ b/src/images/icons/Divide.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dixa.svg b/src/images/icons/Dixa.svg new file mode 100644 index 00000000..dee7f441 --- /dev/null +++ b/src/images/icons/Dixa.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DocsBotAI.svg b/src/images/icons/DocsBotAI.svg new file mode 100644 index 00000000..4875d6e3 --- /dev/null +++ b/src/images/icons/DocsBotAI.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Doctave.svg b/src/images/icons/Doctave.svg new file mode 100644 index 00000000..047d21ed --- /dev/null +++ b/src/images/icons/Doctave.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Doctena.svg b/src/images/icons/Doctena.svg new file mode 100644 index 00000000..bc62c4db --- /dev/null +++ b/src/images/icons/Doctena.svg @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dolead.svg b/src/images/icons/Dolead.svg new file mode 100644 index 00000000..1d59c54e --- /dev/null +++ b/src/images/icons/Dolead.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DoorLoop.svg b/src/images/icons/DoorLoop.svg new file mode 100644 index 00000000..3864b8dc --- /dev/null +++ b/src/images/icons/DoorLoop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Doorbell.svg b/src/images/icons/Doorbell.svg new file mode 100644 index 00000000..2f255646 --- /dev/null +++ b/src/images/icons/Doorbell.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DotGo.svg b/src/images/icons/DotGo.svg new file mode 100644 index 00000000..4302b974 --- /dev/null +++ b/src/images/icons/DotGo.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/DotPe.svg b/src/images/icons/DotPe.svg new file mode 100644 index 00000000..941b00b6 --- /dev/null +++ b/src/images/icons/DotPe.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Douban.svg b/src/images/icons/Douban.svg new file mode 100644 index 00000000..214e2a69 --- /dev/null +++ b/src/images/icons/Douban.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DoubleTick.svg b/src/images/icons/DoubleTick.svg new file mode 100644 index 00000000..6d4d3686 --- /dev/null +++ b/src/images/icons/DoubleTick.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dover.svg b/src/images/icons/Dover.svg new file mode 100644 index 00000000..da628c43 --- /dev/null +++ b/src/images/icons/Dover.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DrChrono.svg b/src/images/icons/DrChrono.svg new file mode 100644 index 00000000..e18dd582 --- /dev/null +++ b/src/images/icons/DrChrono.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/DrLeonardo.svg b/src/images/icons/DrLeonardo.svg new file mode 100644 index 00000000..d9cd92b0 --- /dev/null +++ b/src/images/icons/DrLeonardo.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Drata.svg b/src/images/icons/Drata.svg new file mode 100644 index 00000000..924cfea6 --- /dev/null +++ b/src/images/icons/Drata.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/DreamROI.svg b/src/images/icons/DreamROI.svg new file mode 100644 index 00000000..2a17d161 --- /dev/null +++ b/src/images/icons/DreamROI.svg @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Drinks.svg b/src/images/icons/Drinks.svg new file mode 100644 index 00000000..6b6590b6 --- /dev/null +++ b/src/images/icons/Drinks.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Droip.svg b/src/images/icons/Droip.svg new file mode 100644 index 00000000..ea38d904 --- /dev/null +++ b/src/images/icons/Droip.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Droplabs.svg b/src/images/icons/Droplabs.svg new file mode 100644 index 00000000..98119af3 --- /dev/null +++ b/src/images/icons/Droplabs.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Droxy.svg b/src/images/icons/Droxy.svg new file mode 100644 index 00000000..613dbf34 --- /dev/null +++ b/src/images/icons/Droxy.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Dukany.svg b/src/images/icons/Dukany.svg new file mode 100644 index 00000000..3e9a7baf --- /dev/null +++ b/src/images/icons/Dukany.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Durable.svg b/src/images/icons/Durable.svg new file mode 100644 index 00000000..9d281315 --- /dev/null +++ b/src/images/icons/Durable.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/DutchIS.svg b/src/images/icons/DutchIS.svg new file mode 100644 index 00000000..e0380794 --- /dev/null +++ b/src/images/icons/DutchIS.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dweet.svg b/src/images/icons/Dweet.svg new file mode 100644 index 00000000..b60b6410 --- /dev/null +++ b/src/images/icons/Dweet.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Dwolla.svg b/src/images/icons/Dwolla.svg new file mode 100644 index 00000000..6561b891 --- /dev/null +++ b/src/images/icons/Dwolla.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/E37.svg b/src/images/icons/E37.svg new file mode 100644 index 00000000..a313b32b --- /dev/null +++ b/src/images/icons/E37.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EADPlataforma.svg b/src/images/icons/EADPlataforma.svg new file mode 100644 index 00000000..e71672fa --- /dev/null +++ b/src/images/icons/EADPlataforma.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ECBB.svg b/src/images/icons/ECBB.svg new file mode 100644 index 00000000..43ab7c45 --- /dev/null +++ b/src/images/icons/ECBB.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Eaglecart.svg b/src/images/icons/Eaglecart.svg new file mode 100644 index 00000000..d2610215 --- /dev/null +++ b/src/images/icons/Eaglecart.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Eagleview.svg b/src/images/icons/Eagleview.svg new file mode 100644 index 00000000..1c7bb9d8 --- /dev/null +++ b/src/images/icons/Eagleview.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/EarlyParrot.svg b/src/images/icons/EarlyParrot.svg new file mode 100644 index 00000000..15e13af0 --- /dev/null +++ b/src/images/icons/EarlyParrot.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EaselJS.svg b/src/images/icons/EaselJS.svg new file mode 100644 index 00000000..b5734bc5 --- /dev/null +++ b/src/images/icons/EaselJS.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasiChat.svg b/src/images/icons/EasiChat.svg new file mode 100644 index 00000000..455a2012 --- /dev/null +++ b/src/images/icons/EasiChat.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Easol.svg b/src/images/icons/Easol.svg new file mode 100644 index 00000000..c48749f7 --- /dev/null +++ b/src/images/icons/Easol.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EasyLiao.svg b/src/images/icons/EasyLiao.svg new file mode 100644 index 00000000..3dc29eca --- /dev/null +++ b/src/images/icons/EasyLiao.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyPolls.svg b/src/images/icons/EasyPolls.svg new file mode 100644 index 00000000..54673a8d --- /dev/null +++ b/src/images/icons/EasyPolls.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyRez.svg b/src/images/icons/EasyRez.svg new file mode 100644 index 00000000..842d73a9 --- /dev/null +++ b/src/images/icons/EasyRez.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/EasyWebinar.svg b/src/images/icons/EasyWebinar.svg new file mode 100644 index 00000000..0c694564 --- /dev/null +++ b/src/images/icons/EasyWebinar.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EasyWeek.svg b/src/images/icons/EasyWeek.svg new file mode 100644 index 00000000..05630396 --- /dev/null +++ b/src/images/icons/EasyWeek.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Easyling.svg b/src/images/icons/Easyling.svg new file mode 100644 index 00000000..a24ed146 --- /dev/null +++ b/src/images/icons/Easyling.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Easysize.svg b/src/images/icons/Easysize.svg new file mode 100644 index 00000000..db9d44c4 --- /dev/null +++ b/src/images/icons/Easysize.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EatStreet.svg b/src/images/icons/EatStreet.svg new file mode 100644 index 00000000..3b779fef --- /dev/null +++ b/src/images/icons/EatStreet.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Eatself.svg b/src/images/icons/Eatself.svg new file mode 100644 index 00000000..fbb4da3f --- /dev/null +++ b/src/images/icons/Eatself.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Eber.svg b/src/images/icons/Eber.svg new file mode 100644 index 00000000..7a556935 --- /dev/null +++ b/src/images/icons/Eber.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecal.svg b/src/images/icons/Ecal.svg new file mode 100644 index 00000000..49bda1a1 --- /dev/null +++ b/src/images/icons/Ecal.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecbeing.svg b/src/images/icons/Ecbeing.svg new file mode 100644 index 00000000..7b15afba --- /dev/null +++ b/src/images/icons/Ecbeing.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/EcomCart.svg b/src/images/icons/EcomCart.svg new file mode 100644 index 00000000..dc4931ba --- /dev/null +++ b/src/images/icons/EcomCart.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EcomX.svg b/src/images/icons/EcomX.svg new file mode 100644 index 00000000..cc12db44 --- /dev/null +++ b/src/images/icons/EcomX.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecomtrack.svg b/src/images/icons/Ecomtrack.svg new file mode 100644 index 00000000..fdfd6576 --- /dev/null +++ b/src/images/icons/Ecomtrack.svg @@ -0,0 +1,17 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ecomz.svg b/src/images/icons/Ecomz.svg new file mode 100644 index 00000000..fd033c68 --- /dev/null +++ b/src/images/icons/Ecomz.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EdgeOne.svg b/src/images/icons/EdgeOne.svg new file mode 100644 index 00000000..6631c723 --- /dev/null +++ b/src/images/icons/EdgeOne.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edgemesh.png b/src/images/icons/Edgemesh.png new file mode 100644 index 00000000..8f3419f3 Binary files /dev/null and b/src/images/icons/Edgemesh.png differ diff --git a/src/images/icons/EditPlus.svg b/src/images/icons/EditPlus.svg new file mode 100644 index 00000000..23af434a --- /dev/null +++ b/src/images/icons/EditPlus.svg @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edlio.svg b/src/images/icons/Edlio.svg new file mode 100644 index 00000000..4cfea8ec --- /dev/null +++ b/src/images/icons/Edlio.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Edmingle.svg b/src/images/icons/Edmingle.svg new file mode 100644 index 00000000..9f148517 --- /dev/null +++ b/src/images/icons/Edmingle.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Eggflow.svg b/src/images/icons/Eggflow.svg new file mode 100644 index 00000000..4d53f093 --- /dev/null +++ b/src/images/icons/Eggflow.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ElasticPath.svg b/src/images/icons/ElasticPath.svg new file mode 100644 index 00000000..da193295 --- /dev/null +++ b/src/images/icons/ElasticPath.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elenore.svg b/src/images/icons/Elenore.svg new file mode 100644 index 00000000..7de927c2 --- /dev/null +++ b/src/images/icons/Elenore.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Elevio.svg b/src/images/icons/Elevio.svg new file mode 100644 index 00000000..768bcf2a --- /dev/null +++ b/src/images/icons/Elevio.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elexio.svg b/src/images/icons/Elexio.svg new file mode 100644 index 00000000..9157e243 --- /dev/null +++ b/src/images/icons/Elexio.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elina.svg b/src/images/icons/Elina.svg new file mode 100644 index 00000000..ec73afb9 --- /dev/null +++ b/src/images/icons/Elina.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elloha.svg b/src/images/icons/Elloha.svg new file mode 100644 index 00000000..7bfc4472 --- /dev/null +++ b/src/images/icons/Elloha.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Elromco.svg b/src/images/icons/Elromco.svg new file mode 100644 index 00000000..2660f133 --- /dev/null +++ b/src/images/icons/Elromco.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emaileri.svg b/src/images/icons/Emaileri.svg new file mode 100644 index 00000000..61c9d8a7 --- /dev/null +++ b/src/images/icons/Emaileri.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emergent.png b/src/images/icons/Emergent.png new file mode 100644 index 00000000..f3f58b6f Binary files /dev/null and b/src/images/icons/Emergent.png differ diff --git a/src/images/icons/Emfont.svg b/src/images/icons/Emfont.svg new file mode 100644 index 00000000..bb887a13 --- /dev/null +++ b/src/images/icons/Emfont.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Emojicom.svg b/src/images/icons/Emojicom.svg new file mode 100644 index 00000000..ae7ff500 --- /dev/null +++ b/src/images/icons/Emojicom.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EmploymentHero.svg b/src/images/icons/EmploymentHero.svg new file mode 100644 index 00000000..107f3dfa --- /dev/null +++ b/src/images/icons/EmploymentHero.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enabase.svg b/src/images/icons/Enabase.svg new file mode 100644 index 00000000..384f158d --- /dev/null +++ b/src/images/icons/Enabase.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Enagic.svg b/src/images/icons/Enagic.svg new file mode 100644 index 00000000..46ff87c3 --- /dev/null +++ b/src/images/icons/Enagic.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enecto.svg b/src/images/icons/Enecto.svg new file mode 100644 index 00000000..4dbd3343 --- /dev/null +++ b/src/images/icons/Enecto.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Engaga.svg b/src/images/icons/Engaga.svg new file mode 100644 index 00000000..d6d5de65 --- /dev/null +++ b/src/images/icons/Engaga.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Enjore.svg b/src/images/icons/Enjore.svg new file mode 100644 index 00000000..bb0e4f8b --- /dev/null +++ b/src/images/icons/Enjore.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enquisite.svg b/src/images/icons/Enquisite.svg new file mode 100644 index 00000000..8eb126a1 --- /dev/null +++ b/src/images/icons/Enquisite.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enrollware.svg b/src/images/icons/Enrollware.svg new file mode 100644 index 00000000..50805921 --- /dev/null +++ b/src/images/icons/Enrollware.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enterice.svg b/src/images/icons/Enterice.svg new file mode 100644 index 00000000..609ad66e --- /dev/null +++ b/src/images/icons/Enterice.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Entresoft.svg b/src/images/icons/Entresoft.svg new file mode 100644 index 00000000..743cdaf2 --- /dev/null +++ b/src/images/icons/Entresoft.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enviopack.svg b/src/images/icons/Enviopack.svg new file mode 100644 index 00000000..e336bf1f --- /dev/null +++ b/src/images/icons/Enviopack.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Envoke.svg b/src/images/icons/Envoke.svg new file mode 100644 index 00000000..c96af613 --- /dev/null +++ b/src/images/icons/Envoke.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EnvolveTech.svg b/src/images/icons/EnvolveTech.svg new file mode 100644 index 00000000..fa629557 --- /dev/null +++ b/src/images/icons/EnvolveTech.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Enzuzo.svg b/src/images/icons/Enzuzo.svg new file mode 100644 index 00000000..9fa26f3a --- /dev/null +++ b/src/images/icons/Enzuzo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Epicor.svg b/src/images/icons/Epicor.svg new file mode 100644 index 00000000..a8fadb34 --- /dev/null +++ b/src/images/icons/Epicor.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Epoq.svg b/src/images/icons/Epoq.svg new file mode 100644 index 00000000..cf2fa112 --- /dev/null +++ b/src/images/icons/Epoq.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Erxes.svg b/src/images/icons/Erxes.svg new file mode 100644 index 00000000..fdc20b56 --- /dev/null +++ b/src/images/icons/Erxes.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EspoCRM.svg b/src/images/icons/EspoCRM.svg index 79d96f8c..b0d719e5 100644 --- a/src/images/icons/EspoCRM.svg +++ b/src/images/icons/EspoCRM.svg @@ -1,82 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - + + + \ No newline at end of file diff --git a/src/images/icons/EstateTrack.svg b/src/images/icons/EstateTrack.svg new file mode 100644 index 00000000..12bd6274 --- /dev/null +++ b/src/images/icons/EstateTrack.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Etch.svg b/src/images/icons/Etch.svg new file mode 100644 index 00000000..52517bd3 --- /dev/null +++ b/src/images/icons/Etch.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Etermio.svg b/src/images/icons/Etermio.svg new file mode 100644 index 00000000..6a38c6b4 --- /dev/null +++ b/src/images/icons/Etermio.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Eveho.svg b/src/images/icons/Eveho.svg new file mode 100644 index 00000000..c0dd906e --- /dev/null +++ b/src/images/icons/Eveho.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Eventlink.svg b/src/images/icons/Eventlink.svg new file mode 100644 index 00000000..51b9bae4 --- /dev/null +++ b/src/images/icons/Eventlink.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/EverWeb.svg b/src/images/icons/EverWeb.svg new file mode 100644 index 00000000..47356623 --- /dev/null +++ b/src/images/icons/EverWeb.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EverWondr.svg b/src/images/icons/EverWondr.svg new file mode 100644 index 00000000..ab87adab --- /dev/null +++ b/src/images/icons/EverWondr.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Evermos.svg b/src/images/icons/Evermos.svg new file mode 100644 index 00000000..0af1554d --- /dev/null +++ b/src/images/icons/Evermos.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Evernote.svg b/src/images/icons/Evernote.svg new file mode 100644 index 00000000..0ce4f38e --- /dev/null +++ b/src/images/icons/Evernote.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Everviz.svg b/src/images/icons/Everviz.svg new file mode 100644 index 00000000..393ca028 --- /dev/null +++ b/src/images/icons/Everviz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Evidence.svg b/src/images/icons/Evidence.svg new file mode 100644 index 00000000..19f4c232 --- /dev/null +++ b/src/images/icons/Evidence.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/Eviivo.svg b/src/images/icons/Eviivo.svg new file mode 100644 index 00000000..aeb6efc8 --- /dev/null +++ b/src/images/icons/Eviivo.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/EvolveMedia.svg b/src/images/icons/EvolveMedia.svg new file mode 100644 index 00000000..a6498772 --- /dev/null +++ b/src/images/icons/EvolveMedia.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ExactVisitor.svg b/src/images/icons/ExactVisitor.svg new file mode 100644 index 00000000..caf2bacf --- /dev/null +++ b/src/images/icons/ExactVisitor.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Excentos.svg b/src/images/icons/Excentos.svg new file mode 100644 index 00000000..9969f992 --- /dev/null +++ b/src/images/icons/Excentos.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ExitBee.svg b/src/images/icons/ExitBee.svg new file mode 100644 index 00000000..93a1b48d --- /dev/null +++ b/src/images/icons/ExitBee.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Exitshop.svg b/src/images/icons/Exitshop.svg new file mode 100644 index 00000000..5d4ff9af --- /dev/null +++ b/src/images/icons/Exitshop.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ExoPlatform.svg b/src/images/icons/ExoPlatform.svg new file mode 100644 index 00000000..6d7868a6 --- /dev/null +++ b/src/images/icons/ExoPlatform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ExtraWatch.svg b/src/images/icons/ExtraWatch.svg new file mode 100644 index 00000000..9a8f2ac0 --- /dev/null +++ b/src/images/icons/ExtraWatch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/EyeFitU.svg b/src/images/icons/EyeFitU.svg new file mode 100644 index 00000000..9ac1d9a1 --- /dev/null +++ b/src/images/icons/EyeFitU.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/EyouCMS.svg b/src/images/icons/EyouCMS.svg new file mode 100644 index 00000000..83433b0f --- /dev/null +++ b/src/images/icons/EyouCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/F5DistributedCloudServices.svg b/src/images/icons/F5DistributedCloudServices.svg new file mode 100644 index 00000000..00b04730 --- /dev/null +++ b/src/images/icons/F5DistributedCloudServices.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FASO.svg b/src/images/icons/FASO.svg new file mode 100644 index 00000000..89e945be --- /dev/null +++ b/src/images/icons/FASO.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FC2Analyzer.svg b/src/images/icons/FC2Analyzer.svg new file mode 100644 index 00000000..50d32216 --- /dev/null +++ b/src/images/icons/FC2Analyzer.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FMGSuite.svg b/src/images/icons/FMGSuite.svg new file mode 100644 index 00000000..d9c30006 --- /dev/null +++ b/src/images/icons/FMGSuite.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FOCUSWebWall.svg b/src/images/icons/FOCUSWebWall.svg new file mode 100644 index 00000000..c61c27d8 --- /dev/null +++ b/src/images/icons/FOCUSWebWall.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FUGU.svg b/src/images/icons/FUGU.svg new file mode 100644 index 00000000..c099e1de --- /dev/null +++ b/src/images/icons/FUGU.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Facilita.svg b/src/images/icons/Facilita.svg new file mode 100644 index 00000000..7e36e0d4 --- /dev/null +++ b/src/images/icons/Facilita.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Faire.svg b/src/images/icons/Faire.svg new file mode 100644 index 00000000..7fbfc574 --- /dev/null +++ b/src/images/icons/Faire.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Famewall.svg b/src/images/icons/Famewall.svg new file mode 100644 index 00000000..612c3c26 --- /dev/null +++ b/src/images/icons/Famewall.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Famly.svg b/src/images/icons/Famly.svg new file mode 100644 index 00000000..d30eb4ef --- /dev/null +++ b/src/images/icons/Famly.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FamousAI.svg b/src/images/icons/FamousAI.svg new file mode 100644 index 00000000..e58d13ec --- /dev/null +++ b/src/images/icons/FamousAI.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FarCry.svg b/src/images/icons/FarCry.svg new file mode 100644 index 00000000..1e27259b --- /dev/null +++ b/src/images/icons/FarCry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Farazi.svg b/src/images/icons/Farazi.svg new file mode 100644 index 00000000..4b2e6e87 --- /dev/null +++ b/src/images/icons/Farazi.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Farmakom.svg b/src/images/icons/Farmakom.svg new file mode 100644 index 00000000..f5d779a1 --- /dev/null +++ b/src/images/icons/Farmakom.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Faslet.svg b/src/images/icons/Faslet.svg new file mode 100644 index 00000000..8324e1ee --- /dev/null +++ b/src/images/icons/Faslet.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fast Bundle.svg b/src/images/icons/Fast Bundle.svg index cff43c59..1c4c7853 100644 --- a/src/images/icons/Fast Bundle.svg +++ b/src/images/icons/Fast Bundle.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/src/images/icons/FastAPI.svg b/src/images/icons/FastAPI.svg new file mode 100644 index 00000000..32179ce2 --- /dev/null +++ b/src/images/icons/FastAPI.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FastPixel.svg b/src/images/icons/FastPixel.svg new file mode 100644 index 00000000..6f3efaef --- /dev/null +++ b/src/images/icons/FastPixel.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FastSimon.svg b/src/images/icons/FastSimon.svg new file mode 100644 index 00000000..2211dc46 --- /dev/null +++ b/src/images/icons/FastSimon.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fatsoma.svg b/src/images/icons/Fatsoma.svg new file mode 100644 index 00000000..b33fe120 --- /dev/null +++ b/src/images/icons/Fatsoma.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Faveo.png b/src/images/icons/Faveo.png deleted file mode 100644 index 8f7698e8..00000000 Binary files a/src/images/icons/Faveo.png and /dev/null differ diff --git a/src/images/icons/Faveo.svg b/src/images/icons/Faveo.svg new file mode 100644 index 00000000..7bc5944a --- /dev/null +++ b/src/images/icons/Faveo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FeatherPanel.svg b/src/images/icons/FeatherPanel.svg new file mode 100644 index 00000000..27567f1e --- /dev/null +++ b/src/images/icons/FeatherPanel.svg @@ -0,0 +1,2029 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FeatherX.svg b/src/images/icons/FeatherX.svg index 85bf72c5..e468f21d 100644 --- a/src/images/icons/FeatherX.svg +++ b/src/images/icons/FeatherX.svg @@ -1,9 +1,305 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FeedMagnet.svg b/src/images/icons/FeedMagnet.svg new file mode 100644 index 00000000..afb4acad --- /dev/null +++ b/src/images/icons/FeedMagnet.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FeedSpring.svg b/src/images/icons/FeedSpring.svg new file mode 100644 index 00000000..4ccd9103 --- /dev/null +++ b/src/images/icons/FeedSpring.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FeedbackAutomatic.svg b/src/images/icons/FeedbackAutomatic.svg new file mode 100644 index 00000000..2ad873be --- /dev/null +++ b/src/images/icons/FeedbackAutomatic.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feedify.svg b/src/images/icons/Feedify.svg new file mode 100644 index 00000000..e888f773 --- /dev/null +++ b/src/images/icons/Feedify.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feedonomics.svg b/src/images/icons/Feedonomics.svg new file mode 100644 index 00000000..4019a47a --- /dev/null +++ b/src/images/icons/Feedonomics.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Felmat.svg b/src/images/icons/Felmat.svg new file mode 100644 index 00000000..96e9d7ab --- /dev/null +++ b/src/images/icons/Felmat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Feroot.svg b/src/images/icons/Feroot.svg new file mode 100644 index 00000000..f7bdda58 --- /dev/null +++ b/src/images/icons/Feroot.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FerretOne.svg b/src/images/icons/FerretOne.svg new file mode 100644 index 00000000..b9dae692 --- /dev/null +++ b/src/images/icons/FerretOne.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ferron.svg b/src/images/icons/Ferron.svg new file mode 100644 index 00000000..079be575 --- /dev/null +++ b/src/images/icons/Ferron.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fever.svg b/src/images/icons/Fever.svg new file mode 100644 index 00000000..eca95c16 --- /dev/null +++ b/src/images/icons/Fever.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FiboSearch.svg b/src/images/icons/FiboSearch.svg new file mode 100644 index 00000000..5e8864fc --- /dev/null +++ b/src/images/icons/FiboSearch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Fider.svg b/src/images/icons/Fider.svg new file mode 100644 index 00000000..834be4de --- /dev/null +++ b/src/images/icons/Fider.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FieldStack.svg b/src/images/icons/FieldStack.svg new file mode 100644 index 00000000..6e07a291 --- /dev/null +++ b/src/images/icons/FieldStack.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fieldd.svg b/src/images/icons/Fieldd.svg new file mode 100644 index 00000000..fa2957ea --- /dev/null +++ b/src/images/icons/Fieldd.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Filament.svg b/src/images/icons/Filament.svg new file mode 100644 index 00000000..34650d53 --- /dev/null +++ b/src/images/icons/Filament.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FileHippo.svg b/src/images/icons/FileHippo.svg new file mode 100644 index 00000000..c105748b --- /dev/null +++ b/src/images/icons/FileHippo.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Filestack.svg b/src/images/icons/Filestack.svg new file mode 100644 index 00000000..7a388907 --- /dev/null +++ b/src/images/icons/Filestack.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/FinConnect.svg b/src/images/icons/FinConnect.svg new file mode 100644 index 00000000..b51750b8 --- /dev/null +++ b/src/images/icons/FinConnect.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Finalsite.svg b/src/images/icons/Finalsite.svg new file mode 100644 index 00000000..51cd927a --- /dev/null +++ b/src/images/icons/Finalsite.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Finalytics.svg b/src/images/icons/Finalytics.svg new file mode 100644 index 00000000..10922f6b --- /dev/null +++ b/src/images/icons/Finalytics.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Findigs.svg b/src/images/icons/Findigs.svg new file mode 100644 index 00000000..f42b6a0b --- /dev/null +++ b/src/images/icons/Findigs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Finsweet.svg b/src/images/icons/Finsweet.svg new file mode 100644 index 00000000..586a38b0 --- /dev/null +++ b/src/images/icons/Finsweet.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Fireflare.svg b/src/images/icons/Fireflare.svg new file mode 100644 index 00000000..e23afa32 --- /dev/null +++ b/src/images/icons/Fireflare.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FireflyReservations.svg b/src/images/icons/FireflyReservations.svg new file mode 100644 index 00000000..e7494b56 --- /dev/null +++ b/src/images/icons/FireflyReservations.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fitizzy.svg b/src/images/icons/Fitizzy.svg new file mode 100644 index 00000000..6d8be8f7 --- /dev/null +++ b/src/images/icons/Fitizzy.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Fitle.svg b/src/images/icons/Fitle.svg new file mode 100644 index 00000000..32114f25 --- /dev/null +++ b/src/images/icons/Fitle.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fitssey.svg b/src/images/icons/Fitssey.svg new file mode 100644 index 00000000..50015256 --- /dev/null +++ b/src/images/icons/Fitssey.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fittingbox.svg b/src/images/icons/Fittingbox.svg new file mode 100644 index 00000000..8c11562e --- /dev/null +++ b/src/images/icons/Fittingbox.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Five9.svg b/src/images/icons/Five9.svg new file mode 100644 index 00000000..fbfa1ab8 --- /dev/null +++ b/src/images/icons/Five9.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Fixer.svg b/src/images/icons/Fixer.svg new file mode 100644 index 00000000..1e9fec38 --- /dev/null +++ b/src/images/icons/Fixer.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flable.svg b/src/images/icons/Flable.svg new file mode 100644 index 00000000..8854e945 --- /dev/null +++ b/src/images/icons/Flable.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flamp.svg b/src/images/icons/Flamp.svg new file mode 100644 index 00000000..734e8c9d --- /dev/null +++ b/src/images/icons/Flamp.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Flashchat.svg b/src/images/icons/Flashchat.svg new file mode 100644 index 00000000..4a749996 --- /dev/null +++ b/src/images/icons/Flashchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fleetee.svg b/src/images/icons/Fleetee.svg new file mode 100644 index 00000000..1d77c174 --- /dev/null +++ b/src/images/icons/Fleetee.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Flexbe.svg b/src/images/icons/Flexbe.svg new file mode 100644 index 00000000..e6f49160 --- /dev/null +++ b/src/images/icons/Flexbe.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlexiFunnels.svg b/src/images/icons/FlexiFunnels.svg new file mode 100644 index 00000000..179e21e8 --- /dev/null +++ b/src/images/icons/FlexiFunnels.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flexmls.svg b/src/images/icons/Flexmls.svg new file mode 100644 index 00000000..f10826e8 --- /dev/null +++ b/src/images/icons/Flexmls.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/FlexyPe.svg b/src/images/icons/FlexyPe.svg new file mode 100644 index 00000000..2ead54d3 --- /dev/null +++ b/src/images/icons/FlexyPe.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlipPay.svg b/src/images/icons/FlipPay.svg new file mode 100644 index 00000000..7212b2fd --- /dev/null +++ b/src/images/icons/FlipPay.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipdish.svg b/src/images/icons/Flipdish.svg new file mode 100644 index 00000000..0cbbb9b4 --- /dev/null +++ b/src/images/icons/Flipdish.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FlippingPro.svg b/src/images/icons/FlippingPro.svg new file mode 100644 index 00000000..fcebd771 --- /dev/null +++ b/src/images/icons/FlippingPro.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipshop.svg b/src/images/icons/Flipshop.svg new file mode 100644 index 00000000..840b9d97 --- /dev/null +++ b/src/images/icons/Flipshop.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flipsite.svg b/src/images/icons/Flipsite.svg new file mode 100644 index 00000000..07ba21f7 --- /dev/null +++ b/src/images/icons/Flipsite.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flipsnack.svg b/src/images/icons/Flipsnack.svg new file mode 100644 index 00000000..3b3f1668 --- /dev/null +++ b/src/images/icons/Flipsnack.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/images/icons/FlockRocket.svg b/src/images/icons/FlockRocket.svg new file mode 100644 index 00000000..dd1b4fe9 --- /dev/null +++ b/src/images/icons/FlockRocket.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flockler.svg b/src/images/icons/Flockler.svg new file mode 100644 index 00000000..2a5cb1ad --- /dev/null +++ b/src/images/icons/Flockler.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flodesk.svg b/src/images/icons/Flodesk.svg new file mode 100644 index 00000000..0dcc300d --- /dev/null +++ b/src/images/icons/Flodesk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Floranext.svg b/src/images/icons/Floranext.svg new file mode 100644 index 00000000..58768f85 --- /dev/null +++ b/src/images/icons/Floranext.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FloristWindow.svg b/src/images/icons/FloristWindow.svg new file mode 100644 index 00000000..9e36479c --- /dev/null +++ b/src/images/icons/FloristWindow.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flot.png b/src/images/icons/Flot.png deleted file mode 100644 index 15f1f6e9..00000000 Binary files a/src/images/icons/Flot.png and /dev/null differ diff --git a/src/images/icons/Flot.svg b/src/images/icons/Flot.svg new file mode 100644 index 00000000..72a532e2 --- /dev/null +++ b/src/images/icons/Flot.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FlowTrack.svg b/src/images/icons/FlowTrack.svg new file mode 100644 index 00000000..e27b2300 --- /dev/null +++ b/src/images/icons/FlowTrack.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FluidFramework.svg b/src/images/icons/FluidFramework.svg new file mode 100644 index 00000000..c301b988 --- /dev/null +++ b/src/images/icons/FluidFramework.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FluidPlayer.svg b/src/images/icons/FluidPlayer.svg new file mode 100644 index 00000000..90f215ed --- /dev/null +++ b/src/images/icons/FluidPlayer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fluro.svg b/src/images/icons/Fluro.svg new file mode 100644 index 00000000..ad417c32 --- /dev/null +++ b/src/images/icons/Fluro.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flurry.svg b/src/images/icons/Flurry.svg new file mode 100644 index 00000000..e62c5696 --- /dev/null +++ b/src/images/icons/Flurry.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flybook.svg b/src/images/icons/Flybook.svg new file mode 100644 index 00000000..90f8e27b --- /dev/null +++ b/src/images/icons/Flybook.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Flyvi.svg b/src/images/icons/Flyvi.svg new file mode 100644 index 00000000..cb837157 --- /dev/null +++ b/src/images/icons/Flyvi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Flyzoo.svg b/src/images/icons/Flyzoo.svg new file mode 100644 index 00000000..f419fdfe --- /dev/null +++ b/src/images/icons/Flyzoo.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fohr.svg b/src/images/icons/Fohr.svg new file mode 100644 index 00000000..92b23f13 --- /dev/null +++ b/src/images/icons/Fohr.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FollowUpBoss.svg b/src/images/icons/FollowUpBoss.svg new file mode 100644 index 00000000..e2b66d2e --- /dev/null +++ b/src/images/icons/FollowUpBoss.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Foratable.svg b/src/images/icons/Foratable.svg new file mode 100644 index 00000000..3c207276 --- /dev/null +++ b/src/images/icons/Foratable.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ForeUP.svg b/src/images/icons/ForeUP.svg new file mode 100644 index 00000000..e4eb3ff9 --- /dev/null +++ b/src/images/icons/ForeUP.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Forento.svg b/src/images/icons/Forento.svg new file mode 100644 index 00000000..8e337816 --- /dev/null +++ b/src/images/icons/Forento.svg @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FormBucket.svg b/src/images/icons/FormBucket.svg new file mode 100644 index 00000000..9b3fc58d --- /dev/null +++ b/src/images/icons/FormBucket.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FormDr.svg b/src/images/icons/FormDr.svg new file mode 100644 index 00000000..5dd80a69 --- /dev/null +++ b/src/images/icons/FormDr.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FormIO.svg b/src/images/icons/FormIO.svg new file mode 100644 index 00000000..9f0f6c30 --- /dev/null +++ b/src/images/icons/FormIO.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/FormTaxi.svg b/src/images/icons/FormTaxi.svg new file mode 100644 index 00000000..6a7c13dc --- /dev/null +++ b/src/images/icons/FormTaxi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/FormWise.svg b/src/images/icons/FormWise.svg new file mode 100644 index 00000000..0ba366a6 --- /dev/null +++ b/src/images/icons/FormWise.svg @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formalize.svg b/src/images/icons/Formalize.svg new file mode 100644 index 00000000..d0a6ca0f --- /dev/null +++ b/src/images/icons/Formalize.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Format.svg b/src/images/icons/Format.svg new file mode 100644 index 00000000..a76f936a --- /dev/null +++ b/src/images/icons/Format.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formcake.svg b/src/images/icons/Formcake.svg new file mode 100644 index 00000000..ba7413cd --- /dev/null +++ b/src/images/icons/Formcake.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formcan.svg b/src/images/icons/Formcan.svg new file mode 100644 index 00000000..c3c05bbf --- /dev/null +++ b/src/images/icons/Formcan.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formester.svg b/src/images/icons/Formester.svg new file mode 100644 index 00000000..5788e024 --- /dev/null +++ b/src/images/icons/Formester.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formrun.svg b/src/images/icons/Formrun.svg new file mode 100644 index 00000000..2436b0f8 --- /dev/null +++ b/src/images/icons/Formrun.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Formsite.svg b/src/images/icons/Formsite.svg new file mode 100644 index 00000000..7cbdd2f8 --- /dev/null +++ b/src/images/icons/Formsite.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formsort.svg b/src/images/icons/Formsort.svg new file mode 100644 index 00000000..ac5032a2 --- /dev/null +++ b/src/images/icons/Formsort.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formstone.svg b/src/images/icons/Formstone.svg new file mode 100644 index 00000000..66443912 --- /dev/null +++ b/src/images/icons/Formstone.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Formtoro.svg b/src/images/icons/Formtoro.svg new file mode 100644 index 00000000..ccf88184 --- /dev/null +++ b/src/images/icons/Formtoro.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Forsant.svg b/src/images/icons/Forsant.svg new file mode 100644 index 00000000..754f37ab --- /dev/null +++ b/src/images/icons/Forsant.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Forumbee.svg b/src/images/icons/Forumbee.svg new file mode 100644 index 00000000..fb8b58fc --- /dev/null +++ b/src/images/icons/Forumbee.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FramerMotion.svg b/src/images/icons/FramerMotion.svg new file mode 100644 index 00000000..bbf54957 --- /dev/null +++ b/src/images/icons/FramerMotion.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Framework7.svg b/src/images/icons/Framework7.svg new file mode 100644 index 00000000..f2a13592 --- /dev/null +++ b/src/images/icons/Framework7.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FraudBlocker.svg b/src/images/icons/FraudBlocker.svg new file mode 100644 index 00000000..37639aaf --- /dev/null +++ b/src/images/icons/FraudBlocker.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frederick.svg b/src/images/icons/Frederick.svg new file mode 100644 index 00000000..9bcca3f2 --- /dev/null +++ b/src/images/icons/Frederick.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/FreedomFarmers.svg b/src/images/icons/FreedomFarmers.svg new file mode 100644 index 00000000..cb955817 --- /dev/null +++ b/src/images/icons/FreedomFarmers.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FreedomKit.svg b/src/images/icons/FreedomKit.svg new file mode 100644 index 00000000..79fdd44a --- /dev/null +++ b/src/images/icons/FreedomKit.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Freemius.svg b/src/images/icons/Freemius.svg new file mode 100644 index 00000000..1327b717 --- /dev/null +++ b/src/images/icons/Freemius.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FreshRelevance.svg b/src/images/icons/FreshRelevance.svg new file mode 100644 index 00000000..34ab9255 --- /dev/null +++ b/src/images/icons/FreshRelevance.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fresho.svg b/src/images/icons/Fresho.svg new file mode 100644 index 00000000..6c53b87d --- /dev/null +++ b/src/images/icons/Fresho.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Friendly.svg b/src/images/icons/Friendly.svg new file mode 100644 index 00000000..e2b86fe6 --- /dev/null +++ b/src/images/icons/Friendly.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frill.svg b/src/images/icons/Frill.svg new file mode 100644 index 00000000..4a48e090 --- /dev/null +++ b/src/images/icons/Frill.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frisbie.svg b/src/images/icons/Frisbie.svg new file mode 100644 index 00000000..2bd72a2c --- /dev/null +++ b/src/images/icons/Frisbie.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Froged.svg b/src/images/icons/Froged.svg new file mode 100644 index 00000000..60d22ec6 --- /dev/null +++ b/src/images/icons/Froged.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FrontAI.svg b/src/images/icons/FrontAI.svg new file mode 100644 index 00000000..13a53a16 --- /dev/null +++ b/src/images/icons/FrontAI.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/FrontStream.svg b/src/images/icons/FrontStream.svg new file mode 100644 index 00000000..4dc1f60e --- /dev/null +++ b/src/images/icons/FrontStream.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Frontlead.svg b/src/images/icons/Frontlead.svg new file mode 100644 index 00000000..642067ba --- /dev/null +++ b/src/images/icons/Frontlead.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Froonze.svg b/src/images/icons/Froonze.svg new file mode 100644 index 00000000..8bfe8154 --- /dev/null +++ b/src/images/icons/Froonze.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Fueled.svg b/src/images/icons/Fueled.svg new file mode 100644 index 00000000..7c4abd98 --- /dev/null +++ b/src/images/icons/Fueled.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FullOnSport.svg b/src/images/icons/FullOnSport.svg new file mode 100644 index 00000000..15a70ccf --- /dev/null +++ b/src/images/icons/FullOnSport.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FullSeats.svg b/src/images/icons/FullSeats.svg new file mode 100644 index 00000000..60400c84 --- /dev/null +++ b/src/images/icons/FullSeats.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/FullSlate.svg b/src/images/icons/FullSlate.svg new file mode 100644 index 00000000..420d02f0 --- /dev/null +++ b/src/images/icons/FullSlate.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fullpath.svg b/src/images/icons/Fullpath.svg new file mode 100644 index 00000000..1141c851 --- /dev/null +++ b/src/images/icons/Fullpath.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/FunbutlerBooking.svg b/src/images/icons/FunbutlerBooking.svg new file mode 100644 index 00000000..0f00f49a --- /dev/null +++ b/src/images/icons/FunbutlerBooking.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/FunnelScience.svg b/src/images/icons/FunnelScience.svg new file mode 100644 index 00000000..accdff15 --- /dev/null +++ b/src/images/icons/FunnelScience.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/FunnelsOfCourse.svg b/src/images/icons/FunnelsOfCourse.svg new file mode 100644 index 00000000..0d8739e5 --- /dev/null +++ b/src/images/icons/FunnelsOfCourse.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Funnelytics.svg b/src/images/icons/Funnelytics.svg new file mode 100644 index 00000000..f0081436 --- /dev/null +++ b/src/images/icons/Funnelytics.svg @@ -0,0 +1,18 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Furo.svg b/src/images/icons/Furo.svg new file mode 100644 index 00000000..49c8c38d --- /dev/null +++ b/src/images/icons/Furo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Futy.svg b/src/images/icons/Futy.svg new file mode 100644 index 00000000..0952d9b4 --- /dev/null +++ b/src/images/icons/Futy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Fuzey.svg b/src/images/icons/Fuzey.svg new file mode 100644 index 00000000..2855f10b --- /dev/null +++ b/src/images/icons/Fuzey.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Fygaro.svg b/src/images/icons/Fygaro.svg new file mode 100644 index 00000000..65672f48 --- /dev/null +++ b/src/images/icons/Fygaro.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GBooking.svg b/src/images/icons/GBooking.svg new file mode 100644 index 00000000..b15f67ac --- /dev/null +++ b/src/images/icons/GBooking.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GDPRCookieConsent.svg b/src/images/icons/GDPRCookieConsent.svg new file mode 100644 index 00000000..901cdb21 --- /dev/null +++ b/src/images/icons/GDPRCookieConsent.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/GOb2b.svg b/src/images/icons/GOb2b.svg new file mode 100644 index 00000000..6be6f4ed --- /dev/null +++ b/src/images/icons/GOb2b.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GOrendezvous.svg b/src/images/icons/GOrendezvous.svg new file mode 100644 index 00000000..e462734d --- /dev/null +++ b/src/images/icons/GOrendezvous.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GReminders.svg b/src/images/icons/GReminders.svg new file mode 100644 index 00000000..aa1ad5d8 --- /dev/null +++ b/src/images/icons/GReminders.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gamma.svg b/src/images/icons/Gamma.svg new file mode 100644 index 00000000..37c2bf17 --- /dev/null +++ b/src/images/icons/Gamma.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gamooga.svg b/src/images/icons/Gamooga.svg new file mode 100644 index 00000000..31b30c88 --- /dev/null +++ b/src/images/icons/Gamooga.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/GaniPara.svg b/src/images/icons/GaniPara.svg new file mode 100644 index 00000000..4092eee7 --- /dev/null +++ b/src/images/icons/GaniPara.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gannett.svg b/src/images/icons/Gannett.svg new file mode 100644 index 00000000..1ace4a4e --- /dev/null +++ b/src/images/icons/Gannett.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gastronaut.svg b/src/images/icons/Gastronaut.svg new file mode 100644 index 00000000..deb715c5 --- /dev/null +++ b/src/images/icons/Gastronaut.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Geggio.svg b/src/images/icons/Geggio.svg new file mode 100644 index 00000000..2b914c07 --- /dev/null +++ b/src/images/icons/Geggio.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gekosale.svg b/src/images/icons/Gekosale.svg new file mode 100644 index 00000000..859071e1 --- /dev/null +++ b/src/images/icons/Gekosale.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gelato.svg b/src/images/icons/Gelato.svg new file mode 100644 index 00000000..3ad02e91 --- /dev/null +++ b/src/images/icons/Gelato.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gemius.png b/src/images/icons/Gemius.png deleted file mode 100644 index 80fc2341..00000000 Binary files a/src/images/icons/Gemius.png and /dev/null differ diff --git a/src/images/icons/Gemius.svg b/src/images/icons/Gemius.svg new file mode 100644 index 00000000..7cfad045 --- /dev/null +++ b/src/images/icons/Gemius.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Genially.svg b/src/images/icons/Genially.svg new file mode 100644 index 00000000..61236dc2 --- /dev/null +++ b/src/images/icons/Genially.svg @@ -0,0 +1,297 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GenieeChat.svg b/src/images/icons/GenieeChat.svg new file mode 100644 index 00000000..569d98ee --- /dev/null +++ b/src/images/icons/GenieeChat.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Genoo.svg b/src/images/icons/Genoo.svg new file mode 100644 index 00000000..d05b9d09 --- /dev/null +++ b/src/images/icons/Genoo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Geoapify.svg b/src/images/icons/Geoapify.svg new file mode 100644 index 00000000..2ac1ce37 --- /dev/null +++ b/src/images/icons/Geoapify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Geonetric.svg b/src/images/icons/Geonetric.svg new file mode 100644 index 00000000..6165fc21 --- /dev/null +++ b/src/images/icons/Geonetric.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gesio.svg b/src/images/icons/Gesio.svg new file mode 100644 index 00000000..f04f1e3f --- /dev/null +++ b/src/images/icons/Gesio.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Gestim.svg b/src/images/icons/Gestim.svg new file mode 100644 index 00000000..ab0f9e77 --- /dev/null +++ b/src/images/icons/Gestim.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/GetAuto.svg b/src/images/icons/GetAuto.svg new file mode 100644 index 00000000..dd3ec705 --- /dev/null +++ b/src/images/icons/GetAuto.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GetCommerce.svg b/src/images/icons/GetCommerce.svg new file mode 100644 index 00000000..657d6d2e --- /dev/null +++ b/src/images/icons/GetCommerce.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GetReview.svg b/src/images/icons/GetReview.svg new file mode 100644 index 00000000..c190b82f --- /dev/null +++ b/src/images/icons/GetReview.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/GetSiimple.svg b/src/images/icons/GetSiimple.svg new file mode 100644 index 00000000..c04868e0 --- /dev/null +++ b/src/images/icons/GetSiimple.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Getback.svg b/src/images/icons/Getback.svg new file mode 100644 index 00000000..4d059460 --- /dev/null +++ b/src/images/icons/Getback.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Getgabs.svg b/src/images/icons/Getgabs.svg new file mode 100644 index 00000000..b8112a5c --- /dev/null +++ b/src/images/icons/Getgabs.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gevme.svg b/src/images/icons/Gevme.svg new file mode 100644 index 00000000..c0ab1b8d --- /dev/null +++ b/src/images/icons/Gevme.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Giosg.svg b/src/images/icons/Giosg.svg new file mode 100644 index 00000000..20d18456 --- /dev/null +++ b/src/images/icons/Giosg.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gista.svg b/src/images/icons/Gista.svg new file mode 100644 index 00000000..21105849 --- /dev/null +++ b/src/images/icons/Gista.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GitLab.svg b/src/images/icons/GitLab.svg index 4e29ac86..4b8248af 100644 --- a/src/images/icons/GitLab.svg +++ b/src/images/icons/GitLab.svg @@ -1 +1,13 @@ -logo \ No newline at end of file + + + + + + + + + + + + + diff --git a/src/images/icons/Gitter.svg b/src/images/icons/Gitter.svg new file mode 100644 index 00000000..7f332a8f --- /dev/null +++ b/src/images/icons/Gitter.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Giveffect.svg b/src/images/icons/Giveffect.svg new file mode 100644 index 00000000..c97726d7 --- /dev/null +++ b/src/images/icons/Giveffect.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Glami.svg b/src/images/icons/Glami.svg new file mode 100644 index 00000000..71d02624 --- /dev/null +++ b/src/images/icons/Glami.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GlampManager.svg b/src/images/icons/GlampManager.svg new file mode 100644 index 00000000..478f7262 --- /dev/null +++ b/src/images/icons/GlampManager.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Glance.svg b/src/images/icons/Glance.svg new file mode 100644 index 00000000..06d39ca7 --- /dev/null +++ b/src/images/icons/Glance.svg @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlitchTip.svg b/src/images/icons/GlitchTip.svg new file mode 100644 index 00000000..8f6247d4 --- /dev/null +++ b/src/images/icons/GlitchTip.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlobRes.svg b/src/images/icons/GlobRes.svg new file mode 100644 index 00000000..b5efa618 --- /dev/null +++ b/src/images/icons/GlobRes.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GlobalProtect.svg b/src/images/icons/GlobalProtect.svg new file mode 100644 index 00000000..d0497a08 --- /dev/null +++ b/src/images/icons/GlobalProtect.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Glow.svg b/src/images/icons/Glow.svg new file mode 100644 index 00000000..3b72c502 --- /dev/null +++ b/src/images/icons/Glow.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoSquared.svg b/src/images/icons/GoSquared.svg new file mode 100644 index 00000000..a333b9c9 --- /dev/null +++ b/src/images/icons/GoSquared.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoVedia.svg b/src/images/icons/GoVedia.svg new file mode 100644 index 00000000..55a5a0d7 --- /dev/null +++ b/src/images/icons/GoVedia.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GoatSystems.svg b/src/images/icons/GoatSystems.svg new file mode 100644 index 00000000..bc20f2f7 --- /dev/null +++ b/src/images/icons/GoatSystems.svg @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/GoldenVolunteer.svg b/src/images/icons/GoldenVolunteer.svg new file mode 100644 index 00000000..644dc211 --- /dev/null +++ b/src/images/icons/GoldenVolunteer.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gong.svg b/src/images/icons/Gong.svg new file mode 100644 index 00000000..9865e795 --- /dev/null +++ b/src/images/icons/Gong.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/GoodAPI.svg b/src/images/icons/GoodAPI.svg new file mode 100644 index 00000000..a80b8555 --- /dev/null +++ b/src/images/icons/GoodAPI.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodApps.svg b/src/images/icons/GoodApps.svg new file mode 100644 index 00000000..959089db --- /dev/null +++ b/src/images/icons/GoodApps.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodEshop.svg b/src/images/icons/GoodEshop.svg new file mode 100644 index 00000000..4f8f114b --- /dev/null +++ b/src/images/icons/GoodEshop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/GoodReview.svg b/src/images/icons/GoodReview.svg new file mode 100644 index 00000000..bfc880af --- /dev/null +++ b/src/images/icons/GoodReview.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goodbits.svg b/src/images/icons/Goodbits.svg new file mode 100644 index 00000000..1f584127 --- /dev/null +++ b/src/images/icons/Goodbits.svg @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goodsearch.svg b/src/images/icons/Goodsearch.svg new file mode 100644 index 00000000..713b8947 --- /dev/null +++ b/src/images/icons/Goodsearch.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Goope.svg b/src/images/icons/Goope.svg new file mode 100644 index 00000000..47b7e640 --- /dev/null +++ b/src/images/icons/Goope.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GorillaDash.svg b/src/images/icons/GorillaDash.svg new file mode 100644 index 00000000..07338557 --- /dev/null +++ b/src/images/icons/GorillaDash.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Goshly.svg b/src/images/icons/Goshly.svg new file mode 100644 index 00000000..1506fbe1 --- /dev/null +++ b/src/images/icons/Goshly.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GrainData.svg b/src/images/icons/GrainData.svg new file mode 100644 index 00000000..4e610032 --- /dev/null +++ b/src/images/icons/GrainData.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GraphicsFlow.svg b/src/images/icons/GraphicsFlow.svg new file mode 100644 index 00000000..269dc1fa --- /dev/null +++ b/src/images/icons/GraphicsFlow.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Graphly.svg b/src/images/icons/Graphly.svg new file mode 100644 index 00000000..71e5190d --- /dev/null +++ b/src/images/icons/Graphly.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Graphy.svg b/src/images/icons/Graphy.svg new file mode 100644 index 00000000..0455ad36 --- /dev/null +++ b/src/images/icons/Graphy.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Grappos.svg b/src/images/icons/Grappos.svg new file mode 100644 index 00000000..2f1ab659 --- /dev/null +++ b/src/images/icons/Grappos.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gravito.svg b/src/images/icons/Gravito.svg new file mode 100644 index 00000000..272df85d --- /dev/null +++ b/src/images/icons/Gravito.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gravity.svg b/src/images/icons/Gravity.svg new file mode 100644 index 00000000..65ede83a --- /dev/null +++ b/src/images/icons/Gravity.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GreenRope.svg b/src/images/icons/GreenRope.svg new file mode 100644 index 00000000..c6794316 --- /dev/null +++ b/src/images/icons/GreenRope.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GreydSuite.svg b/src/images/icons/GreydSuite.svg new file mode 100644 index 00000000..83076bb4 --- /dev/null +++ b/src/images/icons/GreydSuite.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Grivy.svg b/src/images/icons/Grivy.svg new file mode 100644 index 00000000..8906010c --- /dev/null +++ b/src/images/icons/Grivy.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GrooveCM.svg b/src/images/icons/GrooveCM.svg new file mode 100644 index 00000000..2a64b8f4 --- /dev/null +++ b/src/images/icons/GrooveCM.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GrooveKart.svg b/src/images/icons/GrooveKart.svg new file mode 100644 index 00000000..608452ba --- /dev/null +++ b/src/images/icons/GrooveKart.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/GrowSurf.svg b/src/images/icons/GrowSurf.svg new file mode 100644 index 00000000..00582282 --- /dev/null +++ b/src/images/icons/GrowSurf.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Growcer.svg b/src/images/icons/Growcer.svg new file mode 100644 index 00000000..8224ae44 --- /dev/null +++ b/src/images/icons/Growcer.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GrowingGood.svg b/src/images/icons/GrowingGood.svg new file mode 100644 index 00000000..9c99a207 --- /dev/null +++ b/src/images/icons/GrowingGood.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/GuardFlame.svg b/src/images/icons/GuardFlame.svg new file mode 100644 index 00000000..97211dff --- /dev/null +++ b/src/images/icons/GuardFlame.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/GuestSuite.svg b/src/images/icons/GuestSuite.svg new file mode 100644 index 00000000..455b5410 --- /dev/null +++ b/src/images/icons/GuestSuite.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Guesty.svg b/src/images/icons/Guesty.svg new file mode 100644 index 00000000..deb27c01 --- /dev/null +++ b/src/images/icons/Guesty.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/GuildQuality.svg b/src/images/icons/GuildQuality.svg new file mode 100644 index 00000000..f588c02a --- /dev/null +++ b/src/images/icons/GuildQuality.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Guppy.svg b/src/images/icons/Guppy.svg new file mode 100644 index 00000000..a7793de1 --- /dev/null +++ b/src/images/icons/Guppy.svg @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Gurucan.svg b/src/images/icons/Gurucan.svg new file mode 100644 index 00000000..d66137c7 --- /dev/null +++ b/src/images/icons/Gurucan.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Guuru.svg b/src/images/icons/Guuru.svg new file mode 100644 index 00000000..49d4282e --- /dev/null +++ b/src/images/icons/Guuru.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Haku.svg b/src/images/icons/Haku.svg new file mode 100644 index 00000000..eebd8bfc --- /dev/null +++ b/src/images/icons/Haku.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Haloscan.svg b/src/images/icons/Haloscan.svg new file mode 100644 index 00000000..a174cf80 --- /dev/null +++ b/src/images/icons/Haloscan.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Hanko.svg b/src/images/icons/Hanko.svg new file mode 100644 index 00000000..bbc82788 --- /dev/null +++ b/src/images/icons/Hanko.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hapana.svg b/src/images/icons/Hapana.svg new file mode 100644 index 00000000..8ed95042 --- /dev/null +++ b/src/images/icons/Hapana.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HappySync.svg b/src/images/icons/HappySync.svg new file mode 100644 index 00000000..ae2711d9 --- /dev/null +++ b/src/images/icons/HappySync.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HappyTalk.svg b/src/images/icons/HappyTalk.svg new file mode 100644 index 00000000..94743283 --- /dev/null +++ b/src/images/icons/HappyTalk.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Harafunnel.svg b/src/images/icons/Harafunnel.svg new file mode 100644 index 00000000..f8049c8b --- /dev/null +++ b/src/images/icons/Harafunnel.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HarborByte.svg b/src/images/icons/HarborByte.svg new file mode 100644 index 00000000..c215d68b --- /dev/null +++ b/src/images/icons/HarborByte.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Harness.svg b/src/images/icons/Harness.svg new file mode 100644 index 00000000..e1e6527c --- /dev/null +++ b/src/images/icons/Harness.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HawkSearch.svg b/src/images/icons/HawkSearch.svg new file mode 100644 index 00000000..d317a10f --- /dev/null +++ b/src/images/icons/HawkSearch.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Headway.svg b/src/images/icons/Headway.svg new file mode 100644 index 00000000..cf48f344 --- /dev/null +++ b/src/images/icons/Headway.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hearth.svg b/src/images/icons/Hearth.svg new file mode 100644 index 00000000..300e3c1f --- /dev/null +++ b/src/images/icons/Hearth.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Heeet.svg b/src/images/icons/Heeet.svg new file mode 100644 index 00000000..20ca5181 --- /dev/null +++ b/src/images/icons/Heeet.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/HeightsPlatform.svg b/src/images/icons/HeightsPlatform.svg new file mode 100644 index 00000000..94bcae35 --- /dev/null +++ b/src/images/icons/HeightsPlatform.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HelixPay.svg b/src/images/icons/HelixPay.svg new file mode 100644 index 00000000..ccc4721f --- /dev/null +++ b/src/images/icons/HelixPay.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Help.svg b/src/images/icons/Help.svg new file mode 100644 index 00000000..d4b4547b --- /dev/null +++ b/src/images/icons/Help.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HelpCrunch.svg b/src/images/icons/HelpCrunch.svg new file mode 100644 index 00000000..2a8b2a15 --- /dev/null +++ b/src/images/icons/HelpCrunch.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HelpOnClick.svg b/src/images/icons/HelpOnClick.svg new file mode 100644 index 00000000..1bbf5710 --- /dev/null +++ b/src/images/icons/HelpOnClick.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Helpwise.svg b/src/images/icons/Helpwise.svg new file mode 100644 index 00000000..0178f6a7 --- /dev/null +++ b/src/images/icons/Helpwise.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HeroUI.svg b/src/images/icons/HeroUI.svg new file mode 100644 index 00000000..7fe267ec --- /dev/null +++ b/src/images/icons/HeroUI.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hexia.svg b/src/images/icons/Hexia.svg new file mode 100644 index 00000000..19658b69 --- /dev/null +++ b/src/images/icons/Hexia.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HeyLight.svg b/src/images/icons/HeyLight.svg new file mode 100644 index 00000000..d14a7144 --- /dev/null +++ b/src/images/icons/HeyLight.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HeyPongo.svg b/src/images/icons/HeyPongo.svg new file mode 100644 index 00000000..156fdd9e --- /dev/null +++ b/src/images/icons/HeyPongo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/HiBob.svg b/src/images/icons/HiBob.svg new file mode 100644 index 00000000..175abc9d --- /dev/null +++ b/src/images/icons/HiBob.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hibu.svg b/src/images/icons/Hibu.svg new file mode 100644 index 00000000..a8c145b0 --- /dev/null +++ b/src/images/icons/Hibu.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HigherMe.svg b/src/images/icons/HigherMe.svg new file mode 100644 index 00000000..0ae24433 --- /dev/null +++ b/src/images/icons/HigherMe.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HikaShop.svg b/src/images/icons/HikaShop.svg new file mode 100644 index 00000000..d3e445a6 --- /dev/null +++ b/src/images/icons/HikaShop.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HikariCS.svg b/src/images/icons/HikariCS.svg new file mode 100644 index 00000000..e12c2690 --- /dev/null +++ b/src/images/icons/HikariCS.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HitMall.svg b/src/images/icons/HitMall.svg new file mode 100644 index 00000000..f4588be4 --- /dev/null +++ b/src/images/icons/HitMall.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hoiio.svg b/src/images/icons/Hoiio.svg new file mode 100644 index 00000000..44975035 --- /dev/null +++ b/src/images/icons/Hoiio.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HoldMyTicket.svg b/src/images/icons/HoldMyTicket.svg new file mode 100644 index 00000000..6fc66440 --- /dev/null +++ b/src/images/icons/HoldMyTicket.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HolduixCMS.svg b/src/images/icons/HolduixCMS.svg new file mode 100644 index 00000000..2b2a61c0 --- /dev/null +++ b/src/images/icons/HolduixCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/HollerBox.svg b/src/images/icons/HollerBox.svg new file mode 100644 index 00000000..e3c891aa --- /dev/null +++ b/src/images/icons/HollerBox.svg @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homebot.svg b/src/images/icons/Homebot.svg new file mode 100644 index 00000000..492b27f4 --- /dev/null +++ b/src/images/icons/Homebot.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homefiniti.svg b/src/images/icons/Homefiniti.svg new file mode 100644 index 00000000..d780bcea --- /dev/null +++ b/src/images/icons/Homefiniti.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Homerun.svg b/src/images/icons/Homerun.svg new file mode 100644 index 00000000..03f54d9b --- /dev/null +++ b/src/images/icons/Homerun.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hoory.svg b/src/images/icons/Hoory.svg new file mode 100644 index 00000000..a18609c6 --- /dev/null +++ b/src/images/icons/Hoory.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Hoowla.svg b/src/images/icons/Hoowla.svg new file mode 100644 index 00000000..5cbbe595 --- /dev/null +++ b/src/images/icons/Hoowla.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HotDoc.svg b/src/images/icons/HotDoc.svg new file mode 100644 index 00000000..b6c9b724 --- /dev/null +++ b/src/images/icons/HotDoc.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Hotbot.svg b/src/images/icons/Hotbot.svg new file mode 100644 index 00000000..e97989d1 --- /dev/null +++ b/src/images/icons/Hotbot.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HotelPropeller.svg b/src/images/icons/HotelPropeller.svg new file mode 100644 index 00000000..9047fe3c --- /dev/null +++ b/src/images/icons/HotelPropeller.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HousecallPro.svg b/src/images/icons/HousecallPro.svg new file mode 100644 index 00000000..8d0492c9 --- /dev/null +++ b/src/images/icons/HousecallPro.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HubPlatform.svg b/src/images/icons/HubPlatform.svg new file mode 100644 index 00000000..b9bf034a --- /dev/null +++ b/src/images/icons/HubPlatform.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hubilo.svg b/src/images/icons/Hubilo.svg new file mode 100644 index 00000000..d1a3c42a --- /dev/null +++ b/src/images/icons/Hubilo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hubtiger.svg b/src/images/icons/Hubtiger.svg new file mode 100644 index 00000000..a4c7550f --- /dev/null +++ b/src/images/icons/Hubtiger.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Huggy.svg b/src/images/icons/Huggy.svg new file mode 100644 index 00000000..0f5c3c49 --- /dev/null +++ b/src/images/icons/Huggy.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hull.svg b/src/images/icons/Hull.svg new file mode 100644 index 00000000..6063b0d2 --- /dev/null +++ b/src/images/icons/Hull.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/HumCommerce.svg b/src/images/icons/HumCommerce.svg new file mode 100644 index 00000000..ae382acc --- /dev/null +++ b/src/images/icons/HumCommerce.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HumHub.svg b/src/images/icons/HumHub.svg new file mode 100644 index 00000000..8f59c1d4 --- /dev/null +++ b/src/images/icons/HumHub.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Hummerce.svg b/src/images/icons/Hummerce.svg new file mode 100644 index 00000000..b842f820 --- /dev/null +++ b/src/images/icons/Hummerce.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/HypeLab.svg b/src/images/icons/HypeLab.svg new file mode 100644 index 00000000..ba17da55 --- /dev/null +++ b/src/images/icons/HypeLab.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Hypercloudhost.svg b/src/images/icons/Hypercloudhost.svg new file mode 100644 index 00000000..9e187cc9 --- /dev/null +++ b/src/images/icons/Hypercloudhost.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Hyperia.svg b/src/images/icons/Hyperia.svg new file mode 100644 index 00000000..228f8325 --- /dev/null +++ b/src/images/icons/Hyperia.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Hyperlane.svg b/src/images/icons/Hyperlane.svg new file mode 100644 index 00000000..a4df9b5d --- /dev/null +++ b/src/images/icons/Hyperlane.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/IBM.svg b/src/images/icons/IBM.svg index 7bf427bc..791e5371 100644 --- a/src/images/icons/IBM.svg +++ b/src/images/icons/IBM.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Iconosquare.svg b/src/images/icons/Iconosquare.svg new file mode 100644 index 00000000..2bb55dd8 --- /dev/null +++ b/src/images/icons/Iconosquare.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Icordis CMS.svg b/src/images/icons/Icordis CMS.svg new file mode 100644 index 00000000..e08356c2 --- /dev/null +++ b/src/images/icons/Icordis CMS.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/IdentixwebiCart.svg b/src/images/icons/IdentixwebiCart.svg new file mode 100644 index 00000000..4786c75c --- /dev/null +++ b/src/images/icons/IdentixwebiCart.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ideta.svg b/src/images/icons/Ideta.svg new file mode 100644 index 00000000..d64dabfb --- /dev/null +++ b/src/images/icons/Ideta.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ifdo.svg b/src/images/icons/Ifdo.svg new file mode 100644 index 00000000..7dc13a3e --- /dev/null +++ b/src/images/icons/Ifdo.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Iframely.svg b/src/images/icons/Iframely.svg new file mode 100644 index 00000000..4f37d850 --- /dev/null +++ b/src/images/icons/Iframely.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ikeono.svg b/src/images/icons/Ikeono.svg new file mode 100644 index 00000000..99bb8f5b --- /dev/null +++ b/src/images/icons/Ikeono.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ilias.svg b/src/images/icons/Ilias.svg new file mode 100644 index 00000000..44400f7b --- /dev/null +++ b/src/images/icons/Ilias.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ImageKit.svg b/src/images/icons/ImageKit.svg new file mode 100644 index 00000000..bec30284 --- /dev/null +++ b/src/images/icons/ImageKit.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Imba.svg b/src/images/icons/Imba.svg new file mode 100644 index 00000000..31b018f8 --- /dev/null +++ b/src/images/icons/Imba.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Imbox.svg b/src/images/icons/Imbox.svg new file mode 100644 index 00000000..7dbbe632 --- /dev/null +++ b/src/images/icons/Imbox.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Immerss.svg b/src/images/icons/Immerss.svg new file mode 100644 index 00000000..982857c7 --- /dev/null +++ b/src/images/icons/Immerss.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Impresee.svg b/src/images/icons/Impresee.svg new file mode 100644 index 00000000..72108ffa --- /dev/null +++ b/src/images/icons/Impresee.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Impressure.svg b/src/images/icons/Impressure.svg new file mode 100644 index 00000000..50bba640 --- /dev/null +++ b/src/images/icons/Impressure.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InEvent.svg b/src/images/icons/InEvent.svg new file mode 100644 index 00000000..d1934224 --- /dev/null +++ b/src/images/icons/InEvent.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Indeed.svg b/src/images/icons/Indeed.svg new file mode 100644 index 00000000..9e5e9a2d --- /dev/null +++ b/src/images/icons/Indeed.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Indexic.svg b/src/images/icons/Indexic.svg new file mode 100644 index 00000000..9992033a --- /dev/null +++ b/src/images/icons/Indexic.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Infinity.svg b/src/images/icons/Infinity.svg new file mode 100644 index 00000000..0a943533 --- /dev/null +++ b/src/images/icons/Infinity.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Influenster.svg b/src/images/icons/Influenster.svg new file mode 100644 index 00000000..cf79277c --- /dev/null +++ b/src/images/icons/Influenster.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Infor.svg b/src/images/icons/Infor.svg new file mode 100644 index 00000000..9a1600ec --- /dev/null +++ b/src/images/icons/Infor.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/InformaMarkets.svg b/src/images/icons/InformaMarkets.svg new file mode 100644 index 00000000..dd11b83d --- /dev/null +++ b/src/images/icons/InformaMarkets.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Informizely.svg b/src/images/icons/Informizely.svg new file mode 100644 index 00000000..882d1afb --- /dev/null +++ b/src/images/icons/Informizely.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InnoShop.svg b/src/images/icons/InnoShop.svg new file mode 100644 index 00000000..3ca13677 --- /dev/null +++ b/src/images/icons/InnoShop.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Innovorder.svg b/src/images/icons/Innovorder.svg new file mode 100644 index 00000000..d47d979e --- /dev/null +++ b/src/images/icons/Innovorder.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Inplayer.svg b/src/images/icons/Inplayer.svg new file mode 100644 index 00000000..40d291d4 --- /dev/null +++ b/src/images/icons/Inplayer.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inputflow.svg b/src/images/icons/Inputflow.svg new file mode 100644 index 00000000..b7eb1385 --- /dev/null +++ b/src/images/icons/Inputflow.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inso.svg b/src/images/icons/Inso.svg new file mode 100644 index 00000000..81373efe --- /dev/null +++ b/src/images/icons/Inso.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inspectlet.svg b/src/images/icons/Inspectlet.svg new file mode 100644 index 00000000..ace87eeb --- /dev/null +++ b/src/images/icons/Inspectlet.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Integrately.svg b/src/images/icons/Integrately.svg new file mode 100644 index 00000000..bf179428 --- /dev/null +++ b/src/images/icons/Integrately.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/InterRed.svg b/src/images/icons/InterRed.svg new file mode 100644 index 00000000..ec39430e --- /dev/null +++ b/src/images/icons/InterRed.svg @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Interago.svg b/src/images/icons/Interago.svg new file mode 100644 index 00000000..42c8026c --- /dev/null +++ b/src/images/icons/Interago.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Intervo.svg b/src/images/icons/Intervo.svg new file mode 100644 index 00000000..8cd81051 --- /dev/null +++ b/src/images/icons/Intervo.svg @@ -0,0 +1,1095 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Intiaro.svg b/src/images/icons/Intiaro.svg new file mode 100644 index 00000000..818048f9 --- /dev/null +++ b/src/images/icons/Intiaro.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Intice.svg b/src/images/icons/Intice.svg new file mode 100644 index 00000000..9e5fb8db --- /dev/null +++ b/src/images/icons/Intice.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Inveterate.svg b/src/images/icons/Inveterate.svg new file mode 100644 index 00000000..1a0cd502 --- /dev/null +++ b/src/images/icons/Inveterate.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/InvisionCommunity.svg b/src/images/icons/InvisionCommunity.svg new file mode 100644 index 00000000..08a1ed02 --- /dev/null +++ b/src/images/icons/InvisionCommunity.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Iress.svg b/src/images/icons/Iress.svg new file mode 100644 index 00000000..53488ae3 --- /dev/null +++ b/src/images/icons/Iress.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Italiaonline.svg b/src/images/icons/Italiaonline.svg new file mode 100644 index 00000000..280def26 --- /dev/null +++ b/src/images/icons/Italiaonline.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Iteras.svg b/src/images/icons/Iteras.svg new file mode 100644 index 00000000..a955ea8d --- /dev/null +++ b/src/images/icons/Iteras.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Itoris.svg b/src/images/icons/Itoris.svg new file mode 100644 index 00000000..63160bcc --- /dev/null +++ b/src/images/icons/Itoris.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/JBoard.svg b/src/images/icons/JBoard.svg new file mode 100644 index 00000000..0ba3e3e2 --- /dev/null +++ b/src/images/icons/JBoard.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jabmo.svg b/src/images/icons/Jabmo.svg new file mode 100644 index 00000000..6a0e86ad --- /dev/null +++ b/src/images/icons/Jabmo.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jacklist.svg b/src/images/icons/Jacklist.svg new file mode 100644 index 00000000..af55a5f2 --- /dev/null +++ b/src/images/icons/Jacklist.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JaduCentralContent.svg b/src/images/icons/JaduCentralContent.svg new file mode 100644 index 00000000..caaf0348 --- /dev/null +++ b/src/images/icons/JaduCentralContent.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JamFeed.svg b/src/images/icons/JamFeed.svg new file mode 100644 index 00000000..6539ae95 --- /dev/null +++ b/src/images/icons/JamFeed.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JarvisAnalytics.svg b/src/images/icons/JarvisAnalytics.svg new file mode 100644 index 00000000..e84b74a3 --- /dev/null +++ b/src/images/icons/JarvisAnalytics.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JazzHR.svg b/src/images/icons/JazzHR.svg new file mode 100644 index 00000000..78530d9f --- /dev/null +++ b/src/images/icons/JazzHR.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Jeeng.svg b/src/images/icons/Jeeng.svg new file mode 100644 index 00000000..9adc4ba9 --- /dev/null +++ b/src/images/icons/Jeeng.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/JetEngine.svg b/src/images/icons/JetEngine.svg new file mode 100644 index 00000000..ca9c9270 --- /dev/null +++ b/src/images/icons/JetEngine.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/JetTabs.svg b/src/images/icons/JetTabs.svg new file mode 100644 index 00000000..11ff5123 --- /dev/null +++ b/src/images/icons/JetTabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Jetboost.svg b/src/images/icons/Jetboost.svg new file mode 100644 index 00000000..c562cb46 --- /dev/null +++ b/src/images/icons/Jetboost.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jiglu.svg b/src/images/icons/Jiglu.svg new file mode 100644 index 00000000..a481f203 --- /dev/null +++ b/src/images/icons/Jiglu.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JobBoardFire.svg b/src/images/icons/JobBoardFire.svg new file mode 100644 index 00000000..865da009 --- /dev/null +++ b/src/images/icons/JobBoardFire.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Jobiqo.svg b/src/images/icons/Jobiqo.svg new file mode 100644 index 00000000..2c59c2a1 --- /dev/null +++ b/src/images/icons/Jobiqo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Jobylon.svg b/src/images/icons/Jobylon.svg new file mode 100644 index 00000000..623f2a0e --- /dev/null +++ b/src/images/icons/Jobylon.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/JoinIt.svg b/src/images/icons/JoinIt.svg new file mode 100644 index 00000000..c277ebf5 --- /dev/null +++ b/src/images/icons/JoinIt.svg @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Joinchat.svg b/src/images/icons/Joinchat.svg new file mode 100644 index 00000000..ae2bb364 --- /dev/null +++ b/src/images/icons/Joinchat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Joonbot.svg b/src/images/icons/Joonbot.svg new file mode 100644 index 00000000..fb487a23 --- /dev/null +++ b/src/images/icons/Joonbot.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jottful.svg b/src/images/icons/Jottful.svg new file mode 100644 index 00000000..37704d0b --- /dev/null +++ b/src/images/icons/Jottful.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jubna.svg b/src/images/icons/Jubna.svg new file mode 100644 index 00000000..134de423 --- /dev/null +++ b/src/images/icons/Jubna.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Jugem.svg b/src/images/icons/Jugem.svg new file mode 100644 index 00000000..a30a7cac --- /dev/null +++ b/src/images/icons/Jugem.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Juicer.svg b/src/images/icons/Juicer.svg new file mode 100644 index 00000000..6129a030 --- /dev/null +++ b/src/images/icons/Juicer.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JumpCloud.svg b/src/images/icons/JumpCloud.svg new file mode 100644 index 00000000..6fbb6298 --- /dev/null +++ b/src/images/icons/JumpCloud.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Juphy.svg b/src/images/icons/Juphy.svg new file mode 100644 index 00000000..57cc1e67 --- /dev/null +++ b/src/images/icons/Juphy.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/JuvoLeads.svg b/src/images/icons/JuvoLeads.svg new file mode 100644 index 00000000..0431f1f2 --- /dev/null +++ b/src/images/icons/JuvoLeads.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/KITCMS.svg b/src/images/icons/KITCMS.svg new file mode 100644 index 00000000..00ae8662 --- /dev/null +++ b/src/images/icons/KITCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KKTIX.svg b/src/images/icons/KKTIX.svg new file mode 100644 index 00000000..ab4ce4cc --- /dev/null +++ b/src/images/icons/KKTIX.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KUKUI.svg b/src/images/icons/KUKUI.svg new file mode 100644 index 00000000..72e819b8 --- /dev/null +++ b/src/images/icons/KUKUI.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KVCore.svg b/src/images/icons/KVCore.svg new file mode 100644 index 00000000..b49f668e --- /dev/null +++ b/src/images/icons/KVCore.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KYKLO.svg b/src/images/icons/KYKLO.svg new file mode 100644 index 00000000..08943946 --- /dev/null +++ b/src/images/icons/KYKLO.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kalio.svg b/src/images/icons/Kalio.svg new file mode 100644 index 00000000..4f86f69e --- /dev/null +++ b/src/images/icons/Kalio.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kalix.svg b/src/images/icons/Kalix.svg new file mode 100644 index 00000000..84ce9efa --- /dev/null +++ b/src/images/icons/Kalix.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kamozi.svg b/src/images/icons/Kamozi.svg new file mode 100644 index 00000000..888e2fe0 --- /dev/null +++ b/src/images/icons/Kamozi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KangarooRewards.svg b/src/images/icons/KangarooRewards.svg new file mode 100644 index 00000000..ae57555f --- /dev/null +++ b/src/images/icons/KangarooRewards.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kangle.svg b/src/images/icons/Kangle.svg new file mode 100644 index 00000000..65b18521 --- /dev/null +++ b/src/images/icons/Kangle.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/KanzOboz.svg b/src/images/icons/KanzOboz.svg new file mode 100644 index 00000000..d82252e4 --- /dev/null +++ b/src/images/icons/KanzOboz.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kapa.svg b/src/images/icons/Kapa.svg new file mode 100644 index 00000000..1bf8adc3 --- /dev/null +++ b/src/images/icons/Kapa.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartify.svg b/src/images/icons/Kartify.svg new file mode 100644 index 00000000..8eddd8fd --- /dev/null +++ b/src/images/icons/Kartify.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartmax.svg b/src/images/icons/Kartmax.svg new file mode 100644 index 00000000..22ddd1dc --- /dev/null +++ b/src/images/icons/Kartmax.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kartris.svg b/src/images/icons/Kartris.svg new file mode 100644 index 00000000..4f286da4 --- /dev/null +++ b/src/images/icons/Kartris.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kasika.svg b/src/images/icons/Kasika.svg new file mode 100644 index 00000000..28bcdfd4 --- /dev/null +++ b/src/images/icons/Kasika.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kauz.svg b/src/images/icons/Kauz.svg new file mode 100644 index 00000000..0b5974a7 --- /dev/null +++ b/src/images/icons/Kauz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KeaBuilder.svg b/src/images/icons/KeaBuilder.svg new file mode 100644 index 00000000..9841c909 --- /dev/null +++ b/src/images/icons/KeaBuilder.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Keepeek.svg b/src/images/icons/Keepeek.svg new file mode 100644 index 00000000..8e8b7a8a --- /dev/null +++ b/src/images/icons/Keepeek.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kenect.svg b/src/images/icons/Kenect.svg new file mode 100644 index 00000000..0dafc8e2 --- /dev/null +++ b/src/images/icons/Kenect.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kenlo.svg b/src/images/icons/Kenlo.svg new file mode 100644 index 00000000..1050760a --- /dev/null +++ b/src/images/icons/Kenlo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kerning.svg b/src/images/icons/Kerning.svg new file mode 100644 index 00000000..1fe1d548 --- /dev/null +++ b/src/images/icons/Kerning.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KeyReply.svg b/src/images/icons/KeyReply.svg new file mode 100644 index 00000000..3f1ce1fa --- /dev/null +++ b/src/images/icons/KeyReply.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Keyvos.svg b/src/images/icons/Keyvos.svg new file mode 100644 index 00000000..00b277e6 --- /dev/null +++ b/src/images/icons/Keyvos.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Keywee.svg b/src/images/icons/Keywee.svg new file mode 100644 index 00000000..8d63a4f1 --- /dev/null +++ b/src/images/icons/Keywee.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kickflip.svg b/src/images/icons/Kickflip.svg new file mode 100644 index 00000000..930b92b3 --- /dev/null +++ b/src/images/icons/Kickflip.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kilkaya.svg b/src/images/icons/Kilkaya.svg new file mode 100644 index 00000000..a32b8ca7 --- /dev/null +++ b/src/images/icons/Kilkaya.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kimonix.svg b/src/images/icons/Kimonix.svg new file mode 100644 index 00000000..90edd4ca --- /dev/null +++ b/src/images/icons/Kimonix.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kiosked.svg b/src/images/icons/Kiosked.svg new file mode 100644 index 00000000..d52e9d3f --- /dev/null +++ b/src/images/icons/Kiosked.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kiprotect.svg b/src/images/icons/Kiprotect.svg new file mode 100644 index 00000000..7fc7f6ed --- /dev/null +++ b/src/images/icons/Kiprotect.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kit.svg b/src/images/icons/Kit.svg new file mode 100644 index 00000000..58d9868d --- /dev/null +++ b/src/images/icons/Kit.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kites.svg b/src/images/icons/Kites.svg new file mode 100644 index 00000000..b31a8a60 --- /dev/null +++ b/src/images/icons/Kites.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kiva.svg b/src/images/icons/Kiva.svg new file mode 100644 index 00000000..93c86084 --- /dev/null +++ b/src/images/icons/Kiva.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Kiwify.svg b/src/images/icons/Kiwify.svg new file mode 100644 index 00000000..b8c7fed7 --- /dev/null +++ b/src/images/icons/Kiwify.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Klaro.png b/src/images/icons/Klaro.png deleted file mode 100644 index a9784ab2..00000000 Binary files a/src/images/icons/Klaro.png and /dev/null differ diff --git a/src/images/icons/Klaro.svg b/src/images/icons/Klaro.svg new file mode 100644 index 00000000..396875ee --- /dev/null +++ b/src/images/icons/Klaro.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kleecks.svg b/src/images/icons/Kleecks.svg new file mode 100644 index 00000000..a632eefc --- /dev/null +++ b/src/images/icons/Kleecks.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kleer.svg b/src/images/icons/Kleer.svg new file mode 100644 index 00000000..fa37705a --- /dev/null +++ b/src/images/icons/Kleer.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kliken.svg b/src/images/icons/Kliken.svg new file mode 100644 index 00000000..33d02dd1 --- /dev/null +++ b/src/images/icons/Kliken.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Klip.svg b/src/images/icons/Klip.svg new file mode 100644 index 00000000..86237d87 --- /dev/null +++ b/src/images/icons/Klip.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Knitpay.svg b/src/images/icons/Knitpay.svg new file mode 100644 index 00000000..53704f41 --- /dev/null +++ b/src/images/icons/Knitpay.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KnoCommerce.svg b/src/images/icons/KnoCommerce.svg new file mode 100644 index 00000000..656b7ec5 --- /dev/null +++ b/src/images/icons/KnoCommerce.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KnockKnockApp.svg b/src/images/icons/KnockKnockApp.svg new file mode 100644 index 00000000..fdd24b86 --- /dev/null +++ b/src/images/icons/KnockKnockApp.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Knorish.svg b/src/images/icons/Knorish.svg new file mode 100644 index 00000000..8713eabf --- /dev/null +++ b/src/images/icons/Knorish.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kochava.svg b/src/images/icons/Kochava.svg new file mode 100644 index 00000000..74b617cb --- /dev/null +++ b/src/images/icons/Kochava.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kommand.svg b/src/images/icons/Kommand.svg new file mode 100644 index 00000000..9859d650 --- /dev/null +++ b/src/images/icons/Kommand.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KonfidencyReviews.svg b/src/images/icons/KonfidencyReviews.svg new file mode 100644 index 00000000..b1f84ff8 --- /dev/null +++ b/src/images/icons/KonfidencyReviews.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KoobCamp.svg b/src/images/icons/KoobCamp.svg new file mode 100644 index 00000000..71c00eb0 --- /dev/null +++ b/src/images/icons/KoobCamp.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Kooomo.svg b/src/images/icons/Kooomo.svg index 2d82975d..2689516f 100644 --- a/src/images/icons/Kooomo.svg +++ b/src/images/icons/Kooomo.svg @@ -1,9 +1,10 @@ - - - - - - - - + + + + + + + + + diff --git a/src/images/icons/Kreatio.svg b/src/images/icons/Kreatio.svg new file mode 100644 index 00000000..da3f3274 --- /dev/null +++ b/src/images/icons/Kreatio.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Krible.svg b/src/images/icons/Krible.svg new file mode 100644 index 00000000..91c85b3e --- /dev/null +++ b/src/images/icons/Krible.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/KrossBooking.svg b/src/images/icons/KrossBooking.svg new file mode 100644 index 00000000..a1446d6d --- /dev/null +++ b/src/images/icons/KrossBooking.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kssib.svg b/src/images/icons/Kssib.svg new file mode 100644 index 00000000..a004fdff --- /dev/null +++ b/src/images/icons/Kssib.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KubioBuilder.svg b/src/images/icons/KubioBuilder.svg new file mode 100644 index 00000000..47909e53 --- /dev/null +++ b/src/images/icons/KubioBuilder.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kueez.svg b/src/images/icons/Kueez.svg new file mode 100644 index 00000000..a29a2075 --- /dev/null +++ b/src/images/icons/Kueez.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/KuleaMarketing.svg b/src/images/icons/KuleaMarketing.svg new file mode 100644 index 00000000..4ebf2136 --- /dev/null +++ b/src/images/icons/KuleaMarketing.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kundo.svg b/src/images/icons/Kundo.svg new file mode 100644 index 00000000..69730784 --- /dev/null +++ b/src/images/icons/Kundo.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kuroco.svg b/src/images/icons/Kuroco.svg new file mode 100644 index 00000000..e58671c2 --- /dev/null +++ b/src/images/icons/Kuroco.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/KuronekoServerCDN.svg b/src/images/icons/KuronekoServerCDN.svg new file mode 100644 index 00000000..762af3ab --- /dev/null +++ b/src/images/icons/KuronekoServerCDN.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kustomer.svg b/src/images/icons/Kustomer.svg index 5ac89be4..827aad0a 100644 --- a/src/images/icons/Kustomer.svg +++ b/src/images/icons/Kustomer.svg @@ -1 +1,14 @@ - Kustomer_Logo Created with Sketch. \ No newline at end of file + + + + + + + + + + + + + + diff --git a/src/images/icons/Kwanko.svg b/src/images/icons/Kwanko.svg new file mode 100644 index 00000000..3ba0373d --- /dev/null +++ b/src/images/icons/Kwanko.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Kwanzoo.svg b/src/images/icons/Kwanzoo.svg new file mode 100644 index 00000000..49a4f0db --- /dev/null +++ b/src/images/icons/Kwanzoo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Kwipped.svg b/src/images/icons/Kwipped.svg new file mode 100644 index 00000000..ecc9c187 --- /dev/null +++ b/src/images/icons/Kwipped.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Kyvio.svg b/src/images/icons/Kyvio.svg new file mode 100644 index 00000000..611e3ad5 --- /dev/null +++ b/src/images/icons/Kyvio.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LEADIN.svg b/src/images/icons/LEADIN.svg new file mode 100644 index 00000000..1c57055a --- /dev/null +++ b/src/images/icons/LEADIN.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/LEVERADE.svg b/src/images/icons/LEVERADE.svg new file mode 100644 index 00000000..686ace6e --- /dev/null +++ b/src/images/icons/LEVERADE.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LPQV.svg b/src/images/icons/LPQV.svg new file mode 100644 index 00000000..1ae020b8 --- /dev/null +++ b/src/images/icons/LPQV.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/LTheme.svg b/src/images/icons/LTheme.svg new file mode 100644 index 00000000..be713d91 --- /dev/null +++ b/src/images/icons/LTheme.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/LabradorCMS.svg b/src/images/icons/LabradorCMS.svg new file mode 100644 index 00000000..bc403f8b --- /dev/null +++ b/src/images/icons/LabradorCMS.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LagaWidget.svg b/src/images/icons/LagaWidget.svg new file mode 100644 index 00000000..c5e32c01 --- /dev/null +++ b/src/images/icons/LagaWidget.svg @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Landingi.svg b/src/images/icons/Landingi.svg new file mode 100644 index 00000000..eee16f00 --- /dev/null +++ b/src/images/icons/Landingi.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lapis.svg b/src/images/icons/Lapis.svg new file mode 100644 index 00000000..e4b8f1ad --- /dev/null +++ b/src/images/icons/Lapis.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LaunchNotes.svg b/src/images/icons/LaunchNotes.svg new file mode 100644 index 00000000..b4dbf6b6 --- /dev/null +++ b/src/images/icons/LaunchNotes.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lawmatics.svg b/src/images/icons/Lawmatics.svg new file mode 100644 index 00000000..bf405311 --- /dev/null +++ b/src/images/icons/Lawmatics.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Layers.png b/src/images/icons/Layers.png new file mode 100644 index 00000000..868c71d3 Binary files /dev/null and b/src/images/icons/Layers.png differ diff --git a/src/images/icons/Laylo.svg b/src/images/icons/Laylo.svg new file mode 100644 index 00000000..6118e103 --- /dev/null +++ b/src/images/icons/Laylo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/LeadByte.svg b/src/images/icons/LeadByte.svg new file mode 100644 index 00000000..9e4575d7 --- /dev/null +++ b/src/images/icons/LeadByte.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LeadFinity.svg b/src/images/icons/LeadFinity.svg new file mode 100644 index 00000000..65c29549 --- /dev/null +++ b/src/images/icons/LeadFinity.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadForensics.svg b/src/images/icons/LeadForensics.svg new file mode 100644 index 00000000..8b741b34 --- /dev/null +++ b/src/images/icons/LeadForensics.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadGenerated.svg b/src/images/icons/LeadGenerated.svg new file mode 100644 index 00000000..84c8bedd --- /dev/null +++ b/src/images/icons/LeadGenerated.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadProsper.svg b/src/images/icons/LeadProsper.svg new file mode 100644 index 00000000..4cc2ade5 --- /dev/null +++ b/src/images/icons/LeadProsper.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Leadbit.svg b/src/images/icons/Leadbit.svg new file mode 100644 index 00000000..e11b1aa5 --- /dev/null +++ b/src/images/icons/Leadbit.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Leadferno.svg b/src/images/icons/Leadferno.svg new file mode 100644 index 00000000..bd9972b0 --- /dev/null +++ b/src/images/icons/Leadferno.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Leadific.svg b/src/images/icons/Leadific.svg new file mode 100644 index 00000000..36bbcd0f --- /dev/null +++ b/src/images/icons/Leadific.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Leads2b.svg b/src/images/icons/Leads2b.svg new file mode 100644 index 00000000..5c69092e --- /dev/null +++ b/src/images/icons/Leads2b.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeadsLeap.svg b/src/images/icons/LeadsLeap.svg new file mode 100644 index 00000000..ecc4752d --- /dev/null +++ b/src/images/icons/LeadsLeap.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Leadteh.svg b/src/images/icons/Leadteh.svg new file mode 100644 index 00000000..2e729c41 --- /dev/null +++ b/src/images/icons/Leadteh.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Leady.svg b/src/images/icons/Leady.svg new file mode 100644 index 00000000..f37ed3ce --- /dev/null +++ b/src/images/icons/Leady.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Leafly.svg b/src/images/icons/Leafly.svg new file mode 100644 index 00000000..ebd885eb --- /dev/null +++ b/src/images/icons/Leafly.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeakyPaywall.svg b/src/images/icons/LeakyPaywall.svg new file mode 100644 index 00000000..2136f7ff --- /dev/null +++ b/src/images/icons/LeakyPaywall.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeanData.svg b/src/images/icons/LeanData.svg new file mode 100644 index 00000000..b3039dea --- /dev/null +++ b/src/images/icons/LeanData.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LearnUpon.svg b/src/images/icons/LearnUpon.svg new file mode 100644 index 00000000..35295722 --- /dev/null +++ b/src/images/icons/LearnUpon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Learnbase.svg b/src/images/icons/Learnbase.svg new file mode 100644 index 00000000..ca8c55a3 --- /dev/null +++ b/src/images/icons/Learnbase.svg @@ -0,0 +1,830 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LearnyBox.svg b/src/images/icons/LearnyBox.svg new file mode 100644 index 00000000..38ce15b0 --- /dev/null +++ b/src/images/icons/LearnyBox.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LeaseHawk.svg b/src/images/icons/LeaseHawk.svg new file mode 100644 index 00000000..c22c3266 --- /dev/null +++ b/src/images/icons/LeaseHawk.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lendi.svg b/src/images/icons/Lendi.svg new file mode 100644 index 00000000..0c37c862 --- /dev/null +++ b/src/images/icons/Lendi.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lenus.svg b/src/images/icons/Lenus.svg new file mode 100644 index 00000000..a4aa1839 --- /dev/null +++ b/src/images/icons/Lenus.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LetsConnect.svg b/src/images/icons/LetsConnect.svg new file mode 100644 index 00000000..621697ea --- /dev/null +++ b/src/images/icons/LetsConnect.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lexer.svg b/src/images/icons/Lexer.svg new file mode 100644 index 00000000..6d86110c --- /dev/null +++ b/src/images/icons/Lexer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LifterApps.svg b/src/images/icons/LifterApps.svg new file mode 100644 index 00000000..27b7c46b --- /dev/null +++ b/src/images/icons/LifterApps.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LightSPeedVT.svg b/src/images/icons/LightSPeedVT.svg new file mode 100644 index 00000000..d0eac94c --- /dev/null +++ b/src/images/icons/LightSPeedVT.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Lightfolio.svg b/src/images/icons/Lightfolio.svg new file mode 100644 index 00000000..9557deac --- /dev/null +++ b/src/images/icons/Lightfolio.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ligna.svg b/src/images/icons/Ligna.svg new file mode 100644 index 00000000..6ebccaa9 --- /dev/null +++ b/src/images/icons/Ligna.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Liine.svg b/src/images/icons/Liine.svg new file mode 100644 index 00000000..80dcef57 --- /dev/null +++ b/src/images/icons/Liine.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lily.svg b/src/images/icons/Lily.svg new file mode 100644 index 00000000..050a8e2c --- /dev/null +++ b/src/images/icons/Lily.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Linda.svg b/src/images/icons/Linda.svg new file mode 100644 index 00000000..b4d43c88 --- /dev/null +++ b/src/images/icons/Linda.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Lindy.svg b/src/images/icons/Lindy.svg new file mode 100644 index 00000000..cee9a72b --- /dev/null +++ b/src/images/icons/Lindy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Line-Up.svg b/src/images/icons/Line-Up.svg new file mode 100644 index 00000000..40b1dec2 --- /dev/null +++ b/src/images/icons/Line-Up.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Line2.svg b/src/images/icons/Line2.svg new file mode 100644 index 00000000..5fc6d53b --- /dev/null +++ b/src/images/icons/Line2.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linear.svg b/src/images/icons/Linear.svg new file mode 100644 index 00000000..227d94a9 --- /dev/null +++ b/src/images/icons/Linear.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linguana.svg b/src/images/icons/Linguana.svg new file mode 100644 index 00000000..4851a013 --- /dev/null +++ b/src/images/icons/Linguana.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Linkfire.svg b/src/images/icons/Linkfire.svg new file mode 100644 index 00000000..a48f651b --- /dev/null +++ b/src/images/icons/Linkfire.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Linkz.svg b/src/images/icons/Linkz.svg new file mode 100644 index 00000000..64df8272 --- /dev/null +++ b/src/images/icons/Linkz.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Liscio.svg b/src/images/icons/Liscio.svg new file mode 100644 index 00000000..686520c4 --- /dev/null +++ b/src/images/icons/Liscio.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ListTrac.svg b/src/images/icons/ListTrac.svg new file mode 100644 index 00000000..c5ee4114 --- /dev/null +++ b/src/images/icons/ListTrac.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Listagram.svg b/src/images/icons/Listagram.svg new file mode 100644 index 00000000..1d36f52c --- /dev/null +++ b/src/images/icons/Listagram.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiteSpeed.svg b/src/images/icons/LiteSpeed.svg index 7c841b8c..36ea6f73 100644 --- a/src/images/icons/LiteSpeed.svg +++ b/src/images/icons/LiteSpeed.svg @@ -1,101 +1,10 @@ - - - -image/svg+xml \ No newline at end of file + + + + + + + + + + diff --git a/src/images/icons/LiveBooks.svg b/src/images/icons/LiveBooks.svg new file mode 100644 index 00000000..13f52c04 --- /dev/null +++ b/src/images/icons/LiveBooks.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiveBy.svg b/src/images/icons/LiveBy.svg new file mode 100644 index 00000000..f0b6ef9a --- /dev/null +++ b/src/images/icons/LiveBy.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LiveSite.svg b/src/images/icons/LiveSite.svg new file mode 100644 index 00000000..e5075ffb --- /dev/null +++ b/src/images/icons/LiveSite.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LiveTex.svg b/src/images/icons/LiveTex.svg new file mode 100644 index 00000000..06354c92 --- /dev/null +++ b/src/images/icons/LiveTex.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/LobbyPMS.svg b/src/images/icons/LobbyPMS.svg new file mode 100644 index 00000000..e41a4512 --- /dev/null +++ b/src/images/icons/LobbyPMS.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LocalGovDrupal.svg b/src/images/icons/LocalGovDrupal.svg new file mode 100644 index 00000000..e580ed0e --- /dev/null +++ b/src/images/icons/LocalGovDrupal.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LocalSignal.svg b/src/images/icons/LocalSignal.svg new file mode 100644 index 00000000..a72645f3 --- /dev/null +++ b/src/images/icons/LocalSignal.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LocaliQ.svg b/src/images/icons/LocaliQ.svg new file mode 100644 index 00000000..03ff8353 --- /dev/null +++ b/src/images/icons/LocaliQ.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Lofty.svg b/src/images/icons/Lofty.svg new file mode 100644 index 00000000..6d7a0505 --- /dev/null +++ b/src/images/icons/Lofty.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Logaholic.svg b/src/images/icons/Logaholic.svg new file mode 100644 index 00000000..485aba6f --- /dev/null +++ b/src/images/icons/Logaholic.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/LojasOnlineCTT.svg b/src/images/icons/LojasOnlineCTT.svg new file mode 100644 index 00000000..f232f8f9 --- /dev/null +++ b/src/images/icons/LojasOnlineCTT.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Loloyal.svg b/src/images/icons/Loloyal.svg new file mode 100644 index 00000000..3bd3ce52 --- /dev/null +++ b/src/images/icons/Loloyal.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Looksize.svg b/src/images/icons/Looksize.svg new file mode 100644 index 00000000..d3961187 --- /dev/null +++ b/src/images/icons/Looksize.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Loopi.svg b/src/images/icons/Loopi.svg new file mode 100644 index 00000000..c4c2a45d --- /dev/null +++ b/src/images/icons/Loopi.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/Lovable.svg b/src/images/icons/Lovable.svg new file mode 100644 index 00000000..b9530200 --- /dev/null +++ b/src/images/icons/Lovable.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Lovi.svg b/src/images/icons/Lovi.svg new file mode 100644 index 00000000..73b7201c --- /dev/null +++ b/src/images/icons/Lovi.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Lovingly.svg b/src/images/icons/Lovingly.svg new file mode 100644 index 00000000..bbb071fc --- /dev/null +++ b/src/images/icons/Lovingly.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LoyaltyLoop.svg b/src/images/icons/LoyaltyLoop.svg new file mode 100644 index 00000000..6c9ee7d8 --- /dev/null +++ b/src/images/icons/LoyaltyLoop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Loyalzoo.svg b/src/images/icons/Loyalzoo.svg new file mode 100644 index 00000000..0af23ee2 --- /dev/null +++ b/src/images/icons/Loyalzoo.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Loyoly.svg b/src/images/icons/Loyoly.svg new file mode 100644 index 00000000..778c6abb --- /dev/null +++ b/src/images/icons/Loyoly.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Luma.svg b/src/images/icons/Luma.svg new file mode 100644 index 00000000..e4905821 --- /dev/null +++ b/src/images/icons/Luma.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Lumino.svg b/src/images/icons/Lumino.svg new file mode 100644 index 00000000..4616ae26 --- /dev/null +++ b/src/images/icons/Lumino.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/LuveeduCloud.svg b/src/images/icons/LuveeduCloud.svg new file mode 100644 index 00000000..619e309b --- /dev/null +++ b/src/images/icons/LuveeduCloud.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MDirector.svg b/src/images/icons/MDirector.svg new file mode 100644 index 00000000..3fddb35b --- /dev/null +++ b/src/images/icons/MDirector.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MRIEagle.svg b/src/images/icons/MRISoftware.svg similarity index 100% rename from src/images/icons/MRIEagle.svg rename to src/images/icons/MRISoftware.svg diff --git a/src/images/icons/MSAAQ.svg b/src/images/icons/MSAAQ.svg new file mode 100644 index 00000000..df40f043 --- /dev/null +++ b/src/images/icons/MSAAQ.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maatoo.svg b/src/images/icons/Maatoo.svg new file mode 100644 index 00000000..46304aca --- /dev/null +++ b/src/images/icons/Maatoo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MacroActive.svg b/src/images/icons/MacroActive.svg new file mode 100644 index 00000000..c13a4ae4 --- /dev/null +++ b/src/images/icons/MacroActive.svg @@ -0,0 +1,1517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MadKudu.svg b/src/images/icons/MadKudu.svg new file mode 100644 index 00000000..d459472c --- /dev/null +++ b/src/images/icons/MadKudu.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maestra.svg b/src/images/icons/Maestra.svg new file mode 100644 index 00000000..5802bd7b --- /dev/null +++ b/src/images/icons/Maestra.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maestrus.svg b/src/images/icons/Maestrus.svg new file mode 100644 index 00000000..7ef2ddfb --- /dev/null +++ b/src/images/icons/Maestrus.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MageMail.svg b/src/images/icons/MageMail.svg new file mode 100644 index 00000000..1f6f6bf4 --- /dev/null +++ b/src/images/icons/MageMail.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MagicBell.svg b/src/images/icons/MagicBell.svg new file mode 100644 index 00000000..b0a3425e --- /dev/null +++ b/src/images/icons/MagicBell.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MagicLabs.svg b/src/images/icons/MagicLabs.svg new file mode 100644 index 00000000..feb6d327 --- /dev/null +++ b/src/images/icons/MagicLabs.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MagicUI.svg b/src/images/icons/MagicUI.svg new file mode 100644 index 00000000..c5bb0989 --- /dev/null +++ b/src/images/icons/MagicUI.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Magnews.svg b/src/images/icons/Magnews.svg new file mode 100644 index 00000000..7e62ac5d --- /dev/null +++ b/src/images/icons/Magnews.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maguru.svg b/src/images/icons/Maguru.svg new file mode 100644 index 00000000..60708955 --- /dev/null +++ b/src/images/icons/Maguru.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maho.svg b/src/images/icons/Maho.svg new file mode 100644 index 00000000..9ffc59c1 --- /dev/null +++ b/src/images/icons/Maho.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/Mailocator.svg b/src/images/icons/Mailocator.svg new file mode 100644 index 00000000..042ce332 --- /dev/null +++ b/src/images/icons/Mailocator.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mailshake.svg b/src/images/icons/Mailshake.svg new file mode 100644 index 00000000..dca4a15f --- /dev/null +++ b/src/images/icons/Mailshake.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mainboard.svg b/src/images/icons/Mainboard.svg new file mode 100644 index 00000000..ea3f6e00 --- /dev/null +++ b/src/images/icons/Mainboard.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maisie.svg b/src/images/icons/Maisie.svg new file mode 100644 index 00000000..c9beb095 --- /dev/null +++ b/src/images/icons/Maisie.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Makaira.svg b/src/images/icons/Makaira.svg new file mode 100644 index 00000000..8531f0c4 --- /dev/null +++ b/src/images/icons/Makaira.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Makane.svg b/src/images/icons/Makane.svg new file mode 100644 index 00000000..4a6871e9 --- /dev/null +++ b/src/images/icons/Makane.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Makeplans.svg b/src/images/icons/Makeplans.svg new file mode 100644 index 00000000..c6815966 --- /dev/null +++ b/src/images/icons/Makeplans.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Maker.svg b/src/images/icons/Maker.svg new file mode 100644 index 00000000..7dc336f0 --- /dev/null +++ b/src/images/icons/Maker.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Makeswift.svg b/src/images/icons/Makeswift.svg new file mode 100644 index 00000000..eedbf648 --- /dev/null +++ b/src/images/icons/Makeswift.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MangaReader.svg b/src/images/icons/MangaReader.svg new file mode 100644 index 00000000..1dc0c7a2 --- /dev/null +++ b/src/images/icons/MangaReader.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Mangomint.svg b/src/images/icons/Mangomint.svg new file mode 100644 index 00000000..7d11e97a --- /dev/null +++ b/src/images/icons/Mangomint.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MapLoco.svg b/src/images/icons/MapLoco.svg new file mode 100644 index 00000000..fb4d7d10 --- /dev/null +++ b/src/images/icons/MapLoco.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MapMyChannel.svg b/src/images/icons/MapMyChannel.svg new file mode 100644 index 00000000..7dd02030 --- /dev/null +++ b/src/images/icons/MapMyChannel.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/MapTrack.svg b/src/images/icons/MapTrack.svg new file mode 100644 index 00000000..0db827aa --- /dev/null +++ b/src/images/icons/MapTrack.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mapline.svg b/src/images/icons/Mapline.svg new file mode 100644 index 00000000..b2e7e4a7 --- /dev/null +++ b/src/images/icons/Mapline.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Mappedin.svg b/src/images/icons/Mappedin.svg new file mode 100644 index 00000000..f926a496 --- /dev/null +++ b/src/images/icons/Mappedin.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maptiler.svg b/src/images/icons/Maptiler.svg new file mode 100644 index 00000000..fc1d8f1b --- /dev/null +++ b/src/images/icons/Maptiler.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MarketHero.svg b/src/images/icons/MarketHero.svg new file mode 100644 index 00000000..b8970af7 --- /dev/null +++ b/src/images/icons/MarketHero.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Marsello.svg b/src/images/icons/Marsello.svg new file mode 100644 index 00000000..2b8ebe21 --- /dev/null +++ b/src/images/icons/Marsello.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Marshal.svg b/src/images/icons/Marshal.svg new file mode 100644 index 00000000..412e182f --- /dev/null +++ b/src/images/icons/Marshal.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MashoreMethod.svg b/src/images/icons/MashoreMethod.svg new file mode 100644 index 00000000..a623920a --- /dev/null +++ b/src/images/icons/MashoreMethod.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Masteriyo.svg b/src/images/icons/Masteriyo.svg new file mode 100644 index 00000000..738d7e17 --- /dev/null +++ b/src/images/icons/Masteriyo.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MasteryManager.svg b/src/images/icons/MasteryManager.svg new file mode 100644 index 00000000..b610c6da --- /dev/null +++ b/src/images/icons/MasteryManager.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Matchi.svg b/src/images/icons/Matchi.svg new file mode 100644 index 00000000..183949ed --- /dev/null +++ b/src/images/icons/Matchi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Matchlab.svg b/src/images/icons/Matchlab.svg new file mode 100644 index 00000000..35149e0e --- /dev/null +++ b/src/images/icons/Matchlab.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Mava.svg b/src/images/icons/Mava.svg new file mode 100644 index 00000000..5ef9872a --- /dev/null +++ b/src/images/icons/Mava.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mavo.svg b/src/images/icons/Mavo.svg new file mode 100644 index 00000000..82d92a4e --- /dev/null +++ b/src/images/icons/Mavo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Maxemail.svg b/src/images/icons/Maxemail.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/MaxiCMS.svg b/src/images/icons/MaxiCMS.svg new file mode 100644 index 00000000..70645bbc --- /dev/null +++ b/src/images/icons/MaxiCMS.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Maxxton.svg b/src/images/icons/Maxxton.svg new file mode 100644 index 00000000..1bb90e8f --- /dev/null +++ b/src/images/icons/Maxxton.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mazrica.svg b/src/images/icons/Mazrica.svg new file mode 100644 index 00000000..4f0518f5 --- /dev/null +++ b/src/images/icons/Mazrica.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meazy.svg b/src/images/icons/Meazy.svg new file mode 100644 index 00000000..54052a90 --- /dev/null +++ b/src/images/icons/Meazy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Medchat.svg b/src/images/icons/Medchat.svg new file mode 100644 index 00000000..8a884734 --- /dev/null +++ b/src/images/icons/Medchat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MediaPlatform.svg b/src/images/icons/MediaPlatform.svg new file mode 100644 index 00000000..d3193dae --- /dev/null +++ b/src/images/icons/MediaPlatform.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Medium.svg b/src/images/icons/Medium.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/Medoc.svg b/src/images/icons/Medoc.svg new file mode 100644 index 00000000..f6f129d1 --- /dev/null +++ b/src/images/icons/Medoc.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MeetupExpress.svg b/src/images/icons/MeetupExpress.svg new file mode 100644 index 00000000..222badc6 --- /dev/null +++ b/src/images/icons/MeetupExpress.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mega.svg b/src/images/icons/Mega.svg new file mode 100644 index 00000000..2acac141 --- /dev/null +++ b/src/images/icons/Mega.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Melibo.svg b/src/images/icons/Melibo.svg new file mode 100644 index 00000000..705066e9 --- /dev/null +++ b/src/images/icons/Melibo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meltwater.svg b/src/images/icons/Meltwater.svg new file mode 100644 index 00000000..024eae95 --- /dev/null +++ b/src/images/icons/Meltwater.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MembershipToolkit.svg b/src/images/icons/MembershipToolkit.svg new file mode 100644 index 00000000..e37a65d4 --- /dev/null +++ b/src/images/icons/MembershipToolkit.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MembershipWorks.svg b/src/images/icons/MembershipWorks.svg new file mode 100644 index 00000000..bcced2ea --- /dev/null +++ b/src/images/icons/MembershipWorks.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mentaya.svg b/src/images/icons/Mentaya.svg new file mode 100644 index 00000000..eb619025 --- /dev/null +++ b/src/images/icons/Mentaya.svg @@ -0,0 +1,1757 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Menuu.svg b/src/images/icons/Menuu.svg new file mode 100644 index 00000000..9c85f030 --- /dev/null +++ b/src/images/icons/Menuu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mercer.svg b/src/images/icons/Mercer.svg new file mode 100644 index 00000000..82845bd8 --- /dev/null +++ b/src/images/icons/Mercer.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Merchello.svg b/src/images/icons/Merchello.svg new file mode 100644 index 00000000..7be8f233 --- /dev/null +++ b/src/images/icons/Merchello.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mercurycloud.svg b/src/images/icons/Mercurycloud.svg new file mode 100644 index 00000000..55837f70 --- /dev/null +++ b/src/images/icons/Mercurycloud.svg @@ -0,0 +1,578 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Merge.svg b/src/images/icons/Merge.svg new file mode 100644 index 00000000..168f49ce --- /dev/null +++ b/src/images/icons/Merge.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Merlin.svg b/src/images/icons/Merlin.svg new file mode 100644 index 00000000..b84c55c1 --- /dev/null +++ b/src/images/icons/Merlin.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MessageGears.svg b/src/images/icons/MessageGears.svg new file mode 100644 index 00000000..a19ec51b --- /dev/null +++ b/src/images/icons/MessageGears.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MessageMedia.svg b/src/images/icons/MessageMedia.svg new file mode 100644 index 00000000..af0105fe --- /dev/null +++ b/src/images/icons/MessageMedia.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meta.svg b/src/images/icons/Meta.svg new file mode 100644 index 00000000..7e3c26a8 --- /dev/null +++ b/src/images/icons/Meta.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MetaMap.svg b/src/images/icons/MetaMap.svg new file mode 100644 index 00000000..bbb24274 --- /dev/null +++ b/src/images/icons/MetaMap.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Meticular.svg b/src/images/icons/Meticular.svg new file mode 100644 index 00000000..319780de --- /dev/null +++ b/src/images/icons/Meticular.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Metorik.svg b/src/images/icons/Metorik.svg new file mode 100644 index 00000000..7e6985c5 --- /dev/null +++ b/src/images/icons/Metorik.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MetricsKey.svg b/src/images/icons/MetricsKey.svg new file mode 100644 index 00000000..bc4ed063 --- /dev/null +++ b/src/images/icons/MetricsKey.svg @@ -0,0 +1,276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mexty.svg b/src/images/icons/Mexty.svg new file mode 100644 index 00000000..f6122506 --- /dev/null +++ b/src/images/icons/Mexty.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Miappi.svg b/src/images/icons/Miappi.svg new file mode 100644 index 00000000..09b30304 --- /dev/null +++ b/src/images/icons/Miappi.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mico.svg b/src/images/icons/Mico.svg new file mode 100644 index 00000000..15ab3961 --- /dev/null +++ b/src/images/icons/Mico.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MicrosoftPowerBI.svg b/src/images/icons/MicrosoftPowerBI.svg new file mode 100644 index 00000000..e74dafe3 --- /dev/null +++ b/src/images/icons/MicrosoftPowerBI.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MicrosoftSilverlight.svg b/src/images/icons/MicrosoftSilverlight.svg new file mode 100644 index 00000000..a4bf7805 --- /dev/null +++ b/src/images/icons/MicrosoftSilverlight.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Midtrans.svg b/src/images/icons/Midtrans.svg new file mode 100644 index 00000000..b561fc93 --- /dev/null +++ b/src/images/icons/Midtrans.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Mieruca.svg b/src/images/icons/Mieruca.svg new file mode 100644 index 00000000..72e9b735 --- /dev/null +++ b/src/images/icons/Mieruca.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MiloTree.svg b/src/images/icons/MiloTree.svg new file mode 100644 index 00000000..af87949c --- /dev/null +++ b/src/images/icons/MiloTree.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Milonic.svg b/src/images/icons/Milonic.svg new file mode 100644 index 00000000..bea497e4 --- /dev/null +++ b/src/images/icons/Milonic.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Milvus.svg b/src/images/icons/Milvus.svg new file mode 100644 index 00000000..c14ad8a0 --- /dev/null +++ b/src/images/icons/Milvus.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mimiran.svg b/src/images/icons/Mimiran.svg new file mode 100644 index 00000000..0682494b --- /dev/null +++ b/src/images/icons/Mimiran.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MindStudio.svg b/src/images/icons/MindStudio.svg new file mode 100644 index 00000000..45570815 --- /dev/null +++ b/src/images/icons/MindStudio.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MineLabz.svg b/src/images/icons/MineLabz.svg new file mode 100644 index 00000000..7ad36f0e --- /dev/null +++ b/src/images/icons/MineLabz.svg @@ -0,0 +1,837 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Minerstat.svg b/src/images/icons/Minerstat.svg new file mode 100644 index 00000000..1830629a --- /dev/null +++ b/src/images/icons/Minerstat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MiniBC.svg b/src/images/icons/MiniBC.svg new file mode 100644 index 00000000..481bf5d1 --- /dev/null +++ b/src/images/icons/MiniBC.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Minted.svg b/src/images/icons/Minted.svg new file mode 100644 index 00000000..be2cd9cc --- /dev/null +++ b/src/images/icons/Minted.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mintox.svg b/src/images/icons/Mintox.svg new file mode 100644 index 00000000..e799a959 --- /dev/null +++ b/src/images/icons/Mintox.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mintpay.svg b/src/images/icons/Mintpay.svg new file mode 100644 index 00000000..580074a7 --- /dev/null +++ b/src/images/icons/Mintpay.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mioot.svg b/src/images/icons/Mioot.svg new file mode 100644 index 00000000..9fe34b77 --- /dev/null +++ b/src/images/icons/Mioot.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Mirador.svg b/src/images/icons/Mirador.svg new file mode 100644 index 00000000..bac0deb9 --- /dev/null +++ b/src/images/icons/Mirador.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Mirakl.svg b/src/images/icons/Mirakl.svg new file mode 100644 index 00000000..cfdacd3e --- /dev/null +++ b/src/images/icons/Mirakl.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mirus.svg b/src/images/icons/Mirus.svg new file mode 100644 index 00000000..cadf0617 --- /dev/null +++ b/src/images/icons/Mirus.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mirvac.svg b/src/images/icons/Mirvac.svg new file mode 100644 index 00000000..d9710626 --- /dev/null +++ b/src/images/icons/Mirvac.svg @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MissionSuite.svg b/src/images/icons/MissionSuite.svg new file mode 100644 index 00000000..cbbd2611 --- /dev/null +++ b/src/images/icons/MissionSuite.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moast.svg b/src/images/icons/Moast.svg new file mode 100644 index 00000000..ce14f74d --- /dev/null +++ b/src/images/icons/Moast.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Modelo.svg b/src/images/icons/Modelo.svg new file mode 100644 index 00000000..69b9eb62 --- /dev/null +++ b/src/images/icons/Modelo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Modio.svg b/src/images/icons/Modio.svg new file mode 100644 index 00000000..9ed72027 --- /dev/null +++ b/src/images/icons/Modio.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Modulify.svg b/src/images/icons/Modulify.svg new file mode 100644 index 00000000..0107c399 --- /dev/null +++ b/src/images/icons/Modulify.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MoinAI.svg b/src/images/icons/MoinAI.svg new file mode 100644 index 00000000..deb1baef --- /dev/null +++ b/src/images/icons/MoinAI.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/MojoHelpdesk.svg b/src/images/icons/MojoHelpdesk.svg new file mode 100644 index 00000000..cad9fddd --- /dev/null +++ b/src/images/icons/MojoHelpdesk.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moka.svg b/src/images/icons/Moka.svg new file mode 100644 index 00000000..5afceb91 --- /dev/null +++ b/src/images/icons/Moka.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Mokini.svg b/src/images/icons/Mokini.svg new file mode 100644 index 00000000..22baeec6 --- /dev/null +++ b/src/images/icons/Mokini.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/MolinAI.svg b/src/images/icons/MolinAI.svg new file mode 100644 index 00000000..e2420e3b --- /dev/null +++ b/src/images/icons/MolinAI.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MonetizePro.svg b/src/images/icons/MonetizePro.svg new file mode 100644 index 00000000..16b346fb --- /dev/null +++ b/src/images/icons/MonetizePro.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Monk.svg b/src/images/icons/Monk.svg new file mode 100644 index 00000000..56a4dc0f --- /dev/null +++ b/src/images/icons/Monk.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MonoBill.svg b/src/images/icons/MonoBill.svg new file mode 100644 index 00000000..85b45bdd --- /dev/null +++ b/src/images/icons/MonoBill.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Monocle.svg b/src/images/icons/Monocle.svg new file mode 100644 index 00000000..799f2a77 --- /dev/null +++ b/src/images/icons/Monocle.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MoonOrganizer.svg b/src/images/icons/MoonOrganizer.svg new file mode 100644 index 00000000..b7066b2b --- /dev/null +++ b/src/images/icons/MoonOrganizer.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Moori.svg b/src/images/icons/Moori.svg new file mode 100644 index 00000000..dbd1f4db --- /dev/null +++ b/src/images/icons/Moori.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moosend.svg b/src/images/icons/Moosend.svg new file mode 100644 index 00000000..d7ea35dc --- /dev/null +++ b/src/images/icons/Moosend.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Moostik.svg b/src/images/icons/Moostik.svg new file mode 100644 index 00000000..c3a3129e --- /dev/null +++ b/src/images/icons/Moostik.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moovin.svg b/src/images/icons/Moovin.svg new file mode 100644 index 00000000..a26d8d87 --- /dev/null +++ b/src/images/icons/Moovin.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mopro.svg b/src/images/icons/Mopro.svg new file mode 100644 index 00000000..11689932 --- /dev/null +++ b/src/images/icons/Mopro.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MoreVago.svg b/src/images/icons/MoreVago.svg new file mode 100644 index 00000000..158d0e0b --- /dev/null +++ b/src/images/icons/MoreVago.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Morningtrain.svg b/src/images/icons/Morningtrain.svg new file mode 100644 index 00000000..6e2648ca --- /dev/null +++ b/src/images/icons/Morningtrain.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Mosio.svg b/src/images/icons/Mosio.svg new file mode 100644 index 00000000..28b00056 --- /dev/null +++ b/src/images/icons/Mosio.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Motive.svg b/src/images/icons/Motive.svg new file mode 100644 index 00000000..a0aeab37 --- /dev/null +++ b/src/images/icons/Motive.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Mottle.svg b/src/images/icons/Mottle.svg new file mode 100644 index 00000000..09984807 --- /dev/null +++ b/src/images/icons/Mottle.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MoverBase.svg b/src/images/icons/MoverBase.svg new file mode 100644 index 00000000..2997725d --- /dev/null +++ b/src/images/icons/MoverBase.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Movylo.svg b/src/images/icons/Movylo.svg new file mode 100644 index 00000000..647a96ad --- /dev/null +++ b/src/images/icons/Movylo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Moyklass.svg b/src/images/icons/Moyklass.svg new file mode 100644 index 00000000..bb3eb0af --- /dev/null +++ b/src/images/icons/Moyklass.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MsCode.svg b/src/images/icons/MsCode.svg new file mode 100644 index 00000000..ac476438 --- /dev/null +++ b/src/images/icons/MsCode.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Muchat.svg b/src/images/icons/Muchat.svg new file mode 100644 index 00000000..8487231b --- /dev/null +++ b/src/images/icons/Muchat.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Muscula.svg b/src/images/icons/Muscula.svg new file mode 100644 index 00000000..7b2e1638 --- /dev/null +++ b/src/images/icons/Muscula.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Musement.svg b/src/images/icons/Musement.svg new file mode 100644 index 00000000..8aa6ccb3 --- /dev/null +++ b/src/images/icons/Musement.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Muvi.svg b/src/images/icons/Muvi.svg new file mode 100644 index 00000000..b733ebdd --- /dev/null +++ b/src/images/icons/Muvi.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/MyAgilePrivacy.svg b/src/images/icons/MyAgilePrivacy.svg new file mode 100644 index 00000000..ca5a1ccb --- /dev/null +++ b/src/images/icons/MyAgilePrivacy.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyAlice.svg b/src/images/icons/MyAlice.svg new file mode 100644 index 00000000..d7d2df85 --- /dev/null +++ b/src/images/icons/MyAlice.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/MyCred.svg b/src/images/icons/MyCred.svg new file mode 100644 index 00000000..1d8d375b --- /dev/null +++ b/src/images/icons/MyCred.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyEsalon.svg b/src/images/icons/MyEsalon.svg new file mode 100644 index 00000000..9db7d373 --- /dev/null +++ b/src/images/icons/MyEsalon.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/MyPersonas.svg b/src/images/icons/MyPersonas.svg new file mode 100644 index 00000000..01192954 --- /dev/null +++ b/src/images/icons/MyPersonas.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/MyPlay.svg b/src/images/icons/MyPlay.svg new file mode 100644 index 00000000..87592a0a --- /dev/null +++ b/src/images/icons/MyPlay.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyRest.svg b/src/images/icons/MyRest.svg new file mode 100644 index 00000000..6ee85724 --- /dev/null +++ b/src/images/icons/MyRest.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyStat.svg b/src/images/icons/MyStat.svg new file mode 100644 index 00000000..73ccfdcb --- /dev/null +++ b/src/images/icons/MyStat.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/MyTime.svg b/src/images/icons/MyTime.svg new file mode 100644 index 00000000..03d479fa --- /dev/null +++ b/src/images/icons/MyTime.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Myli.svg b/src/images/icons/Myli.svg new file mode 100644 index 00000000..950fbde0 --- /dev/null +++ b/src/images/icons/Myli.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Myma.svg b/src/images/icons/Myma.svg new file mode 100644 index 00000000..a91ee005 --- /dev/null +++ b/src/images/icons/Myma.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/N1ED.svg b/src/images/icons/N1ED.svg new file mode 100644 index 00000000..13c63ae1 --- /dev/null +++ b/src/images/icons/N1ED.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NET-RESULTS.svg b/src/images/icons/NET-RESULTS.svg new file mode 100644 index 00000000..97f85240 --- /dev/null +++ b/src/images/icons/NET-RESULTS.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NOCNOK.svg b/src/images/icons/NOCNOK.svg new file mode 100644 index 00000000..9e46e4fe --- /dev/null +++ b/src/images/icons/NOCNOK.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Namastay.svg b/src/images/icons/Namastay.svg new file mode 100644 index 00000000..f3601ee8 --- /dev/null +++ b/src/images/icons/Namastay.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NativeForms.svg b/src/images/icons/NativeForms.svg new file mode 100644 index 00000000..c4505b94 --- /dev/null +++ b/src/images/icons/NativeForms.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Naukri.svg b/src/images/icons/Naukri.svg new file mode 100644 index 00000000..2674f420 --- /dev/null +++ b/src/images/icons/Naukri.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Navegg.png b/src/images/icons/Navegg.png deleted file mode 100644 index 037dc61f..00000000 Binary files a/src/images/icons/Navegg.png and /dev/null differ diff --git a/src/images/icons/Navegg.svg b/src/images/icons/Navegg.svg new file mode 100644 index 00000000..3df38de6 --- /dev/null +++ b/src/images/icons/Navegg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Navu.svg b/src/images/icons/Navu.svg new file mode 100644 index 00000000..9487e4ca --- /dev/null +++ b/src/images/icons/Navu.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NebulaSites.svg b/src/images/icons/NebulaSites.svg new file mode 100644 index 00000000..c5b42379 --- /dev/null +++ b/src/images/icons/NebulaSites.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NeedStreet.svg b/src/images/icons/NeedStreet.svg new file mode 100644 index 00000000..83157512 --- /dev/null +++ b/src/images/icons/NeedStreet.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NeexaAI.svg b/src/images/icons/NeexaAI.svg new file mode 100644 index 00000000..81eed991 --- /dev/null +++ b/src/images/icons/NeexaAI.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Negate.svg b/src/images/icons/Negate.svg new file mode 100644 index 00000000..fd517701 --- /dev/null +++ b/src/images/icons/Negate.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nemu.svg b/src/images/icons/Nemu.svg new file mode 100644 index 00000000..a4095718 --- /dev/null +++ b/src/images/icons/Nemu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/NeoAssist.svg b/src/images/icons/NeoAssist.svg new file mode 100644 index 00000000..a51df591 --- /dev/null +++ b/src/images/icons/NeoAssist.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Neowize.svg b/src/images/icons/Neowize.svg new file mode 100644 index 00000000..0a27bfeb --- /dev/null +++ b/src/images/icons/Neowize.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/NepchaAnalytics.svg b/src/images/icons/NepchaAnalytics.svg new file mode 100644 index 00000000..0b726204 --- /dev/null +++ b/src/images/icons/NepchaAnalytics.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Neshan.svg b/src/images/icons/Neshan.svg new file mode 100644 index 00000000..2c840b22 --- /dev/null +++ b/src/images/icons/Neshan.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Netop.svg b/src/images/icons/Netop.svg new file mode 100644 index 00000000..eea9899a --- /dev/null +++ b/src/images/icons/Netop.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NetroxSC.svg b/src/images/icons/NetroxSC.svg new file mode 100644 index 00000000..c6563fde --- /dev/null +++ b/src/images/icons/NetroxSC.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Netvibes.svg b/src/images/icons/Netvibes.svg new file mode 100644 index 00000000..be29f7a2 --- /dev/null +++ b/src/images/icons/Netvibes.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NewUI.svg b/src/images/icons/NewUI.svg new file mode 100644 index 00000000..68a53f03 --- /dev/null +++ b/src/images/icons/NewUI.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Newo.svg b/src/images/icons/Newo.svg new file mode 100644 index 00000000..6c108203 --- /dev/null +++ b/src/images/icons/Newo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nexxt.svg b/src/images/icons/Nexxt.svg new file mode 100644 index 00000000..64c7ffbf --- /dev/null +++ b/src/images/icons/Nexxt.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nexxtmove.svg b/src/images/icons/Nexxtmove.svg new file mode 100644 index 00000000..87bd5b26 --- /dev/null +++ b/src/images/icons/Nexxtmove.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NgageLiveChat.svg b/src/images/icons/NgageLiveChat.svg new file mode 100644 index 00000000..2bc346b3 --- /dev/null +++ b/src/images/icons/NgageLiveChat.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nibiru Ecommerce.svg b/src/images/icons/Nibiru Ecommerce.svg new file mode 100644 index 00000000..85b94b18 --- /dev/null +++ b/src/images/icons/Nibiru Ecommerce.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/NidoTecnologia.svg b/src/images/icons/NidoTecnologia.svg new file mode 100644 index 00000000..24dee6bc --- /dev/null +++ b/src/images/icons/NidoTecnologia.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NightsBridge.svg b/src/images/icons/NightsBridge.svg new file mode 100644 index 00000000..d0f0b4fa --- /dev/null +++ b/src/images/icons/NightsBridge.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Niice.svg b/src/images/icons/Niice.svg new file mode 100644 index 00000000..8bcb3090 --- /dev/null +++ b/src/images/icons/Niice.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nimbata.svg b/src/images/icons/Nimbata.svg new file mode 100644 index 00000000..ebe96010 --- /dev/null +++ b/src/images/icons/Nimbata.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nimbu.svg b/src/images/icons/Nimbu.svg new file mode 100644 index 00000000..ec7bdb1f --- /dev/null +++ b/src/images/icons/Nimbu.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Ninchat.svg b/src/images/icons/Ninchat.svg new file mode 100644 index 00000000..c85cea9f --- /dev/null +++ b/src/images/icons/Ninchat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/NinjaCat.svg b/src/images/icons/NinjaCat.svg new file mode 100644 index 00000000..af4beeb8 --- /dev/null +++ b/src/images/icons/NinjaCat.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NoPaperForms.svg b/src/images/icons/NoPaperForms.svg new file mode 100644 index 00000000..83b2d870 --- /dev/null +++ b/src/images/icons/NoPaperForms.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nody.svg b/src/images/icons/Nody.svg new file mode 100644 index 00000000..2d654f9b --- /dev/null +++ b/src/images/icons/Nody.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Nogin.png b/src/images/icons/Nogin.png deleted file mode 100644 index 3fb46359..00000000 Binary files a/src/images/icons/Nogin.png and /dev/null differ diff --git a/src/images/icons/Nogin.svg b/src/images/icons/Nogin.svg new file mode 100644 index 00000000..108e4202 --- /dev/null +++ b/src/images/icons/Nogin.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nolt.svg b/src/images/icons/Nolt.svg new file mode 100644 index 00000000..a93248b0 --- /dev/null +++ b/src/images/icons/Nolt.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NoodleFactory.svg b/src/images/icons/NoodleFactory.svg new file mode 100644 index 00000000..3a5a90e7 --- /dev/null +++ b/src/images/icons/NoodleFactory.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nookal.svg b/src/images/icons/Nookal.svg new file mode 100644 index 00000000..e7e6a98b --- /dev/null +++ b/src/images/icons/Nookal.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nordcraft.svg b/src/images/icons/Nordcraft.svg new file mode 100644 index 00000000..a5ea0c76 --- /dev/null +++ b/src/images/icons/Nordcraft.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Normalize.svg b/src/images/icons/Normalize.svg new file mode 100644 index 00000000..31027e42 --- /dev/null +++ b/src/images/icons/Normalize.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NorthStarCivic.svg b/src/images/icons/NorthStarCivic.svg new file mode 100644 index 00000000..1be64019 --- /dev/null +++ b/src/images/icons/NorthStarCivic.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/NorthstarClubManagement.svg b/src/images/icons/NorthstarClubManagement.svg new file mode 100644 index 00000000..c91699ef --- /dev/null +++ b/src/images/icons/NorthstarClubManagement.svg @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Nostra.png b/src/images/icons/Nostra.png new file mode 100644 index 00000000..157c25b7 Binary files /dev/null and b/src/images/icons/Nostra.png differ diff --git a/src/images/icons/Noticeable.svg b/src/images/icons/Noticeable.svg new file mode 100644 index 00000000..b931fb0a --- /dev/null +++ b/src/images/icons/Noticeable.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NovaBusca.svg b/src/images/icons/NovaBusca.svg new file mode 100644 index 00000000..38c19daf --- /dev/null +++ b/src/images/icons/NovaBusca.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/NovaDB.svg b/src/images/icons/NovaDB.svg new file mode 100644 index 00000000..08c433a0 --- /dev/null +++ b/src/images/icons/NovaDB.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Novaresa.svg b/src/images/icons/Novaresa.svg new file mode 100644 index 00000000..9c1ea6c3 --- /dev/null +++ b/src/images/icons/Novaresa.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Novel.svg b/src/images/icons/Novel.svg new file mode 100644 index 00000000..d973d90b --- /dev/null +++ b/src/images/icons/Novel.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/NowButtons.svg b/src/images/icons/NowButtons.svg new file mode 100644 index 00000000..7d09fc3b --- /dev/null +++ b/src/images/icons/NowButtons.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nowfloats.svg b/src/images/icons/Nowfloats.svg new file mode 100644 index 00000000..06c73460 --- /dev/null +++ b/src/images/icons/Nowfloats.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Nurture.svg b/src/images/icons/Nurture.svg new file mode 100644 index 00000000..1adcd8a5 --- /dev/null +++ b/src/images/icons/Nurture.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/NurtureBoss.svg b/src/images/icons/NurtureBoss.svg new file mode 100644 index 00000000..e590d3c2 --- /dev/null +++ b/src/images/icons/NurtureBoss.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Nyehandel.svg b/src/images/icons/Nyehandel.svg new file mode 100644 index 00000000..ec1b25b3 --- /dev/null +++ b/src/images/icons/Nyehandel.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OCC.svg b/src/images/icons/OCC.svg new file mode 100644 index 00000000..92219c9e --- /dev/null +++ b/src/images/icons/OCC.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OClocher.svg b/src/images/icons/OClocher.svg new file mode 100644 index 00000000..236860d7 --- /dev/null +++ b/src/images/icons/OClocher.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ONiAD.svg b/src/images/icons/ONiAD.svg new file mode 100644 index 00000000..fbb603ea --- /dev/null +++ b/src/images/icons/ONiAD.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oat.svg b/src/images/icons/Oat.svg new file mode 100644 index 00000000..6f960ed4 --- /dev/null +++ b/src/images/icons/Oat.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Octane.svg b/src/images/icons/Octane.svg new file mode 100644 index 00000000..aeb8c98a --- /dev/null +++ b/src/images/icons/Octane.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oddcast.svg b/src/images/icons/Oddcast.svg new file mode 100644 index 00000000..036cf8db --- /dev/null +++ b/src/images/icons/Oddcast.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Offset.svg b/src/images/icons/Offset.svg new file mode 100644 index 00000000..0e50cef5 --- /dev/null +++ b/src/images/icons/Offset.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ohava.svg b/src/images/icons/Ohava.svg new file mode 100644 index 00000000..55d709b5 --- /dev/null +++ b/src/images/icons/Ohava.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Olark.png b/src/images/icons/Olark.png deleted file mode 100644 index 9dd473c5..00000000 Binary files a/src/images/icons/Olark.png and /dev/null differ diff --git a/src/images/icons/Olark.svg b/src/images/icons/Olark.svg new file mode 100644 index 00000000..78b50873 --- /dev/null +++ b/src/images/icons/Olark.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Oleoshop.svg b/src/images/icons/Oleoshop.svg new file mode 100644 index 00000000..2544beeb --- /dev/null +++ b/src/images/icons/Oleoshop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Olvy.svg b/src/images/icons/Olvy.svg new file mode 100644 index 00000000..73ffccc2 --- /dev/null +++ b/src/images/icons/Olvy.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Omacro.svg b/src/images/icons/Omacro.svg new file mode 100644 index 00000000..83421965 --- /dev/null +++ b/src/images/icons/Omacro.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Omeda.svg b/src/images/icons/Omeda.svg new file mode 100644 index 00000000..88fd8104 --- /dev/null +++ b/src/images/icons/Omeda.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/OmegaCommerce.svg b/src/images/icons/OmegaCommerce.svg new file mode 100644 index 00000000..eb5f79b6 --- /dev/null +++ b/src/images/icons/OmegaCommerce.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ometrics.svg b/src/images/icons/Ometrics.svg new file mode 100644 index 00000000..e5d504ea --- /dev/null +++ b/src/images/icons/Ometrics.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Omie.svg b/src/images/icons/Omie.svg new file mode 100644 index 00000000..e7724113 --- /dev/null +++ b/src/images/icons/Omie.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Omnikick.svg b/src/images/icons/Omnikick.svg new file mode 100644 index 00000000..79905550 --- /dev/null +++ b/src/images/icons/Omnikick.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnChat.svg b/src/images/icons/OnChat.svg new file mode 100644 index 00000000..95c14965 --- /dev/null +++ b/src/images/icons/OnChat.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnSip.svg b/src/images/icons/OnSip.svg new file mode 100644 index 00000000..059eb592 --- /dev/null +++ b/src/images/icons/OnSip.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnSiteSupport.svg b/src/images/icons/OnSiteSupport.svg new file mode 100644 index 00000000..20f1e2cc --- /dev/null +++ b/src/images/icons/OnSiteSupport.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/OnTheMap.svg b/src/images/icons/OnTheMap.svg new file mode 100644 index 00000000..c511d56d --- /dev/null +++ b/src/images/icons/OnTheMap.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ondestek.svg b/src/images/icons/Ondestek.svg new file mode 100644 index 00000000..c39baea5 --- /dev/null +++ b/src/images/icons/Ondestek.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OneCommerce.svg b/src/images/icons/OneCommerce.svg new file mode 100644 index 00000000..00495ccf --- /dev/null +++ b/src/images/icons/OneCommerce.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Onehub.svg b/src/images/icons/Onehub.svg new file mode 100644 index 00000000..03910c42 --- /dev/null +++ b/src/images/icons/Onehub.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onepage.svg b/src/images/icons/Onepage.svg new file mode 100644 index 00000000..b63e6a7d --- /dev/null +++ b/src/images/icons/Onepage.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onicon.svg b/src/images/icons/Onicon.svg new file mode 100644 index 00000000..a43d12f2 --- /dev/null +++ b/src/images/icons/Onicon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OnlineSucces.svg b/src/images/icons/OnlineSucces.svg new file mode 100644 index 00000000..769251c2 --- /dev/null +++ b/src/images/icons/OnlineSucces.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Onlyfy.svg b/src/images/icons/Onlyfy.svg new file mode 100644 index 00000000..7b021445 --- /dev/null +++ b/src/images/icons/Onlyfy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/OnsenUI.svg b/src/images/icons/OnsenUI.svg new file mode 100644 index 00000000..137a3c9c --- /dev/null +++ b/src/images/icons/OnsenUI.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpTuNE.svg b/src/images/icons/OpTuNE.svg new file mode 100644 index 00000000..8f8f4eef --- /dev/null +++ b/src/images/icons/OpTuNE.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/OpenChat.svg b/src/images/icons/OpenChat.svg new file mode 100644 index 00000000..197f02a6 --- /dev/null +++ b/src/images/icons/OpenChat.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpenPanel.svg b/src/images/icons/OpenPanel.svg new file mode 100644 index 00000000..293b9151 --- /dev/null +++ b/src/images/icons/OpenPanel.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Opentracker.svg b/src/images/icons/Opentracker.svg new file mode 100644 index 00000000..912f349a --- /dev/null +++ b/src/images/icons/Opentracker.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Opesta.svg b/src/images/icons/Opesta.svg new file mode 100644 index 00000000..5e1fea59 --- /dev/null +++ b/src/images/icons/Opesta.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpinionBar.svg b/src/images/icons/OpinionBar.svg new file mode 100644 index 00000000..2994aa4d --- /dev/null +++ b/src/images/icons/OpinionBar.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OpnForm.svg b/src/images/icons/OpnForm.svg new file mode 100644 index 00000000..d29b5053 --- /dev/null +++ b/src/images/icons/OpnForm.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Optimole.svg b/src/images/icons/Optimole.svg new file mode 100644 index 00000000..3d12fd05 --- /dev/null +++ b/src/images/icons/Optimole.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OptimxSports.svg b/src/images/icons/OptimxSports.svg new file mode 100644 index 00000000..be90d7d6 --- /dev/null +++ b/src/images/icons/OptimxSports.svg @@ -0,0 +1,1101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Optimy.svg b/src/images/icons/Optimy.svg new file mode 100644 index 00000000..80d378fd --- /dev/null +++ b/src/images/icons/Optimy.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Optinopoli.svg b/src/images/icons/Optinopoli.svg new file mode 100644 index 00000000..e30d5d0a --- /dev/null +++ b/src/images/icons/Optinopoli.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OrderPort.svg b/src/images/icons/OrderPort.svg new file mode 100644 index 00000000..72dae627 --- /dev/null +++ b/src/images/icons/OrderPort.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Ordering.svg b/src/images/icons/Ordering.svg new file mode 100644 index 00000000..4ebbb69f --- /dev/null +++ b/src/images/icons/Ordering.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Orimon.svg b/src/images/icons/Orimon.svg new file mode 100644 index 00000000..ae0be423 --- /dev/null +++ b/src/images/icons/Orimon.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OtterText.svg b/src/images/icons/OtterText.svg new file mode 100644 index 00000000..91c74f49 --- /dev/null +++ b/src/images/icons/OtterText.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Otto.svg b/src/images/icons/Otto.svg new file mode 100644 index 00000000..dc4cc2fb --- /dev/null +++ b/src/images/icons/Otto.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Outfindo.svg b/src/images/icons/Outfindo.svg new file mode 100644 index 00000000..884a2f1c --- /dev/null +++ b/src/images/icons/Outfindo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/Outfunnel.svg b/src/images/icons/Outfunnel.svg new file mode 100644 index 00000000..0995fe78 --- /dev/null +++ b/src/images/icons/Outfunnel.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Outplay.svg b/src/images/icons/Outplay.svg new file mode 100644 index 00000000..f9ab0a1b --- /dev/null +++ b/src/images/icons/Outplay.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ova.svg b/src/images/icons/Ova.svg new file mode 100644 index 00000000..b7716961 --- /dev/null +++ b/src/images/icons/Ova.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/OverBlog.svg b/src/images/icons/OverBlog.svg new file mode 100644 index 00000000..e1e42833 --- /dev/null +++ b/src/images/icons/OverBlog.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Overfull.svg b/src/images/icons/Overfull.svg new file mode 100644 index 00000000..0f875d87 --- /dev/null +++ b/src/images/icons/Overfull.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Overloop.svg b/src/images/icons/Overloop.svg new file mode 100644 index 00000000..5df496cb --- /dev/null +++ b/src/images/icons/Overloop.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Overwolf.svg b/src/images/icons/Overwolf.svg new file mode 100644 index 00000000..2f8721c1 --- /dev/null +++ b/src/images/icons/Overwolf.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Owids.svg b/src/images/icons/Owids.svg new file mode 100644 index 00000000..467d37c4 --- /dev/null +++ b/src/images/icons/Owids.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/OxyShop.svg b/src/images/icons/OxyShop.svg new file mode 100644 index 00000000..f9669123 --- /dev/null +++ b/src/images/icons/OxyShop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/P3chat.svg b/src/images/icons/P3chat.svg new file mode 100644 index 00000000..c169d3a5 --- /dev/null +++ b/src/images/icons/P3chat.svg @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PAYTR.svg b/src/images/icons/PAYTR.svg new file mode 100644 index 00000000..2fa255a6 --- /dev/null +++ b/src/images/icons/PAYTR.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PHPWCMS.svg b/src/images/icons/PHPWCMS.svg new file mode 100644 index 00000000..da887c04 --- /dev/null +++ b/src/images/icons/PHPWCMS.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/POINT.svg b/src/images/icons/POINT.svg new file mode 100644 index 00000000..806d9720 --- /dev/null +++ b/src/images/icons/POINT.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PSPad.svg b/src/images/icons/PSPad.svg new file mode 100644 index 00000000..6090c264 --- /dev/null +++ b/src/images/icons/PSPad.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pabbly.svg b/src/images/icons/Pabbly.svg new file mode 100644 index 00000000..fb63ce43 --- /dev/null +++ b/src/images/icons/Pabbly.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PackageAI.svg b/src/images/icons/PackageAI.svg new file mode 100644 index 00000000..c2d08861 --- /dev/null +++ b/src/images/icons/PackageAI.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Packman.svg b/src/images/icons/Packman.svg new file mode 100644 index 00000000..6dc9b0d2 --- /dev/null +++ b/src/images/icons/Packman.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Paessler.svg b/src/images/icons/Paessler.svg new file mode 100644 index 00000000..c960b130 --- /dev/null +++ b/src/images/icons/Paessler.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PageNudge.svg b/src/images/icons/PageNudge.svg new file mode 100644 index 00000000..a1dd7096 --- /dev/null +++ b/src/images/icons/PageNudge.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pagemaker.svg b/src/images/icons/Pagemaker.svg new file mode 100644 index 00000000..a13ba8bf --- /dev/null +++ b/src/images/icons/Pagemaker.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PagineGialle.svg b/src/images/icons/PagineGialle.svg new file mode 100644 index 00000000..78572e04 --- /dev/null +++ b/src/images/icons/PagineGialle.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Palbin.svg b/src/images/icons/Palbin.svg new file mode 100644 index 00000000..fdaf0f78 --- /dev/null +++ b/src/images/icons/Palbin.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pancake.svg b/src/images/icons/Pancake.svg new file mode 100644 index 00000000..96fa6772 --- /dev/null +++ b/src/images/icons/Pancake.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PandaCSS.svg b/src/images/icons/PandaCSS.svg index 27d033a6..be9459f3 100644 --- a/src/images/icons/PandaCSS.svg +++ b/src/images/icons/PandaCSS.svg @@ -1,4 +1,4 @@ - - + + diff --git a/src/images/icons/PandaVideo.svg b/src/images/icons/PandaVideo.svg new file mode 100644 index 00000000..3765c7ee --- /dev/null +++ b/src/images/icons/PandaVideo.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pandectes.svg b/src/images/icons/Pandectes.svg new file mode 100644 index 00000000..5a796b82 --- /dev/null +++ b/src/images/icons/Pandectes.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PapaParse.svg b/src/images/icons/PapaParse.svg new file mode 100644 index 00000000..2d63745c --- /dev/null +++ b/src/images/icons/PapaParse.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PaperlessPipeline.svg b/src/images/icons/PaperlessPipeline.svg new file mode 100644 index 00000000..bf65e45c --- /dev/null +++ b/src/images/icons/PaperlessPipeline.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParaglideJS.svg b/src/images/icons/ParaglideJS.svg new file mode 100644 index 00000000..e53756d1 --- /dev/null +++ b/src/images/icons/ParaglideJS.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParcelPanel.svg b/src/images/icons/ParcelPanel.svg new file mode 100644 index 00000000..41d8964d --- /dev/null +++ b/src/images/icons/ParcelPanel.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Parentapps.svg b/src/images/icons/Parentapps.svg new file mode 100644 index 00000000..2a956b9d --- /dev/null +++ b/src/images/icons/Parentapps.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParkFlow.svg b/src/images/icons/ParkFlow.svg new file mode 100644 index 00000000..5905180a --- /dev/null +++ b/src/images/icons/ParkFlow.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ParsePlatform.svg b/src/images/icons/ParsePlatform.svg new file mode 100644 index 00000000..c695dded --- /dev/null +++ b/src/images/icons/ParsePlatform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PartnerDriven.svg b/src/images/icons/PartnerDriven.svg new file mode 100644 index 00000000..21bbd2ce --- /dev/null +++ b/src/images/icons/PartnerDriven.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PartnerFleet.svg b/src/images/icons/PartnerFleet.svg new file mode 100644 index 00000000..b568dc39 --- /dev/null +++ b/src/images/icons/PartnerFleet.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PartsSquare.svg b/src/images/icons/PartsSquare.svg new file mode 100644 index 00000000..db239dd1 --- /dev/null +++ b/src/images/icons/PartsSquare.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Passle.svg b/src/images/icons/Passle.svg new file mode 100644 index 00000000..5ab3c99a --- /dev/null +++ b/src/images/icons/Passle.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Passport.svg b/src/images/icons/Passport.svg new file mode 100644 index 00000000..1e5e68e8 --- /dev/null +++ b/src/images/icons/Passport.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pathful.svg b/src/images/icons/Pathful.svg new file mode 100644 index 00000000..12da3c11 --- /dev/null +++ b/src/images/icons/Pathful.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PatientLoop.svg b/src/images/icons/PatientLoop.svg new file mode 100644 index 00000000..04940d77 --- /dev/null +++ b/src/images/icons/PatientLoop.svg @@ -0,0 +1,405 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PatientPrism.svg b/src/images/icons/PatientPrism.svg new file mode 100644 index 00000000..1ba7c9a6 --- /dev/null +++ b/src/images/icons/PatientPrism.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayHere.svg b/src/images/icons/PayHere.svg new file mode 100644 index 00000000..3939ab0e --- /dev/null +++ b/src/images/icons/PayHere.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PayNL.svg b/src/images/icons/PayNL.svg new file mode 100644 index 00000000..447ccf3d --- /dev/null +++ b/src/images/icons/PayNL.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayU.svg b/src/images/icons/PayU.svg new file mode 100644 index 00000000..d4d3e67d --- /dev/null +++ b/src/images/icons/PayU.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Paycove.svg b/src/images/icons/Paycove.svg new file mode 100644 index 00000000..966c0a97 --- /dev/null +++ b/src/images/icons/Paycove.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Paydock.svg b/src/images/icons/Paydock.svg new file mode 100644 index 00000000..565bf8fc --- /dev/null +++ b/src/images/icons/Paydock.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Payhip.svg b/src/images/icons/Payhip.svg new file mode 100644 index 00000000..5c382bc2 --- /dev/null +++ b/src/images/icons/Payhip.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PayloadCMS.svg b/src/images/icons/PayloadCMS.svg new file mode 100644 index 00000000..43572c80 --- /dev/null +++ b/src/images/icons/PayloadCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Paymattic.svg b/src/images/icons/Paymattic.svg new file mode 100644 index 00000000..ecafb051 --- /dev/null +++ b/src/images/icons/Paymattic.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Paymentus.svg b/src/images/icons/Paymentus.svg new file mode 100644 index 00000000..36c9be3d --- /dev/null +++ b/src/images/icons/Paymentus.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Payva.svg b/src/images/icons/Payva.svg new file mode 100644 index 00000000..83ebb2ff --- /dev/null +++ b/src/images/icons/Payva.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peachie.svg b/src/images/icons/Peachie.svg new file mode 100644 index 00000000..b197db97 --- /dev/null +++ b/src/images/icons/Peachie.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peachs.svg b/src/images/icons/Peachs.svg new file mode 100644 index 00000000..c300d74a --- /dev/null +++ b/src/images/icons/Peachs.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PearCommerce.svg b/src/images/icons/PearCommerce.svg new file mode 100644 index 00000000..ce5e085b --- /dev/null +++ b/src/images/icons/PearCommerce.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeckaDesignPublicator.svg b/src/images/icons/PeckaDesignPublicator.svg new file mode 100644 index 00000000..5138a57e --- /dev/null +++ b/src/images/icons/PeckaDesignPublicator.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Peddle.svg b/src/images/icons/Peddle.svg new file mode 100644 index 00000000..aa4e112f --- /dev/null +++ b/src/images/icons/Peddle.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peecho.svg b/src/images/icons/Peecho.svg new file mode 100644 index 00000000..5fd79b2c --- /dev/null +++ b/src/images/icons/Peecho.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Peel.svg b/src/images/icons/Peel.svg new file mode 100644 index 00000000..858a122d --- /dev/null +++ b/src/images/icons/Peel.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeerJS.svg b/src/images/icons/PeerJS.svg new file mode 100644 index 00000000..3589d3bf --- /dev/null +++ b/src/images/icons/PeerJS.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PeerPal.svg b/src/images/icons/PeerPal.svg new file mode 100644 index 00000000..aef10184 --- /dev/null +++ b/src/images/icons/PeerPal.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Peftrust.svg b/src/images/icons/Peftrust.svg new file mode 100644 index 00000000..783364cc --- /dev/null +++ b/src/images/icons/Peftrust.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pelcro.svg b/src/images/icons/Pelcro.svg new file mode 100644 index 00000000..71538db2 --- /dev/null +++ b/src/images/icons/Pelcro.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PepperCloud.svg b/src/images/icons/PepperCloud.svg new file mode 100644 index 00000000..93f5c65d --- /dev/null +++ b/src/images/icons/PepperCloud.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Percy.svg b/src/images/icons/Percy.svg new file mode 100644 index 00000000..e43ccc20 --- /dev/null +++ b/src/images/icons/Percy.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PerfectCorp.svg b/src/images/icons/PerfectCorp.svg new file mode 100644 index 00000000..22103aa5 --- /dev/null +++ b/src/images/icons/PerfectCorp.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PerfectStorm.svg b/src/images/icons/PerfectStorm.svg new file mode 100644 index 00000000..231a91a4 --- /dev/null +++ b/src/images/icons/PerfectStorm.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Persona.svg b/src/images/icons/Persona.svg new file mode 100644 index 00000000..ffcf302a --- /dev/null +++ b/src/images/icons/Persona.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Personyze.svg b/src/images/icons/Personyze.svg new file mode 100644 index 00000000..000bc9cd --- /dev/null +++ b/src/images/icons/Personyze.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Phenom.svg b/src/images/icons/Phenom.svg new file mode 100644 index 00000000..1ae3b378 --- /dev/null +++ b/src/images/icons/Phenom.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PhoenixCart.svg b/src/images/icons/PhoenixCart.svg new file mode 100644 index 00000000..0457219a --- /dev/null +++ b/src/images/icons/PhoenixCart.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Phonon.svg b/src/images/icons/Phonon.svg new file mode 100644 index 00000000..887b146d --- /dev/null +++ b/src/images/icons/Phonon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PiAds.svg b/src/images/icons/PiAds.svg new file mode 100644 index 00000000..48524761 --- /dev/null +++ b/src/images/icons/PiAds.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Picatcha.svg b/src/images/icons/Picatcha.svg new file mode 100644 index 00000000..360d6bc0 --- /dev/null +++ b/src/images/icons/Picatcha.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Pickaxe.svg b/src/images/icons/Pickaxe.svg new file mode 100644 index 00000000..183fa308 --- /dev/null +++ b/src/images/icons/Pickaxe.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pickrr.svg b/src/images/icons/Pickrr.svg new file mode 100644 index 00000000..579fdb58 --- /dev/null +++ b/src/images/icons/Pickrr.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pickzen.svg b/src/images/icons/Pickzen.svg new file mode 100644 index 00000000..d64c6368 --- /dev/null +++ b/src/images/icons/Pickzen.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PictureIt.svg b/src/images/icons/PictureIt.svg new file mode 100644 index 00000000..798b0292 --- /dev/null +++ b/src/images/icons/PictureIt.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PieEye.svg b/src/images/icons/PieEye.svg new file mode 100644 index 00000000..12a53b27 --- /dev/null +++ b/src/images/icons/PieEye.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Piggy.svg b/src/images/icons/Piggy.svg new file mode 100644 index 00000000..588954b1 --- /dev/null +++ b/src/images/icons/Piggy.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Pilera.svg b/src/images/icons/Pilera.svg new file mode 100644 index 00000000..144f43e7 --- /dev/null +++ b/src/images/icons/Pilera.svg @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pimster.svg b/src/images/icons/Pimster.svg new file mode 100644 index 00000000..f00571e2 --- /dev/null +++ b/src/images/icons/Pimster.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pinboard.svg b/src/images/icons/Pinboard.svg new file mode 100644 index 00000000..83e5ece1 --- /dev/null +++ b/src/images/icons/Pinboard.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PineappleBuilder.svg b/src/images/icons/PineappleBuilder.svg new file mode 100644 index 00000000..ee123f6c --- /dev/null +++ b/src/images/icons/PineappleBuilder.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pinpoll.svg b/src/images/icons/Pinpoll.svg new file mode 100644 index 00000000..f4fa04e1 --- /dev/null +++ b/src/images/icons/Pinpoll.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Piperun.svg b/src/images/icons/Piperun.svg new file mode 100644 index 00000000..5dcbbb4f --- /dev/null +++ b/src/images/icons/Piperun.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Pixelesq.svg b/src/images/icons/Pixelesq.svg new file mode 100644 index 00000000..97bc7af5 --- /dev/null +++ b/src/images/icons/Pixelesq.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Pixeleze.svg b/src/images/icons/Pixeleze.svg new file mode 100644 index 00000000..4f4c7a9e --- /dev/null +++ b/src/images/icons/Pixeleze.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pixenio.svg b/src/images/icons/Pixenio.svg new file mode 100644 index 00000000..39a1dcd3 --- /dev/null +++ b/src/images/icons/Pixenio.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Placed.svg b/src/images/icons/Placed.svg new file mode 100644 index 00000000..edeeed13 --- /dev/null +++ b/src/images/icons/Placed.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Placester.svg b/src/images/icons/Placester.svg new file mode 100644 index 00000000..061a2949 --- /dev/null +++ b/src/images/icons/Placester.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plait.svg b/src/images/icons/Plait.svg new file mode 100644 index 00000000..b8ea4a7f --- /dev/null +++ b/src/images/icons/Plait.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Planfy.svg b/src/images/icons/Planfy.svg new file mode 100644 index 00000000..a2b5348b --- /dev/null +++ b/src/images/icons/Planfy.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planio.svg b/src/images/icons/Planio.svg new file mode 100644 index 00000000..bc7f3294 --- /dev/null +++ b/src/images/icons/Planio.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Planne.svg b/src/images/icons/Planne.svg new file mode 100644 index 00000000..c270c4c2 --- /dev/null +++ b/src/images/icons/Planne.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlanningPod.svg b/src/images/icons/PlanningPod.svg new file mode 100644 index 00000000..f4f616e0 --- /dev/null +++ b/src/images/icons/PlanningPod.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planoplan.svg b/src/images/icons/Planoplan.svg new file mode 100644 index 00000000..d25492e8 --- /dev/null +++ b/src/images/icons/Planoplan.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planway.svg b/src/images/icons/Planway.svg new file mode 100644 index 00000000..6b4f4478 --- /dev/null +++ b/src/images/icons/Planway.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Planyo.svg b/src/images/icons/Planyo.svg new file mode 100644 index 00000000..97464a29 --- /dev/null +++ b/src/images/icons/Planyo.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Planzer.svg b/src/images/icons/Planzer.svg new file mode 100644 index 00000000..12f2dba1 --- /dev/null +++ b/src/images/icons/Planzer.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plate.svg b/src/images/icons/Plate.svg new file mode 100644 index 00000000..0363c1f5 --- /dev/null +++ b/src/images/icons/Plate.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Platformly.svg b/src/images/icons/Platformly.svg new file mode 100644 index 00000000..f08dbf3f --- /dev/null +++ b/src/images/icons/Platformly.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plattar.svg b/src/images/icons/Plattar.svg new file mode 100644 index 00000000..ac2b9036 --- /dev/null +++ b/src/images/icons/Plattar.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plenigo.svg b/src/images/icons/Plenigo.svg new file mode 100644 index 00000000..222b1048 --- /dev/null +++ b/src/images/icons/Plenigo.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlentyONE.svg b/src/images/icons/PlentyONE.svg new file mode 100644 index 00000000..72e0979d --- /dev/null +++ b/src/images/icons/PlentyONE.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Plerdy.svg b/src/images/icons/Plerdy.svg new file mode 100644 index 00000000..5c35bde4 --- /dev/null +++ b/src/images/icons/Plerdy.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plices.svg b/src/images/icons/Plices.svg new file mode 100644 index 00000000..63c7e2ac --- /dev/null +++ b/src/images/icons/Plices.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Plivo.svg b/src/images/icons/Plivo.svg new file mode 100644 index 00000000..6989bd81 --- /dev/null +++ b/src/images/icons/Plivo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Plotch.svg b/src/images/icons/Plotch.svg new file mode 100644 index 00000000..7c039ea5 --- /dev/null +++ b/src/images/icons/Plotch.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pluglin.svg b/src/images/icons/Pluglin.svg new file mode 100644 index 00000000..75189acc --- /dev/null +++ b/src/images/icons/Pluglin.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plugo.svg b/src/images/icons/Plugo.svg new file mode 100644 index 00000000..c35ee289 --- /dev/null +++ b/src/images/icons/Plugo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Plum.svg b/src/images/icons/Plum.svg new file mode 100644 index 00000000..3224c6bd --- /dev/null +++ b/src/images/icons/Plum.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plupload.svg b/src/images/icons/Plupload.svg new file mode 100644 index 00000000..6848ce55 --- /dev/null +++ b/src/images/icons/Plupload.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pluralo.svg b/src/images/icons/Pluralo.svg new file mode 100644 index 00000000..2be79fcd --- /dev/null +++ b/src/images/icons/Pluralo.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlusProComponents.svg b/src/images/icons/PlusProComponents.svg new file mode 100644 index 00000000..35e6543d --- /dev/null +++ b/src/images/icons/PlusProComponents.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PlusThis.svg b/src/images/icons/PlusThis.svg new file mode 100644 index 00000000..89976be4 --- /dev/null +++ b/src/images/icons/PlusThis.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Plytix.svg b/src/images/icons/Plytix.svg new file mode 100644 index 00000000..54c70788 --- /dev/null +++ b/src/images/icons/Plytix.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pobo.svg b/src/images/icons/Pobo.svg new file mode 100644 index 00000000..9b1ac0ec --- /dev/null +++ b/src/images/icons/Pobo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pobuca.svg b/src/images/icons/Pobuca.svg new file mode 100644 index 00000000..5a1e7613 --- /dev/null +++ b/src/images/icons/Pobuca.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pocus.svg b/src/images/icons/Pocus.svg new file mode 100644 index 00000000..660e9c5e --- /dev/null +++ b/src/images/icons/Pocus.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/Podio.svg b/src/images/icons/Podio.svg new file mode 100644 index 00000000..9a5a70c3 --- /dev/null +++ b/src/images/icons/Podio.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Podpage.svg b/src/images/icons/Podpage.svg new file mode 100644 index 00000000..0b4563ae --- /dev/null +++ b/src/images/icons/Podpage.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PolarAnalytics.svg b/src/images/icons/PolarAnalytics.svg new file mode 100644 index 00000000..0c704014 --- /dev/null +++ b/src/images/icons/PolarAnalytics.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PollEverywhere.svg b/src/images/icons/PollEverywhere.svg new file mode 100644 index 00000000..c64a7178 --- /dev/null +++ b/src/images/icons/PollEverywhere.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PollMaker.svg b/src/images/icons/PollMaker.svg new file mode 100644 index 00000000..8c3b310a --- /dev/null +++ b/src/images/icons/PollMaker.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pollster.svg b/src/images/icons/Pollster.svg new file mode 100644 index 00000000..b30ac76f --- /dev/null +++ b/src/images/icons/Pollster.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PolodaAI.svg b/src/images/icons/PolodaAI.svg new file mode 100644 index 00000000..dfbef8e3 --- /dev/null +++ b/src/images/icons/PolodaAI.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/PopcornCRM.svg b/src/images/icons/PopcornCRM.svg new file mode 100644 index 00000000..c5ef9cc7 --- /dev/null +++ b/src/images/icons/PopcornCRM.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poper.svg b/src/images/icons/Poper.svg new file mode 100644 index 00000000..669ebc17 --- /dev/null +++ b/src/images/icons/Poper.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popify.svg b/src/images/icons/Popify.svg new file mode 100644 index 00000000..77f6bcb3 --- /dev/null +++ b/src/images/icons/Popify.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PopmixCRM.svg b/src/images/icons/PopmixCRM.svg new file mode 100644 index 00000000..d975d8cd --- /dev/null +++ b/src/images/icons/PopmixCRM.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poppins.svg b/src/images/icons/Poppins.svg new file mode 100644 index 00000000..dbc49b01 --- /dev/null +++ b/src/images/icons/Poppins.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popsy.svg b/src/images/icons/Popsy.svg new file mode 100644 index 00000000..92e51b33 --- /dev/null +++ b/src/images/icons/Popsy.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poptin.svg b/src/images/icons/Poptin.svg new file mode 100644 index 00000000..d20923dd --- /dev/null +++ b/src/images/icons/Poptin.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Popvox.svg b/src/images/icons/Popvox.svg new file mode 100644 index 00000000..56b0cdb2 --- /dev/null +++ b/src/images/icons/Popvox.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Porch.svg b/src/images/icons/Porch.svg new file mode 100644 index 00000000..411012a9 --- /dev/null +++ b/src/images/icons/Porch.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Posh.svg b/src/images/icons/Posh.svg new file mode 100644 index 00000000..c7d80770 --- /dev/null +++ b/src/images/icons/Posh.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Poshmark.svg b/src/images/icons/Poshmark.svg new file mode 100644 index 00000000..ba7332a5 --- /dev/null +++ b/src/images/icons/Poshmark.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Posify.svg b/src/images/icons/Posify.svg new file mode 100644 index 00000000..3ee7072a --- /dev/null +++ b/src/images/icons/Posify.svg @@ -0,0 +1,307 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poski.svg b/src/images/icons/Poski.svg new file mode 100644 index 00000000..e8c60d4f --- /dev/null +++ b/src/images/icons/Poski.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PostDolphin.svg b/src/images/icons/PostDolphin.svg new file mode 100644 index 00000000..a1c0cd65 --- /dev/null +++ b/src/images/icons/PostDolphin.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Postach.svg b/src/images/icons/Postach.svg new file mode 100644 index 00000000..45e938cd --- /dev/null +++ b/src/images/icons/Postach.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Postano.svg b/src/images/icons/Postano.svg new file mode 100644 index 00000000..fcdbebea --- /dev/null +++ b/src/images/icons/Postano.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Poster.svg b/src/images/icons/Poster.svg new file mode 100644 index 00000000..7545fb26 --- /dev/null +++ b/src/images/icons/Poster.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PouchDB.svg b/src/images/icons/PouchDB.svg new file mode 100644 index 00000000..cf8c9292 --- /dev/null +++ b/src/images/icons/PouchDB.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Powa.svg b/src/images/icons/Powa.svg new file mode 100644 index 00000000..caf7df09 --- /dev/null +++ b/src/images/icons/Powa.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerCRM.svg b/src/images/icons/PowerCRM.svg new file mode 100644 index 00000000..7bb6bf93 --- /dev/null +++ b/src/images/icons/PowerCRM.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerPay.svg b/src/images/icons/PowerPay.svg new file mode 100644 index 00000000..c568e8e8 --- /dev/null +++ b/src/images/icons/PowerPay.svg @@ -0,0 +1,370 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PowerfulForm.svg b/src/images/icons/PowerfulForm.svg new file mode 100644 index 00000000..da60f0b6 --- /dev/null +++ b/src/images/icons/PowerfulForm.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Powtoon.svg b/src/images/icons/Powtoon.svg new file mode 100644 index 00000000..b9dcf085 --- /dev/null +++ b/src/images/icons/Powtoon.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PracticePerfect.svg b/src/images/icons/PracticePerfect.svg new file mode 100644 index 00000000..10cc59e2 --- /dev/null +++ b/src/images/icons/PracticePerfect.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Practo.svg b/src/images/icons/Practo.svg new file mode 100644 index 00000000..c2334eb9 --- /dev/null +++ b/src/images/icons/Practo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PraterRaines.svg b/src/images/icons/PraterRaines.svg new file mode 100644 index 00000000..d0811690 --- /dev/null +++ b/src/images/icons/PraterRaines.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PreProduct.svg b/src/images/icons/PreProduct.svg new file mode 100644 index 00000000..f37ddd68 --- /dev/null +++ b/src/images/icons/PreProduct.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Preeco.svg b/src/images/icons/Preeco.svg new file mode 100644 index 00000000..5a3c7efc --- /dev/null +++ b/src/images/icons/Preeco.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Preezie.svg b/src/images/icons/Preezie.svg new file mode 100644 index 00000000..c882cab7 --- /dev/null +++ b/src/images/icons/Preezie.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Premion.svg b/src/images/icons/Premion.svg new file mode 100644 index 00000000..7b65da32 --- /dev/null +++ b/src/images/icons/Premion.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Premmerce.svg b/src/images/icons/Premmerce.svg new file mode 100644 index 00000000..a0548244 --- /dev/null +++ b/src/images/icons/Premmerce.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pressero.svg b/src/images/icons/Pressero.svg new file mode 100644 index 00000000..538b8a7a --- /dev/null +++ b/src/images/icons/Pressero.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/PrettyDamnQuick.png b/src/images/icons/PrettyDamnQuick.png new file mode 100644 index 00000000..628897a3 Binary files /dev/null and b/src/images/icons/PrettyDamnQuick.png differ diff --git a/src/images/icons/Priice.svg b/src/images/icons/Priice.svg new file mode 100644 index 00000000..943e0121 --- /dev/null +++ b/src/images/icons/Priice.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PrimaSoftware.svg b/src/images/icons/PrimaSoftware.svg new file mode 100644 index 00000000..a5d3387a --- /dev/null +++ b/src/images/icons/PrimaSoftware.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/PrimeAI.svg b/src/images/icons/PrimeAI.svg new file mode 100644 index 00000000..b837a2f8 --- /dev/null +++ b/src/images/icons/PrimeAI.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Printlane.svg b/src/images/icons/Printlane.svg new file mode 100644 index 00000000..23621ef4 --- /dev/null +++ b/src/images/icons/Printlane.svg @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prisme.svg b/src/images/icons/Prisme.svg new file mode 100644 index 00000000..6f2dc977 --- /dev/null +++ b/src/images/icons/Prisme.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prive.svg b/src/images/icons/Prive.svg new file mode 100644 index 00000000..7d14a430 --- /dev/null +++ b/src/images/icons/Prive.svg @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PriviaHealth.svg b/src/images/icons/PriviaHealth.svg new file mode 100644 index 00000000..dc0ecd82 --- /dev/null +++ b/src/images/icons/PriviaHealth.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProProfs.svg b/src/images/icons/ProProfs.svg new file mode 100644 index 00000000..4592a148 --- /dev/null +++ b/src/images/icons/ProProfs.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProSites.svg b/src/images/icons/ProSites.svg new file mode 100644 index 00000000..10aff72c --- /dev/null +++ b/src/images/icons/ProSites.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Probance.svg b/src/images/icons/Probance.svg new file mode 100644 index 00000000..0209f653 --- /dev/null +++ b/src/images/icons/Probance.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProcessOut.svg b/src/images/icons/ProcessOut.svg new file mode 100644 index 00000000..8daf0484 --- /dev/null +++ b/src/images/icons/ProcessOut.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProdPad.svg b/src/images/icons/ProdPad.svg new file mode 100644 index 00000000..37b4caa5 --- /dev/null +++ b/src/images/icons/ProdPad.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ProductDyno.svg b/src/images/icons/ProductDyno.svg new file mode 100644 index 00000000..e71e237e --- /dev/null +++ b/src/images/icons/ProductDyno.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProfitFlo.svg b/src/images/icons/ProfitFlo.svg new file mode 100644 index 00000000..348bb36d --- /dev/null +++ b/src/images/icons/ProfitFlo.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProfitLifter.svg b/src/images/icons/ProfitLifter.svg new file mode 100644 index 00000000..376ee359 --- /dev/null +++ b/src/images/icons/ProfitLifter.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Progreda.svg b/src/images/icons/Progreda.svg new file mode 100644 index 00000000..d854e3c2 --- /dev/null +++ b/src/images/icons/Progreda.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProloFinder.svg b/src/images/icons/ProloFinder.svg new file mode 100644 index 00000000..b4585aa5 --- /dev/null +++ b/src/images/icons/ProloFinder.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/Prom.svg b/src/images/icons/Prom.svg new file mode 100644 index 00000000..eff9631a --- /dev/null +++ b/src/images/icons/Prom.svg @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Promio.svg b/src/images/icons/Promio.svg new file mode 100644 index 00000000..2ce9fe5d --- /dev/null +++ b/src/images/icons/Promio.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Promo.svg b/src/images/icons/Promo.svg new file mode 100644 index 00000000..6e5890bc --- /dev/null +++ b/src/images/icons/Promo.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PromoTix.svg b/src/images/icons/PromoTix.svg new file mode 100644 index 00000000..120e87e6 --- /dev/null +++ b/src/images/icons/PromoTix.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ProofFactor.svg b/src/images/icons/ProofFactor.svg new file mode 100644 index 00000000..648834ad --- /dev/null +++ b/src/images/icons/ProofFactor.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proofdy.svg b/src/images/icons/Proofdy.svg new file mode 100644 index 00000000..274ab5f1 --- /dev/null +++ b/src/images/icons/Proofdy.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prooven.svg b/src/images/icons/Prooven.svg new file mode 100644 index 00000000..72b453b0 --- /dev/null +++ b/src/images/icons/Prooven.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PropFlo.svg b/src/images/icons/PropFlo.svg new file mode 100644 index 00000000..9eee5532 --- /dev/null +++ b/src/images/icons/PropFlo.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Propcart.svg b/src/images/icons/Propcart.svg new file mode 100644 index 00000000..0c174605 --- /dev/null +++ b/src/images/icons/Propcart.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PropertyShell.svg b/src/images/icons/PropertyShell.svg new file mode 100644 index 00000000..c8ec8e0e --- /dev/null +++ b/src/images/icons/PropertyShell.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proposify.svg b/src/images/icons/Proposify.svg new file mode 100644 index 00000000..c98ebc79 --- /dev/null +++ b/src/images/icons/Proposify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Prospa.svg b/src/images/icons/Prospa.svg new file mode 100644 index 00000000..4755c1b2 --- /dev/null +++ b/src/images/icons/Prospa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProsperousAI.svg b/src/images/icons/ProsperousAI.svg new file mode 100644 index 00000000..a39ffe74 --- /dev/null +++ b/src/images/icons/ProsperousAI.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Prostoy.svg b/src/images/icons/Prostoy.svg new file mode 100644 index 00000000..53500902 --- /dev/null +++ b/src/images/icons/Prostoy.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Proticaret.svg b/src/images/icons/Proticaret.svg new file mode 100644 index 00000000..6bf2a943 --- /dev/null +++ b/src/images/icons/Proticaret.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ProtoAICX.svg b/src/images/icons/ProtoAICX.svg new file mode 100644 index 00000000..eeb84dc5 --- /dev/null +++ b/src/images/icons/ProtoAICX.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Provely.svg b/src/images/icons/Provely.svg new file mode 100644 index 00000000..199bbc9a --- /dev/null +++ b/src/images/icons/Provely.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Psyma.svg b/src/images/icons/Psyma.svg new file mode 100644 index 00000000..f97074b0 --- /dev/null +++ b/src/images/icons/Psyma.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/PubLive.svg b/src/images/icons/PubLive.svg index bdf55f5d..54dba7f3 100644 --- a/src/images/icons/PubLive.svg +++ b/src/images/icons/PubLive.svg @@ -1,4 +1,21 @@ - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PubNub.svg b/src/images/icons/PubNub.svg new file mode 100644 index 00000000..0d3a5fe9 --- /dev/null +++ b/src/images/icons/PubNub.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PubTech.png b/src/images/icons/PubTech.png new file mode 100644 index 00000000..dcdb2462 Binary files /dev/null and b/src/images/icons/PubTech.png differ diff --git a/src/images/icons/Pubble.svg b/src/images/icons/Pubble.svg new file mode 100644 index 00000000..e4f6d1f0 --- /dev/null +++ b/src/images/icons/Pubble.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Pubfunnels.svg b/src/images/icons/Pubfunnels.svg new file mode 100644 index 00000000..70f8aa6c --- /dev/null +++ b/src/images/icons/Pubfunnels.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Publii.png b/src/images/icons/Publii.png deleted file mode 100644 index 227fe2bd..00000000 Binary files a/src/images/icons/Publii.png and /dev/null differ diff --git a/src/images/icons/Publii.svg b/src/images/icons/Publii.svg new file mode 100644 index 00000000..bfa32d4e --- /dev/null +++ b/src/images/icons/Publii.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pubperf.svg b/src/images/icons/Pubperf.svg new file mode 100644 index 00000000..a61f03c5 --- /dev/null +++ b/src/images/icons/Pubperf.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/PukiWiki.svg b/src/images/icons/PukiWiki.svg new file mode 100644 index 00000000..1582538c --- /dev/null +++ b/src/images/icons/PukiWiki.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pulse.svg b/src/images/icons/Pulse.svg new file mode 100644 index 00000000..551b8a29 --- /dev/null +++ b/src/images/icons/Pulse.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PulseInsights.svg b/src/images/icons/PulseInsights.svg new file mode 100644 index 00000000..7054d1ab --- /dev/null +++ b/src/images/icons/PulseInsights.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PulseM.svg b/src/images/icons/PulseM.svg new file mode 100644 index 00000000..d7f2b768 --- /dev/null +++ b/src/images/icons/PulseM.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PunchTab.svg b/src/images/icons/PunchTab.svg new file mode 100644 index 00000000..aaae051e --- /dev/null +++ b/src/images/icons/PunchTab.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/Punchpass.svg b/src/images/icons/Punchpass.svg new file mode 100644 index 00000000..26801e90 --- /dev/null +++ b/src/images/icons/Punchpass.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PuppetVendors.svg b/src/images/icons/PuppetVendors.svg new file mode 100644 index 00000000..8b8b0c35 --- /dev/null +++ b/src/images/icons/PuppetVendors.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/PureClarity.svg b/src/images/icons/PureClarity.svg new file mode 100644 index 00000000..3cbf2881 --- /dev/null +++ b/src/images/icons/PureClarity.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushAlert.svg b/src/images/icons/PushAlert.svg new file mode 100644 index 00000000..249b5899 --- /dev/null +++ b/src/images/icons/PushAlert.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushBots.svg b/src/images/icons/PushBots.svg new file mode 100644 index 00000000..cf54d39a --- /dev/null +++ b/src/images/icons/PushBots.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/PushWoosh.svg b/src/images/icons/PushWoosh.svg new file mode 100644 index 00000000..22d2e50d --- /dev/null +++ b/src/images/icons/PushWoosh.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushe.svg b/src/images/icons/Pushe.svg new file mode 100644 index 00000000..dfc1afb5 --- /dev/null +++ b/src/images/icons/Pushe.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Pusher.svg b/src/images/icons/Pusher.svg new file mode 100644 index 00000000..c8ba31da --- /dev/null +++ b/src/images/icons/Pusher.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushnami.svg b/src/images/icons/Pushnami.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/Pushouse.svg b/src/images/icons/Pushouse.svg new file mode 100644 index 00000000..40963ab9 --- /dev/null +++ b/src/images/icons/Pushouse.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pushpad.svg b/src/images/icons/Pushpad.svg new file mode 100644 index 00000000..096c46bd --- /dev/null +++ b/src/images/icons/Pushpad.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/PuterJS.svg b/src/images/icons/PuterJS.svg new file mode 100644 index 00000000..6e1861e6 --- /dev/null +++ b/src/images/icons/PuterJS.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pxxl App.svg b/src/images/icons/Pxxl App.svg new file mode 100644 index 00000000..03c94368 --- /dev/null +++ b/src/images/icons/Pxxl App.svg @@ -0,0 +1,409 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/PyWebIO.svg b/src/images/icons/PyWebIO.svg new file mode 100644 index 00000000..229ffcd7 --- /dev/null +++ b/src/images/icons/PyWebIO.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Pyze.svg b/src/images/icons/Pyze.svg new file mode 100644 index 00000000..8ce11b71 --- /dev/null +++ b/src/images/icons/Pyze.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Q1Media.svg b/src/images/icons/Q1Media.svg new file mode 100644 index 00000000..1a739fe2 --- /dev/null +++ b/src/images/icons/Q1Media.svg @@ -0,0 +1,1941 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/QForm.svg b/src/images/icons/QForm.svg new file mode 100644 index 00000000..7e5cdbfd --- /dev/null +++ b/src/images/icons/QForm.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QUV.svg b/src/images/icons/QUV.svg new file mode 100644 index 00000000..f94a4b3e --- /dev/null +++ b/src/images/icons/QUV.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qiyeku.svg b/src/images/icons/Qiyeku.svg new file mode 100644 index 00000000..20793b99 --- /dev/null +++ b/src/images/icons/Qiyeku.svg @@ -0,0 +1,714 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qomon.svg b/src/images/icons/Qomon.svg new file mode 100644 index 00000000..4d7eeb5d --- /dev/null +++ b/src/images/icons/Qomon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qooqie.svg b/src/images/icons/Qooqie.svg new file mode 100644 index 00000000..203d2b08 --- /dev/null +++ b/src/images/icons/Qooqie.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/QoreAI.svg b/src/images/icons/QoreAI.svg new file mode 100644 index 00000000..70b5726d --- /dev/null +++ b/src/images/icons/QoreAI.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qpien.svg b/src/images/icons/Qpien.svg new file mode 100644 index 00000000..7c03319f --- /dev/null +++ b/src/images/icons/Qpien.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/Qshop.svg b/src/images/icons/Qshop.svg new file mode 100644 index 00000000..bfe06047 --- /dev/null +++ b/src/images/icons/Qshop.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quadran.svg b/src/images/icons/Quadran.svg new file mode 100644 index 00000000..26bd03df --- /dev/null +++ b/src/images/icons/Quadran.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qualitando.svg b/src/images/icons/Qualitando.svg new file mode 100644 index 00000000..c0b1c025 --- /dev/null +++ b/src/images/icons/Qualitando.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qualitelis.svg b/src/images/icons/Qualitelis.svg new file mode 100644 index 00000000..43abb308 --- /dev/null +++ b/src/images/icons/Qualitelis.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QualityUnitHelpDesk.svg b/src/images/icons/QualityUnitHelpDesk.svg new file mode 100644 index 00000000..a5dbb6c4 --- /dev/null +++ b/src/images/icons/QualityUnitHelpDesk.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qualva.svg b/src/images/icons/Qualva.svg new file mode 100644 index 00000000..69f44969 --- /dev/null +++ b/src/images/icons/Qualva.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quandoo.svg b/src/images/icons/Quandoo.svg new file mode 100644 index 00000000..ad27fa48 --- /dev/null +++ b/src/images/icons/Quandoo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quant.svg b/src/images/icons/Quant.svg new file mode 100644 index 00000000..ab5eac80 --- /dev/null +++ b/src/images/icons/Quant.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Quarto.svg b/src/images/icons/Quarto.svg new file mode 100644 index 00000000..b81ef372 --- /dev/null +++ b/src/images/icons/Quarto.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qubit.png b/src/images/icons/Qubit.png deleted file mode 100644 index 15553de7..00000000 Binary files a/src/images/icons/Qubit.png and /dev/null differ diff --git a/src/images/icons/Qubit.svg b/src/images/icons/Qubit.svg new file mode 100644 index 00000000..607bc28a --- /dev/null +++ b/src/images/icons/Qubit.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quform.svg b/src/images/icons/Quform.svg new file mode 100644 index 00000000..41109b63 --- /dev/null +++ b/src/images/icons/Quform.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QuickCEP.svg b/src/images/icons/QuickCEP.svg new file mode 100644 index 00000000..e3d1e5b7 --- /dev/null +++ b/src/images/icons/QuickCEP.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Quicksprout.svg b/src/images/icons/Quicksprout.svg new file mode 100644 index 00000000..fc6e11db --- /dev/null +++ b/src/images/icons/Quicksprout.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/QuiqMessaging.svg b/src/images/icons/QuiqMessaging.svg new file mode 100644 index 00000000..208c61e8 --- /dev/null +++ b/src/images/icons/QuiqMessaging.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Quizitri.svg b/src/images/icons/Quizitri.svg new file mode 100644 index 00000000..1265e9fc --- /dev/null +++ b/src/images/icons/Quizitri.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Qumra.svg b/src/images/icons/Qumra.svg new file mode 100644 index 00000000..dc292878 --- /dev/null +++ b/src/images/icons/Qumra.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/QuoteMedia.svg b/src/images/icons/QuoteMedia.svg new file mode 100644 index 00000000..2cdfd993 --- /dev/null +++ b/src/images/icons/QuoteMedia.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RE-OS.svg b/src/images/icons/RE-OS.svg new file mode 100644 index 00000000..779b5449 --- /dev/null +++ b/src/images/icons/RE-OS.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/REIChat.svg b/src/images/icons/REIChat.svg new file mode 100644 index 00000000..b0762b90 --- /dev/null +++ b/src/images/icons/REIChat.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/REVEChat.svg b/src/images/icons/REVEChat.svg new file mode 100644 index 00000000..3a7131ce --- /dev/null +++ b/src/images/icons/REVEChat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/REsimpli.svg b/src/images/icons/REsimpli.svg new file mode 100644 index 00000000..053965af --- /dev/null +++ b/src/images/icons/REsimpli.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RMZ.svg b/src/images/icons/RMZ.svg new file mode 100644 index 00000000..a06a6a31 --- /dev/null +++ b/src/images/icons/RMZ.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ROCCommerce.svg b/src/images/icons/ROCCommerce.svg new file mode 100644 index 00000000..9bb88cdf --- /dev/null +++ b/src/images/icons/ROCCommerce.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Raaft.svg b/src/images/icons/Raaft.svg new file mode 100644 index 00000000..e536d6e5 --- /dev/null +++ b/src/images/icons/Raaft.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rabfy.svg b/src/images/icons/Rabfy.svg new file mode 100644 index 00000000..f7932e59 --- /dev/null +++ b/src/images/icons/Rabfy.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RaceRoster.svg b/src/images/icons/RaceRoster.svg new file mode 100644 index 00000000..f3ec5ad8 --- /dev/null +++ b/src/images/icons/RaceRoster.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Radar.svg b/src/images/icons/Radar.svg new file mode 100644 index 00000000..b548bc8b --- /dev/null +++ b/src/images/icons/Radar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Radario.svg b/src/images/icons/Radario.svg new file mode 100644 index 00000000..d0a3cb57 --- /dev/null +++ b/src/images/icons/Radario.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Radial.svg b/src/images/icons/Radial.svg new file mode 100644 index 00000000..0f02318e --- /dev/null +++ b/src/images/icons/Radial.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/RafflePress.svg b/src/images/icons/RafflePress.svg new file mode 100644 index 00000000..a48ded7f --- /dev/null +++ b/src/images/icons/RafflePress.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rake.svg b/src/images/icons/Rake.svg new file mode 100644 index 00000000..844aaf7b --- /dev/null +++ b/src/images/icons/Rake.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rally.svg b/src/images/icons/Rally.svg new file mode 100644 index 00000000..7f7ba173 --- /dev/null +++ b/src/images/icons/Rally.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Rambler.svg b/src/images/icons/Rambler.svg new file mode 100644 index 00000000..597f5c07 --- /dev/null +++ b/src/images/icons/Rambler.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ramper.svg b/src/images/icons/Ramper.svg new file mode 100644 index 00000000..d6e49bb2 --- /dev/null +++ b/src/images/icons/Ramper.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RandemRetail.svg b/src/images/icons/RandemRetail.svg new file mode 100644 index 00000000..69558529 --- /dev/null +++ b/src/images/icons/RandemRetail.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Raneto.svg b/src/images/icons/Raneto.svg new file mode 100644 index 00000000..857e1e4c --- /dev/null +++ b/src/images/icons/Raneto.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/RankScience.svg b/src/images/icons/RankScience.svg new file mode 100644 index 00000000..7c1ecb90 --- /dev/null +++ b/src/images/icons/RankScience.svg @@ -0,0 +1,16 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidActiveCRM.svg b/src/images/icons/RapidActiveCRM.svg new file mode 100644 index 00000000..5b4fe2ee --- /dev/null +++ b/src/images/icons/RapidActiveCRM.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidSearch.svg b/src/images/icons/RapidSearch.svg new file mode 100644 index 00000000..24459e71 --- /dev/null +++ b/src/images/icons/RapidSearch.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RapidWeaver.svg b/src/images/icons/RapidWeaver.svg new file mode 100644 index 00000000..6c89de76 --- /dev/null +++ b/src/images/icons/RapidWeaver.svg @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rasayel.svg b/src/images/icons/Rasayel.svg new file mode 100644 index 00000000..b4ebe037 --- /dev/null +++ b/src/images/icons/Rasayel.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RawGit.svg b/src/images/icons/RawGit.svg new file mode 100644 index 00000000..2e1ee83e --- /dev/null +++ b/src/images/icons/RawGit.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RcodeVision.svg b/src/images/icons/RcodeVision.svg new file mode 100644 index 00000000..18917359 --- /dev/null +++ b/src/images/icons/RcodeVision.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ReSpec.svg b/src/images/icons/ReSpec.svg new file mode 100644 index 00000000..2aff2168 --- /dev/null +++ b/src/images/icons/ReSpec.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reactful.svg b/src/images/icons/Reactful.svg new file mode 100644 index 00000000..06ae2f5b --- /dev/null +++ b/src/images/icons/Reactful.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/ReadtheDocs.svg b/src/images/icons/ReadtheDocs.svg new file mode 100644 index 00000000..92971efb --- /dev/null +++ b/src/images/icons/ReadtheDocs.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Reaktion.svg b/src/images/icons/Reaktion.svg new file mode 100644 index 00000000..50a66508 --- /dev/null +++ b/src/images/icons/Reaktion.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Real Geeks.svg b/src/images/icons/Real Geeks.svg new file mode 100644 index 00000000..cae6e0d1 --- /dev/null +++ b/src/images/icons/Real Geeks.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/RealNex.svg b/src/images/icons/RealNex.svg new file mode 100644 index 00000000..1d04163f --- /dev/null +++ b/src/images/icons/RealNex.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RealSatisfied.svg b/src/images/icons/RealSatisfied.svg new file mode 100644 index 00000000..d952981e --- /dev/null +++ b/src/images/icons/RealSatisfied.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Realytics.svg b/src/images/icons/Realytics.svg new file mode 100644 index 00000000..b96a66c0 --- /dev/null +++ b/src/images/icons/Realytics.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recolize.svg b/src/images/icons/Recolize.svg new file mode 100644 index 00000000..2b8cf9ab --- /dev/null +++ b/src/images/icons/Recolize.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recommy.svg b/src/images/icons/Recommy.svg new file mode 100644 index 00000000..088432cb --- /dev/null +++ b/src/images/icons/Recommy.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reconline.svg b/src/images/icons/Reconline.svg new file mode 100644 index 00000000..6aad911a --- /dev/null +++ b/src/images/icons/Reconline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Recooty.svg b/src/images/icons/Recooty.svg new file mode 100644 index 00000000..a8718084 --- /dev/null +++ b/src/images/icons/Recooty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recop.svg b/src/images/icons/Recop.svg new file mode 100644 index 00000000..387a5e0e --- /dev/null +++ b/src/images/icons/Recop.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Recras.svg b/src/images/icons/Recras.svg new file mode 100644 index 00000000..47fc2dce --- /dev/null +++ b/src/images/icons/Recras.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Recruition.svg b/src/images/icons/Recruition.svg new file mode 100644 index 00000000..aaba3baf --- /dev/null +++ b/src/images/icons/Recruition.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RediRedi.svg b/src/images/icons/RediRedi.svg new file mode 100644 index 00000000..67ce6586 --- /dev/null +++ b/src/images/icons/RediRedi.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Redicom.svg b/src/images/icons/Redicom.svg new file mode 100644 index 00000000..9eb3fc79 --- /dev/null +++ b/src/images/icons/Redicom.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reditus.svg b/src/images/icons/Reditus.svg new file mode 100644 index 00000000..dd30c634 --- /dev/null +++ b/src/images/icons/Reditus.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Redmine.png b/src/images/icons/Redmine.png deleted file mode 100644 index f29fee62..00000000 Binary files a/src/images/icons/Redmine.png and /dev/null differ diff --git a/src/images/icons/Redmine.svg b/src/images/icons/Redmine.svg new file mode 100644 index 00000000..be6b87f8 --- /dev/null +++ b/src/images/icons/Redmine.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Redrive.svg b/src/images/icons/Redrive.svg new file mode 100644 index 00000000..0b91e904 --- /dev/null +++ b/src/images/icons/Redrive.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Refari.svg b/src/images/icons/Refari.svg new file mode 100644 index 00000000..0e1621e4 --- /dev/null +++ b/src/images/icons/Refari.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ReferralRocket.svg b/src/images/icons/ReferralRocket.svg new file mode 100644 index 00000000..82c72b85 --- /dev/null +++ b/src/images/icons/ReferralRocket.svg @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Refix.svg b/src/images/icons/Refix.svg new file mode 100644 index 00000000..10eb3038 --- /dev/null +++ b/src/images/icons/Refix.svg @@ -0,0 +1,546 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reflex.svg b/src/images/icons/Reflex.svg new file mode 100644 index 00000000..621a9e03 --- /dev/null +++ b/src/images/icons/Reflex.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reform.svg b/src/images/icons/Reform.svg new file mode 100644 index 00000000..ba2129e9 --- /dev/null +++ b/src/images/icons/Reform.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Registria.svg b/src/images/icons/Registria.svg new file mode 100644 index 00000000..e7aa3e04 --- /dev/null +++ b/src/images/icons/Registria.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Regula.svg b/src/images/icons/Regula.svg new file mode 100644 index 00000000..9455db47 --- /dev/null +++ b/src/images/icons/Regula.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rela.svg b/src/images/icons/Rela.svg new file mode 100644 index 00000000..4d24b4ac --- /dev/null +++ b/src/images/icons/Rela.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Relap.svg b/src/images/icons/Relap.svg new file mode 100644 index 00000000..8172adac --- /dev/null +++ b/src/images/icons/Relap.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Released.svg b/src/images/icons/Released.svg new file mode 100644 index 00000000..096296b5 --- /dev/null +++ b/src/images/icons/Released.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Releasit.svg b/src/images/icons/Releasit.svg new file mode 100644 index 00000000..02dae741 --- /dev/null +++ b/src/images/icons/Releasit.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/images/icons/Releva.svg b/src/images/icons/Releva.svg new file mode 100644 index 00000000..7260f797 --- /dev/null +++ b/src/images/icons/Releva.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reloop.svg b/src/images/icons/Reloop.svg new file mode 100644 index 00000000..078c8e02 --- /dev/null +++ b/src/images/icons/Reloop.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Remedo.svg b/src/images/icons/Remedo.svg new file mode 100644 index 00000000..31bd26ec --- /dev/null +++ b/src/images/icons/Remedo.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Remind.svg b/src/images/icons/Remind.svg new file mode 100644 index 00000000..5927bffb --- /dev/null +++ b/src/images/icons/Remind.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RentCafe.svg b/src/images/icons/RentCafe.svg new file mode 100644 index 00000000..bed71be4 --- /dev/null +++ b/src/images/icons/RentCafe.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RentSyst.svg b/src/images/icons/RentSyst.svg new file mode 100644 index 00000000..bdba6ccf --- /dev/null +++ b/src/images/icons/RentSyst.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Repco.svg b/src/images/icons/Repco.svg new file mode 100644 index 00000000..cbf2e4da --- /dev/null +++ b/src/images/icons/Repco.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReplyBox.svg b/src/images/icons/ReplyBox.svg new file mode 100644 index 00000000..33a1c35d --- /dev/null +++ b/src/images/icons/ReplyBox.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Repuso.svg b/src/images/icons/Repuso.svg new file mode 100644 index 00000000..9f93c748 --- /dev/null +++ b/src/images/icons/Repuso.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RequestMetrics.svg b/src/images/icons/RequestMetrics.svg new file mode 100644 index 00000000..679443df --- /dev/null +++ b/src/images/icons/RequestMetrics.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReservaINK.svg b/src/images/icons/ReservaINK.svg new file mode 100644 index 00000000..c6a3e5d0 --- /dev/null +++ b/src/images/icons/ReservaINK.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reshop.svg b/src/images/icons/Reshop.svg new file mode 100644 index 00000000..0d08910f --- /dev/null +++ b/src/images/icons/Reshop.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ResolvePay.svg b/src/images/icons/ResolvePay.svg new file mode 100644 index 00000000..2575b20b --- /dev/null +++ b/src/images/icons/ResolvePay.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Resonate.svg b/src/images/icons/Resonate.svg new file mode 100644 index 00000000..acfbdc6f --- /dev/null +++ b/src/images/icons/Resonate.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Respondi.svg b/src/images/icons/Respondi.svg new file mode 100644 index 00000000..3225b5c7 --- /dev/null +++ b/src/images/icons/Respondi.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Responsa.svg b/src/images/icons/Responsa.svg new file mode 100644 index 00000000..07fd96c5 --- /dev/null +++ b/src/images/icons/Responsa.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Resultify.svg b/src/images/icons/Resultify.svg new file mode 100644 index 00000000..c7e55d44 --- /dev/null +++ b/src/images/icons/Resultify.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Resupply.svg b/src/images/icons/Resupply.svg new file mode 100644 index 00000000..fc18bc94 --- /dev/null +++ b/src/images/icons/Resupply.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Retisio.svg b/src/images/icons/Retisio.svg new file mode 100644 index 00000000..ce8eca3d --- /dev/null +++ b/src/images/icons/Retisio.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RetrinaBuilder.svg b/src/images/icons/RetrinaBuilder.svg new file mode 100644 index 00000000..564054cd --- /dev/null +++ b/src/images/icons/RetrinaBuilder.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Returnflows.svg b/src/images/icons/Returnflows.svg new file mode 100644 index 00000000..8c4930b1 --- /dev/null +++ b/src/images/icons/Returnflows.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reuzenpanda.svg b/src/images/icons/Reuzenpanda.svg new file mode 100644 index 00000000..4e3df046 --- /dev/null +++ b/src/images/icons/Reuzenpanda.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevBid.svg b/src/images/icons/RevBid.svg new file mode 100644 index 00000000..eb5560ef --- /dev/null +++ b/src/images/icons/RevBid.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevCent.svg b/src/images/icons/RevCent.svg new file mode 100644 index 00000000..ad8beb7d --- /dev/null +++ b/src/images/icons/RevCent.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/RevTrax.svg b/src/images/icons/RevTrax.svg new file mode 100644 index 00000000..8c1d279f --- /dev/null +++ b/src/images/icons/RevTrax.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RevenueRoll.svg b/src/images/icons/RevenueRoll.svg new file mode 100644 index 00000000..a6742909 --- /dev/null +++ b/src/images/icons/RevenueRoll.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Reviefy.svg b/src/images/icons/Reviefy.svg new file mode 100644 index 00000000..d5c0aaba --- /dev/null +++ b/src/images/icons/Reviefy.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewGrower.svg b/src/images/icons/ReviewGrower.svg new file mode 100644 index 00000000..f2cdc926 --- /dev/null +++ b/src/images/icons/ReviewGrower.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewLead.svg b/src/images/icons/ReviewLead.svg new file mode 100644 index 00000000..e2e0ea4d --- /dev/null +++ b/src/images/icons/ReviewLead.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewPro.svg b/src/images/icons/ReviewPro.svg new file mode 100644 index 00000000..5f8dc5f7 --- /dev/null +++ b/src/images/icons/ReviewPro.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Reviewdoku.svg b/src/images/icons/Reviewdoku.svg new file mode 100644 index 00000000..7e681098 --- /dev/null +++ b/src/images/icons/Reviewdoku.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ReviewsUp.svg b/src/images/icons/ReviewsUp.svg new file mode 100644 index 00000000..668ef472 --- /dev/null +++ b/src/images/icons/ReviewsUp.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Revinate.svg b/src/images/icons/Revinate.svg new file mode 100644 index 00000000..f2325181 --- /dev/null +++ b/src/images/icons/Revinate.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Revize.svg b/src/images/icons/Revize.svg new file mode 100644 index 00000000..9729eb37 --- /dev/null +++ b/src/images/icons/Revize.svg @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rewix.svg b/src/images/icons/Rewix.svg new file mode 100644 index 00000000..26c7e6f2 --- /dev/null +++ b/src/images/icons/Rewix.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Rezku.svg b/src/images/icons/Rezku.svg new file mode 100644 index 00000000..125b7085 --- /dev/null +++ b/src/images/icons/Rezku.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RhinoFit.svg b/src/images/icons/RhinoFit.svg new file mode 100644 index 00000000..34ceb13f --- /dev/null +++ b/src/images/icons/RhinoFit.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rhymix.svg b/src/images/icons/Rhymix.svg new file mode 100644 index 00000000..619b5c71 --- /dev/null +++ b/src/images/icons/Rhymix.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RightMessage.svg b/src/images/icons/RightMessage.svg new file mode 100644 index 00000000..bff766a9 --- /dev/null +++ b/src/images/icons/RightMessage.svg @@ -0,0 +1,20 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RingCaptcha.svg b/src/images/icons/RingCaptcha.svg new file mode 100644 index 00000000..44775bf6 --- /dev/null +++ b/src/images/icons/RingCaptcha.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ringba.svg b/src/images/icons/Ringba.svg new file mode 100644 index 00000000..6f0a15d5 --- /dev/null +++ b/src/images/icons/Ringba.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ringostat.svg b/src/images/icons/Ringostat.svg new file mode 100644 index 00000000..8ad72620 --- /dev/null +++ b/src/images/icons/Ringostat.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RioSEO.svg b/src/images/icons/RioSEO.svg new file mode 100644 index 00000000..e58a5295 --- /dev/null +++ b/src/images/icons/RioSEO.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rispose.svg b/src/images/icons/Rispose.svg new file mode 100644 index 00000000..d1d459ef --- /dev/null +++ b/src/images/icons/Rispose.svg @@ -0,0 +1,365 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RiteKit.svg b/src/images/icons/RiteKit.svg new file mode 100644 index 00000000..c3d6bac7 --- /dev/null +++ b/src/images/icons/RiteKit.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoasFunnels.svg b/src/images/icons/RoasFunnels.svg new file mode 100644 index 00000000..316a62f8 --- /dev/null +++ b/src/images/icons/RoasFunnels.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Robarov.svg b/src/images/icons/Robarov.svg new file mode 100644 index 00000000..d37ff168 --- /dev/null +++ b/src/images/icons/Robarov.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Robixcm.png b/src/images/icons/Robixcm.png new file mode 100644 index 00000000..40cf679d Binary files /dev/null and b/src/images/icons/Robixcm.png differ diff --git a/src/images/icons/Robly.svg b/src/images/icons/Robly.svg new file mode 100644 index 00000000..0ec83f91 --- /dev/null +++ b/src/images/icons/Robly.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoboReception.svg b/src/images/icons/RoboReception.svg new file mode 100644 index 00000000..5c611335 --- /dev/null +++ b/src/images/icons/RoboReception.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Robofy.svg b/src/images/icons/Robofy.svg new file mode 100644 index 00000000..3bfa20ae --- /dev/null +++ b/src/images/icons/Robofy.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rockee.svg b/src/images/icons/Rockee.svg new file mode 100644 index 00000000..0ede6e4e --- /dev/null +++ b/src/images/icons/Rockee.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RocketTools.svg b/src/images/icons/RocketTools.svg new file mode 100644 index 00000000..f4fbfd54 --- /dev/null +++ b/src/images/icons/RocketTools.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rocketspark.svg b/src/images/icons/Rocketspark.svg new file mode 100644 index 00000000..52c88477 --- /dev/null +++ b/src/images/icons/Rocketspark.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rollick.svg b/src/images/icons/Rollick.svg new file mode 100644 index 00000000..5e83774b --- /dev/null +++ b/src/images/icons/Rollick.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RomanCart.svg b/src/images/icons/RomanCart.svg new file mode 100644 index 00000000..df206482 --- /dev/null +++ b/src/images/icons/RomanCart.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RoninSport.svg b/src/images/icons/RoninSport.svg new file mode 100644 index 00000000..ab3b7db4 --- /dev/null +++ b/src/images/icons/RoninSport.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Roof.svg b/src/images/icons/Roof.svg new file mode 100644 index 00000000..8bdd72ff --- /dev/null +++ b/src/images/icons/Roof.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rosana.svg b/src/images/icons/Rosana.svg new file mode 100644 index 00000000..bc260145 --- /dev/null +++ b/src/images/icons/Rosana.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Roya.svg b/src/images/icons/Roya.svg new file mode 100644 index 00000000..e1b3c2c5 --- /dev/null +++ b/src/images/icons/Roya.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rtoaster.svg b/src/images/icons/Rtoaster.svg new file mode 100644 index 00000000..fcc3af33 --- /dev/null +++ b/src/images/icons/Rtoaster.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rual.svg b/src/images/icons/Rual.svg new file mode 100644 index 00000000..fe95f3e8 --- /dev/null +++ b/src/images/icons/Rual.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Rubic.svg b/src/images/icons/Rubic.svg new file mode 100644 index 00000000..d63d9233 --- /dev/null +++ b/src/images/icons/Rubic.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RubyChat.svg b/src/images/icons/RubyChat.svg new file mode 100644 index 00000000..e7ecaf65 --- /dev/null +++ b/src/images/icons/RubyChat.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/RulerAnalytics.svg b/src/images/icons/RulerAnalytics.svg new file mode 100644 index 00000000..bc3944c0 --- /dev/null +++ b/src/images/icons/RulerAnalytics.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Rumvision.png b/src/images/icons/Rumvision.png new file mode 100644 index 00000000..bad505b4 Binary files /dev/null and b/src/images/icons/Rumvision.png differ diff --git a/src/images/icons/Ruttl.svg b/src/images/icons/Ruttl.svg new file mode 100644 index 00000000..634f932c --- /dev/null +++ b/src/images/icons/Ruttl.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Ruzuku.svg b/src/images/icons/Ruzuku.svg new file mode 100644 index 00000000..60e73e81 --- /dev/null +++ b/src/images/icons/Ruzuku.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Rybbit.svg b/src/images/icons/Rybbit.svg new file mode 100644 index 00000000..0ece1158 --- /dev/null +++ b/src/images/icons/Rybbit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Ryzeo.svg b/src/images/icons/Ryzeo.svg new file mode 100644 index 00000000..716bbe3a --- /dev/null +++ b/src/images/icons/Ryzeo.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/S&PGlobalMobility.svg b/src/images/icons/S&PGlobalMobility.svg new file mode 100644 index 00000000..3ce19793 --- /dev/null +++ b/src/images/icons/S&PGlobalMobility.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SEOManager.svg b/src/images/icons/SEOManager.svg new file mode 100644 index 00000000..00be5041 --- /dev/null +++ b/src/images/icons/SEOManager.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEOPress.svg b/src/images/icons/SEOPress.svg new file mode 100644 index 00000000..5c47c701 --- /dev/null +++ b/src/images/icons/SEOPress.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEOSamba.svg b/src/images/icons/SEOSamba.svg new file mode 100644 index 00000000..84ccbc7d --- /dev/null +++ b/src/images/icons/SEOSamba.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SEPPlatform.svg b/src/images/icons/SEPPlatform.svg new file mode 100644 index 00000000..36f4b431 --- /dev/null +++ b/src/images/icons/SEPPlatform.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SHE Media.png b/src/images/icons/SHE Media.png deleted file mode 100644 index da1b837b..00000000 Binary files a/src/images/icons/SHE Media.png and /dev/null differ diff --git a/src/images/icons/SIGELoja.svg b/src/images/icons/SIGELoja.svg new file mode 100644 index 00000000..21a2f7a4 --- /dev/null +++ b/src/images/icons/SIGELoja.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SMARTLGov.svg b/src/images/icons/SMARTLGov.svg new file mode 100644 index 00000000..d4dd1484 --- /dev/null +++ b/src/images/icons/SMARTLGov.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SMSold.svg b/src/images/icons/SMSold.svg new file mode 100644 index 00000000..86c49e0d --- /dev/null +++ b/src/images/icons/SMSold.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SOCi.svg b/src/images/icons/SOCi.svg new file mode 100644 index 00000000..a115c349 --- /dev/null +++ b/src/images/icons/SOCi.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/SOPlanning.svg b/src/images/icons/SOPlanning.svg new file mode 100644 index 00000000..31cff372 --- /dev/null +++ b/src/images/icons/SOPlanning.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SOTACRM.svg b/src/images/icons/SOTACRM.svg new file mode 100644 index 00000000..8fc65816 --- /dev/null +++ b/src/images/icons/SOTACRM.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SPREAD.svg b/src/images/icons/SPREAD.svg new file mode 100644 index 00000000..031e4fd9 --- /dev/null +++ b/src/images/icons/SPREAD.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Saabu.svg b/src/images/icons/Saabu.svg new file mode 100644 index 00000000..769234a1 --- /dev/null +++ b/src/images/icons/Saabu.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SafeBase.svg b/src/images/icons/SafeBase.svg new file mode 100644 index 00000000..4fa587ce --- /dev/null +++ b/src/images/icons/SafeBase.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/SafeBuy.svg b/src/images/icons/SafeBuy.svg new file mode 100644 index 00000000..5b68cdf2 --- /dev/null +++ b/src/images/icons/SafeBuy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Saffire.svg b/src/images/icons/Saffire.svg new file mode 100644 index 00000000..9536d7a8 --- /dev/null +++ b/src/images/icons/Saffire.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SalesAutomator.svg b/src/images/icons/SalesAutomator.svg new file mode 100644 index 00000000..83b8cec9 --- /dev/null +++ b/src/images/icons/SalesAutomator.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesCandy.svg b/src/images/icons/SalesCandy.svg new file mode 100644 index 00000000..2a69dc67 --- /dev/null +++ b/src/images/icons/SalesCandy.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesMatch.svg b/src/images/icons/SalesMatch.svg new file mode 100644 index 00000000..ed1c761e --- /dev/null +++ b/src/images/icons/SalesMatch.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SalesWings.svg b/src/images/icons/SalesWings.svg new file mode 100644 index 00000000..c2f00bf2 --- /dev/null +++ b/src/images/icons/SalesWings.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Salesbeat.svg b/src/images/icons/Salesbeat.svg new file mode 100644 index 00000000..9bef9eb1 --- /dev/null +++ b/src/images/icons/Salesbeat.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Salesmachine.svg b/src/images/icons/Salesmachine.svg new file mode 100644 index 00000000..fcc5a942 --- /dev/null +++ b/src/images/icons/Salesmachine.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Salespype.svg b/src/images/icons/Salespype.svg new file mode 100644 index 00000000..d220a0ce --- /dev/null +++ b/src/images/icons/Salespype.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Sameday.svg b/src/images/icons/Sameday.svg new file mode 100644 index 00000000..2cb9470f --- /dev/null +++ b/src/images/icons/Sameday.svg @@ -0,0 +1,14 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SamsungFood.svg b/src/images/icons/SamsungFood.svg new file mode 100644 index 00000000..b592ba8d --- /dev/null +++ b/src/images/icons/SamsungFood.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sanity.svg b/src/images/icons/Sanity.svg index 96956312..3e5e85ac 100644 --- a/src/images/icons/Sanity.svg +++ b/src/images/icons/Sanity.svg @@ -1,7 +1,10 @@ - - - - - - + + + + + + + + + diff --git a/src/images/icons/Sardine.svg b/src/images/icons/Sardine.svg new file mode 100644 index 00000000..30f88f64 --- /dev/null +++ b/src/images/icons/Sardine.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sardius.svg b/src/images/icons/Sardius.svg new file mode 100644 index 00000000..24092ade --- /dev/null +++ b/src/images/icons/Sardius.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sare.svg b/src/images/icons/Sare.svg new file mode 100644 index 00000000..13357d65 --- /dev/null +++ b/src/images/icons/Sare.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Satus.svg b/src/images/icons/Satus.svg new file mode 100644 index 00000000..f595d9de --- /dev/null +++ b/src/images/icons/Satus.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SauceSocialCommerce.svg b/src/images/icons/SauceSocialCommerce.svg new file mode 100644 index 00000000..b06ea723 --- /dev/null +++ b/src/images/icons/SauceSocialCommerce.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/SavvyCal.svg b/src/images/icons/SavvyCal.svg new file mode 100644 index 00000000..6544cab9 --- /dev/null +++ b/src/images/icons/SavvyCal.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SayAC.svg b/src/images/icons/SayAC.svg new file mode 100644 index 00000000..a20307b5 --- /dev/null +++ b/src/images/icons/SayAC.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SberCRM.svg b/src/images/icons/SberCRM.svg new file mode 100644 index 00000000..9f782f6e --- /dev/null +++ b/src/images/icons/SberCRM.svg @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScanNetWebshop.svg b/src/images/icons/ScanNetWebshop.svg new file mode 100644 index 00000000..429af8c8 --- /dev/null +++ b/src/images/icons/ScanNetWebshop.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ScapBot.svg b/src/images/icons/ScapBot.svg new file mode 100644 index 00000000..c7289394 --- /dev/null +++ b/src/images/icons/ScapBot.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Scayle.svg b/src/images/icons/Scayle.svg new file mode 100644 index 00000000..47afb609 --- /dev/null +++ b/src/images/icons/Scayle.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sched.svg b/src/images/icons/Sched.svg new file mode 100644 index 00000000..29f1a888 --- /dev/null +++ b/src/images/icons/Sched.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScheduleAnyone.svg b/src/images/icons/ScheduleAnyone.svg new file mode 100644 index 00000000..57f122d3 --- /dev/null +++ b/src/images/icons/ScheduleAnyone.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/SchoolKiwi.svg b/src/images/icons/SchoolKiwi.svg new file mode 100644 index 00000000..5c03c6fe --- /dev/null +++ b/src/images/icons/SchoolKiwi.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ScoreApp.svg b/src/images/icons/ScoreApp.svg new file mode 100644 index 00000000..cd54d426 --- /dev/null +++ b/src/images/icons/ScoreApp.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Screets.svg b/src/images/icons/Screets.svg new file mode 100644 index 00000000..430bdb5f --- /dev/null +++ b/src/images/icons/Screets.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SearchMagic.svg b/src/images/icons/SearchMagic.svg new file mode 100644 index 00000000..03ebe837 --- /dev/null +++ b/src/images/icons/SearchMagic.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Searchtap.svg b/src/images/icons/Searchtap.svg new file mode 100644 index 00000000..2c38527d --- /dev/null +++ b/src/images/icons/Searchtap.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seated.svg b/src/images/icons/Seated.svg new file mode 100644 index 00000000..1fc2ef0b --- /dev/null +++ b/src/images/icons/Seated.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seatics.svg b/src/images/icons/Seatics.svg new file mode 100644 index 00000000..871d6bc8 --- /dev/null +++ b/src/images/icons/Seatics.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Securiti.svg b/src/images/icons/Securiti.svg new file mode 100644 index 00000000..a435abf8 --- /dev/null +++ b/src/images/icons/Securiti.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SecurityMetrics.svg b/src/images/icons/SecurityMetrics.svg new file mode 100644 index 00000000..10d45462 --- /dev/null +++ b/src/images/icons/SecurityMetrics.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SeedGrow.svg b/src/images/icons/SeedGrow.svg new file mode 100644 index 00000000..a6441fd6 --- /dev/null +++ b/src/images/icons/SeedGrow.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Seel.svg b/src/images/icons/Seel.svg new file mode 100644 index 00000000..27efd232 --- /dev/null +++ b/src/images/icons/Seel.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Segmetrics.svg b/src/images/icons/Segmetrics.svg new file mode 100644 index 00000000..bd98e63d --- /dev/null +++ b/src/images/icons/Segmetrics.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seline.svg b/src/images/icons/Seline.svg new file mode 100644 index 00000000..9bab8683 --- /dev/null +++ b/src/images/icons/Seline.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SellBe.svg b/src/images/icons/SellBe.svg new file mode 100644 index 00000000..0ce27491 --- /dev/null +++ b/src/images/icons/SellBe.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SellSite.svg b/src/images/icons/SellSite.svg new file mode 100644 index 00000000..70d342ad --- /dev/null +++ b/src/images/icons/SellSite.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sellbrite.svg b/src/images/icons/Sellbrite.svg new file mode 100644 index 00000000..6bfe199f --- /dev/null +++ b/src/images/icons/Sellbrite.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sellful.svg b/src/images/icons/Sellful.svg new file mode 100644 index 00000000..8cfcc242 --- /dev/null +++ b/src/images/icons/Sellful.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Selligent.svg b/src/images/icons/Selligent.svg new file mode 100644 index 00000000..e8feb2c3 --- /dev/null +++ b/src/images/icons/Selligent.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sellwild.svg b/src/images/icons/Sellwild.svg new file mode 100644 index 00000000..40574d3e --- /dev/null +++ b/src/images/icons/Sellwild.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Selzy.svg b/src/images/icons/Selzy.svg new file mode 100644 index 00000000..7a1804a4 --- /dev/null +++ b/src/images/icons/Selzy.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Send.svg b/src/images/icons/Send.svg new file mode 100644 index 00000000..4623d913 --- /dev/null +++ b/src/images/icons/Send.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SendHeap.svg b/src/images/icons/SendHeap.svg new file mode 100644 index 00000000..aaa0861d --- /dev/null +++ b/src/images/icons/SendHeap.svg @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SendOwl.svg b/src/images/icons/SendOwl.svg new file mode 100644 index 00000000..b3ae2d9c --- /dev/null +++ b/src/images/icons/SendOwl.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sendland.png b/src/images/icons/Sendland.png new file mode 100644 index 00000000..2d787392 Binary files /dev/null and b/src/images/icons/Sendland.png differ diff --git a/src/images/icons/Sendloop.svg b/src/images/icons/Sendloop.svg new file mode 100644 index 00000000..43f0c103 --- /dev/null +++ b/src/images/icons/Sendloop.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sendpad.svg b/src/images/icons/Sendpad.svg new file mode 100644 index 00000000..c6f3f831 --- /dev/null +++ b/src/images/icons/Sendpad.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sendtex.svg b/src/images/icons/Sendtex.svg new file mode 100644 index 00000000..1689b91a --- /dev/null +++ b/src/images/icons/Sendtex.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Senja.svg b/src/images/icons/Senja.svg new file mode 100644 index 00000000..b77920ac --- /dev/null +++ b/src/images/icons/Senja.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SensaiMetrics.svg b/src/images/icons/SensaiMetrics.svg new file mode 100644 index 00000000..6b4e0a6a --- /dev/null +++ b/src/images/icons/SensaiMetrics.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SensorTower.svg b/src/images/icons/SensorTower.svg new file mode 100644 index 00000000..d0a1353c --- /dev/null +++ b/src/images/icons/SensorTower.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sentara.svg b/src/images/icons/Sentara.svg new file mode 100644 index 00000000..b8e79b47 --- /dev/null +++ b/src/images/icons/Sentara.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sentifi.svg b/src/images/icons/Sentifi.svg new file mode 100644 index 00000000..6cb5d6cd --- /dev/null +++ b/src/images/icons/Sentifi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SeoToaster.svg b/src/images/icons/SeoToaster.svg new file mode 100644 index 00000000..bae8b14c --- /dev/null +++ b/src/images/icons/SeoToaster.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seon.svg b/src/images/icons/Seon.svg new file mode 100644 index 00000000..69af8129 --- /dev/null +++ b/src/images/icons/Seon.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Seosphera.svg b/src/images/icons/Seosphera.svg new file mode 100644 index 00000000..6bef2d73 --- /dev/null +++ b/src/images/icons/Seosphera.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ServiceCore.svg b/src/images/icons/ServiceCore.svg new file mode 100644 index 00000000..7762d4d0 --- /dev/null +++ b/src/images/icons/ServiceCore.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SessionRewind.svg b/src/images/icons/SessionRewind.svg new file mode 100644 index 00000000..dc7db84e --- /dev/null +++ b/src/images/icons/SessionRewind.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sharing.svg b/src/images/icons/Sharing.svg new file mode 100644 index 00000000..a00053ab --- /dev/null +++ b/src/images/icons/Sharing.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sharpay.svg b/src/images/icons/Sharpay.svg new file mode 100644 index 00000000..d73b1df7 --- /dev/null +++ b/src/images/icons/Sharpay.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sharpen.svg b/src/images/icons/Sharpen.svg new file mode 100644 index 00000000..e8355b4f --- /dev/null +++ b/src/images/icons/Sharpen.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SharperMMS.svg b/src/images/icons/SharperMMS.svg new file mode 100644 index 00000000..6b6f5041 --- /dev/null +++ b/src/images/icons/SharperMMS.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SheMedia.svg b/src/images/icons/SheMedia.svg new file mode 100644 index 00000000..bd7cbf06 --- /dev/null +++ b/src/images/icons/SheMedia.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Sherpa.svg b/src/images/icons/Sherpa.svg new file mode 100644 index 00000000..4a4c7e96 --- /dev/null +++ b/src/images/icons/Sherpa.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShineCommerce.svg b/src/images/icons/ShineCommerce.svg new file mode 100644 index 00000000..e596260f --- /dev/null +++ b/src/images/icons/ShineCommerce.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShionImporter.svg b/src/images/icons/ShionImporter.svg new file mode 100644 index 00000000..1e77e315 --- /dev/null +++ b/src/images/icons/ShionImporter.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shipup.svg b/src/images/icons/Shipup.svg new file mode 100644 index 00000000..af32c58b --- /dev/null +++ b/src/images/icons/Shipup.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Shoopy.svg b/src/images/icons/Shoopy.svg new file mode 100644 index 00000000..f3607b58 --- /dev/null +++ b/src/images/icons/Shoopy.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopApplication.svg b/src/images/icons/ShopApplication.svg new file mode 100644 index 00000000..9d1535bc --- /dev/null +++ b/src/images/icons/ShopApplication.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/images/icons/ShopKeeper.svg b/src/images/icons/ShopKeeper.svg new file mode 100644 index 00000000..eec746a7 --- /dev/null +++ b/src/images/icons/ShopKeeper.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopPHP.svg b/src/images/icons/ShopPHP.svg new file mode 100644 index 00000000..906f10cd --- /dev/null +++ b/src/images/icons/ShopPHP.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ShopRoller.svg b/src/images/icons/ShopRoller.svg new file mode 100644 index 00000000..6f637121 --- /dev/null +++ b/src/images/icons/ShopRoller.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopStorm.svg b/src/images/icons/ShopStorm.svg new file mode 100644 index 00000000..8adb6512 --- /dev/null +++ b/src/images/icons/ShopStorm.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopStyle.svg b/src/images/icons/ShopStyle.svg new file mode 100644 index 00000000..aa8e9980 --- /dev/null +++ b/src/images/icons/ShopStyle.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopVOX.svg b/src/images/icons/ShopVOX.svg new file mode 100644 index 00000000..2faf671c --- /dev/null +++ b/src/images/icons/ShopVOX.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/ShopX.svg b/src/images/icons/ShopX.svg new file mode 100644 index 00000000..7bc4a1a4 --- /dev/null +++ b/src/images/icons/ShopX.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopboxAI.svg b/src/images/icons/ShopboxAI.svg new file mode 100644 index 00000000..b6ae93e3 --- /dev/null +++ b/src/images/icons/ShopboxAI.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shopiteka.svg b/src/images/icons/Shopiteka.svg new file mode 100644 index 00000000..cd8a1d72 --- /dev/null +++ b/src/images/icons/Shopiteka.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shopix.svg b/src/images/icons/Shopix.svg new file mode 100644 index 00000000..1bf94df1 --- /dev/null +++ b/src/images/icons/Shopix.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoplift.svg b/src/images/icons/Shoplift.svg new file mode 100644 index 00000000..0649f79f --- /dev/null +++ b/src/images/icons/Shoplift.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Shopmaker.svg b/src/images/icons/Shopmaker.svg new file mode 100644 index 00000000..319b4c0e --- /dev/null +++ b/src/images/icons/Shopmaker.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShopperApproved.svg b/src/images/icons/ShopperApproved.svg new file mode 100644 index 00000000..1098818b --- /dev/null +++ b/src/images/icons/ShopperApproved.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ShoppingFeed.svg b/src/images/icons/ShoppingFeed.svg new file mode 100644 index 00000000..fa419dcc --- /dev/null +++ b/src/images/icons/ShoppingFeed.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoprocket.svg b/src/images/icons/Shoprocket.svg new file mode 100644 index 00000000..78aac42f --- /dev/null +++ b/src/images/icons/Shoprocket.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shopsys.svg b/src/images/icons/Shopsys.svg new file mode 100644 index 00000000..e5382863 --- /dev/null +++ b/src/images/icons/Shopsys.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Shoptimized.svg b/src/images/icons/Shoptimized.svg new file mode 100644 index 00000000..c44a9a23 --- /dev/null +++ b/src/images/icons/Shoptimized.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shoptrader.svg b/src/images/icons/Shoptrader.svg new file mode 100644 index 00000000..ce1bf7fe --- /dev/null +++ b/src/images/icons/Shoptrader.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Shore.svg b/src/images/icons/Shore.svg new file mode 100644 index 00000000..4e46c1e9 --- /dev/null +++ b/src/images/icons/Shore.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/ShoutCMS.svg b/src/images/icons/ShoutCMS.svg new file mode 100644 index 00000000..87d4abda --- /dev/null +++ b/src/images/icons/ShoutCMS.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ShoutoutTestimonial.svg b/src/images/icons/ShoutoutTestimonial.svg new file mode 100644 index 00000000..b33873a6 --- /dev/null +++ b/src/images/icons/ShoutoutTestimonial.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShowClix.svg b/src/images/icons/ShowClix.svg new file mode 100644 index 00000000..ea75e140 --- /dev/null +++ b/src/images/icons/ShowClix.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ShowRecentOrders.svg b/src/images/icons/ShowRecentOrders.svg new file mode 100644 index 00000000..58a5e588 --- /dev/null +++ b/src/images/icons/ShowRecentOrders.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Showdigs.svg b/src/images/icons/Showdigs.svg new file mode 100644 index 00000000..4681ea78 --- /dev/null +++ b/src/images/icons/Showdigs.svg @@ -0,0 +1,19 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SidePanda.svg b/src/images/icons/SidePanda.svg new file mode 100644 index 00000000..739930f0 --- /dev/null +++ b/src/images/icons/SidePanda.svg @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/SierraInteractive.svg b/src/images/icons/SierraInteractive.svg new file mode 100644 index 00000000..a258dcd2 --- /dev/null +++ b/src/images/icons/SierraInteractive.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SightCall.svg b/src/images/icons/SightCall.svg new file mode 100644 index 00000000..47fb7ded --- /dev/null +++ b/src/images/icons/SightCall.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SigmaJs.svg b/src/images/icons/SigmaJs.svg new file mode 100644 index 00000000..beb5ad2f --- /dev/null +++ b/src/images/icons/SigmaJs.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SignCustomiser.svg b/src/images/icons/SignCustomiser.svg new file mode 100644 index 00000000..51d43413 --- /dev/null +++ b/src/images/icons/SignCustomiser.svg @@ -0,0 +1,558 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SignalZen.svg b/src/images/icons/SignalZen.svg new file mode 100644 index 00000000..f860d46b --- /dev/null +++ b/src/images/icons/SignalZen.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Signalayer.svg b/src/images/icons/Signalayer.svg new file mode 100644 index 00000000..ccec6ccd --- /dev/null +++ b/src/images/icons/Signalayer.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Signalize.svg b/src/images/icons/Signalize.svg new file mode 100644 index 00000000..d6133c57 --- /dev/null +++ b/src/images/icons/Signalize.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Signals.svg b/src/images/icons/Signals.svg new file mode 100644 index 00000000..5f788e07 --- /dev/null +++ b/src/images/icons/Signals.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Silex.svg b/src/images/icons/Silex.svg new file mode 100644 index 00000000..94c17adc --- /dev/null +++ b/src/images/icons/Silex.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Silktide.svg b/src/images/icons/Silktide.svg new file mode 100644 index 00000000..602505e6 --- /dev/null +++ b/src/images/icons/Silktide.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Simbla.svg b/src/images/icons/Simbla.svg new file mode 100644 index 00000000..e25fe7c9 --- /dev/null +++ b/src/images/icons/Simbla.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Singenuity.svg b/src/images/icons/Singenuity.svg new file mode 100644 index 00000000..a63f591d --- /dev/null +++ b/src/images/icons/Singenuity.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sirv.svg b/src/images/icons/Sirv.svg new file mode 100644 index 00000000..242aa913 --- /dev/null +++ b/src/images/icons/Sirv.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sistem.svg b/src/images/icons/Sistem.svg new file mode 100644 index 00000000..02bdaef4 --- /dev/null +++ b/src/images/icons/Sistem.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteBooster.svg b/src/images/icons/SiteBooster.svg new file mode 100644 index 00000000..8eb6c972 --- /dev/null +++ b/src/images/icons/SiteBooster.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteGPT.svg b/src/images/icons/SiteGPT.svg new file mode 100644 index 00000000..51b3f262 --- /dev/null +++ b/src/images/icons/SiteGPT.svg @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteGalore.svg b/src/images/icons/SiteGalore.svg new file mode 100644 index 00000000..0b4c0b60 --- /dev/null +++ b/src/images/icons/SiteGalore.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteWrench.svg b/src/images/icons/SiteWrench.svg new file mode 100644 index 00000000..a38f6321 --- /dev/null +++ b/src/images/icons/SiteWrench.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SiteWright.svg b/src/images/icons/SiteWright.svg new file mode 100644 index 00000000..688b6420 --- /dev/null +++ b/src/images/icons/SiteWright.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sitehood.svg b/src/images/icons/Sitehood.svg new file mode 100644 index 00000000..b973ce7f --- /dev/null +++ b/src/images/icons/Sitehood.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Siter.svg b/src/images/icons/Siter.svg new file mode 100644 index 00000000..fd562777 --- /dev/null +++ b/src/images/icons/Siter.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sitey.svg b/src/images/icons/Sitey.svg new file mode 100644 index 00000000..217d6c90 --- /dev/null +++ b/src/images/icons/Sitey.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sitoo.svg b/src/images/icons/Sitoo.svg new file mode 100644 index 00000000..2624f7f4 --- /dev/null +++ b/src/images/icons/Sitoo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Siweb.svg b/src/images/icons/Siweb.svg new file mode 100644 index 00000000..62160ab1 --- /dev/null +++ b/src/images/icons/Siweb.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sixads.svg b/src/images/icons/Sixads.svg new file mode 100644 index 00000000..52aa621e --- /dev/null +++ b/src/images/icons/Sixads.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sixshop.svg b/src/images/icons/Sixshop.svg new file mode 100644 index 00000000..0627f8d5 --- /dev/null +++ b/src/images/icons/Sixshop.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SizeMe.svg b/src/images/icons/SizeMe.svg new file mode 100644 index 00000000..de055a8a --- /dev/null +++ b/src/images/icons/SizeMe.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sizekick.svg b/src/images/icons/Sizekick.svg new file mode 100644 index 00000000..1478ee1d --- /dev/null +++ b/src/images/icons/Sizekick.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sizey.svg b/src/images/icons/Sizey.svg new file mode 100644 index 00000000..50dde279 --- /dev/null +++ b/src/images/icons/Sizey.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Skeeks.svg b/src/images/icons/Skeeks.svg new file mode 100644 index 00000000..34824617 --- /dev/null +++ b/src/images/icons/Skeeks.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skeep.svg b/src/images/icons/Skeep.svg new file mode 100644 index 00000000..3255f110 --- /dev/null +++ b/src/images/icons/Skeep.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skeepers.svg b/src/images/icons/Skeepers.svg new file mode 100644 index 00000000..666a4569 --- /dev/null +++ b/src/images/icons/Skeepers.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sketchanet.svg b/src/images/icons/Sketchanet.svg new file mode 100644 index 00000000..3b43dadb --- /dev/null +++ b/src/images/icons/Sketchanet.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skiperformance.svg b/src/images/icons/Skiperformance.svg new file mode 100644 index 00000000..153f3a75 --- /dev/null +++ b/src/images/icons/Skiperformance.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skitter.svg b/src/images/icons/Skitter.svg new file mode 100644 index 00000000..4b59fe07 --- /dev/null +++ b/src/images/icons/Skitter.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Skool.svg b/src/images/icons/Skool.svg new file mode 100644 index 00000000..15dc33d6 --- /dev/null +++ b/src/images/icons/Skool.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SkyGlue.svg b/src/images/icons/SkyGlue.svg new file mode 100644 index 00000000..88736a2a --- /dev/null +++ b/src/images/icons/SkyGlue.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SkyPilot.svg b/src/images/icons/SkyPilot.svg new file mode 100644 index 00000000..3638f63d --- /dev/null +++ b/src/images/icons/SkyPilot.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Slaask.svg b/src/images/icons/Slaask.svg new file mode 100644 index 00000000..d10dc711 --- /dev/null +++ b/src/images/icons/Slaask.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Slapform.svg b/src/images/icons/Slapform.svg new file mode 100644 index 00000000..b1b3953c --- /dev/null +++ b/src/images/icons/Slapform.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Slim-SEO.svg b/src/images/icons/Slim-SEO.svg new file mode 100644 index 00000000..30d58bcf --- /dev/null +++ b/src/images/icons/Slim-SEO.svg @@ -0,0 +1 @@ + diff --git a/src/images/icons/Slingshot.svg b/src/images/icons/Slingshot.svg new file mode 100644 index 00000000..96cf93fd --- /dev/null +++ b/src/images/icons/Slingshot.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smaily.svg b/src/images/icons/Smaily.svg new file mode 100644 index 00000000..e179f909 --- /dev/null +++ b/src/images/icons/Smaily.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Smallbox.svg b/src/images/icons/Smallbox.svg new file mode 100644 index 00000000..e299727f --- /dev/null +++ b/src/images/icons/Smallbox.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/images/icons/Smallchat.svg b/src/images/icons/Smallchat.svg new file mode 100644 index 00000000..88f82043 --- /dev/null +++ b/src/images/icons/Smallchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmartAnalytics.svg b/src/images/icons/SmartAnalytics.svg new file mode 100644 index 00000000..49812aac --- /dev/null +++ b/src/images/icons/SmartAnalytics.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmartEmailing.svg b/src/images/icons/SmartEmailing.svg new file mode 100644 index 00000000..f48bde0f --- /dev/null +++ b/src/images/icons/SmartEmailing.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmartLink.svg b/src/images/icons/SmartLink.svg new file mode 100644 index 00000000..2357d31e --- /dev/null +++ b/src/images/icons/SmartLink.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SmartPoint.svg b/src/images/icons/SmartPoint.svg new file mode 100644 index 00000000..99d3438a --- /dev/null +++ b/src/images/icons/SmartPoint.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SmileVirtual.svg b/src/images/icons/SmileVirtual.svg new file mode 100644 index 00000000..c8f42fab --- /dev/null +++ b/src/images/icons/SmileVirtual.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Smilee.svg b/src/images/icons/Smilee.svg new file mode 100644 index 00000000..04192877 --- /dev/null +++ b/src/images/icons/Smilee.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smilii.svg b/src/images/icons/Smilii.svg new file mode 100644 index 00000000..9fbd70eb --- /dev/null +++ b/src/images/icons/Smilii.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Smootify.svg b/src/images/icons/Smootify.svg new file mode 100644 index 00000000..004a8167 --- /dev/null +++ b/src/images/icons/Smootify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SnapCall.svg b/src/images/icons/SnapCall.svg new file mode 100644 index 00000000..efb636da --- /dev/null +++ b/src/images/icons/SnapCall.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SnapHop.svg b/src/images/icons/SnapHop.svg new file mode 100644 index 00000000..659b4730 --- /dev/null +++ b/src/images/icons/SnapHop.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SnapSea.svg b/src/images/icons/SnapSea.svg new file mode 100644 index 00000000..4e01dada --- /dev/null +++ b/src/images/icons/SnapSea.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Snapps.svg b/src/images/icons/Snapps.svg new file mode 100644 index 00000000..ccb47e6f --- /dev/null +++ b/src/images/icons/Snapps.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SnatchBot.svg b/src/images/icons/SnatchBot.svg new file mode 100644 index 00000000..2e05e851 --- /dev/null +++ b/src/images/icons/SnatchBot.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SniffURL.svg b/src/images/icons/SniffURL.svg new file mode 100644 index 00000000..f4c9e72f --- /dev/null +++ b/src/images/icons/SniffURL.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SniperCRM.svg b/src/images/icons/SniperCRM.svg new file mode 100644 index 00000000..9c1051e2 --- /dev/null +++ b/src/images/icons/SniperCRM.svg @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sobot.svg b/src/images/icons/Sobot.svg new file mode 100644 index 00000000..c33a584a --- /dev/null +++ b/src/images/icons/Sobot.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Socedo.svg b/src/images/icons/Socedo.svg new file mode 100644 index 00000000..dd5c813b --- /dev/null +++ b/src/images/icons/Socedo.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Sociavore.svg b/src/images/icons/Sociavore.svg new file mode 100644 index 00000000..3f5f2c15 --- /dev/null +++ b/src/images/icons/Sociavore.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Socioh.svg b/src/images/icons/Socioh.svg new file mode 100644 index 00000000..0799e805 --- /dev/null +++ b/src/images/icons/Socioh.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SocraftUI.svg b/src/images/icons/SocraftUI.svg new file mode 100644 index 00000000..f966cf95 --- /dev/null +++ b/src/images/icons/SocraftUI.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Socure.svg b/src/images/icons/Socure.svg new file mode 100644 index 00000000..81a099a9 --- /dev/null +++ b/src/images/icons/Socure.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Soffront.svg b/src/images/icons/Soffront.svg new file mode 100644 index 00000000..5c23bcad --- /dev/null +++ b/src/images/icons/Soffront.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sogecommerce.svg b/src/images/icons/Sogecommerce.svg new file mode 100644 index 00000000..419cfd12 --- /dev/null +++ b/src/images/icons/Sogecommerce.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sokrati.svg b/src/images/icons/Sokrati.svg new file mode 100644 index 00000000..0c057412 --- /dev/null +++ b/src/images/icons/Sokrati.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Soldsie.svg b/src/images/icons/Soldsie.svg new file mode 100644 index 00000000..1bdd74d2 --- /dev/null +++ b/src/images/icons/Soldsie.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Solitics.svg b/src/images/icons/Solitics.svg new file mode 100644 index 00000000..eeb63d9b --- /dev/null +++ b/src/images/icons/Solitics.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Solo.svg b/src/images/icons/Solo.svg new file mode 100644 index 00000000..1255286e --- /dev/null +++ b/src/images/icons/Solo.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SolutionReach.svg b/src/images/icons/SolutionReach.svg new file mode 100644 index 00000000..ac132f85 --- /dev/null +++ b/src/images/icons/SolutionReach.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sonar.svg b/src/images/icons/Sonar.svg new file mode 100644 index 00000000..38550e8f --- /dev/null +++ b/src/images/icons/Sonar.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/sonar.svg b/src/images/icons/SonarQube.svg similarity index 100% rename from src/images/icons/sonar.svg rename to src/images/icons/SonarQube.svg diff --git a/src/images/icons/Sonetel.svg b/src/images/icons/Sonetel.svg new file mode 100644 index 00000000..3a292afd --- /dev/null +++ b/src/images/icons/Sonetel.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sonline.svg b/src/images/icons/Sonline.svg new file mode 100644 index 00000000..71102077 --- /dev/null +++ b/src/images/icons/Sonline.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sophi.svg b/src/images/icons/Sophi.svg new file mode 100644 index 00000000..38560f6b --- /dev/null +++ b/src/images/icons/Sophi.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sorry.svg b/src/images/icons/Sorry.svg new file mode 100644 index 00000000..a21fc9dc --- /dev/null +++ b/src/images/icons/Sorry.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/SparkLoop.svg b/src/images/icons/SparkLoop.svg new file mode 100644 index 00000000..28a0c38e --- /dev/null +++ b/src/images/icons/SparkLoop.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpatialChat.svg b/src/images/icons/SpatialChat.svg new file mode 100644 index 00000000..a171bb6a --- /dev/null +++ b/src/images/icons/SpatialChat.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spayee.svg b/src/images/icons/Spayee.svg new file mode 100644 index 00000000..4507fcf2 --- /dev/null +++ b/src/images/icons/Spayee.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeakPipe.svg b/src/images/icons/SpeakPipe.svg new file mode 100644 index 00000000..d87db558 --- /dev/null +++ b/src/images/icons/SpeakPipe.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Speca.svg b/src/images/icons/Speca.svg new file mode 100644 index 00000000..4018659d --- /dev/null +++ b/src/images/icons/Speca.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/images/icons/Spectate.svg b/src/images/icons/Spectate.svg new file mode 100644 index 00000000..321b7b9f --- /dev/null +++ b/src/images/icons/Spectate.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeedOfMe.svg b/src/images/icons/SpeedOfMe.svg new file mode 100644 index 00000000..f5cf9e11 --- /dev/null +++ b/src/images/icons/SpeedOfMe.svg @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpeedyCache.svg b/src/images/icons/SpeedyCache.svg new file mode 100644 index 00000000..0f79cc04 --- /dev/null +++ b/src/images/icons/SpeedyCache.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/SpexoAddons.svg b/src/images/icons/SpexoAddons.svg new file mode 100644 index 00000000..9030809f --- /dev/null +++ b/src/images/icons/SpexoAddons.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpiffyStores.svg b/src/images/icons/SpiffyStores.svg new file mode 100644 index 00000000..f644ab9d --- /dev/null +++ b/src/images/icons/SpiffyStores.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spikmi.svg b/src/images/icons/Spikmi.svg new file mode 100644 index 00000000..f6ed9af6 --- /dev/null +++ b/src/images/icons/Spikmi.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SpiralCMS.svg b/src/images/icons/SpiralCMS.svg new file mode 100644 index 00000000..18b5a212 --- /dev/null +++ b/src/images/icons/SpiralCMS.svg @@ -0,0 +1,7392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spline.svg b/src/images/icons/Spline.svg new file mode 100644 index 00000000..1171b45b --- /dev/null +++ b/src/images/icons/Spline.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SplitHero.svg b/src/images/icons/SplitHero.svg new file mode 100644 index 00000000..a0f40f86 --- /dev/null +++ b/src/images/icons/SplitHero.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SplutterAI.svg b/src/images/icons/SplutterAI.svg new file mode 100644 index 00000000..6da55382 --- /dev/null +++ b/src/images/icons/SplutterAI.svg @@ -0,0 +1,1297 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sporcle.svg b/src/images/icons/Sporcle.svg new file mode 100644 index 00000000..ff9ee5ac --- /dev/null +++ b/src/images/icons/Sporcle.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Spotii.svg b/src/images/icons/Spotii.svg index a4feaa40..f41b82b7 100644 --- a/src/images/icons/Spotii.svg +++ b/src/images/icons/Spotii.svg @@ -1,9 +1,6 @@ - - - - - - - - + + + + + diff --git a/src/images/icons/Spreadr.svg b/src/images/icons/Spreadr.svg new file mode 100644 index 00000000..1e054fc1 --- /dev/null +++ b/src/images/icons/Spreadr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sprii.svg b/src/images/icons/Sprii.svg new file mode 100644 index 00000000..6179fd79 --- /dev/null +++ b/src/images/icons/Sprii.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Springbig.svg b/src/images/icons/Springbig.svg new file mode 100644 index 00000000..b7e4d0de --- /dev/null +++ b/src/images/icons/Springbig.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Springnest.svg b/src/images/icons/Springnest.svg new file mode 100644 index 00000000..5b52bee7 --- /dev/null +++ b/src/images/icons/Springnest.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Spruce.svg b/src/images/icons/Spruce.svg new file mode 100644 index 00000000..0f9b7334 --- /dev/null +++ b/src/images/icons/Spruce.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Sqimple.svg b/src/images/icons/Sqimple.svg new file mode 100644 index 00000000..92b3a136 --- /dev/null +++ b/src/images/icons/Sqimple.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SquadUP.svg b/src/images/icons/SquadUP.svg new file mode 100644 index 00000000..b4cd2107 --- /dev/null +++ b/src/images/icons/SquadUP.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SqualoMail.svg b/src/images/icons/SqualoMail.svg new file mode 100644 index 00000000..3b5b8faf --- /dev/null +++ b/src/images/icons/SqualoMail.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StackAdapt.svg b/src/images/icons/StackAdapt.svg new file mode 100644 index 00000000..149d8a7e --- /dev/null +++ b/src/images/icons/StackAdapt.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Staffbase.svg b/src/images/icons/Staffbase.svg new file mode 100644 index 00000000..7e392c5b --- /dev/null +++ b/src/images/icons/Staffbase.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stammer.svg b/src/images/icons/Stammer.svg new file mode 100644 index 00000000..bd9edb2c --- /dev/null +++ b/src/images/icons/Stammer.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stampede.svg b/src/images/icons/Stampede.svg new file mode 100644 index 00000000..6767ba16 --- /dev/null +++ b/src/images/icons/Stampede.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StarboardSuite.svg b/src/images/icons/StarboardSuite.svg new file mode 100644 index 00000000..504b9af0 --- /dev/null +++ b/src/images/icons/StarboardSuite.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Stardekk.svg b/src/images/icons/Stardekk.svg new file mode 100644 index 00000000..c05bed3f --- /dev/null +++ b/src/images/icons/Stardekk.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Starlight.svg b/src/images/icons/Starlight.svg new file mode 100644 index 00000000..da208e94 --- /dev/null +++ b/src/images/icons/Starlight.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StartiApp.svg b/src/images/icons/StartiApp.svg new file mode 100644 index 00000000..1b1af3f7 --- /dev/null +++ b/src/images/icons/StartiApp.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/StatusCake.svg b/src/images/icons/StatusCake.svg new file mode 100644 index 00000000..08a9ffd1 --- /dev/null +++ b/src/images/icons/StatusCake.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StayAI.svg b/src/images/icons/StayAI.svg new file mode 100644 index 00000000..d925f9d2 --- /dev/null +++ b/src/images/icons/StayAI.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SteerHealth.svg b/src/images/icons/SteerHealth.svg new file mode 100644 index 00000000..c98ac59d --- /dev/null +++ b/src/images/icons/SteerHealth.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Stellantis.svg b/src/images/icons/Stellantis.svg new file mode 100644 index 00000000..3d66f6b2 --- /dev/null +++ b/src/images/icons/Stellantis.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stetic.svg b/src/images/icons/Stetic.svg new file mode 100644 index 00000000..45d0b604 --- /dev/null +++ b/src/images/icons/Stetic.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stibo.svg b/src/images/icons/Stibo.svg new file mode 100644 index 00000000..afd4c737 --- /dev/null +++ b/src/images/icons/Stibo.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stockist.svg b/src/images/icons/Stockist.svg new file mode 100644 index 00000000..ef86d827 --- /dev/null +++ b/src/images/icons/Stockist.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Stonly.svg b/src/images/icons/Stonly.svg new file mode 100644 index 00000000..f86521e5 --- /dev/null +++ b/src/images/icons/Stonly.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StoragePug.svg b/src/images/icons/StoragePug.svg new file mode 100644 index 00000000..a41cfce4 --- /dev/null +++ b/src/images/icons/StoragePug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storagely.svg b/src/images/icons/Storagely.svg new file mode 100644 index 00000000..1e1da004 --- /dev/null +++ b/src/images/icons/Storagely.svg @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storbie.svg b/src/images/icons/Storbie.svg new file mode 100644 index 00000000..42090558 --- /dev/null +++ b/src/images/icons/Storbie.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StoreVantage.svg b/src/images/icons/StoreVantage.svg new file mode 100644 index 00000000..f9f858f5 --- /dev/null +++ b/src/images/icons/StoreVantage.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storefront.svg b/src/images/icons/Storefront.svg new file mode 100644 index 00000000..5ca81eab --- /dev/null +++ b/src/images/icons/Storefront.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storeify.svg b/src/images/icons/Storeify.svg new file mode 100644 index 00000000..e308dc9e --- /dev/null +++ b/src/images/icons/Storeify.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Storenvy.svg b/src/images/icons/Storenvy.svg new file mode 100644 index 00000000..4088dac0 --- /dev/null +++ b/src/images/icons/Storenvy.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Storrea.svg b/src/images/icons/Storrea.svg new file mode 100644 index 00000000..7f4a8bb6 --- /dev/null +++ b/src/images/icons/Storrea.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Straiv.svg b/src/images/icons/Straiv.svg new file mode 100644 index 00000000..2bb35ce7 --- /dev/null +++ b/src/images/icons/Straiv.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Strands.svg b/src/images/icons/Strands.svg new file mode 100644 index 00000000..efdf7527 --- /dev/null +++ b/src/images/icons/Strands.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Strava.svg b/src/images/icons/Strava.svg new file mode 100644 index 00000000..8c607911 --- /dev/null +++ b/src/images/icons/Strava.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Streamlyne.svg b/src/images/icons/Streamlyne.svg new file mode 100644 index 00000000..e3bc6dc8 --- /dev/null +++ b/src/images/icons/Streamlyne.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Streamroll.svg b/src/images/icons/Streamroll.svg new file mode 100644 index 00000000..6640fdfa --- /dev/null +++ b/src/images/icons/Streamroll.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Strife.svg b/src/images/icons/Strife.svg new file mode 100644 index 00000000..db57d421 --- /dev/null +++ b/src/images/icons/Strife.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Struq.svg b/src/images/icons/Struq.svg new file mode 100644 index 00000000..0ee3e53d --- /dev/null +++ b/src/images/icons/Struq.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Styla.svg b/src/images/icons/Styla.svg new file mode 100644 index 00000000..ce0cc738 --- /dev/null +++ b/src/images/icons/Styla.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/StyleSeat.svg b/src/images/icons/StyleSeat.svg new file mode 100644 index 00000000..d38513ec --- /dev/null +++ b/src/images/icons/StyleSeat.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Subiz.svg b/src/images/icons/Subiz.svg new file mode 100644 index 00000000..7d7ce271 --- /dev/null +++ b/src/images/icons/Subiz.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SubmitExpress.svg b/src/images/icons/SubmitExpress.svg new file mode 100644 index 00000000..c4de6253 --- /dev/null +++ b/src/images/icons/SubmitExpress.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Subscribfy.svg b/src/images/icons/Subscribfy.svg new file mode 100644 index 00000000..abfc68ef --- /dev/null +++ b/src/images/icons/Subscribfy.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Subscrimia.svg b/src/images/icons/Subscrimia.svg new file mode 100644 index 00000000..f4d29b9e --- /dev/null +++ b/src/images/icons/Subscrimia.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sugar.svg b/src/images/icons/Sugar.svg new file mode 100644 index 00000000..1958e088 --- /dev/null +++ b/src/images/icons/Sugar.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SugarWOD.svg b/src/images/icons/SugarWOD.svg new file mode 100644 index 00000000..4de92bd1 --- /dev/null +++ b/src/images/icons/SugarWOD.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Sugester.svg b/src/images/icons/Sugester.svg new file mode 100644 index 00000000..e52111b0 --- /dev/null +++ b/src/images/icons/Sugester.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuiteCRM.svg b/src/images/icons/SuiteCRM.svg new file mode 100644 index 00000000..a620c51d --- /dev/null +++ b/src/images/icons/SuiteCRM.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SumUp.svg b/src/images/icons/SumUp.svg new file mode 100644 index 00000000..3f96b2cd --- /dev/null +++ b/src/images/icons/SumUp.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Sunshop.svg b/src/images/icons/Sunshop.svg new file mode 100644 index 00000000..1d467f80 --- /dev/null +++ b/src/images/icons/Sunshop.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Supademo.svg b/src/images/icons/Supademo.svg new file mode 100644 index 00000000..153a323f --- /dev/null +++ b/src/images/icons/Supademo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/SuperBuzz.svg b/src/images/icons/SuperBuzz.svg new file mode 100644 index 00000000..8a22661a --- /dev/null +++ b/src/images/icons/SuperBuzz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuperHote.svg b/src/images/icons/SuperHote.svg new file mode 100644 index 00000000..3781d71b --- /dev/null +++ b/src/images/icons/SuperHote.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SuperPlural.svg b/src/images/icons/SuperPlural.svg new file mode 100644 index 00000000..3c2865bd --- /dev/null +++ b/src/images/icons/SuperPlural.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Superblog.svg b/src/images/icons/Superblog.svg new file mode 100644 index 00000000..fc3c2988 --- /dev/null +++ b/src/images/icons/Superblog.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Supsystic.svg b/src/images/icons/Supsystic.svg new file mode 100644 index 00000000..e0c1d8fc --- /dev/null +++ b/src/images/icons/Supsystic.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Surfside.svg b/src/images/icons/Surfside.svg new file mode 100644 index 00000000..7c301c88 --- /dev/null +++ b/src/images/icons/Surfside.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Survale.svg b/src/images/icons/Survale.svg new file mode 100644 index 00000000..8288dc24 --- /dev/null +++ b/src/images/icons/Survale.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swapcard.svg b/src/images/icons/Swapcard.svg new file mode 100644 index 00000000..89a8c1ae --- /dev/null +++ b/src/images/icons/Swapcard.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/SweetAnalytics.svg b/src/images/icons/SweetAnalytics.svg new file mode 100644 index 00000000..902f490f --- /dev/null +++ b/src/images/icons/SweetAnalytics.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/SweetUpsell.svg b/src/images/icons/SweetUpsell.svg new file mode 100644 index 00000000..ecb2a58b --- /dev/null +++ b/src/images/icons/SweetUpsell.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SwellCX.svg b/src/images/icons/SwellCX.svg new file mode 100644 index 00000000..309ee344 --- /dev/null +++ b/src/images/icons/SwellCX.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Swetrix.svg b/src/images/icons/Swetrix.svg new file mode 100644 index 00000000..ba2256cb --- /dev/null +++ b/src/images/icons/Swetrix.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swifty.svg b/src/images/icons/Swifty.svg new file mode 100644 index 00000000..fbda4c26 --- /dev/null +++ b/src/images/icons/Swifty.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Swup.svg b/src/images/icons/Swup.svg index bdc0e31e..98306472 100644 --- a/src/images/icons/Swup.svg +++ b/src/images/icons/Swup.svg @@ -1,14 +1,12 @@ - - - - - - + + + + + + + + + + diff --git a/src/images/icons/Symbolset.svg b/src/images/icons/Symbolset.svg new file mode 100644 index 00000000..6626484a --- /dev/null +++ b/src/images/icons/Symbolset.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SynBird.svg b/src/images/icons/SynBird.svg new file mode 100644 index 00000000..b92a9f6d --- /dev/null +++ b/src/images/icons/SynBird.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Synamate.svg b/src/images/icons/Synamate.svg new file mode 100644 index 00000000..c077d735 --- /dev/null +++ b/src/images/icons/Synamate.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Syncee.svg b/src/images/icons/Syncee.svg new file mode 100644 index 00000000..ebc82285 --- /dev/null +++ b/src/images/icons/Syncee.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Syncle.svg b/src/images/icons/Syncle.svg new file mode 100644 index 00000000..1a51dfee --- /dev/null +++ b/src/images/icons/Syncle.svg @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Synctrack.svg b/src/images/icons/Synctrack.svg new file mode 100644 index 00000000..31e519a0 --- /dev/null +++ b/src/images/icons/Synctrack.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Synerise.svg b/src/images/icons/Synerise.svg index 81c4f03a..42bb764a 100644 --- a/src/images/icons/Synerise.svg +++ b/src/images/icons/Synerise.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Synology DiskStation.svg b/src/images/icons/Synology DiskStation.svg index 80d9e379..777c80f3 100644 --- a/src/images/icons/Synology DiskStation.svg +++ b/src/images/icons/Synology DiskStation.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/src/images/icons/Synup.svg b/src/images/icons/Synup.svg new file mode 100644 index 00000000..7e7d33b0 --- /dev/null +++ b/src/images/icons/Synup.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Systema.svg b/src/images/icons/Systema.svg new file mode 100644 index 00000000..2d85e3e6 --- /dev/null +++ b/src/images/icons/Systema.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/SystemsAccel.svg b/src/images/icons/SystemsAccel.svg new file mode 100644 index 00000000..6f99aa12 --- /dev/null +++ b/src/images/icons/SystemsAccel.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TGTrack.svg b/src/images/icons/TGTrack.svg new file mode 100644 index 00000000..5c1e1efe --- /dev/null +++ b/src/images/icons/TGTrack.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TIEIT.svg b/src/images/icons/TIEIT.svg new file mode 100644 index 00000000..3287e680 --- /dev/null +++ b/src/images/icons/TIEIT.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TINT.svg b/src/images/icons/TINT.svg new file mode 100644 index 00000000..fe530050 --- /dev/null +++ b/src/images/icons/TINT.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TRIBUS.svg b/src/images/icons/TRIBUS.svg new file mode 100644 index 00000000..179b49ad --- /dev/null +++ b/src/images/icons/TRIBUS.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TSACommerce.svg b/src/images/icons/TSACommerce.svg new file mode 100644 index 00000000..3e1eb86e --- /dev/null +++ b/src/images/icons/TSACommerce.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TableFever.svg b/src/images/icons/TableFever.svg new file mode 100644 index 00000000..10e5d505 --- /dev/null +++ b/src/images/icons/TableFever.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tableau.svg b/src/images/icons/Tableau.svg new file mode 100644 index 00000000..17447240 --- /dev/null +++ b/src/images/icons/Tableau.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tableo.svg b/src/images/icons/Tableo.svg new file mode 100644 index 00000000..fc302bdf --- /dev/null +++ b/src/images/icons/Tableo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tactful.svg b/src/images/icons/Tactful.svg new file mode 100644 index 00000000..9f38221e --- /dev/null +++ b/src/images/icons/Tactful.svg @@ -0,0 +1,501 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tagalys.svg b/src/images/icons/Tagalys.svg new file mode 100644 index 00000000..d8e3838b --- /dev/null +++ b/src/images/icons/Tagalys.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tagnology.svg b/src/images/icons/Tagnology.svg new file mode 100644 index 00000000..2cdf4cf8 --- /dev/null +++ b/src/images/icons/Tagnology.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tagtoo.svg b/src/images/icons/Tagtoo.svg new file mode 100644 index 00000000..4320309b --- /dev/null +++ b/src/images/icons/Tagtoo.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TakeTheme.svg b/src/images/icons/TakeTheme.svg new file mode 100644 index 00000000..7c824ab9 --- /dev/null +++ b/src/images/icons/TakeTheme.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalentBrew.svg b/src/images/icons/TalentBrew.svg new file mode 100644 index 00000000..df9e60eb --- /dev/null +++ b/src/images/icons/TalentBrew.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalentClue.svg b/src/images/icons/TalentClue.svg new file mode 100644 index 00000000..eaf8ca50 --- /dev/null +++ b/src/images/icons/TalentClue.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talentegy.svg b/src/images/icons/Talentegy.svg new file mode 100644 index 00000000..c5160668 --- /dev/null +++ b/src/images/icons/Talentegy.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talention.svg b/src/images/icons/Talention.svg new file mode 100644 index 00000000..dbbb07c0 --- /dev/null +++ b/src/images/icons/Talention.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Talex.svg b/src/images/icons/Talex.svg new file mode 100644 index 00000000..05c3ee54 --- /dev/null +++ b/src/images/icons/Talex.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/TalkJS.svg b/src/images/icons/TalkJS.svg new file mode 100644 index 00000000..a7a6f9d4 --- /dev/null +++ b/src/images/icons/TalkJS.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TalkMe.svg b/src/images/icons/TalkMe.svg new file mode 100644 index 00000000..e3d906cb --- /dev/null +++ b/src/images/icons/TalkMe.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TanStack.svg b/src/images/icons/TanStack.svg new file mode 100644 index 00000000..7e785cb4 --- /dev/null +++ b/src/images/icons/TanStack.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Tanx.svg b/src/images/icons/Tanx.svg new file mode 100644 index 00000000..6d5f4a0d --- /dev/null +++ b/src/images/icons/Tanx.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TapMango.svg b/src/images/icons/TapMango.svg new file mode 100644 index 00000000..f2ad80c2 --- /dev/null +++ b/src/images/icons/TapMango.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tapatalk.svg b/src/images/icons/Tapatalk.svg new file mode 100644 index 00000000..05792aa7 --- /dev/null +++ b/src/images/icons/Tapatalk.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tapsell.svg b/src/images/icons/Tapsell.svg new file mode 100644 index 00000000..b0d5e4f3 --- /dev/null +++ b/src/images/icons/Tapsell.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tapstream.svg b/src/images/icons/Tapstream.svg new file mode 100644 index 00000000..87cf5ac9 --- /dev/null +++ b/src/images/icons/Tapstream.svg @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Taptop.svg b/src/images/icons/Taptop.svg new file mode 100644 index 00000000..fab8a125 --- /dev/null +++ b/src/images/icons/Taptop.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TargetBay.svg b/src/images/icons/TargetBay.svg new file mode 100644 index 00000000..c48d61a0 --- /dev/null +++ b/src/images/icons/TargetBay.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tashi.svg b/src/images/icons/Tashi.svg new file mode 100644 index 00000000..874dd36c --- /dev/null +++ b/src/images/icons/Tashi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TaskAnalytics.svg b/src/images/icons/TaskAnalytics.svg new file mode 100644 index 00000000..ea846e81 --- /dev/null +++ b/src/images/icons/TaskAnalytics.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TaurosMedia.svg b/src/images/icons/TaurosMedia.svg new file mode 100644 index 00000000..9f0fd881 --- /dev/null +++ b/src/images/icons/TaurosMedia.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Taxdome.svg b/src/images/icons/Taxdome.svg new file mode 100644 index 00000000..905b2ee5 --- /dev/null +++ b/src/images/icons/Taxdome.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tebra.svg b/src/images/icons/Tebra.svg new file mode 100644 index 00000000..6c42b5ab --- /dev/null +++ b/src/images/icons/Tebra.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TechTarget.svg b/src/images/icons/TechTarget.svg new file mode 100644 index 00000000..678b7952 --- /dev/null +++ b/src/images/icons/TechTarget.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TeeChart.svg b/src/images/icons/TeeChart.svg new file mode 100644 index 00000000..271bcc64 --- /dev/null +++ b/src/images/icons/TeeChart.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tekion.svg b/src/images/icons/Tekion.svg new file mode 100644 index 00000000..c6938292 --- /dev/null +++ b/src/images/icons/Tekion.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tempus.svg b/src/images/icons/Tempus.svg new file mode 100644 index 00000000..0360e87e --- /dev/null +++ b/src/images/icons/Tempus.svg @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tend.svg b/src/images/icons/Tend.svg new file mode 100644 index 00000000..99b17139 --- /dev/null +++ b/src/images/icons/Tend.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tendenci.svg b/src/images/icons/Tendenci.svg new file mode 100644 index 00000000..4554837e --- /dev/null +++ b/src/images/icons/Tendenci.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TerMed.svg b/src/images/icons/TerMed.svg new file mode 100644 index 00000000..e27e3b5e --- /dev/null +++ b/src/images/icons/TerMed.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Terminalfour.svg b/src/images/icons/Terminalfour.svg new file mode 100644 index 00000000..d421fa58 --- /dev/null +++ b/src/images/icons/Terminalfour.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Terminus.svg b/src/images/icons/Terminus.svg new file mode 100644 index 00000000..82a86f4e --- /dev/null +++ b/src/images/icons/Terminus.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Testflow.svg b/src/images/icons/Testflow.svg new file mode 100644 index 00000000..daa0955f --- /dev/null +++ b/src/images/icons/Testflow.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TestimonialRobot.svg b/src/images/icons/TestimonialRobot.svg new file mode 100644 index 00000000..9950e922 --- /dev/null +++ b/src/images/icons/TestimonialRobot.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TextInChurch.svg b/src/images/icons/TextInChurch.svg new file mode 100644 index 00000000..9c0a1b8b --- /dev/null +++ b/src/images/icons/TextInChurch.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/TextMarketer.svg b/src/images/icons/TextMarketer.svg new file mode 100644 index 00000000..fcbf9008 --- /dev/null +++ b/src/images/icons/TextMarketer.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Textalk.svg b/src/images/icons/Textalk.svg new file mode 100644 index 00000000..b88c69fd --- /dev/null +++ b/src/images/icons/Textalk.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Textline.svg b/src/images/icons/Textline.svg new file mode 100644 index 00000000..4dd02b66 --- /dev/null +++ b/src/images/icons/Textline.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Textmagic.svg b/src/images/icons/Textmagic.svg new file mode 100644 index 00000000..ecf9d230 --- /dev/null +++ b/src/images/icons/Textmagic.svg @@ -0,0 +1,507 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThankYouAnalytics.svg b/src/images/icons/ThankYouAnalytics.svg new file mode 100644 index 00000000..e6a05864 --- /dev/null +++ b/src/images/icons/ThankYouAnalytics.svg @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheBotForge.svg b/src/images/icons/TheBotForge.svg new file mode 100644 index 00000000..ba2b8971 --- /dev/null +++ b/src/images/icons/TheBotForge.svg @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheMonetyzer.svg b/src/images/icons/TheMonetyzer.svg new file mode 100644 index 00000000..025ae352 --- /dev/null +++ b/src/images/icons/TheMonetyzer.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TheRave.svg b/src/images/icons/TheRave.svg new file mode 100644 index 00000000..3aa9836d --- /dev/null +++ b/src/images/icons/TheRave.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Theasys.svg b/src/images/icons/Theasys.svg new file mode 100644 index 00000000..3331850a --- /dev/null +++ b/src/images/icons/Theasys.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Theatre.js.svg b/src/images/icons/Theatre.js.svg index f53fe299..14f6e296 100644 --- a/src/images/icons/Theatre.js.svg +++ b/src/images/icons/Theatre.js.svg @@ -1,2 +1,17 @@ - - \ No newline at end of file + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/ThemezHut.png b/src/images/icons/ThemezHut.png deleted file mode 100644 index 2f75314f..00000000 Binary files a/src/images/icons/ThemezHut.png and /dev/null differ diff --git a/src/images/icons/ThemezHut.svg b/src/images/icons/ThemezHut.svg new file mode 100644 index 00000000..3ae6548b --- /dev/null +++ b/src/images/icons/ThemezHut.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TheraLink.svg b/src/images/icons/TheraLink.svg new file mode 100644 index 00000000..b55c3f2c --- /dev/null +++ b/src/images/icons/TheraLink.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThingPark.svg b/src/images/icons/ThingPark.svg new file mode 100644 index 00000000..f2a7fd16 --- /dev/null +++ b/src/images/icons/ThingPark.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThingsSolver.svg b/src/images/icons/ThingsSolver.svg new file mode 100644 index 00000000..8d5b3c70 --- /dev/null +++ b/src/images/icons/ThingsSolver.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Thinkstack.svg b/src/images/icons/Thinkstack.svg new file mode 100644 index 00000000..a82d27e4 --- /dev/null +++ b/src/images/icons/Thinkstack.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThoughtIndustries.svg b/src/images/icons/ThoughtIndustries.svg new file mode 100644 index 00000000..8e14729f --- /dev/null +++ b/src/images/icons/ThoughtIndustries.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ThoughtMetric.svg b/src/images/icons/ThoughtMetric.svg new file mode 100644 index 00000000..61e84be1 --- /dev/null +++ b/src/images/icons/ThoughtMetric.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Threadles.svg b/src/images/icons/Threadles.svg new file mode 100644 index 00000000..5ce8833b --- /dev/null +++ b/src/images/icons/Threadles.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Thridify.svg b/src/images/icons/Thridify.svg new file mode 100644 index 00000000..fbe99ac4 --- /dev/null +++ b/src/images/icons/Thridify.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Thrillshare.svg b/src/images/icons/Thrillshare.svg new file mode 100644 index 00000000..73fac06d --- /dev/null +++ b/src/images/icons/Thrillshare.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Thrinacia.svg b/src/images/icons/Thrinacia.svg new file mode 100644 index 00000000..a83f222e --- /dev/null +++ b/src/images/icons/Thrinacia.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tickera.svg b/src/images/icons/Tickera.svg new file mode 100644 index 00000000..86232b96 --- /dev/null +++ b/src/images/icons/Tickera.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TicketSpice.svg b/src/images/icons/TicketSpice.svg new file mode 100644 index 00000000..7754c8db --- /dev/null +++ b/src/images/icons/TicketSpice.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketbro.svg b/src/images/icons/Ticketbro.svg new file mode 100644 index 00000000..5c8a6970 --- /dev/null +++ b/src/images/icons/Ticketbro.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketmeo.svg b/src/images/icons/Ticketmeo.svg new file mode 100644 index 00000000..3759ad12 --- /dev/null +++ b/src/images/icons/Ticketmeo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ticketure.svg b/src/images/icons/Ticketure.svg new file mode 100644 index 00000000..744c8da6 --- /dev/null +++ b/src/images/icons/Ticketure.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tiendy.svg b/src/images/icons/Tiendy.svg new file mode 100644 index 00000000..f9928531 --- /dev/null +++ b/src/images/icons/Tiendy.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TikShop.svg b/src/images/icons/TikShop.svg new file mode 100644 index 00000000..e576a853 --- /dev/null +++ b/src/images/icons/TikShop.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TimeTap.svg b/src/images/icons/TimeTap.svg new file mode 100644 index 00000000..2935c8f0 --- /dev/null +++ b/src/images/icons/TimeTap.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timeago.svg b/src/images/icons/Timeago.svg new file mode 100644 index 00000000..cf716411 --- /dev/null +++ b/src/images/icons/Timeago.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timepad.svg b/src/images/icons/Timepad.svg new file mode 100644 index 00000000..b6f77015 --- /dev/null +++ b/src/images/icons/Timepad.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timesact.svg b/src/images/icons/Timesact.svg new file mode 100644 index 00000000..c91db189 --- /dev/null +++ b/src/images/icons/Timesact.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Timma.svg b/src/images/icons/Timma.svg new file mode 100644 index 00000000..bd2d62c7 --- /dev/null +++ b/src/images/icons/Timma.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tipso.svg b/src/images/icons/Tipso.svg new file mode 100644 index 00000000..d7848950 --- /dev/null +++ b/src/images/icons/Tipso.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Tiptap.svg b/src/images/icons/Tiptap.svg new file mode 100644 index 00000000..d7ff7445 --- /dev/null +++ b/src/images/icons/Tiptap.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tito.svg b/src/images/icons/Tito.svg new file mode 100644 index 00000000..02298743 --- /dev/null +++ b/src/images/icons/Tito.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Tix.svg b/src/images/icons/Tix.svg new file mode 100644 index 00000000..c76ea764 --- /dev/null +++ b/src/images/icons/Tix.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TocToc.svg b/src/images/icons/TocToc.svg new file mode 100644 index 00000000..2fbf653a --- /dev/null +++ b/src/images/icons/TocToc.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tockify.svg b/src/images/icons/Tockify.svg new file mode 100644 index 00000000..2724a6d9 --- /dev/null +++ b/src/images/icons/Tockify.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TogetherJS.svg b/src/images/icons/TogetherJS.svg new file mode 100644 index 00000000..e976a5a0 --- /dev/null +++ b/src/images/icons/TogetherJS.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tokeet.svg b/src/images/icons/Tokeet.svg new file mode 100644 index 00000000..a083cb1e --- /dev/null +++ b/src/images/icons/Tokeet.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TokenOfTrust.svg b/src/images/icons/TokenOfTrust.svg new file mode 100644 index 00000000..feb4b71b --- /dev/null +++ b/src/images/icons/TokenOfTrust.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toky.svg b/src/images/icons/Toky.svg new file mode 100644 index 00000000..e0f2bd82 --- /dev/null +++ b/src/images/icons/Toky.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tolk.svg b/src/images/icons/Tolk.svg new file mode 100644 index 00000000..217a6879 --- /dev/null +++ b/src/images/icons/Tolk.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tolstoy.svg b/src/images/icons/Tolstoy.svg new file mode 100644 index 00000000..65a0eefd --- /dev/null +++ b/src/images/icons/Tolstoy.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tomi.svg b/src/images/icons/Tomi.svg new file mode 100644 index 00000000..946f4842 --- /dev/null +++ b/src/images/icons/Tomi.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ToneDen.svg b/src/images/icons/ToneDen.svg new file mode 100644 index 00000000..4ffe0301 --- /dev/null +++ b/src/images/icons/ToneDen.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tontine.svg b/src/images/icons/Tontine.svg new file mode 100644 index 00000000..7e6f8a82 --- /dev/null +++ b/src/images/icons/Tontine.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toolbx.svg b/src/images/icons/Toolbx.svg new file mode 100644 index 00000000..92ff4580 --- /dev/null +++ b/src/images/icons/Toolbx.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tooltip.svg b/src/images/icons/Tooltip.svg new file mode 100644 index 00000000..e511503c --- /dev/null +++ b/src/images/icons/Tooltip.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Toonimo.svg b/src/images/icons/Toonimo.svg new file mode 100644 index 00000000..43a6967a --- /dev/null +++ b/src/images/icons/Toonimo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Tooning.svg b/src/images/icons/Tooning.svg new file mode 100644 index 00000000..7faddd0e --- /dev/null +++ b/src/images/icons/Tooning.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TopProducer.svg b/src/images/icons/TopProducer.svg new file mode 100644 index 00000000..7079a3b5 --- /dev/null +++ b/src/images/icons/TopProducer.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TopicIntelligence.svg b/src/images/icons/TopicIntelligence.svg new file mode 100644 index 00000000..b351954f --- /dev/null +++ b/src/images/icons/TopicIntelligence.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TopicIt.svg b/src/images/icons/TopicIt.svg new file mode 100644 index 00000000..4a3da98e --- /dev/null +++ b/src/images/icons/TopicIt.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ToplinePro.svg b/src/images/icons/ToplinePro.svg new file mode 100644 index 00000000..4815031b --- /dev/null +++ b/src/images/icons/ToplinePro.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Tossdown.svg b/src/images/icons/Tossdown.svg new file mode 100644 index 00000000..5513529f --- /dev/null +++ b/src/images/icons/Tossdown.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TourCMS.svg b/src/images/icons/TourCMS.svg new file mode 100644 index 00000000..08e46384 --- /dev/null +++ b/src/images/icons/TourCMS.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tracify.svg b/src/images/icons/Tracify.svg new file mode 100644 index 00000000..8a0a3608 --- /dev/null +++ b/src/images/icons/Tracify.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Track123.svg b/src/images/icons/Track123.svg index 8db020f5..55171a2e 100644 --- a/src/images/icons/Track123.svg +++ b/src/images/icons/Track123.svg @@ -1,11 +1,9 @@ - - - - + + + + + + + - - - - - diff --git a/src/images/icons/TrackHS.svg b/src/images/icons/TrackHS.svg new file mode 100644 index 00000000..8127f7d2 --- /dev/null +++ b/src/images/icons/TrackHS.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Trackbee.svg b/src/images/icons/Trackbee.svg new file mode 100644 index 00000000..3e50c2a1 --- /dev/null +++ b/src/images/icons/Trackbee.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Trackboxx.svg b/src/images/icons/Trackboxx.svg new file mode 100644 index 00000000..2c97f9f1 --- /dev/null +++ b/src/images/icons/Trackboxx.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trackfox.svg b/src/images/icons/Trackfox.svg new file mode 100644 index 00000000..ebe4d231 --- /dev/null +++ b/src/images/icons/Trackfox.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TradableBits.svg b/src/images/icons/TradableBits.svg new file mode 100644 index 00000000..5f5bc228 --- /dev/null +++ b/src/images/icons/TradableBits.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TradePro.svg b/src/images/icons/TradePro.svg new file mode 100644 index 00000000..5b7c786c --- /dev/null +++ b/src/images/icons/TradePro.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tradift.svg b/src/images/icons/Tradift.svg new file mode 100644 index 00000000..39f0dfbe --- /dev/null +++ b/src/images/icons/Tradift.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrafficGuard.svg b/src/images/icons/TrafficGuard.svg new file mode 100644 index 00000000..54011ee2 --- /dev/null +++ b/src/images/icons/TrafficGuard.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Trak.svg b/src/images/icons/Trak.svg new file mode 100644 index 00000000..2d734598 --- /dev/null +++ b/src/images/icons/Trak.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tramoce.svg b/src/images/icons/Tramoce.svg new file mode 100644 index 00000000..bcb3e7d4 --- /dev/null +++ b/src/images/icons/Tramoce.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Transax.svg b/src/images/icons/Transax.svg new file mode 100644 index 00000000..6ec58200 --- /dev/null +++ b/src/images/icons/Transax.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/TranslatePress.svg b/src/images/icons/TranslatePress.svg new file mode 100644 index 00000000..4c7929b5 --- /dev/null +++ b/src/images/icons/TranslatePress.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Transloadit.svg b/src/images/icons/Transloadit.svg new file mode 100644 index 00000000..c7b445ff --- /dev/null +++ b/src/images/icons/Transloadit.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TravPRO.svg b/src/images/icons/TravPRO.svg new file mode 100644 index 00000000..657b96de --- /dev/null +++ b/src/images/icons/TravPRO.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TravelJoy.svg b/src/images/icons/TravelJoy.svg new file mode 100644 index 00000000..d3d1ab0b --- /dev/null +++ b/src/images/icons/TravelJoy.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/TravelPayouts.svg b/src/images/icons/TravelPayouts.svg new file mode 100644 index 00000000..dcbacc67 --- /dev/null +++ b/src/images/icons/TravelPayouts.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Travello.svg b/src/images/icons/Travello.svg new file mode 100644 index 00000000..4b662532 --- /dev/null +++ b/src/images/icons/Travello.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tremor.svg b/src/images/icons/Tremor.svg new file mode 100644 index 00000000..0eb2b5c5 --- /dev/null +++ b/src/images/icons/Tremor.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Trezor.svg b/src/images/icons/Trezor.svg new file mode 100644 index 00000000..ae9eea91 --- /dev/null +++ b/src/images/icons/Trezor.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tribox.svg b/src/images/icons/Tribox.svg new file mode 100644 index 00000000..06888f3c --- /dev/null +++ b/src/images/icons/Tribox.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TridentAB.svg b/src/images/icons/TridentAB.svg new file mode 100644 index 00000000..946cf2c7 --- /dev/null +++ b/src/images/icons/TridentAB.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TripIt.svg b/src/images/icons/TripIt.svg new file mode 100644 index 00000000..e7d16e8a --- /dev/null +++ b/src/images/icons/TripIt.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tripleseat.svg b/src/images/icons/Tripleseat.svg new file mode 100644 index 00000000..d85dd1c3 --- /dev/null +++ b/src/images/icons/Tripleseat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Triptease.svg b/src/images/icons/Triptease.svg new file mode 100644 index 00000000..af8c8e7b --- /dev/null +++ b/src/images/icons/Triptease.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trovit.svg b/src/images/icons/Trovit.svg new file mode 100644 index 00000000..3ee38103 --- /dev/null +++ b/src/images/icons/Trovit.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Trovo.svg b/src/images/icons/Trovo.svg new file mode 100644 index 00000000..623c7f63 --- /dev/null +++ b/src/images/icons/Trovo.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trumpia.svg b/src/images/icons/Trumpia.svg new file mode 100644 index 00000000..8bc33517 --- /dev/null +++ b/src/images/icons/Trumpia.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrustLock.svg b/src/images/icons/TrustLock.svg new file mode 100644 index 00000000..d53ab86b --- /dev/null +++ b/src/images/icons/TrustLock.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TrustPulse.svg b/src/images/icons/TrustPulse.svg new file mode 100644 index 00000000..bd2ce230 --- /dev/null +++ b/src/images/icons/TrustPulse.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trustify.svg b/src/images/icons/Trustify.svg new file mode 100644 index 00000000..64564cde --- /dev/null +++ b/src/images/icons/Trustify.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Trustio.svg b/src/images/icons/Trustio.svg new file mode 100644 index 00000000..284f4bea --- /dev/null +++ b/src/images/icons/Trustio.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tryzens.svg b/src/images/icons/Tryzens.svg new file mode 100644 index 00000000..ebc068bf --- /dev/null +++ b/src/images/icons/Tryzens.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TuCalendi.svg b/src/images/icons/TuCalendi.svg new file mode 100644 index 00000000..3bf5b82c --- /dev/null +++ b/src/images/icons/TuCalendi.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Tulo.svg b/src/images/icons/Tulo.svg new file mode 100644 index 00000000..718f2923 --- /dev/null +++ b/src/images/icons/Tulo.svg @@ -0,0 +1,5142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TuoTempo.svg b/src/images/icons/TuoTempo.svg new file mode 100644 index 00000000..e3a8447a --- /dev/null +++ b/src/images/icons/TuoTempo.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Turbopack.svg b/src/images/icons/Turbopack.svg new file mode 100644 index 00000000..07310009 --- /dev/null +++ b/src/images/icons/Turbopack.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/TuriTop.svg b/src/images/icons/TuriTop.svg new file mode 100644 index 00000000..40320b25 --- /dev/null +++ b/src/images/icons/TuriTop.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TutorCruncher.svg b/src/images/icons/TutorCruncher.svg new file mode 100644 index 00000000..ad4574e3 --- /dev/null +++ b/src/images/icons/TutorCruncher.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/TutorLMS.svg b/src/images/icons/TutorLMS.svg new file mode 100644 index 00000000..93f47c11 --- /dev/null +++ b/src/images/icons/TutorLMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Twiago.svg b/src/images/icons/Twiago.svg new file mode 100644 index 00000000..4b585257 --- /dev/null +++ b/src/images/icons/Twiago.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Twingle.svg b/src/images/icons/Twingle.svg new file mode 100644 index 00000000..058e5bd7 --- /dev/null +++ b/src/images/icons/Twingle.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Twitter.svg b/src/images/icons/Twitter.svg index dbd04420..04658bba 100644 --- a/src/images/icons/Twitter.svg +++ b/src/images/icons/Twitter.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/src/images/icons/Twsaa.svg b/src/images/icons/Twsaa.svg new file mode 100644 index 00000000..a92b8d94 --- /dev/null +++ b/src/images/icons/Twsaa.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Twyne.svg b/src/images/icons/Twyne.svg new file mode 100644 index 00000000..76573d2a --- /dev/null +++ b/src/images/icons/Twyne.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Typeflo.svg b/src/images/icons/Typeflo.svg new file mode 100644 index 00000000..9b8f6055 --- /dev/null +++ b/src/images/icons/Typeflo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Typesense.svg b/src/images/icons/Typesense.svg new file mode 100644 index 00000000..c742653a --- /dev/null +++ b/src/images/icons/Typesense.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Typo00.svg b/src/images/icons/Typo00.svg new file mode 100644 index 00000000..9171bd8e --- /dev/null +++ b/src/images/icons/Typo00.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UIAvenue.svg b/src/images/icons/UIAvenue.svg new file mode 100644 index 00000000..a962c35b --- /dev/null +++ b/src/images/icons/UIAvenue.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UMAI.svg b/src/images/icons/UMAI.svg new file mode 100644 index 00000000..9842bbb6 --- /dev/null +++ b/src/images/icons/UMAI.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UXSniff.svg b/src/images/icons/UXSniff.svg new file mode 100644 index 00000000..b88d0b46 --- /dev/null +++ b/src/images/icons/UXSniff.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UltimateTables.svg b/src/images/icons/UltimateTables.svg new file mode 100644 index 00000000..a0df908e --- /dev/null +++ b/src/images/icons/UltimateTables.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Umni.svg b/src/images/icons/Umni.svg new file mode 100644 index 00000000..5b8eb5d3 --- /dev/null +++ b/src/images/icons/Umni.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Unblu.svg b/src/images/icons/Unblu.svg new file mode 100644 index 00000000..c66d7a57 --- /dev/null +++ b/src/images/icons/Unblu.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/UnchainedEngine.svg b/src/images/icons/UnchainedEngine.svg new file mode 100644 index 00000000..224b3164 --- /dev/null +++ b/src/images/icons/UnchainedEngine.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UniformDigitalExperience.svg b/src/images/icons/UniformDigitalExperience.svg new file mode 100644 index 00000000..ea6284d5 --- /dev/null +++ b/src/images/icons/UniformDigitalExperience.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Unipag.svg b/src/images/icons/Unipag.svg new file mode 100644 index 00000000..b40b78d7 --- /dev/null +++ b/src/images/icons/Unipag.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UnitoHub.svg b/src/images/icons/UnitoHub.svg new file mode 100644 index 00000000..3f0cfc75 --- /dev/null +++ b/src/images/icons/UnitoHub.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Unity.svg b/src/images/icons/Unity.svg new file mode 100644 index 00000000..6f75cb30 --- /dev/null +++ b/src/images/icons/Unity.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UniverseSoft.svg b/src/images/icons/UniverseSoft.svg new file mode 100644 index 00000000..7d37ac96 --- /dev/null +++ b/src/images/icons/UniverseSoft.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Untree.svg b/src/images/icons/Untree.svg new file mode 100644 index 00000000..77d6c42d --- /dev/null +++ b/src/images/icons/Untree.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpScale.svg b/src/images/icons/UpScale.svg new file mode 100644 index 00000000..5afc46c4 --- /dev/null +++ b/src/images/icons/UpScale.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplifter.svg b/src/images/icons/Uplifter.svg new file mode 100644 index 00000000..ba1faf15 --- /dev/null +++ b/src/images/icons/Uplifter.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplisting.svg b/src/images/icons/Uplisting.svg new file mode 100644 index 00000000..c30508d6 --- /dev/null +++ b/src/images/icons/Uplisting.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Uplynk.svg b/src/images/icons/Uplynk.svg new file mode 100644 index 00000000..c1a36bc3 --- /dev/null +++ b/src/images/icons/Uplynk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Uppy.svg b/src/images/icons/Uppy.svg new file mode 100644 index 00000000..01904d8d --- /dev/null +++ b/src/images/icons/Uppy.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Upscribe.svg b/src/images/icons/Upscribe.svg new file mode 100644 index 00000000..d25a79e3 --- /dev/null +++ b/src/images/icons/Upscribe.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpsellPlus.svg b/src/images/icons/UpsellPlus.svg new file mode 100644 index 00000000..f5cd8c4c --- /dev/null +++ b/src/images/icons/UpsellPlus.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/UpstackData.svg b/src/images/icons/UpstackData.svg new file mode 100644 index 00000000..bb355f06 --- /dev/null +++ b/src/images/icons/UpstackData.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Upsy.svg b/src/images/icons/Upsy.svg new file mode 100644 index 00000000..1a5a9ac0 --- /dev/null +++ b/src/images/icons/Upsy.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ureserv.svg b/src/images/icons/Ureserv.svg new file mode 100644 index 00000000..fff6cb82 --- /dev/null +++ b/src/images/icons/Ureserv.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Urllo.svg b/src/images/icons/Urllo.svg new file mode 100644 index 00000000..def0943b --- /dev/null +++ b/src/images/icons/Urllo.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/UseInbox.svg b/src/images/icons/UseInbox.svg new file mode 100644 index 00000000..32969232 --- /dev/null +++ b/src/images/icons/UseInbox.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Useberry.svg b/src/images/icons/Useberry.svg new file mode 100644 index 00000000..96e0ac67 --- /dev/null +++ b/src/images/icons/Useberry.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Userlane.svg b/src/images/icons/Userlane.svg new file mode 100644 index 00000000..edbef66b --- /dev/null +++ b/src/images/icons/Userlane.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Userlink.svg b/src/images/icons/Userlink.svg new file mode 100644 index 00000000..15222cd9 --- /dev/null +++ b/src/images/icons/Userlink.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Utiq.svg b/src/images/icons/Utiq.svg new file mode 100644 index 00000000..edfdc66f --- /dev/null +++ b/src/images/icons/Utiq.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/VBMedia.svg b/src/images/icons/VBMedia.svg new file mode 100644 index 00000000..a107cebc --- /dev/null +++ b/src/images/icons/VBMedia.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VClasses.svg b/src/images/icons/VClasses.svg new file mode 100644 index 00000000..52015ee6 --- /dev/null +++ b/src/images/icons/VClasses.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VNNSports.svg b/src/images/icons/VNNSports.svg new file mode 100644 index 00000000..54e9b086 --- /dev/null +++ b/src/images/icons/VNNSports.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/VacationLabs.svg b/src/images/icons/VacationLabs.svg new file mode 100644 index 00000000..3a5ff0d3 --- /dev/null +++ b/src/images/icons/VacationLabs.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vagaro.svg b/src/images/icons/Vagaro.svg new file mode 100644 index 00000000..c45cab3b --- /dev/null +++ b/src/images/icons/Vagaro.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Valuad.svg b/src/images/icons/Valuad.svg new file mode 100644 index 00000000..026f1a13 --- /dev/null +++ b/src/images/icons/Valuad.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Varify.svg b/src/images/icons/Varify.svg new file mode 100644 index 00000000..ace8b3be --- /dev/null +++ b/src/images/icons/Varify.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Varos.svg b/src/images/icons/Varos.svg new file mode 100644 index 00000000..0975d38b --- /dev/null +++ b/src/images/icons/Varos.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vaven.svg b/src/images/icons/Vaven.svg new file mode 100644 index 00000000..46f4823b --- /dev/null +++ b/src/images/icons/Vaven.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Velaro.svg b/src/images/icons/Velaro.svg new file mode 100644 index 00000000..4a431ee6 --- /dev/null +++ b/src/images/icons/Velaro.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Veloce.svg b/src/images/icons/Veloce.svg new file mode 100644 index 00000000..68e6f720 --- /dev/null +++ b/src/images/icons/Veloce.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vendaecia.svg b/src/images/icons/Vendaecia.svg new file mode 100644 index 00000000..ee99c36b --- /dev/null +++ b/src/images/icons/Vendaecia.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Venngage.svg b/src/images/icons/Venngage.svg new file mode 100644 index 00000000..aa093ef8 --- /dev/null +++ b/src/images/icons/Venngage.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VentasxMayor.svg b/src/images/icons/VentasxMayor.svg new file mode 100644 index 00000000..71a0e395 --- /dev/null +++ b/src/images/icons/VentasxMayor.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Veonr.svg b/src/images/icons/Veonr.svg new file mode 100644 index 00000000..7493cc27 --- /dev/null +++ b/src/images/icons/Veonr.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Veoxa.png b/src/images/icons/Veoxa.png deleted file mode 100644 index 9cc61203..00000000 Binary files a/src/images/icons/Veoxa.png and /dev/null differ diff --git a/src/images/icons/Veoxa.svg b/src/images/icons/Veoxa.svg new file mode 100644 index 00000000..7c45272a --- /dev/null +++ b/src/images/icons/Veoxa.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vera.svg b/src/images/icons/Vera.svg new file mode 100644 index 00000000..45d4ea11 --- /dev/null +++ b/src/images/icons/Vera.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VeraCore.svg b/src/images/icons/VeraCore.svg new file mode 100644 index 00000000..f4314f44 --- /dev/null +++ b/src/images/icons/VeraCore.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VeraSafe.svg b/src/images/icons/VeraSafe.svg new file mode 100644 index 00000000..482e19bb --- /dev/null +++ b/src/images/icons/VeraSafe.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Verfacto.svg b/src/images/icons/Verfacto.svg new file mode 100644 index 00000000..7480db54 --- /dev/null +++ b/src/images/icons/Verfacto.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/VergeCloud.svg b/src/images/icons/VergeCloud.svg new file mode 100644 index 00000000..c01f4e4f --- /dev/null +++ b/src/images/icons/VergeCloud.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/VerifyPress.svg b/src/images/icons/VerifyPress.svg new file mode 100644 index 00000000..395ef84c --- /dev/null +++ b/src/images/icons/VerifyPress.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VersaTailor.svg b/src/images/icons/VersaTailor.svg new file mode 100644 index 00000000..75ebc82f --- /dev/null +++ b/src/images/icons/VersaTailor.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ViArtShop.svg b/src/images/icons/ViArtShop.svg new file mode 100644 index 00000000..c37a7e05 --- /dev/null +++ b/src/images/icons/ViArtShop.svg @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VideooTv.svg b/src/images/icons/VideooTv.svg new file mode 100644 index 00000000..f42e914d --- /dev/null +++ b/src/images/icons/VideooTv.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vidjet.svg b/src/images/icons/Vidjet.svg new file mode 100644 index 00000000..6c98ed0d --- /dev/null +++ b/src/images/icons/Vidjet.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vidscrip.svg b/src/images/icons/Vidscrip.svg new file mode 100644 index 00000000..656676ac --- /dev/null +++ b/src/images/icons/Vidscrip.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VikaOn.svg b/src/images/icons/VikaOn.svg new file mode 100644 index 00000000..1156e33b --- /dev/null +++ b/src/images/icons/VikaOn.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vikreta.svg b/src/images/icons/Vikreta.svg new file mode 100644 index 00000000..49623db7 --- /dev/null +++ b/src/images/icons/Vikreta.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Viloud.svg b/src/images/icons/Viloud.svg new file mode 100644 index 00000000..2f95d168 --- /dev/null +++ b/src/images/icons/Viloud.svg @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vimos.svg b/src/images/icons/Vimos.svg new file mode 100644 index 00000000..7b089fe7 --- /dev/null +++ b/src/images/icons/Vimos.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vincere.svg b/src/images/icons/Vincere.svg new file mode 100644 index 00000000..7ba5bbd3 --- /dev/null +++ b/src/images/icons/Vincere.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VirtFusion.svg b/src/images/icons/VirtFusion.svg new file mode 100644 index 00000000..421aaf62 --- /dev/null +++ b/src/images/icons/VirtFusion.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VisBook.svg b/src/images/icons/VisBook.svg new file mode 100644 index 00000000..1012114b --- /dev/null +++ b/src/images/icons/VisBook.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Visenze.svg b/src/images/icons/Visenze.svg new file mode 100644 index 00000000..d44eb3ce --- /dev/null +++ b/src/images/icons/Visenze.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Visitor.svg b/src/images/icons/Visitor.svg new file mode 100644 index 00000000..e1537f02 --- /dev/null +++ b/src/images/icons/Visitor.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/images/icons/Viskan.svg b/src/images/icons/Viskan.svg new file mode 100644 index 00000000..5499cb1b --- /dev/null +++ b/src/images/icons/Viskan.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Vizium.svg b/src/images/icons/Vizium.svg new file mode 100644 index 00000000..f3023cb2 --- /dev/null +++ b/src/images/icons/Vizium.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VocalReferences.svg b/src/images/icons/VocalReferences.svg new file mode 100644 index 00000000..5c4b01d5 --- /dev/null +++ b/src/images/icons/VocalReferences.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/VoiceIntuitive.svg b/src/images/icons/VoiceIntuitive.svg new file mode 100644 index 00000000..22c60137 --- /dev/null +++ b/src/images/icons/VoiceIntuitive.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voizee.svg b/src/images/icons/Voizee.svg new file mode 100644 index 00000000..eeffcff1 --- /dev/null +++ b/src/images/icons/Voizee.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Volley.svg b/src/images/icons/Volley.svg new file mode 100644 index 00000000..c10e0ff7 --- /dev/null +++ b/src/images/icons/Volley.svg @@ -0,0 +1,19 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voltage.svg b/src/images/icons/Voltage.svg new file mode 100644 index 00000000..7717bd03 --- /dev/null +++ b/src/images/icons/Voltage.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vondera.svg b/src/images/icons/Vondera.svg new file mode 100644 index 00000000..167b777c --- /dev/null +++ b/src/images/icons/Vondera.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voomly.svg b/src/images/icons/Voomly.svg new file mode 100644 index 00000000..19e37951 --- /dev/null +++ b/src/images/icons/Voomly.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Vouched.svg b/src/images/icons/Vouched.svg new file mode 100644 index 00000000..01f1287f --- /dev/null +++ b/src/images/icons/Vouched.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voucherify.svg b/src/images/icons/Voucherify.svg new file mode 100644 index 00000000..50b900de --- /dev/null +++ b/src/images/icons/Voucherify.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Voximplant.svg b/src/images/icons/Voximplant.svg new file mode 100644 index 00000000..f9059441 --- /dev/null +++ b/src/images/icons/Voximplant.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Vrio.svg b/src/images/icons/Vrio.svg new file mode 100644 index 00000000..34e783f4 --- /dev/null +++ b/src/images/icons/Vrio.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Vuture.svg b/src/images/icons/Vuture.svg new file mode 100644 index 00000000..46a852f7 --- /dev/null +++ b/src/images/icons/Vuture.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Vyper.svg b/src/images/icons/Vyper.svg new file mode 100644 index 00000000..b29e48bc --- /dev/null +++ b/src/images/icons/Vyper.svg @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Vyve.svg b/src/images/icons/Vyve.svg new file mode 100644 index 00000000..48ad87ec --- /dev/null +++ b/src/images/icons/Vyve.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/W3Ataiva.svg b/src/images/icons/W3Ataiva.svg new file mode 100644 index 00000000..c5bd24f3 --- /dev/null +++ b/src/images/icons/W3Ataiva.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WARPE.svg b/src/images/icons/WARPE.svg new file mode 100644 index 00000000..27ca85db --- /dev/null +++ b/src/images/icons/WARPE.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WOMO.svg b/src/images/icons/WOMO.svg new file mode 100644 index 00000000..3be7b514 --- /dev/null +++ b/src/images/icons/WOMO.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WORKetc.svg b/src/images/icons/WORKetc.svg new file mode 100644 index 00000000..0d1906e8 --- /dev/null +++ b/src/images/icons/WORKetc.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WPProjectManager.svg b/src/images/icons/WPProjectManager.svg new file mode 100644 index 00000000..c4a9d9e9 --- /dev/null +++ b/src/images/icons/WPProjectManager.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WPSEOAI.svg b/src/images/icons/WPSEOAI.svg new file mode 100644 index 00000000..919f546f --- /dev/null +++ b/src/images/icons/WPSEOAI.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WSHOP.svg b/src/images/icons/WSHOP.svg new file mode 100644 index 00000000..9a4f609b --- /dev/null +++ b/src/images/icons/WSHOP.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/WWPass.svg b/src/images/icons/WWPass.svg new file mode 100644 index 00000000..83934b7b --- /dev/null +++ b/src/images/icons/WWPass.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Waaship.svg b/src/images/icons/Waaship.svg new file mode 100644 index 00000000..6ea478d6 --- /dev/null +++ b/src/images/icons/Waaship.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Walla.svg b/src/images/icons/Walla.svg new file mode 100644 index 00000000..fae10dbf --- /dev/null +++ b/src/images/icons/Walla.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Wally.svg b/src/images/icons/Wally.svg new file mode 100644 index 00000000..7d81c0e7 --- /dev/null +++ b/src/images/icons/Wally.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WarmWelcome.svg b/src/images/icons/WarmWelcome.svg new file mode 100644 index 00000000..2420492b --- /dev/null +++ b/src/images/icons/WarmWelcome.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Warmly.svg b/src/images/icons/Warmly.svg new file mode 100644 index 00000000..f021ea05 --- /dev/null +++ b/src/images/icons/Warmly.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Warply.svg b/src/images/icons/Warply.svg new file mode 100644 index 00000000..55055798 --- /dev/null +++ b/src/images/icons/Warply.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WasteConnections.svg b/src/images/icons/WasteConnections.svg new file mode 100644 index 00000000..3f5b2ba3 --- /dev/null +++ b/src/images/icons/WasteConnections.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WaveCommerce.svg b/src/images/icons/WaveCommerce.svg new file mode 100644 index 00000000..b16d6ec4 --- /dev/null +++ b/src/images/icons/WaveCommerce.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WeBlocks.svg b/src/images/icons/WeBlocks.svg new file mode 100644 index 00000000..07ae4b6c --- /dev/null +++ b/src/images/icons/WeBlocks.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Weatherstack.svg b/src/images/icons/Weatherstack.svg new file mode 100644 index 00000000..06b3405c --- /dev/null +++ b/src/images/icons/Weatherstack.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Web4Realty.svg b/src/images/icons/Web4Realty.svg new file mode 100644 index 00000000..3e3c7f25 --- /dev/null +++ b/src/images/icons/Web4Realty.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebAwesome.svg b/src/images/icons/WebAwesome.svg new file mode 100644 index 00000000..bba7c092 --- /dev/null +++ b/src/images/icons/WebAwesome.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebBoss.svg b/src/images/icons/WebBoss.svg new file mode 100644 index 00000000..0b0d884a --- /dev/null +++ b/src/images/icons/WebBoss.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebCEO.svg b/src/images/icons/WebCEO.svg new file mode 100644 index 00000000..c2da12a2 --- /dev/null +++ b/src/images/icons/WebCEO.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebQnA.svg b/src/images/icons/WebQnA.svg new file mode 100644 index 00000000..a1ca4e86 --- /dev/null +++ b/src/images/icons/WebQnA.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WebSTAT.svg b/src/images/icons/WebSTAT.svg new file mode 100644 index 00000000..4cff3d64 --- /dev/null +++ b/src/images/icons/WebSTAT.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebWave.svg b/src/images/icons/WebWave.svg index 418602ef..d6eca496 100644 --- a/src/images/icons/WebWave.svg +++ b/src/images/icons/WebWave.svg @@ -1,18 +1,6 @@ - - - - - - - + + + + + diff --git a/src/images/icons/Webareal.svg b/src/images/icons/Webareal.svg new file mode 100644 index 00000000..7c0251f2 --- /dev/null +++ b/src/images/icons/Webareal.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webbotify.svg b/src/images/icons/Webbotify.svg new file mode 100644 index 00000000..48a8ec6f --- /dev/null +++ b/src/images/icons/Webbotify.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webcake.svg b/src/images/icons/Webcake.svg new file mode 100644 index 00000000..d90eefb8 --- /dev/null +++ b/src/images/icons/Webcake.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/WebcoolCMS.svg b/src/images/icons/WebcoolCMS.svg new file mode 100644 index 00000000..a7367757 --- /dev/null +++ b/src/images/icons/WebcoolCMS.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webestools.svg b/src/images/icons/Webestools.svg new file mode 100644 index 00000000..7154fcb0 --- /dev/null +++ b/src/images/icons/Webestools.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Webhealer.svg b/src/images/icons/Webhealer.svg new file mode 100644 index 00000000..21f1452a --- /dev/null +++ b/src/images/icons/Webhealer.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webinaris.svg b/src/images/icons/Webinaris.svg new file mode 100644 index 00000000..ad2045c0 --- /dev/null +++ b/src/images/icons/Webinaris.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Webinato.svg b/src/images/icons/Webinato.svg new file mode 100644 index 00000000..42e9c4d6 --- /dev/null +++ b/src/images/icons/Webinato.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webito.svg b/src/images/icons/Webito.svg new file mode 100644 index 00000000..ec09ea0b --- /dev/null +++ b/src/images/icons/Webito.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Weblate.svg b/src/images/icons/Weblate.svg new file mode 100644 index 00000000..5c9a113c --- /dev/null +++ b/src/images/icons/Weblate.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webotit.svg b/src/images/icons/Webotit.svg new file mode 100644 index 00000000..ee26be45 --- /dev/null +++ b/src/images/icons/Webotit.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webready.svg b/src/images/icons/Webready.svg new file mode 100644 index 00000000..9e13f6c1 --- /dev/null +++ b/src/images/icons/Webready.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webreed.svg b/src/images/icons/Webreed.svg new file mode 100644 index 00000000..9e65fe2f --- /dev/null +++ b/src/images/icons/Webreed.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webscribble.svg b/src/images/icons/Webscribble.svg new file mode 100644 index 00000000..a6bc7e87 --- /dev/null +++ b/src/images/icons/Webscribble.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WebsiteSpeedy.svg b/src/images/icons/WebsiteSpeedy.svg new file mode 100644 index 00000000..0aafc444 --- /dev/null +++ b/src/images/icons/WebsiteSpeedy.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webstudio.svg b/src/images/icons/Webstudio.svg new file mode 100644 index 00000000..e2604380 --- /dev/null +++ b/src/images/icons/Webstudio.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Webware.svg b/src/images/icons/Webware.svg new file mode 100644 index 00000000..4737b15c --- /dev/null +++ b/src/images/icons/Webware.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Webydo.svg b/src/images/icons/Webydo.svg new file mode 100644 index 00000000..6a943021 --- /dev/null +++ b/src/images/icons/Webydo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/images/icons/WeeBnB.svg b/src/images/icons/WeeBnB.svg new file mode 100644 index 00000000..e0571589 --- /dev/null +++ b/src/images/icons/WeeBnB.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Weekdone.svg b/src/images/icons/Weekdone.svg new file mode 100644 index 00000000..c84960ea --- /dev/null +++ b/src/images/icons/Weekdone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/images/icons/Weezbe.svg b/src/images/icons/Weezbe.svg new file mode 100644 index 00000000..257a932c --- /dev/null +++ b/src/images/icons/Weezbe.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Weezevent.svg b/src/images/icons/Weezevent.svg new file mode 100644 index 00000000..d8d65425 --- /dev/null +++ b/src/images/icons/Weezevent.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wehaa.svg b/src/images/icons/Wehaa.svg new file mode 100644 index 00000000..c89b1380 --- /dev/null +++ b/src/images/icons/Wehaa.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Wfolio.svg b/src/images/icons/Wfolio.svg new file mode 100644 index 00000000..c47bec83 --- /dev/null +++ b/src/images/icons/Wfolio.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/WheelOfPopups.svg b/src/images/icons/WheelOfPopups.svg new file mode 100644 index 00000000..c4bb8425 --- /dev/null +++ b/src/images/icons/WheelOfPopups.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WheelSales.svg b/src/images/icons/WheelSales.svg new file mode 100644 index 00000000..a3c9fce7 --- /dev/null +++ b/src/images/icons/WheelSales.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Whelp.svg b/src/images/icons/Whelp.svg new file mode 100644 index 00000000..7a1ebc27 --- /dev/null +++ b/src/images/icons/Whelp.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wherewolf.svg b/src/images/icons/Wherewolf.svg new file mode 100644 index 00000000..3261d6be --- /dev/null +++ b/src/images/icons/Wherewolf.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WhitelabelMD.svg b/src/images/icons/WhitelabelMD.svg new file mode 100644 index 00000000..980f6207 --- /dev/null +++ b/src/images/icons/WhitelabelMD.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Whitespark.svg b/src/images/icons/Whitespark.svg new file mode 100644 index 00000000..0060e195 --- /dev/null +++ b/src/images/icons/Whitespark.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WholesaleSuite.svg b/src/images/icons/WholesaleSuite.svg new file mode 100644 index 00000000..1ffa4fc4 --- /dev/null +++ b/src/images/icons/WholesaleSuite.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WhosOn.svg b/src/images/icons/WhosOn.svg new file mode 100644 index 00000000..6c5e51b5 --- /dev/null +++ b/src/images/icons/WhosOn.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Whova.svg b/src/images/icons/Whova.svg new file mode 100644 index 00000000..13dffd5a --- /dev/null +++ b/src/images/icons/Whova.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/WickedReports.svg b/src/images/icons/WickedReports.svg new file mode 100644 index 00000000..14ebc54b --- /dev/null +++ b/src/images/icons/WickedReports.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Widde.svg b/src/images/icons/Widde.svg new file mode 100644 index 00000000..4cdec57f --- /dev/null +++ b/src/images/icons/Widde.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/images/icons/Wikit.svg b/src/images/icons/Wikit.svg new file mode 100644 index 00000000..7dae1ea1 --- /dev/null +++ b/src/images/icons/Wikit.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WineAround.svg b/src/images/icons/WineAround.svg new file mode 100644 index 00000000..800f0483 --- /dev/null +++ b/src/images/icons/WineAround.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/images/icons/WinseCommerce.svg b/src/images/icons/WinseCommerce.svg new file mode 100644 index 00000000..f4167b8d --- /dev/null +++ b/src/images/icons/WinseCommerce.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wiqhit.svg b/src/images/icons/Wiqhit.svg new file mode 100644 index 00000000..1028629a --- /dev/null +++ b/src/images/icons/Wiqhit.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Wiremo.svg b/src/images/icons/Wiremo.svg new file mode 100644 index 00000000..c43516be --- /dev/null +++ b/src/images/icons/Wiremo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/WiseAgent.svg b/src/images/icons/WiseAgent.svg new file mode 100644 index 00000000..5e4fa4f6 --- /dev/null +++ b/src/images/icons/WiseAgent.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wisetracker.svg b/src/images/icons/Wisetracker.svg new file mode 100644 index 00000000..f545351e --- /dev/null +++ b/src/images/icons/Wisetracker.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Wishi.svg b/src/images/icons/Wishi.svg new file mode 100644 index 00000000..20c72f3c --- /dev/null +++ b/src/images/icons/Wishi.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Wishloop.svg b/src/images/icons/Wishloop.svg new file mode 100644 index 00000000..19287fc6 --- /dev/null +++ b/src/images/icons/Wishloop.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Witbooking.svg b/src/images/icons/Witbooking.svg new file mode 100644 index 00000000..2b207480 --- /dev/null +++ b/src/images/icons/Witbooking.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wodify.svg b/src/images/icons/Wodify.svg new file mode 100644 index 00000000..22793190 --- /dev/null +++ b/src/images/icons/Wodify.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wolf CMS.png b/src/images/icons/Wolf CMS.png index 67815a97..781b92e2 100644 Binary files a/src/images/icons/Wolf CMS.png and b/src/images/icons/Wolf CMS.png differ diff --git a/src/images/icons/WoltersKluwer.svg b/src/images/icons/WoltersKluwer.svg new file mode 100644 index 00000000..703a5ddd --- /dev/null +++ b/src/images/icons/WoltersKluwer.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Woorise.svg b/src/images/icons/Woorise.svg new file mode 100644 index 00000000..4d6962dd --- /dev/null +++ b/src/images/icons/Woorise.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wootric.svg b/src/images/icons/Wootric.svg new file mode 100644 index 00000000..ae30e263 --- /dev/null +++ b/src/images/icons/Wootric.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Workadu.svg b/src/images/icons/Workadu.svg new file mode 100644 index 00000000..7bbfb410 --- /dev/null +++ b/src/images/icons/Workadu.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/Workbooks.svg b/src/images/icons/Workbooks.svg new file mode 100644 index 00000000..b521f169 --- /dev/null +++ b/src/images/icons/Workbooks.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Workday.svg b/src/images/icons/Workday.svg new file mode 100644 index 00000000..73c0ee41 --- /dev/null +++ b/src/images/icons/Workday.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/WuBook.svg b/src/images/icons/WuBook.svg new file mode 100644 index 00000000..d51ca1e2 --- /dev/null +++ b/src/images/icons/WuBook.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Wyre.svg b/src/images/icons/Wyre.svg new file mode 100644 index 00000000..922deb3e --- /dev/null +++ b/src/images/icons/Wyre.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/XClacksOverhead.svg b/src/images/icons/XClacksOverhead.svg new file mode 100644 index 00000000..300ad9a6 --- /dev/null +++ b/src/images/icons/XClacksOverhead.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xenioo.svg b/src/images/icons/Xenioo.svg new file mode 100644 index 00000000..1b0f2f4b --- /dev/null +++ b/src/images/icons/Xenioo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xeno.svg b/src/images/icons/Xeno.svg new file mode 100644 index 00000000..7f98fe8e --- /dev/null +++ b/src/images/icons/Xeno.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xsolla.svg b/src/images/icons/Xsolla.svg new file mode 100644 index 00000000..7a7c0785 --- /dev/null +++ b/src/images/icons/Xsolla.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xtremepush.svg b/src/images/icons/Xtremepush.svg old mode 100755 new mode 100644 diff --git a/src/images/icons/XtrixUI.svg b/src/images/icons/XtrixUI.svg new file mode 100644 index 00000000..143e8d11 --- /dev/null +++ b/src/images/icons/XtrixUI.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Xverify.svg b/src/images/icons/Xverify.svg new file mode 100644 index 00000000..4780d429 --- /dev/null +++ b/src/images/icons/Xverify.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/XzeroJS.svg b/src/images/icons/XzeroJS.svg new file mode 100644 index 00000000..2a27d13c --- /dev/null +++ b/src/images/icons/XzeroJS.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YMCart.svg b/src/images/icons/YMCart.svg new file mode 100644 index 00000000..48c1e63a --- /dev/null +++ b/src/images/icons/YMCart.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YOAPress.svg b/src/images/icons/YOAPress.svg new file mode 100644 index 00000000..7bd162d0 --- /dev/null +++ b/src/images/icons/YOAPress.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/YachtSys.svg b/src/images/icons/YachtSys.svg new file mode 100644 index 00000000..04f11944 --- /dev/null +++ b/src/images/icons/YachtSys.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/YamadaUI.svg b/src/images/icons/YamadaUI.svg new file mode 100644 index 00000000..179eac09 --- /dev/null +++ b/src/images/icons/YamadaUI.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YayForms.svg b/src/images/icons/YayForms.svg new file mode 100644 index 00000000..ea70c6ec --- /dev/null +++ b/src/images/icons/YayForms.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/YelleCommerce.svg b/src/images/icons/YelleCommerce.svg new file mode 100644 index 00000000..2a6c09cd --- /dev/null +++ b/src/images/icons/YelleCommerce.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Yever.svg b/src/images/icons/Yever.svg new file mode 100644 index 00000000..9066fc95 --- /dev/null +++ b/src/images/icons/Yever.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Yo!Coach.svg b/src/images/icons/Yo!Coach.svg new file mode 100644 index 00000000..959061d5 --- /dev/null +++ b/src/images/icons/Yo!Coach.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/YoPlanning.svg b/src/images/icons/YoPlanning.svg new file mode 100644 index 00000000..9201edf5 --- /dev/null +++ b/src/images/icons/YoPlanning.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/YogaTrail.svg b/src/images/icons/YogaTrail.svg new file mode 100644 index 00000000..b099e31a --- /dev/null +++ b/src/images/icons/YogaTrail.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/Yomdel.svg b/src/images/icons/Yomdel.svg new file mode 100644 index 00000000..7b4a0af4 --- /dev/null +++ b/src/images/icons/Yomdel.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YouLead.svg b/src/images/icons/YouLead.svg new file mode 100644 index 00000000..d8c39b08 --- /dev/null +++ b/src/images/icons/YouLead.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/YourGPT.svg b/src/images/icons/YourGPT.svg new file mode 100644 index 00000000..aa82b9b7 --- /dev/null +++ b/src/images/icons/YourGPT.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Youzan.svg b/src/images/icons/Youzan.svg new file mode 100644 index 00000000..bbbf64cf --- /dev/null +++ b/src/images/icons/Youzan.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Yuno.svg b/src/images/icons/Yuno.svg new file mode 100644 index 00000000..82d38c1b --- /dev/null +++ b/src/images/icons/Yuno.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Yupop.svg b/src/images/icons/Yupop.svg new file mode 100644 index 00000000..d6b0c1c4 --- /dev/null +++ b/src/images/icons/Yupop.svg @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZURB Foundation.png b/src/images/icons/ZURB Foundation.png deleted file mode 100644 index 700895b6..00000000 Binary files a/src/images/icons/ZURB Foundation.png and /dev/null differ diff --git a/src/images/icons/ZURBFoundation.svg b/src/images/icons/ZURBFoundation.svg new file mode 100644 index 00000000..c78df20c --- /dev/null +++ b/src/images/icons/ZURBFoundation.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zad.svg b/src/images/icons/Zad.svg new file mode 100644 index 00000000..ddbec4d4 --- /dev/null +++ b/src/images/icons/Zad.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zadarma.svg b/src/images/icons/Zadarma.svg new file mode 100644 index 00000000..3e5e5cfb --- /dev/null +++ b/src/images/icons/Zadarma.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zalify.svg b/src/images/icons/Zalify.svg new file mode 100644 index 00000000..7d71b4c0 --- /dev/null +++ b/src/images/icons/Zalify.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zammad.svg b/src/images/icons/Zammad.svg new file mode 100644 index 00000000..e8f482af --- /dev/null +++ b/src/images/icons/Zammad.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zapnito.svg b/src/images/icons/Zapnito.svg new file mode 100644 index 00000000..1a6120bb --- /dev/null +++ b/src/images/icons/Zapnito.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zarla.svg b/src/images/icons/Zarla.svg new file mode 100644 index 00000000..ec0f4010 --- /dev/null +++ b/src/images/icons/Zarla.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Zaxaa.svg b/src/images/icons/Zaxaa.svg new file mode 100644 index 00000000..7038a0a0 --- /dev/null +++ b/src/images/icons/Zaxaa.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZeeMaps.svg b/src/images/icons/ZeeMaps.svg new file mode 100644 index 00000000..f22b0f7f --- /dev/null +++ b/src/images/icons/ZeeMaps.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZenBasket.svg b/src/images/icons/ZenBasket.svg new file mode 100644 index 00000000..8d9e1674 --- /dev/null +++ b/src/images/icons/ZenBasket.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZenMaid.svg b/src/images/icons/ZenMaid.svg new file mode 100644 index 00000000..35eda100 --- /dev/null +++ b/src/images/icons/ZenMaid.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenbooker.svg b/src/images/icons/Zenbooker.svg new file mode 100644 index 00000000..8208fc0d --- /dev/null +++ b/src/images/icons/Zenbooker.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZendApps.svg b/src/images/icons/ZendApps.svg new file mode 100644 index 00000000..e07cf708 --- /dev/null +++ b/src/images/icons/ZendApps.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenler.svg b/src/images/icons/Zenler.svg new file mode 100644 index 00000000..9fbaa5a1 --- /dev/null +++ b/src/images/icons/Zenler.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Zenoti.svg b/src/images/icons/Zenoti.svg new file mode 100644 index 00000000..df53871e --- /dev/null +++ b/src/images/icons/Zenoti.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenrez.svg b/src/images/icons/Zenrez.svg new file mode 100644 index 00000000..af476d1f --- /dev/null +++ b/src/images/icons/Zenrez.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zensical.svg b/src/images/icons/Zensical.svg new file mode 100644 index 00000000..3cba4a49 --- /dev/null +++ b/src/images/icons/Zensical.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zentap.svg b/src/images/icons/Zentap.svg new file mode 100644 index 00000000..c33a2090 --- /dev/null +++ b/src/images/icons/Zentap.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenu.svg b/src/images/icons/Zenu.svg new file mode 100644 index 00000000..049fe7ad --- /dev/null +++ b/src/images/icons/Zenu.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Zenvia.svg b/src/images/icons/Zenvia.svg new file mode 100644 index 00000000..626c8f02 --- /dev/null +++ b/src/images/icons/Zenvia.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zenzzen.svg b/src/images/icons/Zenzzen.svg new file mode 100644 index 00000000..dde60382 --- /dev/null +++ b/src/images/icons/Zenzzen.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/Zepio.svg b/src/images/icons/Zepio.svg new file mode 100644 index 00000000..4fe643db --- /dev/null +++ b/src/images/icons/Zepio.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zeppelin.svg b/src/images/icons/Zeppelin.svg new file mode 100644 index 00000000..06ca0d0a --- /dev/null +++ b/src/images/icons/Zeppelin.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/Zestard.svg b/src/images/icons/Zestard.svg new file mode 100644 index 00000000..f0f3563b --- /dev/null +++ b/src/images/icons/Zestard.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZetaProducer.svg b/src/images/icons/ZetaProducer.svg new file mode 100644 index 00000000..0acedd4d --- /dev/null +++ b/src/images/icons/ZetaProducer.svg @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zevi.svg b/src/images/icons/Zevi.svg new file mode 100644 index 00000000..e003ab59 --- /dev/null +++ b/src/images/icons/Zevi.svg @@ -0,0 +1,386 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zevioo.svg b/src/images/icons/Zevioo.svg new file mode 100644 index 00000000..45a92d93 --- /dev/null +++ b/src/images/icons/Zevioo.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ziadah.svg b/src/images/icons/Ziadah.svg new file mode 100644 index 00000000..7b5f5e1f --- /dev/null +++ b/src/images/icons/Ziadah.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Ziber.svg b/src/images/icons/Ziber.svg new file mode 100644 index 00000000..75e6a7b6 --- /dev/null +++ b/src/images/icons/Ziber.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zieny.svg b/src/images/icons/Zieny.svg new file mode 100644 index 00000000..2cc982fa --- /dev/null +++ b/src/images/icons/Zieny.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZipWP.svg b/src/images/icons/ZipWP.svg new file mode 100644 index 00000000..93cee7cc --- /dev/null +++ b/src/images/icons/ZipWP.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/Zipchat.svg b/src/images/icons/Zipchat.svg new file mode 100644 index 00000000..e34e8b88 --- /dev/null +++ b/src/images/icons/Zipchat.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zipleads.svg b/src/images/icons/Zipleads.svg new file mode 100644 index 00000000..02cd9664 --- /dev/null +++ b/src/images/icons/Zipleads.svg @@ -0,0 +1,359 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Znode.svg b/src/images/icons/Znode.svg new file mode 100644 index 00000000..b1e86410 --- /dev/null +++ b/src/images/icons/Znode.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ZolaPlanner.svg b/src/images/icons/ZolaPlanner.svg new file mode 100644 index 00000000..1183af34 --- /dev/null +++ b/src/images/icons/ZolaPlanner.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zonal.svg b/src/images/icons/Zonal.svg new file mode 100644 index 00000000..d97c9d81 --- /dev/null +++ b/src/images/icons/Zonal.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/Zozi.svg b/src/images/icons/Zozi.svg new file mode 100644 index 00000000..18ce65b5 --- /dev/null +++ b/src/images/icons/Zozi.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zulip.svg b/src/images/icons/Zulip.svg new file mode 100644 index 00000000..615359df --- /dev/null +++ b/src/images/icons/Zulip.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zurple.svg b/src/images/icons/Zurple.svg new file mode 100644 index 00000000..e21fe604 --- /dev/null +++ b/src/images/icons/Zurple.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Zyratalk.svg b/src/images/icons/Zyratalk.svg new file mode 100644 index 00000000..3450f39e --- /dev/null +++ b/src/images/icons/Zyratalk.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/aScEduPage.svg b/src/images/icons/aScEduPage.svg new file mode 100644 index 00000000..cd18b2bd --- /dev/null +++ b/src/images/icons/aScEduPage.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/adCAPTCHA.svg b/src/images/icons/adCAPTCHA.svg new file mode 100644 index 00000000..c9b27486 --- /dev/null +++ b/src/images/icons/adCAPTCHA.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/aircall.png b/src/images/icons/aircall.png deleted file mode 100644 index de76b397..00000000 Binary files a/src/images/icons/aircall.png and /dev/null differ diff --git a/src/images/icons/akinon.png b/src/images/icons/akinon.png deleted file mode 100644 index 18a47843..00000000 Binary files a/src/images/icons/akinon.png and /dev/null differ diff --git a/src/images/icons/authorizedby.svg b/src/images/icons/authorizedby.svg new file mode 100644 index 00000000..4abf3f92 --- /dev/null +++ b/src/images/icons/authorizedby.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/autoship.svg b/src/images/icons/autoship.svg new file mode 100644 index 00000000..a368421a --- /dev/null +++ b/src/images/icons/autoship.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/bbPress.svg b/src/images/icons/bbPress.svg new file mode 100644 index 00000000..e39ebfc9 --- /dev/null +++ b/src/images/icons/bbPress.svg @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/biskoui.svg b/src/images/icons/biskoui.svg new file mode 100644 index 00000000..526be09d --- /dev/null +++ b/src/images/icons/biskoui.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/bluebarry.svg b/src/images/icons/bluebarry.svg new file mode 100644 index 00000000..a5a1d8a2 --- /dev/null +++ b/src/images/icons/bluebarry.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/boomtime.svg b/src/images/icons/boomtime.svg new file mode 100644 index 00000000..c4ea5773 --- /dev/null +++ b/src/images/icons/boomtime.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/botBrains.svg b/src/images/icons/botBrains.svg new file mode 100644 index 00000000..bc43e80f --- /dev/null +++ b/src/images/icons/botBrains.svg @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/bun.svg b/src/images/icons/bun.svg new file mode 100644 index 00000000..697768cb --- /dev/null +++ b/src/images/icons/bun.svg @@ -0,0 +1 @@ + diff --git a/src/images/icons/c15t.svg b/src/images/icons/c15t.svg new file mode 100644 index 00000000..1da5207d --- /dev/null +++ b/src/images/icons/c15t.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/coUrbanize.svg b/src/images/icons/coUrbanize.svg new file mode 100644 index 00000000..47d42f23 --- /dev/null +++ b/src/images/icons/coUrbanize.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/cside.svg b/src/images/icons/cside.svg new file mode 100644 index 00000000..77eb17d9 --- /dev/null +++ b/src/images/icons/cside.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/demandbase.svg b/src/images/icons/demandbase.svg index 1389b30e..4a196c8b 100644 --- a/src/images/icons/demandbase.svg +++ b/src/images/icons/demandbase.svg @@ -1,10 +1,16 @@ - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/images/icons/digiaccess.svg b/src/images/icons/digiaccess.svg new file mode 100644 index 00000000..5cf26b39 --- /dev/null +++ b/src/images/icons/digiaccess.svg @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/src/images/icons/dominant-color-images.svg b/src/images/icons/dominant-color-images.svg new file mode 100644 index 00000000..922019a5 --- /dev/null +++ b/src/images/icons/dominant-color-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/doxo.svg b/src/images/icons/doxo.svg new file mode 100644 index 00000000..a4c7219b --- /dev/null +++ b/src/images/icons/doxo.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/eCShop.svg b/src/images/icons/eCShop.svg new file mode 100644 index 00000000..1c7c0361 --- /dev/null +++ b/src/images/icons/eCShop.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/images/icons/eChalk.svg b/src/images/icons/eChalk.svg new file mode 100644 index 00000000..a3af576f --- /dev/null +++ b/src/images/icons/eChalk.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/eComchain.svg b/src/images/icons/eComchain.svg new file mode 100644 index 00000000..24e1e87b --- /dev/null +++ b/src/images/icons/eComchain.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/eDirectory.svg b/src/images/icons/eDirectory.svg new file mode 100644 index 00000000..feba0706 --- /dev/null +++ b/src/images/icons/eDirectory.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/eKonsilio.svg b/src/images/icons/eKonsilio.svg new file mode 100644 index 00000000..04d62f03 --- /dev/null +++ b/src/images/icons/eKonsilio.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ePublishing.svg b/src/images/icons/ePublishing.svg new file mode 100644 index 00000000..a3d3008f --- /dev/null +++ b/src/images/icons/ePublishing.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/eTrigue.svg b/src/images/icons/eTrigue.svg new file mode 100644 index 00000000..fa2e344d --- /dev/null +++ b/src/images/icons/eTrigue.svg @@ -0,0 +1,21 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/embed-optimizer.svg b/src/images/icons/embed-optimizer.svg new file mode 100644 index 00000000..fd1c9ba2 --- /dev/null +++ b/src/images/icons/embed-optimizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/enhanced-image-sizes.svg b/src/images/icons/enhanced-image-sizes.svg new file mode 100644 index 00000000..b74a90c8 --- /dev/null +++ b/src/images/icons/enhanced-image-sizes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/eola.svg b/src/images/icons/eola.svg new file mode 100644 index 00000000..0a7f1962 --- /dev/null +++ b/src/images/icons/eola.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/essential-blocks.png b/src/images/icons/essential-blocks.png new file mode 100644 index 00000000..5e37b2ed Binary files /dev/null and b/src/images/icons/essential-blocks.png differ diff --git a/src/images/icons/ewizcommerce.svg b/src/images/icons/ewizcommerce.svg new file mode 100644 index 00000000..5872bdc4 --- /dev/null +++ b/src/images/icons/ewizcommerce.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/ezCater.svg b/src/images/icons/ezCater.svg new file mode 100644 index 00000000..475c9876 --- /dev/null +++ b/src/images/icons/ezCater.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/ezyVet.svg b/src/images/icons/ezyVet.svg new file mode 100644 index 00000000..e362ec08 --- /dev/null +++ b/src/images/icons/ezyVet.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/fraudblocker.png b/src/images/icons/fraudblocker.png deleted file mode 100644 index bbfb5f06..00000000 Binary files a/src/images/icons/fraudblocker.png and /dev/null differ diff --git a/src/images/icons/freewebstore.svg b/src/images/icons/freewebstore.svg new file mode 100644 index 00000000..3884ab27 --- /dev/null +++ b/src/images/icons/freewebstore.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/genesis-blocks.png b/src/images/icons/genesis-blocks.png new file mode 100644 index 00000000..25801de7 Binary files /dev/null and b/src/images/icons/genesis-blocks.png differ diff --git a/src/images/icons/getUBetter.svg b/src/images/icons/getUBetter.svg new file mode 100644 index 00000000..7b90b67e --- /dev/null +++ b/src/images/icons/getUBetter.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iCIMS.svg b/src/images/icons/iCIMS.svg new file mode 100644 index 00000000..49b30163 --- /dev/null +++ b/src/images/icons/iCIMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iClosed.svg b/src/images/icons/iClosed.svg new file mode 100644 index 00000000..3949e689 --- /dev/null +++ b/src/images/icons/iClosed.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iEntry.svg b/src/images/icons/iEntry.svg new file mode 100644 index 00000000..7bd2dbcf --- /dev/null +++ b/src/images/icons/iEntry.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iMagaza.svg b/src/images/icons/iMagaza.svg new file mode 100644 index 00000000..fc4d5863 --- /dev/null +++ b/src/images/icons/iMagaza.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/iPaper.svg b/src/images/icons/iPaper.svg new file mode 100644 index 00000000..c9870cb1 --- /dev/null +++ b/src/images/icons/iPaper.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/iRaiser.svg b/src/images/icons/iRaiser.svg new file mode 100644 index 00000000..ba9f5dc7 --- /dev/null +++ b/src/images/icons/iRaiser.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iSET.svg b/src/images/icons/iSET.svg new file mode 100644 index 00000000..1dfd8c20 --- /dev/null +++ b/src/images/icons/iSET.svg @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iTCHYROBOT.svg b/src/images/icons/iTCHYROBOT.svg new file mode 100644 index 00000000..174e5ed6 --- /dev/null +++ b/src/images/icons/iTCHYROBOT.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/iWink.svg b/src/images/icons/iWink.svg new file mode 100644 index 00000000..7c1b676b --- /dev/null +++ b/src/images/icons/iWink.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/images/icons/icomm.svg b/src/images/icons/icomm.svg new file mode 100644 index 00000000..caa2a3ef --- /dev/null +++ b/src/images/icons/icomm.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/iiQCheck.svg b/src/images/icons/iiQCheck.svg new file mode 100644 index 00000000..1c6474bd --- /dev/null +++ b/src/images/icons/iiQCheck.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/image-prioritizer.svg b/src/images/icons/image-prioritizer.svg new file mode 100644 index 00000000..69e7407e --- /dev/null +++ b/src/images/icons/image-prioritizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/immediaCMS.svg b/src/images/icons/immediaCMS.svg new file mode 100644 index 00000000..18066261 --- /dev/null +++ b/src/images/icons/immediaCMS.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/images/icons/inspectlet.png b/src/images/icons/inspectlet.png deleted file mode 100644 index 96cd2155..00000000 Binary files a/src/images/icons/inspectlet.png and /dev/null differ diff --git a/src/images/icons/iugu.svg b/src/images/icons/iugu.svg new file mode 100644 index 00000000..370de51b --- /dev/null +++ b/src/images/icons/iugu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/images/icons/jsPDF.svg b/src/images/icons/jsPDF.svg new file mode 100644 index 00000000..5ec6f04d --- /dev/null +++ b/src/images/icons/jsPDF.svg @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/miniCal.svg b/src/images/icons/miniCal.svg new file mode 100644 index 00000000..dc6ad989 --- /dev/null +++ b/src/images/icons/miniCal.svg @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/modern-image-formats.svg b/src/images/icons/modern-image-formats.svg new file mode 100644 index 00000000..44c0b659 --- /dev/null +++ b/src/images/icons/modern-image-formats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/nopCommerce.png b/src/images/icons/nopCommerce.png deleted file mode 100644 index f010de06..00000000 Binary files a/src/images/icons/nopCommerce.png and /dev/null differ diff --git a/src/images/icons/nopCommerce.svg b/src/images/icons/nopCommerce.svg new file mode 100644 index 00000000..ae128df5 --- /dev/null +++ b/src/images/icons/nopCommerce.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/opentelemetry.svg b/src/images/icons/opentelemetry.svg new file mode 100644 index 00000000..d7c352f8 --- /dev/null +++ b/src/images/icons/opentelemetry.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/images/icons/optimization-detective.svg b/src/images/icons/optimization-detective.svg new file mode 100644 index 00000000..597b2599 --- /dev/null +++ b/src/images/icons/optimization-detective.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/ostr.svg b/src/images/icons/ostr.svg new file mode 100644 index 00000000..4bf9c006 --- /dev/null +++ b/src/images/icons/ostr.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/otter-blocks.png b/src/images/icons/otter-blocks.png new file mode 100644 index 00000000..52076ebd Binary files /dev/null and b/src/images/icons/otter-blocks.png differ diff --git a/src/images/icons/p5.js.svg b/src/images/icons/p5.js.svg index 8aa73b81..49949696 100644 --- a/src/images/icons/p5.js.svg +++ b/src/images/icons/p5.js.svg @@ -1,17 +1,3 @@ - - - - - - - + + diff --git a/src/images/icons/performant-translations.svg b/src/images/icons/performant-translations.svg new file mode 100644 index 00000000..6f7a5509 --- /dev/null +++ b/src/images/icons/performant-translations.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/plentyShop LTS.svg b/src/images/icons/plentyShop LTS.svg deleted file mode 100644 index e3bcd809..00000000 --- a/src/images/icons/plentyShop LTS.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/images/icons/plupload.png b/src/images/icons/plupload.png deleted file mode 100644 index 648f23f2..00000000 Binary files a/src/images/icons/plupload.png and /dev/null differ diff --git a/src/images/icons/publishpress-blocks.png b/src/images/icons/publishpress-blocks.png new file mode 100644 index 00000000..6e60eae2 Binary files /dev/null and b/src/images/icons/publishpress-blocks.png differ diff --git a/src/images/icons/punBB.png b/src/images/icons/punBB.png deleted file mode 100644 index f45aeea7..00000000 Binary files a/src/images/icons/punBB.png and /dev/null differ diff --git a/src/images/icons/punBB.svg b/src/images/icons/punBB.svg new file mode 100644 index 00000000..96d42987 --- /dev/null +++ b/src/images/icons/punBB.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/rSchoolToday.svg b/src/images/icons/rSchoolToday.svg new file mode 100644 index 00000000..329e732c --- /dev/null +++ b/src/images/icons/rSchoolToday.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/really-simple-ssl.png b/src/images/icons/really-simple-ssl.png new file mode 100644 index 00000000..1e0d0098 Binary files /dev/null and b/src/images/icons/really-simple-ssl.png differ diff --git a/src/images/icons/scrollreveal.svg b/src/images/icons/scrollreveal.svg index 8e0dd8e8..9e2ea012 100644 --- a/src/images/icons/scrollreveal.svg +++ b/src/images/icons/scrollreveal.svg @@ -1,16 +1,14 @@ - - - - - - - - - + + + + + + + + + + + + + diff --git a/src/images/icons/speculation-rules.svg b/src/images/icons/speculation-rules.svg new file mode 100644 index 00000000..49492ae3 --- /dev/null +++ b/src/images/icons/speculation-rules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/theCut.svg b/src/images/icons/theCut.svg new file mode 100644 index 00000000..f32c1c33 --- /dev/null +++ b/src/images/icons/theCut.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/themify-builder.png b/src/images/icons/themify-builder.png new file mode 100644 index 00000000..5dda984f Binary files /dev/null and b/src/images/icons/themify-builder.png differ diff --git a/src/images/icons/tinyAlbert.svg b/src/images/icons/tinyAlbert.svg new file mode 100644 index 00000000..9175cb77 --- /dev/null +++ b/src/images/icons/tinyAlbert.svg @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/images/icons/tlooto.svg b/src/images/icons/tlooto.svg new file mode 100644 index 00000000..c3913a0e --- /dev/null +++ b/src/images/icons/tlooto.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/trackthemetric.svg b/src/images/icons/trackthemetric.svg new file mode 100644 index 00000000..8a2e10e8 --- /dev/null +++ b/src/images/icons/trackthemetric.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/true.svg b/src/images/icons/true.svg new file mode 100644 index 00000000..193469a7 --- /dev/null +++ b/src/images/icons/true.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/typecho.svg b/src/images/icons/typecho.svg index e43dcb1f..658bb5bc 100644 --- a/src/images/icons/typecho.svg +++ b/src/images/icons/typecho.svg @@ -1 +1,3 @@ -typecho-logo \ No newline at end of file + + + diff --git a/src/images/icons/uSocial.svg b/src/images/icons/uSocial.svg new file mode 100644 index 00000000..d2bb72ee --- /dev/null +++ b/src/images/icons/uSocial.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/uhChat.svg b/src/images/icons/uhChat.svg new file mode 100644 index 00000000..24fc25f9 --- /dev/null +++ b/src/images/icons/uhChat.svg @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vChat.svg b/src/images/icons/vChat.svg new file mode 100644 index 00000000..8863ade0 --- /dev/null +++ b/src/images/icons/vChat.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vFairs.svg b/src/images/icons/vFairs.svg new file mode 100644 index 00000000..94b3c846 --- /dev/null +++ b/src/images/icons/vFairs.svg @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/vinSUITE.svg b/src/images/icons/vinSUITE.svg new file mode 100644 index 00000000..e3fac92a --- /dev/null +++ b/src/images/icons/vinSUITE.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/images/icons/visiopt.png b/src/images/icons/visiopt.png new file mode 100644 index 00000000..7a54048b Binary files /dev/null and b/src/images/icons/visiopt.png differ diff --git a/src/images/icons/vue.svg b/src/images/icons/vue.svg index 71c1cfb9..82823fc2 100644 --- a/src/images/icons/vue.svg +++ b/src/images/icons/vue.svg @@ -1,4 +1,12 @@ - - - + + + + + + + + + + + diff --git a/src/images/icons/wakecommerce.svg b/src/images/icons/wakecommerce.svg new file mode 100644 index 00000000..4cb6eb12 --- /dev/null +++ b/src/images/icons/wakecommerce.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/web-worker-offloading.svg b/src/images/icons/web-worker-offloading.svg new file mode 100644 index 00000000..504ae19c --- /dev/null +++ b/src/images/icons/web-worker-offloading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/icons/webflow.svg b/src/images/icons/webflow.svg index 99a3ac24..60f2ee2d 100644 --- a/src/images/icons/webflow.svg +++ b/src/images/icons/webflow.svg @@ -1,4 +1,4 @@ - - - - + + + + \ No newline at end of file diff --git a/src/images/icons/websphere.svg b/src/images/icons/websphere.svg new file mode 100644 index 00000000..2b3553fe --- /dev/null +++ b/src/images/icons/websphere.svg @@ -0,0 +1,21 @@ + + + + + + + + + + diff --git a/src/images/icons/wp-cloud.png b/src/images/icons/wp-cloud.png new file mode 100644 index 00000000..6b5c3568 Binary files /dev/null and b/src/images/icons/wp-cloud.png differ diff --git a/src/images/icons/youCMS.svg b/src/images/icons/youCMS.svg new file mode 100644 index 00000000..6ec7dad3 --- /dev/null +++ b/src/images/icons/youCMS.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/technologies/_.json b/src/technologies/_.json index f2027864..1a80ad56 100644 --- a/src/technologies/_.json +++ b/src/technologies/_.json @@ -113,6 +113,23 @@ "icon": "30namaPlayer.png", "website": "https://30nama.com/" }, + "321 CMS": { + "cats": [ + 1 + ], + "description": "321 CMS is a content management system that enables users to create and manage websites without requiring coding knowledge.", + "icon": "321CMS.svg", + "meta": { + "author": "^321 CREATIVE CREW" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://www.321web.cz" + }, "33Across": { "cats": [ 36 @@ -141,7 +158,9 @@ ], "description": "34SP.com specialises in website hosting, discount domain names, low cost VPS servers and dedicated servers.", "dns": { - "SOA": "ns(?:\\d+)?\\.34sp\\.com" + "SOA": [ + "ns(?:\\d+)?\\.34sp\\.com" + ] }, "icon": "34SP.com.svg", "pricing": [ @@ -173,15 +192,27 @@ ], "website": "https://4-tell.com" }, + "42Chat": { + "cats": [ + 52 + ], + "description": "42Chat is a provider of conversational AI solutions and text-based chatbots designed to connect clients with their communities.", + "icon": "42Chat.svg", + "saas": true, + "scriptSrc": [ + "api\\.42chat\\.com" + ], + "website": "https://www.42chat.com" + }, "42stores": { "cats": [ 6 ], "description": "42stores is a French SaaS ecommerce solution that was established in 2008. It offers a range of features such as monitoring, customer support, and regular updates. The platform is known for its flexibility and modularity, making it possible to integrate with various ERP systems.", - "icon": "42stores.svg", "headers": { "Powered-By": "^42stores$" }, + "icon": "42stores.svg", "pricing": [ "poa", "recurring" @@ -236,6 +267,27 @@ "saas": true, "website": "https://www.51.la" }, + "52Degrees": { + "cats": [ + 10 + ], + "description": "52Degrees is a data platform formerly known as Handset Detection, providing real-time device and data insights for digital businesses.", + "icon": "52Degrees.svg", + "pricing": [ + "freemium", + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "api\\.handsetdetection\\.com" + ], + "scripts": [ + "'api\\.handsetdetection\\.com" + ], + "website": "https://51degrees.com" + }, "5centsCDN": { "cats": [ 31 @@ -278,6 +330,37 @@ ], "website": "https://6sense.com" }, + "6Valley eCommerce CMS": { + "cats": [ + 1, + 6 + ], + "cookies": { + "6valley_session": "" + }, + "description": "6Valley eCommerce CMS is a multi-vendor platform designed to facilitate business launches by providing tools for managing vendors, products, and transactions within an ecommerce ecosystem.", + "icon": "6ValleyEcommerceCMS.svg", + "pricing": [ + "onetime" + ], + "scripts": [ + "6valley_cookie_consent" + ], + "website": "https://6valley.app" + }, + "7moor": { + "cats": [ + 32, + 53 + ], + "description": "7moor is an integrated customer service marketing solution that combines communication, customer support, and marketing tools.", + "icon": "7moor.svg", + "js": { + "moor7Source": "" + }, + "saas": true, + "website": "https://www.7moor.com" + }, "7Shifts": { "cats": [ 101 @@ -313,6 +396,54 @@ "api\\.8base\\.com" ] }, + "8x8": { + "cats": [ + 52 + ], + "description": "8x8 is a communication tool offering chat functionality for streamlined business communication.", + "icon": "8x8.svg", + "js": { + "Chat8x8": "", + "__8x8Chat": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.8x8.com" + }, + "91App": { + "cats": [ + 6 + ], + "description": "91App is a Taiwan-based platform that provides solutions for retail stores.", + "icon": "91App.svg", + "saas": true, + "scriptSrc": [ + "cdn\\.91app\\.com/" + ], + "website": "https://91app.com" + }, + "99minds": { + "cats": [ + 84 + ], + "description": "99minds is an online platform for managing and scaling gift cards, store credit, digital wallets, and loyalty programs.", + "icon": "99minds.svg", + "js": { + "_99mindsDataLayer": "" + }, + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.99minds\\.io" + ], + "website": "https://www.99minds.io" + }, "": { "cats": [ 105 @@ -353,4 +484,4 @@ ], "website": "https://hyperscript.org" } -} \ No newline at end of file +} diff --git a/src/technologies/a.json b/src/technologies/a.json index d45b6ed6..83382bee 100644 --- a/src/technologies/a.json +++ b/src/technologies/a.json @@ -1,8 +1,23 @@ { + "a-blog cms": { + "cats": [ + 1 + ], + "icon": "a-blog cms.svg", + "implies": [ + "PHP" + ], + "meta": { + "generator": "a-blog cms" + }, + "website": "https://www.a-blogcms.jp" + }, "A-Frame": { "cats": [ - 25 + 25, + 105 ], + "description": "A-Frame is an open-source web framework that simplifies building cross-platform virtual reality (VR) experiences using HTML and JavaScript.", "html": [ "]*>" ], @@ -11,8 +26,10 @@ "Three.js" ], "js": { - "AFRAME.version": "^(.+)$\\;version:\\1" + "AFRAME.version": "^(.+)$\\;version:\\1", + "aframeStats": "" }, + "oss": true, "scriptSrc": [ "/?([\\d.]+)?/aframe(?:\\.min)?\\.js\\;version:\\1" ], @@ -34,6 +51,30 @@ ], "website": "https://mya2zevents.com" }, + "a3 Lazy Load": { + "cats": [ + 87, + 92 + ], + "description": "a3 Lazy Load is a mobile oriented, very simple to use plugin that will speed up sites page load speed.", + "icon": "a3.png", + "js": { + "a3_lazyload_extend_params": "", + "a3_lazyload_params": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "WordPress" + ], + "scriptSrc": [ + "/wp-content/plugins/a3-lazy-load/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1" + ], + "website": "https://a3rev.com/shop/a3-lazy-load/" + }, "A8.net": { "cats": [ 71 @@ -53,6 +94,51 @@ ], "website": "https://www.a8.net" }, + "Aacio": { + "cats": [ + 6 + ], + "description": "Aacio is an all-in-one platform that integrates multiple applications to offer tools, support, and resources aimed at facilitating business operations and growth.", + "icon": "Aacio.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "app\\.aacio\\.io" + ], + "website": "https://aacio.io" + }, + "Aarki": { + "cats": [ + 36 + ], + "description": "Aarki is an AI platform that develops advertising solutions aimed at increasing mobile revenue growth.", + "icon": "Aarki.svg", + "saas": true, + "scripts": [ + "\\.aarki\\.net" + ], + "website": "https://www.aarki.com" + }, + "Aasaan": { + "cats": [ + 6 + ], + "description": "Aasaan is a no-code e-commerce platform that helps digitalize businesses to grow.", + "icon": "Aasaan.svg", + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "assets\\.aasaan\\.app" + ], + "website": "https://aasaan.app" + }, "AB Tasty": { "cats": [ 74 @@ -73,6 +159,87 @@ ], "website": "https://www.abtasty.com" }, + "AbanteCart": { + "cats": [ + 6 + ], + "description": "AbanteCart is an open-source ecommerce platform designed to help businesses create and manage online stores with built-in product management, order processing, and customer engagement features.", + "icon": "AbanteCart.svg", + "meta": { + "generator": "^AbanteCart" + }, + "oss": true, + "website": "https://www.abantecart.com" + }, + "AbhiCMS": { + "cats": [ + 1 + ], + "description": "AbhiCMS is a lesser-known content management system that may not have a significant user base or active development community.", + "implies": [ + "PHP", + "MySQL" + ], + "meta": { + "generator": "AbhiCMS\\s([\\d\\.]+)\\;version:\\1" + }, + "pricing": [ + "poa" + ], + "website": "https://website999.org" + }, + "Abicart": { + "cats": [ + 6 + ], + "description": "Abicart is an ecommerce platform developed by the Swedish company Abicart AB.", + "icon": "abicart.svg", + "meta": { + "generator": "Abicart" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://abicart.com/" + }, + "Able CDP": { + "cats": [ + 97 + ], + "description": "Able CDP is a customer journey tracking system that monitors and analyzes user interactions across multiple touchpoints to provide insights into engagement and behavior.", + "icon": "AbleCDP.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "app\\.ablecdp\\.com" + ], + "website": "https://www.ablecdp.com" + }, + "ABLyft": { + "cats": [ + 74 + ], + "description": "ABlyft is an A/B-Testing Platform made for developers.", + "icon": "ABlyft.svg", + "js": { + "ablyft.get": "", + "ablyftClickListener": "", + "ablyftEventQueueInterv": "", + "ablyftStopQueue": "" + }, + "pricing": [ + "freemium", + "poa" + ], + "saas": true, + "website": "https://ablyft.com" + }, "ABOUT YOU Commerce Suite": { "cats": [ 6 @@ -88,6 +255,23 @@ "saas": true, "website": "https://commercesuite.aboutyou.com" }, + "AboutMyClinic": { + "cats": [ + 1 + ], + "description": "AboutMyClinic is a website builder designed exclusively for doctors to create and manage professional medical practice websites.", + "icon": "AboutMyClinic.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "www\\.aboutmyclinic\\.com" + ], + "website": "https://www.aboutmyclinic.com" + }, "ABP Framework": { "cats": [ 18 @@ -104,1050 +288,988 @@ "oss": true, "website": "https://abp.io/" }, - "AD EBiS": { + "Abralytics": { "cats": [ - 36, - 32 - ], - "description": "AD EBiS is an advertising and marketing platform that offers advertisement effectiveness measurement, access and user analysis.", - "dom": [ - "a[href*='.ebis.ne.jp/'][target='_blank']" + 10 ], - "icon": "ebis.svg", - "js": { - "ebis.c.pageurl": "" - }, + "description": "Abralytics is a privacy-focused alternative to Google Analytics that provides email reports.", + "icon": "Abralytics.svg", "pricing": [ - "freemium", - "payg" + "low", + "recurring" ], "saas": true, "scriptSrc": [ - "\\.ebis\\.ne\\.jp/" + "app\\.abralytics\\.com/" ], - "website": "https://www.ebis.ne.jp" + "website": "https://www.abralytics.com" }, - "ADAPT": { + "Absorb": { "cats": [ - 6 + 21 ], - "description": "ADAPT is a subscription-based app that allows anyone to create video focused online store in minutes on their phone.", - "icon": "ADAPT.svg", - "meta": { - "image": "assets\\.adapt\\.ws/" + "cookies": { + "_absorb_ui_session": "" }, - "pricing": [ - "low", - "freemium", - "recurring" - ], - "saas": true, - "website": "https://adapt.ws" - }, - "ADFOX": { - "cats": [ - 36 - ], - "description": "ADFOX is an advertising management platform for media publishers.", - "icon": "ADFOX.svg", + "description": "Absorb is a cloud-based learning management system.", + "icon": "Absorb.svg", "js": { - "AdFox_getCodeScript": "", - "Site.adFoxParams": "", - "adFoxParams": "", - "adfoxAsyncParams": "", - "adfoxBiddersMap": "" + "AbsorbLMS": "" }, "pricing": [ - "mid", - "recurring" + "poa" ], "saas": true, - "website": "https://adfox.yandex.ru" + "website": "https://www.absorblms.com" }, - "AFThemes CoverNews": { + "Accentuate Custom Fields": { "cats": [ - 80 + 100 ], - "description": "AFThemes CoverNews is a clean and elegant free WordPress theme that is perfect for online blog and magazine.", - "icon": "AFThemes.svg", + "description": "Accentuate Custom Fields is the professional and de facto solution to easily extend your Shopify store with your own custom fields such multi-language text fields, images, checkboxes, dates, selection list and custom JSON objects.", + "dom": [ + "a[style*='.accentuate.io/'], a[data-bg*='.accentuate.io/'], div[style*='.accentuate.io/'], img[src*='.accentuate.io/'], img[data-src*='.accentuate.io/']" + ], + "icon": "Accentuate Custom Fields.png", "pricing": [ "freemium", - "onetime", - "recurring", - "low" + "mid", + "recurring" ], "requires": [ - "WordPress" + "Shopify" ], - "scriptSrc": [ - "/wp-content/themes/covernews(?:-pro)?/" + "saas": true, + "scripts": [ + "\\.accentuate\\.io/" ], - "website": "https://afthemes.com/products/covernews" + "website": "https://www.accentuate.io" }, - "AI LOG": { + "Acceptd": { "cats": [ - 32 + 72 ], - "description": "AI LOG is a marketing automation and fraud click prevention tool.", - "icon": "AI-LOG.svg", - "js": { - "ai_getScript_load": "" + "description": "Acceptd is a premier application and audition management platform designed to streamline the submission, review, and selection process for organizations and educational institutions.", + "icon": "Acceptd.svg", + "meta": { + "application-name": "^Acceptd Application$" }, "saas": true, - "scriptSrc": [ - "\\.ai-log\\.biz/" + "scripts": [ + "\\.getacceptd\\.com" ], - "website": "https://www.ai-log.biz/" + "website": "https://getacceptd.com" }, - "AIMEOS": { + "Accertify": { "cats": [ - 6 + 16 ], - "description": "Aimeos is a PHP ecommerce framework designed for custom online shops, multi-vendor marketplaces, and complex B2B applications.", + "description": "Accertify is a platform specialising in fraud prevention and chargeback management.", "dom": [ - "link[href*='aimeos.com']" + "div[id*='Accertify']" ], - "icon": "aimeos.svg", + "icon": "Accertify.svg", + "saas": true, + "website": "https://www.accertify.com/" + }, + "AccessAlly": { + "cats": [ + 21 + ], + "description": "AccessAlly is a customizable platform designed for scalable growth, offering tools for membership management, online courses, and automation.", + "icon": "AccessAlly.svg", "js": { - "Aimeos": "", - "AimeosAccountFavorite": "", - "AimeosBasketMini": "", - "AimeosCatalog": "" + "accessally_order_form_data_is_during_restore": "", + "accessally_script_object": "" }, - "oss": true, - "website": "https://aimeos.org" + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://accessally.com" }, - "ALL-INKL": { + "AccessiBe": { "cats": [ - 88 + 68 ], - "description": "ALL-INKL is a German-based web hosting provider that promises to offer high-performance services for fair prices.", - "dns": { - "SOA": "\\.kasserver\\.com" + "description": "AccessiBe is an accessibility overlay which claims to provide ADA and WCAG compliance. The system scans and analyzes a website, and applies adjustments which they claim make your website ADA and WCAG 2.1 compliant.", + "icon": "AccessiBe.svg", + "js": { + "acsb": "\\;confidence:50", + "acsbJS": "\\;confidence:50" }, - "icon": "ALL-INKL.svg", "pricing": [ - "low", + "mid", "recurring" ], - "website": "https://all-inkl.com" + "saas": true, + "scriptSrc": [ + "acsbapp?\\.com/.*/acsb\\.js" + ], + "website": "https://accessibe.com" }, - "AMP": { + "Accessibility Toolbar Plugin": { "cats": [ - 12 - ], - "description": "AMP, originally created by Google, is an open-source HTML framework developed by the AMP open-source Project. AMP is designed to help webpages load faster.", - "html": [ - "]* (?:amp|⚡)[^-]", - " img" ], - "icon": "Accelerated-Mobile-Pages.svg", - "implies": [ - "AMP" + "icon": "Accessible360.png", + "pricing": [ + "poa" ], - "meta": { - "generator": "^AMP Plugin v(\\d+\\.\\d+.*)$\\;version:\\1" - }, - "requires": [ - "WordPress" + "saas": true, + "scriptSrc": [ + "/npm/@accessible360/accessible-slick@([\\d\\.]+)/\\;version:\\1", + "/accessible360/accessible-slick/slick/slick\\.min\\.js\\?v=([\\d\\.]+)\\;version:\\1" ], - "website": "https://amp-wp.org" + "website": "https://accessible360.com" }, - "ANS": { + "Accessibly": { "cats": [ - 88, - 62 + 68 ], - "description": "ANS is a UK-based IT services company specializing in cloud computing, managed services, and digital transformation solutions.", - "dns": { - "SOA": "\\.ukfast\\.net" + "description": "Accessibly is an app which is designed to assist with meeting certain requirements of WCAG 2.1 using an overlay solution.", + "icon": "Accessibly.svg", + "js": { + "accessibilityWidget.name": "bound" }, - "icon": "ANS.svg", "pricing": [ - "recurring", - "payg" + "low", + "recurring" ], - "website": "https://www.ans.co.uk" + "saas": true, + "scriptSrc": [ + "accessibly\\.onthemapmarketing\\.com" + ], + "website": "https://www.onthemapmarketing.com/accessibly/" }, - "AOLserver": { + "AccessiWay": { "cats": [ - 22 + 68 ], - "cpe": "cpe:2.3:a:aol:aolserver:*:*:*:*:*:*:*:*", - "headers": { - "Server": "AOLserver/?([\\d.]+)?\\;version:\\1" + "description": "AccessiWay is a solution focused on digital accessibility and compliance for organizations seeking to meet established standards.", + "icon": "AccessiWay.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scripts": [ + "www\\.accessiway\\.at" + ], + "website": "https://www.accessiway.com" + }, + "Accesso": { + "cats": [ + 6, + 72 + ], + "description": "Accesso provides ticketing, ecommerce and Point-of-Sale (PoS) solutions.", + "icon": "Accesso.svg", + "js": { + "accesso": "" }, - "icon": "AOLserver.png", - "website": "https://aolserver.com" + "scriptSrc": [ + "/embed/accesso\\.js" + ], + "website": "https://accesso.com/" }, - "AOS": { + "AccessTrade": { "cats": [ - 59 + 71 ], - "description": "JavaScript library to animate elements on your page as you scroll.", + "description": "AccessTrade is an affiliate marketing platform based on the CPA model developed by Interspace Co.", "dom": [ - " body[data-aos-easing]" + "img[src*='.accesstrade.net'],img[data-src*='.accesstrade.net']" ], - "icon": "AOS.svg", - "js": { - "AOS.init": "", - "AOS.refresh": "", - "AOS.refreshHard": "" - }, - "oss": true, + "icon": "AccessTrade.svg", "scriptSrc": [ - "unpkg\\.com/aos@([\\d\\.]+)/dist/aos\\.js\\;version:\\1", - "/typo3conf/ext/udem_vendor/Resources/Public/aos-([\\d\\.]+)\\;version:\\1" + "accesstrade\\.net/js/", + "click\\.accesstra\\.de/js/nct/lp\\.js" ], - "website": "https://michalsnik.github.io/aos/" + "website": "https://accesstrade.global/" }, - "APC": { + "Acconsento.click": { "cats": [ - 99 + 67 ], - "description": "APC offers door-to-door parcel and mail delivery.", - "icon": "APC.svg", - "requiresCategory": [ - 6 + "description": "Acconsento.click is a software solution designed to assist users in achieving cookie policy compliance for their websites.", + "dom": [ + "link[href*='//acconsento.click/']" ], - "text": [ - "\\APC\\b" + "icon": "Acconsento.click.png", + "js": { + "AcconsentoAPI": "", + "acconsentoCreateElement": "" + }, + "pricing": [ + "low", + "recurring", + "payg" ], - "website": "https://www.apc-pli.com" + "saas": true, + "website": "https://shop.acconsento.click" }, - "ARI Network Services": { + "Accredible": { "cats": [ - 6 + 21 ], - "description": "ARI Network Services provides website, software, and data solutions to help dealers, distributors, and OEMs improve their selling process.", - "icon": "ARINetworkServices.svg", + "description": "Accredible is a branded digital certificates provider that supports learner and program growth through secure, verifiable credentialing.", + "dom": [ + "iframe[src*='api.accredible.com/']" + ], + "headers": { + "Access-Control-Allow-Headers": "^Accredible-Authorization" + }, + "icon": "Accredible.svg", "pricing": [ + "low", + "recurring", "poa" ], "saas": true, - "scriptSrc": [ - "\\.ari-secure\\.com/" - ], - "website": "https://arinet.com" + "website": "https://www.accredible.com" }, - "ASP.NET Boilerplate": { + "AccuWeather": { "cats": [ - 18 + 5 ], - "description": "ASP.NET Boilerplate is a general purpose application framework especially designed for new modern web applications. It uses already familiar tools and implements best practices around them to provide you a SOLID development experience.", - "icon": "aspnetboilerplate.png", - "implies": [ - "Microsoft ASP.NET" + "description": "AccuWeather provides weather forecasts and warnings and additional weather products and services.", + "dom": [ + "a[href*='.accuweather.com'][target='_blank']" ], - "js": { - "abp.aspnetboilerplate.version": "(.*)\\;version:\\1", - "abp.timing.utcClockProvider": "" - }, - "oss": true, - "website": "https://www.aspnetboilerplate.com" + "icon": "AccuWeather.svg", + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://partners.accuweather.com" }, - "AT Internet Analyzer": { + "Ace": { "cats": [ - 10 + 24 ], - "icon": "AT Internet.svg", + "description": "Ace is an embeddable code editor written in JavaScript.", + "icon": "Ace.png", "js": { - "ATInternet": "", - "xtsite": "" + "ace.EditSession": "", + "ace.Editor": "", + "ace.version": "([\\d\\.]+)\\;version:\\1" }, - "website": "https://atinternet.com/en" + "oss": true, + "website": "https://github.com/ajaxorg/ace" }, - "AT Internet XiTi": { + "Acecounter": { "cats": [ 10 ], - "icon": "AT Internet.svg", + "description": "Acecounter is a Korean analytics service that consolidates website analytics data into a single platform for streamlined access and analysis.", + "icon": "Acecounter.svg", "js": { - "xt_click": "" + "_AceCounter": "" }, + "saas": true, "scriptSrc": [ - "xiti\\.com/hit\\.xiti" + "\\.acecounter\\.com/" ], - "website": "https://atinternet.com/en" + "website": "https://www.home.acecounter.com" }, - "ATSHOP": { + "AceShop": { "cats": [ 6 ], - "description": "ATSHOP is an all-in-one ecommerce platform.", - "dom": [ - "link[href*='cdn.atshop.io']" - ], - "icon": "ATSHOP.png", + "description": "AceShop is a full-featured ecommerce component for Joomla that enables online store creation and management within the Joomla content management system.", + "icon": "AceShop.svg", + "oss": true, "pricing": [ - "low", - "recurring" + "freemium" + ], + "requires": [ + "Joomla", + "jQuery" ], - "saas": true, "scriptSrc": [ - "\\.atshop\\.io" + "/aceshopjquery/aceshopjquery/" ], - "website": "https://atshop.io" + "website": "https://www.joomace.net/joomla-extensions/aceshop-joomla-shopping-cart" }, - "AWIN": { + "Ackee": { "cats": [ - 71 + 10 ], - "cookies": { - "BAGawin": "", - "_aw_xid": "" - }, - "description": "AWIN is a global affiliate marketing network.", - "icon": "AWIN.svg", + "description": "Ackee is a self-hosted, Node.js based analytics tool with a focus on privacy.", + "dom": [ + "[data-ackee-domain-id], [data-ackee-server]" + ], + "icon": "Ackee.svg", "js": { - "AWIN.Tracking": "" + "ackeeTracker": "" }, - "pricing": [ - "payg" - ], - "saas": true, - "scriptSrc": [ - "dwin1\\.com" - ], - "website": "https://www.awin.com" + "oss": true, + "website": "https://ackee.electerious.com" }, - "AWS Certificate Manager": { + "Acoustic Experience Analytics": { "cats": [ - 70 + 10 ], - "cpe": "cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:*", - "certIssuer": "Amazon", - "description": "AWS Certificate Manager is a service that lets you easily provision, manage, and deploy public and private Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services and your internal connected resources.", - "icon": "AWS Certificate Manager.svg", - "implies": [ - "Amazon Web Services" + "description": "Acoustic Experience Analytics (Tealeaf), formerly known as IBM Tealeaf Customer Experience on Cloud, is a SaaS-based analytics solution that delivers Tealeaf core capabilities in an managed cloud environment. Tealeaf captures and manages each visitor interaction on your website and mobile applications.", + "icon": "Acoustic.svg", + "js": { + "TLT.config.core.modules.TLCookie": "", + "TLT_VERSION": "", + "TeaLeaf": "" + }, + "pricing": [ + "poa" ], "saas": true, - "website": "https://aws.amazon.com/certificate-manager/" + "website": "https://acoustic.com/tealeaf" }, - "AWS WAF Captcha": { + "Acquia Campaign Factory": { "cats": [ - 16 + 32 ], - "description": "AWS WAF Captcha helps block unwanted bot traffic by requiring users to successfully complete challenges before their web request are allowed to reach AWS WAF protected resources.", - "headers": { - "x-amzn-waf-action": "^captcha$" - }, - "icon": "AWS WAF Captcha.svg", + "description": "Acquia Campaign Factory is centralized marketing management system powered by Mautic.", + "icon": "acquia-campaign-factory.svg", "implies": [ - "Amazon Web Services" - ], - "pricing": [ - "recurring", - "payg" + "Mautic" ], "saas": true, "scriptSrc": [ - "captcha\\.awswaf\\.com/" + "mautic\\.net", + "maestro\\.mautic\\.com" ], - "website": "https://docs.aws.amazon.com/waf/latest/developerguide/waf-captcha.html" + "website": "https://www.acquia.com/products/marketing-cloud/campaign-factory" }, - "AWStats": { + "Acquia Cloud IDE": { "cats": [ - 10 + 47 ], - "cpe": "cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:*", - "icon": "AWStats.png", + "description": "Acquia Cloud IDE is a browser-based source code editor and a Drupal development stack running on the Acquia Cloud Platform.", + "icon": "acquia-cloud-ide.png", "implies": [ - "Perl" - ], - "meta": { - "generator": "AWStats ([\\d.]+(?: \\(build [\\d.]+\\))?)\\;version:\\1" - }, - "website": "https://awstats.sourceforge.net" - }, - "AbhiCMS": { - "cats": [ - 1 + "Acquia Cloud Platform" ], - "description": "AbhiCMS is a lesser-known content management system that may not have a significant user base or active development community.", - "implies": [ - "PHP", - "MySQL" + "saas": true, + "scriptSrc": [ + "https?:\\/\\/.+\\.web\\.ahdev\\.cloud" ], - "meta": { - "generator": "AbhiCMS\\s([\\d\\.]+)\\;version:\\1" - }, - "pricing": [ - "poa" + "url": [ + "https:?\\/\\/.+\\.web\\.ahdev\\.cloud" ], - "website": "https://website999.org" + "website": "https://www.acquia.com/products/drupal-cloud/cloud-ide" }, - "Abicart": { + "Acquia Cloud Platform": { "cats": [ - 6 + 62 ], - "description": "Abicart is an ecommerce platform developed by the Swedish company Abicart AB.", - "icon": "abicart.svg", - "meta": { - "generator": "Abicart" + "description": "Acquia Cloud Platform is a Drupal-tuned application lifecycle management suite with an infrastructure to support Drupal deployment workflow processes.", + "headers": { + "X-AH-Environment": "^(next)?.*$\\;version:\\1?Next:" }, - "pricing": [ - "mid", - "recurring" + "icon": "acquia-cloud.svg", + "implies": [ + "Amazon Web Services" ], "saas": true, - "website": "https://abicart.com/" + "website": "https://www.acquia.com/products/drupal-cloud/cloud-platform" }, - "Absorb": { + "Acquia Cloud Platform CDN": { "cats": [ - 21 + 31 ], - "cookies": { - "_absorb_ui_session": "" - }, - "description": "Absorb is a cloud-based learning management system.", - "icon": "Absorb.svg", - "js": { - "AbsorbLMS": "" + "headers": { + "via": "Acquia Platform CDN (.+)\\;version:\\1" }, - "pricing": [ - "poa" + "icon": "acquia-cloud-platform.svg", + "implies": [ + "Acquia Cloud Platform" ], "saas": true, - "website": "https://www.absorblms.com" + "website": "https://docs.acquia.com/cloud-platform/platformcdn/" }, - "Accentuate Custom Fields": { + "Acquia Cloud Site Factory": { "cats": [ - 100 + 88 ], - "description": "Accentuate Custom Fields is the professional and de facto solution to easily extend your Shopify store with your own custom fields such multi-language text fields, images, checkboxes, dates, selection list and custom JSON objects.", + "description": "Acquia Site Factory is a multisite platform for Drupal.", "dom": [ - "a[style*='.accentuate.io/'], a[data-bg*='.accentuate.io/'], div[style*='.accentuate.io/'], img[src*='.accentuate.io/'], img[data-src*='.accentuate.io/']" - ], - "icon": "Accentuate Custom Fields.png", - "pricing": [ - "freemium", - "mid", - "recurring" + "script[src*='sites/g/files']", + "img[src*='sites/g/files']", + "img[data-src*='sites/g/files']", + "link[href*='sites/g/files']" ], - "requires": [ - "Shopify" + "icon": "acquia-site-factory.svg", + "implies": [ + "Acquia Cloud Platform", + "Drupal Multisite" ], "saas": true, - "scripts": [ - "\\.accentuate\\.io/" + "scriptSrc": [ + "sites\\/g\\/files" ], - "website": "https://www.accentuate.io" + "website": "https://www.acquia.com/products/drupal-cloud/site-factory" }, - "Accertify": { + "Acquia Content Hub": { "cats": [ - 16 + 19 ], - "description": "Accertify is a platform specialising in fraud prevention and chargeback management.", + "description": "Acquia Content Hub is a cloud-based, centralized content distribution and syndication service.", "dom": [ - "div[id*='Accertify']" + "[data-lift-slot]" + ], + "headers": { + "content-security-policy": "content-hub\\.acquia\\.com" + }, + "icon": "acquia-content-hub.png", + "implies": [ + "Acquia Cloud Platform" ], - "icon": "Accertify.svg", "saas": true, - "website": "https://www.accertify.com/" + "scriptSrc": [ + "content-hub\\.acquia\\.com" + ], + "url": [ + "https?:\\/\\/.+\\.content-hub\\.acquia\\.com" + ], + "website": "https://www.acquia.com/products/drupal-cloud/content-hub" }, - "AccessTrade": { + "Acquia Customer Data Platform": { "cats": [ - 71 + 97 ], - "description": "AccessTrade is an affiliate marketing platform based on the CPA model developed by Interspace Co.", + "description": "Acquia Customer Data Platform (formerly AgilOne) is a customer data platform for Drupal.", "dom": [ - "img[src*='.accesstrade.net'],img[data-src*='.accesstrade.net']" + "[data-function*='Agilone']" ], - "icon": "AccessTrade.svg", + "icon": "acquia-cdp.png", + "js": { + "$A1": "", + "$A1Config": "", + "agiloneObject": "" + }, + "saas": true, "scriptSrc": [ - "accesstrade\\.net/js/", - "click\\.accesstra\\.de/js/nct/lp\\.js" + "^https?:\\/\\/.+\\.agilone\\.com", + "^https?:\\/\\/scripts\\.agilone\\.com\\/latest\\/a1.js" ], - "website": "https://accesstrade.global/" + "website": "https://www.acquia.com/products/marketing-cloud/customer-data-platform" }, - "AccessiBe": { + "Acquia Personalization": { "cats": [ - 68 + 10, + 76 + ], + "description": "Acquia Personalization (formerly Acquia Lift) lets you track customers' behavior throughout your website.", + "dom": [ + "[data-lift-slot]" + ], + "icon": "acquia-personalization.png", + "implies": [ + "Acquia Cloud Platform\\;confidence:95" ], - "description": "AccessiBe is an accessibility overlay which claims to provide ADA and WCAG compliance. The system scans and analyzes a website, and applies adjustments which they claim make your website ADA and WCAG 2.1 compliant.", - "icon": "AccessiBe.svg", "js": { - "acsb": "\\;confidence:50", - "acsbJS": "\\;confidence:50" + "AcquiaLift": "", + "_tcaq": "" }, - "pricing": [ - "mid", - "recurring" - ], "saas": true, "scriptSrc": [ - "acsbapp?\\.com/.*/acsb\\.js" + "lift\\.acquia\\.com" ], - "website": "https://accessibe.com" + "website": "https://www.acquia.com/products/marketing-cloud/personalization", + "xhr": [ + "lift\\.acquia\\.com" + ] }, - "Accessibility Toolbar Plugin": { + "Acquia Site Studio": { "cats": [ - 68 + 51 ], - "description": "Accessibility Toolbar Plugin is an accessibility component without dependencies (clean javascript), including a variety of tools.", - "icon": "Accessibility Toolbar Plugin.png", - "js": { - "MicAccessTool.prototype.openCloseBoxKeyboard": "" - }, - "oss": true, - "website": "https://webworks.ga/acc_toolbar" - }, - "Accessible360": { - "cats": [ - 68 - ], - "description": "Accessible360 is a web accessibility company based in Edina, Minnesota.", + "description": "Site Studio (formerly Cohesion) is a low-code, Drupal add-on page builder.", "dom": [ - "a[href*='accessible360.com/'][target='_blank'], a[href*='accessible360.com/'] > img" + "div[class*='coh-component coh-component-instance']" ], - "icon": "Accessible360.png", - "pricing": [ - "poa" + "icon": "acquia-site-studio.svg", + "implies": [ + "Acquia Cloud Platform" ], "saas": true, "scriptSrc": [ - "/npm/@accessible360/accessible-slick@([\\d\\.]+)/\\;version:\\1", - "/accessible360/accessible-slick/slick/slick\\.min\\.js\\?v=([\\d\\.]+)\\;version:\\1" + "sites/\\w*/files/cohesion" ], - "website": "https://accessible360.com" + "website": "https://www.acquia.com/products/drupal-cloud/site-studio" }, - "Accessibly": { + "Acquire Cobrowse": { "cats": [ - 68 + 19, + 103 ], - "description": "Accessibly is an app which is designed to assist with meeting certain requirements of WCAG 2.1 using an overlay solution.", - "icon": "Accessibly.svg", + "description": "Acquire Cobrowse is a safe and secure method of interacting with a customer's browser without downloading any additional software.", + "icon": "Acquire.svg", "js": { - "accessibilityWidget.name": "bound" + "acquireCobrowseRTC": "", + "acquireCobrowseSettings": "", + "acquireConfigNodeServer": "" }, "pricing": [ - "low", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "accessibly\\.onthemapmarketing\\.com" + "\\.acquire\\.io/cobrowse/" ], - "website": "https://www.onthemapmarketing.com/accessibly/" + "website": "https://acquire.io/co-browsing" }, - "Accesso": { + "Acquire Live Chat": { "cats": [ - 6, - 72 + 52 ], - "description": "Accesso provides ticketing, ecommerce and Point-of-Sale (PoS) solutions.", - "icon": "Accesso.svg", + "description": "Acquire is a multi-channel customer support platform designed to provide real-time customer support to customers.", + "icon": "Acquire.svg", "js": { - "accesso": "" + "_acquire_init_config": "", + "acquire": "" }, + "pricing": [ + "poa" + ], + "saas": true, "scriptSrc": [ - "/embed/accesso\\.js" + "\\.acquire\\.io/(?!cobrowse)" ], - "website": "https://accesso.com/" + "website": "https://acquire.io" }, - "Acconsento.click": { + "Act-On": { "cats": [ - 67 - ], - "description": "Acconsento.click is a software solution designed to assist users in achieving cookie policy compliance for their websites.", - "dom": [ - "link[href*='//acconsento.click/']" + 32 ], - "icon": "Acconsento.click.png", + "description": "Act-On is a cloud-based SaaS product for marketing automation.", + "icon": "Act-On.svg", "js": { - "AcconsentoAPI": "", - "acconsentoCreateElement": "" + "ActOn": "" }, "pricing": [ - "low", - "recurring", - "payg" + "high", + "recurring" ], "saas": true, - "website": "https://shop.acconsento.click" + "scriptSrc": [ + "/cdnr/\\d+/acton/bn/tracker/\\d+" + ], + "website": "https://act-on.com" }, - "AccuWeather": { + "ActBlue": { "cats": [ - 5 + 111 ], - "description": "AccuWeather provides weather forecasts and warnings and additional weather products and services.", + "description": "ActBlue is an online fundraising platform that facilitates secure donations to Democratic candidates and progressive causes, streamlining the process of processing and distributing campaign contributions.", "dom": [ - "a[href*='.accuweather.com'][target='_blank']" + "a[href*='//secure.actblue.com/donate/']" ], - "icon": "AccuWeather.svg", + "icon": "ActBlue.svg", + "js": { + "actblue.__configuration": "" + }, "pricing": [ - "poa" + "payg" ], "saas": true, - "website": "https://partners.accuweather.com" + "website": "https://secure.actblue.com" }, - "Ace": { + "actionhero.js": { "cats": [ - 24 + 18, + 22 + ], + "headers": { + "X-Powered-By": "actionhero API" + }, + "icon": "ActionHeroJs.svg", + "implies": [ + "Node.js" ], - "description": "Ace is an embeddable code editor written in JavaScript.", - "icon": "Ace.png", "js": { - "ace.EditSession": "", - "ace.Editor": "", - "ace.version": "([\\d\\.]+)\\;version:\\1" + "actionheroClient": "" }, - "oss": true, - "website": "https://github.com/ajaxorg/ace" + "scriptSrc": [ + "actionheroClient\\.js" + ], + "website": "https://www.actionherojs.com" }, - "Ackee": { + "Actirise": { "cats": [ 10 ], - "description": "Ackee is a self-hosted, Node.js based analytics tool with a focus on privacy.", + "description": "Actirise is a monetization and business intelligence platform.", "dom": [ - "[data-ackee-domain-id], [data-ackee-server]" + "div[data-actirise]" ], - "icon": "Ackee.svg", + "icon": "Actirise.svg", "js": { - "ackeeTracker": "" + "ActiriseSafeFrame": "", + "actirisePlugin.version": "^(.+)$\\;version:\\1" }, - "oss": true, - "website": "https://ackee.electerious.com" + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://corporate.actirise.com" }, - "Acoustic Experience Analytics": { + "Actito": { "cats": [ - 10 + 32, + 76 ], - "description": "Acoustic Experience Analytics (Tealeaf), formerly known as IBM Tealeaf Customer Experience on Cloud, is a SaaS-based analytics solution that delivers Tealeaf core capabilities in an managed cloud environment. Tealeaf captures and manages each visitor interaction on your website and mobile applications.", - "icon": "Acoustic.svg", + "cookies": { + "SmartFocus": "" + }, + "description": "Actito is an agile SaaS marketing automation platform.", + "icon": "Actito.png", "js": { - "TLT.config.core.modules.TLCookie": "", - "TLT_VERSION": "", - "TeaLeaf": "" + "_actGoal": "", + "smartFocus": "" }, "pricing": [ - "poa" + "mid", + "recurring" ], "saas": true, - "website": "https://acoustic.com/tealeaf" + "scriptSrc": [ + "cdn\\.actito\\.be", + "\\.advisor\\.smartfocus\\.com" + ], + "website": "https://www.actito.com" }, - "Acquia Campaign Factory": { + "Activ8 Commerce": { "cats": [ - 32 + 6 ], - "description": "Acquia Campaign Factory is centralized marketing management system powered by Mautic.", - "icon": "acquia-campaign-factory.svg", - "implies": [ - "Mautic" + "description": "Activ8 Commerce is a sales solution tailored for winery and distillery businesses.", + "icon": "Activ8.svg", + "pricing": [ + "mid", + "recurring" ], "saas": true, "scriptSrc": [ - "mautic\\.net", - "maestro\\.mautic\\.com" + "/wp-content/plugins/activ8-commerce/" ], - "website": "https://www.acquia.com/products/marketing-cloud/campaign-factory" + "website": "https://activ8commerce.com" }, - "Acquia Cloud IDE": { + "ActiveCampaign": { "cats": [ - 47 + 32, + 75 ], - "description": "Acquia Cloud IDE is a browser-based source code editor and a Drupal development stack running on the Acquia Cloud Platform.", - "icon": "acquia-cloud-ide.png", - "implies": [ - "Acquia Cloud Platform" + "description": "ActiveCampaign is email and marketing automation software.", + "icon": "ActiveCampaign.svg", + "js": { + "acEnableTracking": "" + }, + "pricing": [ + "low", + "recurring", + "poa" ], "saas": true, "scriptSrc": [ - "https?:\\/\\/.+\\.web\\.ahdev\\.cloud" + "plugins/activecampaign-subscription-forms/site_tracking\\.js", + "\\.activehosted\\.com", + "\\.app-us1\\.com", + "\\.ac-page\\.com" ], "url": [ - "https:?\\/\\/.+\\.web\\.ahdev\\.cloud" + "\\.activehosted\\.com", + "\\.ac-page\\.com" ], - "website": "https://www.acquia.com/products/drupal-cloud/cloud-ide" + "website": "https://www.activecampaign.com" }, - "Acquia Cloud Platform": { + "ActivEngage": { "cats": [ - 62 + 52 ], - "description": "Acquia Cloud Platform is a Drupal-tuned application lifecycle management suite with an infrastructure to support Drupal deployment workflow processes.", - "headers": { - "X-AH-Environment": "^(next)?.*$\\;version:\\1?Next:" + "description": "ActivEngage is an automotive chat service that enables real-time website messaging between dealerships and customers.", + "icon": "ActivEngage.svg", + "js": { + "ActivEngage": "" }, - "icon": "acquia-cloud.svg", - "implies": [ - "Amazon Web Services" - ], "saas": true, - "website": "https://www.acquia.com/products/drupal-cloud/cloud-platform" + "scriptSrc": [ + "pageview\\.activengage\\.com" + ], + "website": "https://www.activengage.com" }, - "Acquia Cloud Platform CDN": { + "Acuity Scheduling": { "cats": [ - 31 + 72 ], - "headers": { - "via": "Acquia Platform CDN (.+)\\;version:\\1" + "description": "Acuity Scheduling is a cloud-based appointment scheduling software solution.", + "dom": [ + "iframe[src*='app.acuityscheduling.com/']" + ], + "icon": "Acuity Scheduling.svg", + "js": { + "ACUITY_MODAL_INIT": "" }, - "icon": "acquia-cloud-platform.svg", - "implies": [ - "Acquia Cloud Platform" + "pricing": [ + "low", + "recurring" ], "saas": true, - "website": "https://docs.acquia.com/cloud-platform/platformcdn/" + "scriptSrc": [ + "\\.acuityscheduling\\.com" + ], + "website": "https://acuityscheduling.com" }, - "Acquia Cloud Site Factory": { + "AcuityAds": { "cats": [ - 88 - ], - "description": "Acquia Site Factory is a multisite platform for Drupal.", - "dom": [ - "script[src*='sites/g/files']", - "img[src*='sites/g/files']", - "img[data-src*='sites/g/files']", - "link[href*='sites/g/files']" - ], - "icon": "acquia-site-factory.svg", - "implies": [ - "Acquia Cloud Platform", - "Drupal Multisite" - ], - "saas": true, - "scriptSrc": [ - "sites\\/g\\/files" - ], - "website": "https://www.acquia.com/products/drupal-cloud/site-factory" - }, - "Acquia Content Hub": { - "cats": [ - 19 - ], - "description": "Acquia Content Hub is a cloud-based, centralized content distribution and syndication service.", - "dom": [ - "[data-lift-slot]" + 36 ], + "description": "AcuityAds offers automatic solutions to marketers willing to connect through clients across mobile, social, and online display advertising campaigns.", "headers": { - "content-security-policy": "content-hub\\.acquia\\.com" + "Content-Security-Policy": "\\.acuityplatform\\.com" }, - "icon": "acquia-content-hub.png", - "implies": [ - "Acquia Cloud Platform" - ], - "saas": true, - "scriptSrc": [ - "content-hub\\.acquia\\.com" - ], - "url": [ - "https?:\\/\\/.+\\.content-hub\\.acquia\\.com" - ], - "website": "https://www.acquia.com/products/drupal-cloud/content-hub" - }, - "Acquia Customer Data Platform": { - "cats": [ - 97 - ], - "description": "Acquia Customer Data Platform (formerly AgilOne) is a customer data platform for Drupal.", - "dom": [ - "[data-function*='Agilone']" - ], - "icon": "acquia-cdp.png", + "icon": "AcuityAds.svg", "js": { - "$A1": "", - "$A1Config": "", - "agiloneObject": "" + "acuityAdsEventQueue": "", + "acuityAdsPixelKey": "" }, - "saas": true, - "scriptSrc": [ - "^https?:\\/\\/.+\\.agilone\\.com", - "^https?:\\/\\/scripts\\.agilone\\.com\\/latest\\/a1.js" + "pricing": [ + "poa" ], - "website": "https://www.acquia.com/products/marketing-cloud/customer-data-platform" + "saas": true, + "website": "https://www.acuityads.com" }, - "Acquia Personalization": { + "AD EBiS": { "cats": [ - 10, - 76 + 36, + 32 ], - "description": "Acquia Personalization (formerly Acquia Lift) lets you track customers' behavior throughout your website.", + "description": "AD EBiS is an advertising and marketing platform that offers advertisement effectiveness measurement, access and user analysis.", "dom": [ - "[data-lift-slot]" - ], - "icon": "acquia-personalization.png", - "implies": [ - "Acquia Cloud Platform\\;confidence:95" + "a[href*='.ebis.ne.jp/'][target='_blank']" ], + "icon": "ebis.svg", "js": { - "AcquiaLift": "", - "_tcaq": "" + "ebis.c.pageurl": "" }, - "saas": true, - "scriptSrc": [ - "lift\\.acquia\\.com" - ], - "website": "https://www.acquia.com/products/marketing-cloud/personalization", - "xhr": [ - "lift\\.acquia\\.com" - ] - }, - "Acquia Site Studio": { - "cats": [ - 51 - ], - "description": "Site Studio (formerly Cohesion) is a low-code, Drupal add-on page builder.", - "dom": [ - "div[class*='coh-component coh-component-instance']" - ], - "icon": "acquia-site-studio.svg", - "implies": [ - "Acquia Cloud Platform" + "pricing": [ + "freemium", + "payg" ], "saas": true, "scriptSrc": [ - "sites/\\w*/files/cohesion" + "\\.ebis\\.ne\\.jp/" ], - "website": "https://www.acquia.com/products/drupal-cloud/site-studio" + "website": "https://www.ebis.ne.jp" }, - "Acquire Cobrowse": { + "Ad Lightning": { "cats": [ - 19, - 103 + 36 ], - "description": "Acquire Cobrowse is a safe and secure method of interacting with a customer's browser without downloading any additional software.", - "icon": "Acquire.svg", - "js": { - "acquireCobrowseRTC": "", - "acquireCobrowseSettings": "", - "acquireConfigNodeServer": "" - }, + "description": "Ad Lightning is an programmatic ads monitoring and audit service.", + "icon": "Ad Lightning.svg", "pricing": [ "poa" ], "saas": true, "scriptSrc": [ - "\\.acquire\\.io/cobrowse/" + "\\.adlightning\\.com" ], - "website": "https://acquire.io/co-browsing" + "website": "https://www.adlightning.com" }, - "Acquire Live Chat": { + "Ada": { "cats": [ 52 ], - "description": "Acquire is a multi-channel customer support platform designed to provide real-time customer support to customers.", - "icon": "Acquire.svg", + "description": "Ada is an automated customer experience company that provides chat bots used in customer support.", + "icon": "Ada.svg", "js": { - "_acquire_init_config": "", - "acquire": "" + "__AdaEmbedConstructor": "", + "adaEmbed": "" }, "pricing": [ "poa" ], "saas": true, "scriptSrc": [ - "\\.acquire\\.io/(?!cobrowse)" + "\\.ada\\.support" ], - "website": "https://acquire.io" + "website": "https://www.ada.cx" }, - "Act-On": { + "Adabra": { "cats": [ 32 ], - "description": "Act-On is a cloud-based SaaS product for marketing automation.", - "icon": "Act-On.svg", + "description": "Adabra is a SaaS omnichannel marketing automation platform to help boost sales. Adabra allows you to manage user segmentation, create workflow and campaigns through email, social, SMS and more.", + "icon": "Adabra.svg", "js": { - "ActOn": "" + "adabraPreview": "", + "adabra_version_panel": "(^.+$)\\;version:\\1", + "adabra_version_track": "(^.+$)\\;version:\\1" }, "pricing": [ - "high", + "poa", "recurring" ], "saas": true, "scriptSrc": [ - "/cdnr/\\d+/acton/bn/tracker/\\d+" + "track\\.adabra\\.com" ], - "website": "https://act-on.com" + "website": "https://www.adabra.com", + "xhr": [ + "my\\.adabra\\.com" + ] }, - "ActBlue": { + "Adally": { "cats": [ - 111 - ], - "description": "ActBlue is an online fundraising platform that facilitates secure donations to Democratic candidates and progressive causes, streamlining the process of processing and distributing campaign contributions.", - "dom": [ - "a[href*='//secure.actblue.com/donate/']" + 68 ], - "icon": "ActBlue.svg", - "js": { - "actblue.__configuration": "" - }, - "pricing": [ - "payg" + "description": "Adally provides real-time website accessibility solutions, including free accessibility scans and widgets, to help websites comply with ADA, WCAG 2.1, and Section 508 standards.", + "icon": "Adally.svg", + "scriptSrc": [ + "cloudfront\\.net/.*/adally\\.js" ], - "saas": true, - "website": "https://secure.actblue.com" + "website": "https://adally.com" }, - "Actirise": { + "Adalo": { "cats": [ - 10 + 51 ], - "description": "Actirise is a monetization and business intelligence platform.", + "description": "Adalo is a no-code platform enabling the creation of mobile and web applications.", "dom": [ - "div[data-actirise]" + "link[href*='.adalo.com/static/'][rel='stylesheet']" ], - "icon": "Actirise.svg", - "js": { - "ActiriseSafeFrame": "", - "actirisePlugin.version": "^(.+)$\\;version:\\1" - }, + "icon": "Adalo.svg", "pricing": [ - "poa" + "freemium", + "mid", + "recurring" ], "saas": true, - "website": "https://corporate.actirise.com" + "scriptSrc": [ + "assets\\.adalo\\.com/" + ], + "website": "https://www.adalo.com" }, - "Actito": { + "Adalte": { "cats": [ - 32, - 76 + 104 ], - "cookies": { - "SmartFocus": "" - }, - "description": "Actito is an agile SaaS marketing automation platform.", - "icon": "Actito.png", - "js": { - "_actGoal": "", - "smartFocus": "" + "description": "Adalte is an online solution designed for travel agencies, tour operators, and DMCs, offering travel management capabilities.", + "icon": "Adalte.svg", + "meta": { + "author": "www\\.adalte\\.com" }, "pricing": [ "mid", "recurring" ], "saas": true, + "website": "https://www.adalte.com" + }, + "Adalyser": { + "cats": [ + 36 + ], + "description": "Adalyser is an online platform offering the tools needed to get up and running with TV advertising.", + "icon": "Adalyser.svg", + "js": { + "adalyserModules": "" + }, "scriptSrc": [ - "cdn\\.actito\\.be", - "\\.advisor\\.smartfocus\\.com" + "c5\\.adalyser\\.com" ], - "website": "https://www.actito.com" + "website": "https://adalyser.com/" }, - "Activ8 Commerce": { + "ADAPT": { "cats": [ 6 ], - "description": "Activ8 Commerce is a sales solution tailored for winery and distillery businesses.", - "icon": "Activ8.svg", + "description": "ADAPT is a subscription-based app that allows anyone to create video focused online store in minutes on their phone.", + "icon": "ADAPT.svg", + "meta": { + "image": "assets\\.adapt\\.ws/" + }, "pricing": [ - "mid", + "low", + "freemium", "recurring" ], "saas": true, - "scriptSrc": [ - "/wp-content/plugins/activ8-commerce/" - ], - "website": "https://activ8commerce.com" + "website": "https://adapt.ws" }, - "ActiveCampaign": { + "Adaptix": { "cats": [ - 32, - 75 + 76, + 32 ], - "description": "ActiveCampaign is email and marketing automation software.", - "icon": "ActiveCampaign.svg", + "description": "Adaptix is a marketing automation platform that uses AI to help businesses create personalized customer experiences.", + "icon": "Adaptix.svg", "js": { - "acEnableTracking": "" + "AdaptixFormValidations": "", + "AdaptixLang": "", + "AdaptixSDK": "", + "AdaptixSDKLoaded": "" }, "pricing": [ "low", - "recurring", - "poa" + "recurring" ], "saas": true, "scriptSrc": [ - "plugins/activecampaign-subscription-forms/site_tracking\\.js", - "\\.activehosted\\.com", - "\\.app-us1\\.com", - "\\.ac-page\\.com" - ], - "url": [ - "\\.activehosted\\.com", - "\\.ac-page\\.com" + "\\.adaptix\\.ai/" ], - "website": "https://www.activecampaign.com" + "website": "https://www.adaptix.ai" }, - "Acuity Scheduling": { + "Adara": { "cats": [ - 72 - ], - "description": "Acuity Scheduling is a cloud-based appointment scheduling software solution.", - "dom": [ - "a[href*='app.acuityscheduling.com']" + 36 ], - "icon": "Acuity Scheduling.svg", + "description": "Adara is a tourism advertising system.", + "icon": "Adara.svg", "js": { - "ACUITY_MODAL_INIT": "" + "adara": "" }, "pricing": [ - "low", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "\\.acuityscheduling\\.com" + "\\.adara\\.com/" ], - "website": "https://acuityscheduling.com" + "website": "https://adara.com" }, - "AcuityAds": { + "AdaSiteCompliance": { "cats": [ - 36 + 68 ], - "description": "AcuityAds offers automatic solutions to marketers willing to connect through clients across mobile, social, and online display advertising campaigns.", - "headers": { - "Content-Security-Policy": "\\.acuityplatform\\.com" - }, - "icon": "AcuityAds.svg", + "description": "AdaSiteCompliance is a web accessibility solution, making websites compliant and accessible to WCAG 2.1 and section 508 compliance standards.", + "icon": "AdaSiteCompliance.svg", "js": { - "acuityAdsEventQueue": "", - "acuityAdsPixelKey": "" + "ADASTOOLBOXAPPSTATE": "", + "adascHelper": "" }, "pricing": [ - "poa" - ], - "saas": true, - "website": "https://www.acuityads.com" - }, - "Ad Lightning": { - "cats": [ - 36 - ], - "description": "Ad Lightning is an programmatic ads monitoring and audit service.", - "icon": "Ad Lightning.svg", - "pricing": [ - "poa" - ], - "saas": true, - "scriptSrc": [ - "\\.adlightning\\.com" + "onetime", + "high" ], - "website": "https://www.adlightning.com" + "website": "https://adasitecompliance.com" }, "AdBridg": { "cats": [ @@ -1165,579 +1287,414 @@ "saas": true, "website": "https://www.adbridg.com" }, - "AdFixus": { + "AdCalls": { "cats": [ - 67 + 10 ], - "cookies": { - "afx_profile_hs": "" - }, - "description": "AdFixus is a privacy-focused solution that enables businesses to manage their data and empower individuals with consent control, addressing the decline of third-party cookies.", - "icon": "AdFixus.svg", - "js": { - "AfxIdentity": "", - "_afxProfile": "" - }, - "pricing": [ - "poa" + "description": "AdCalls is a call tracking software designed to monitor and analyze inbound and outbound calls for performance and attribution.", + "dom": [ + "link[href*='.adcalls.nl']" ], + "headers": { + "Content-Security-Policy": "\\.adcalls\\.nl" + }, + "icon": "AdCalls.svg", "saas": true, - "website": "https://www.adfixus.com" + "website": "https://adcalls.com" }, - "AdInfinity": { + "adCAPTCHA": { "cats": [ - 36 - ], - "icon": "AdInfinity.png", - "scriptSrc": [ - "adinfinity\\.com\\.au" + 16 ], - "website": "https://adinfinity.com.au" + "description": "adCAPTCHA is a security tool that integrates marketing and user experience to block bots while enhancing brand visibility, using dynamic content for varied challenges without collecting user data.", + "icon": "adCAPTCHA.svg", + "js": { + "adCAPTCHA": "", + "adcaptcha_vars": "" + }, + "saas": true, + "website": "https://adcaptcha.com" }, - "AdOcean": { + "Adcash": { "cats": [ 36 ], - "icon": "AdOcean.svg", - "implies": [ - "Gemius" - ], + "icon": "Adcash.svg", "js": { - "ado.master": "", - "ado.placement": "", - "ado.slave": "" + "SuLoaded": "", + "SuUrl": "", + "ac_bgclick_URL": "", + "ct_nOpp": "", + "ct_nSuUrl": "", + "ct_siteunder": "", + "ct_tag": "" }, "scriptSrc": [ - "adocean\\.pl/files/js/ado\\.js", - "adocean\\.pl\\;confidence:80" + "^[^\\/]*//(?:[^\\/]+\\.)?adcash\\.com/(?:script|ad)/" ], - "website": "https://adocean-global.com" + "url": [ + "^https?://(?:[^\\/]+\\.)?adcash\\.com/script/pop_" + ], + "website": "https://adcash.com" }, - "AdOpt": { + "AddEvent": { "cats": [ - 67 - ], - "description": "AdOpt is a consent tool that prioritises privacy and usability towards the LGPD.", - "icon": "AdOpt.svg", - "implies": [ - "Svelte" + 72 ], + "description": "AddEvent is used to Add to Calendar and event tools for websites and newsletters.", + "icon": "AddEvent.svg", "js": { - "adoptApp.domain": "", - "adopt_website_code": "" + "addeventatc": "" }, "pricing": [ - "freemium", "low", - "recurring" + "recurring", + "freemium" ], - "saas": true, "scriptSrc": [ - "tag\\.goadopt\\.io/" + "(?://|\\.)addevent\\.com/" ], - "website": "https://goadopt.io" + "website": "https://www.addevent.com" }, - "AdRecover": { + "Addi": { "cats": [ - 36 + 91 ], - "description": "AdRecover is a tool that helps online publishers monetise their Adblock inventory.", - "icon": "adrecover.svg", - "js": { - "adRecover.ap": "" - }, - "website": "https://www.adrecover.com" + "description": "Addi is a service that allows users to make purchases and pay for them in installments over time.", + "icon": "addi.svg", + "scriptSrc": [ + "s3\\.amazonaws\\.com/widgets\\.addi\\.com/bundle\\.min\\.js" + ], + "website": "https://co.addi.com/" }, - "AdRiver": { + "Addsearch": { "cats": [ - 36 - ], - "description": "AdRiver is a company which provide internet advertising management and audit software.", - "dom": [ - "link[href*='.adriver.ru'], img[src*='.adriver.ru'], iframe[src*='.adriver.ru']" + 29 ], - "icon": "AdRiver.png", + "description": "Addsearch is a site search solution for small and large websites.", + "icon": "Addsearch.svg", "js": { - "AdriverCounter": "", - "AdriverPrebid": "", - "adfoxBiddersMap.adriver": "", - "adriver": "" + "AddSearchClient": "", + "AddSearchUI": "" }, "pricing": [ - "payg" + "mid", + "recurring" ], "saas": true, "scriptSrc": [ - "\\.adriver\\.ru/" + "//addsearch\\.com/js/" ], - "website": "https://adriver.ru" + "website": "https://www.addsearch.com/" }, - "AdRoll": { + "AddShoppers": { "cats": [ - 36, - 77 - ], - "description": "AdRoll is a digital marketing technology platform that specialises in retargeting.", - "dom": [ - "link[href*='.adroll.com']" + 5, + 10 ], - "icon": "AdRoll.svg", - "js": { - "adroll_adv_id": "", - "adroll_pix_id": "", - "adroll_version": "([\\d\\.]+)\\;version:\\1" - }, + "description": "AddShoppers is the social media marketing command center for small-medium online retailers.", + "icon": "AddShoppers.svg", "pricing": [ - "low", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "(?:a|s)\\.adroll\\.com" + "(?:cdn\\.)?shop\\.pe/widget/" ], - "website": "https://adroll.com", - "scripts": [ - "(?:d|s)\\.adroll\\.com/" - ] + "website": "https://www.addshoppers.com" }, - "AdRoll CMP System": { + "AddThis": { "cats": [ - 67 + 5 ], - "description": "AdRoll CMP System is a consent management solution.", - "icon": "AdRoll.svg", + "description": "AddThis is a social bookmarking service that can be integrated into a website with the use of a web widget.", + "icon": "AddThis.svg", "js": { - "__adroll_consent": "", - "__adroll_consent_is_gdpr": "" + "addthis": "" }, - "pricing": [ - "low", - "recurring" + "scriptSrc": [ + "addthis\\.com/js/" ], - "saas": true, - "website": "https://www.adroll.com/features/consent-management" + "website": "https://www.addthis.com" }, - "AdScale": { + "AddToAny": { "cats": [ - 36 + 5 ], - "description": "AdScale is a cloud-based, AI-powered performance optimisation platform which utilises machine learning to automate and optimise AdWords campaigns across Google Search, Google Shopping, Google Display, and YouTube.", - "icon": "AdScale.svg", + "description": "AddToAny is a universal sharing platform that can be integrated into a website by use of a web widget or plugin.", + "icon": "AddToAny.svg", "js": { - "_adscale": "", - "adscaleAddToCart": "", - "adscaleViewProduct": "" + "a2apage_init": "" }, - "pricing": [ - "mid", - "recurring", - "payg" - ], - "saas": true, "scriptSrc": [ - "\\.adscale\\.com/" + "addtoany\\.com/menu/page\\.js" ], - "website": "https://www.adscale.com" + "website": "https://www.addtoany.com" }, - "AdThrive": { + "AddToAny Share Buttons": { "cats": [ - 36 + 87 + ], + "description": "AddToAny Share Buttons plugin for WordPress increases traffic and engagement by helping people share your posts and pages to any service.", + "icon": "AddToAny.svg", + "implies": [ + "AddToAny" + ], + "oss": true, + "requires": [ + "WordPress" ], - "description": "AdThrive is an online advertising network aka ad provider for bloggers for blog monetisation.", - "icon": "AdThrive.png", - "js": { - "adthrive": "", - "adthriveVideosInjected": "" - }, - "saas": true, "scriptSrc": [ - "ads\\.adthrive\\.com" + "/wp-content/plugins/add-to-any/addtoany\\.min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1" ], - "website": "https://www.adthrive.com" + "website": "https://github.com/projectestac/wordpress-add-to-any" }, - "Ada": { + "Adenzo": { "cats": [ - 52 + 32 ], - "description": "Ada is an automated customer experience company that provides chat bots used in customer support.", - "icon": "Ada.svg", + "description": "Adenzo is a B2B sales and marketing platform for managing customer relationships, automating outreach, and analyzing performance to support lead generation and sales operations.", + "icon": "Adenzo.svg", "js": { - "__AdaEmbedConstructor": "", - "adaEmbed": "" + "AdenzoTrack": "", + "adenzo_contact_id": "" }, - "pricing": [ - "poa" - ], "saas": true, - "scriptSrc": [ - "\\.ada\\.support" + "scripts": [ + "live\\.adenzo\\.com" ], - "website": "https://www.ada.cx" + "website": "https://www.adenzo.com" }, - "AdaSiteCompliance": { + "Adevole": { "cats": [ - 68 + 6 ], - "description": "AdaSiteCompliance is a web accessibility solution, making websites compliant and accessible to WCAG 2.1 and section 508 compliance standards.", - "icon": "AdaSiteCompliance.svg", - "js": { - "ADASTOOLBOXAPPSTATE": "", - "adascHelper": "" - }, - "pricing": [ - "onetime", - "high" + "description": "Adevole is an ecommerce website builder for creating and managing online stores.", + "icon": "Adevole.svg", + "requires": [ + "Shopify" ], - "website": "https://adasitecompliance.com" + "saas": true, + "scriptSrc": [ + "www\\.adevole\\.com" + ], + "scripts": [ + "www\\.adevole\\.com" + ], + "website": "https://www.adevole.com" }, - "Adabra": { + "Adex": { "cats": [ - 32 + 36 ], - "description": "Adabra is a SaaS omnichannel marketing automation platform to help boost sales. Adabra allows you to manage user segmentation, create workflow and campaigns through email, social, SMS and more.", - "icon": "Adabra.svg", + "description": "Adex is a data management platform (DMP) system utilized for organizing and analyzing large volumes of data to optimize targeted advertising campaigns.", + "dom": [ + "link[href*='.theadex.com']" + ], + "icon": "Adex.svg", "js": { - "adabraPreview": "", - "adabra_version_panel": "(^.+$)\\;version:\\1", - "adabra_version_track": "(^.+$)\\;version:\\1" + "_adexc": "", + "adex.v": "([\\d\\.]+)\\;version:\\1" }, "pricing": [ - "poa", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "track\\.adabra\\.com" + "dmp\\.theadex\\.com/" ], - "website": "https://www.adabra.com", - "xhr": [ - "my\\.adabra\\.com" - ] + "website": "https://theadex.com" }, - "Adally": { + "AdFixus": { "cats": [ - 68 + 67 ], - "icon": "Adally.svg", - "scriptSrc": [ - "cloudfront\\.net/.*/adally\\.js" + "cookies": { + "afx_profile_hs": "" + }, + "description": "AdFixus is a privacy-focused solution that enables businesses to manage their data and empower individuals with consent control, addressing the decline of third-party cookies.", + "icon": "AdFixus.svg", + "js": { + "AfxIdentity": "", + "_afxProfile": "" + }, + "pricing": [ + "poa" ], - "website": "https://adally.com", - "description": "Adally provides real-time website accessibility solutions, including free accessibility scans and widgets, to help websites comply with ADA, WCAG 2.1, and Section 508 standards." + "saas": true, + "website": "https://www.adfixus.com" }, - "Adalo": { + "Adform": { "cats": [ - 51 + 36 ], - "description": "Adalo is a no-code platform enabling the creation of mobile and web applications.", + "description": "Adform is an all-in-one platform for digital advertising.", "dom": [ - "link[href*='.adalo.com/static/'][rel='stylesheet']" + "link[href*='.adformdsp.net'], link[href*='.adform.net']" ], - "icon": "Adalo.svg", + "icon": "Adform.svg", "pricing": [ - "freemium", - "mid", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "assets\\.adalo\\.com/" + "\\.adform\\.net/" ], - "website": "https://www.adalo.com" + "website": "https://site.adform.com" }, - "Adalyser": { + "ADFOX": { "cats": [ 36 ], - "description": "Adalyser is an online platform offering the tools needed to get up and running with TV advertising.", - "icon": "Adalyser.svg", + "description": "ADFOX is an advertising management platform for media publishers.", + "icon": "ADFOX.svg", "js": { - "adalyserModules": "" + "AdFox_getCodeScript": "", + "Site.adFoxParams": "", + "adFoxParams": "", + "adfoxAsyncParams": "", + "adfoxBiddersMap": "" }, - "scriptSrc": [ - "c5\\.adalyser\\.com" + "pricing": [ + "mid", + "recurring" ], - "website": "https://adalyser.com/" + "saas": true, + "website": "https://adfox.yandex.ru" }, - "Adara": { + "AdGlare": { "cats": [ 36 ], - "description": "Adara is a tourism advertising system.", - "icon": "Adara.svg", - "js": { - "adara": "" - }, + "description": "AdGlare is an ad serving solution designed for advertisers, publishers, and agencies.", + "icon": "AdGlare.svg", "pricing": [ - "poa" + "mid", + "recurring" ], "saas": true, "scriptSrc": [ - "\\.adara\\.com/" + "\\.adglare\\.net/" ], - "website": "https://adara.com" + "website": "https://www.adglare.com" }, - "Adcash": { + "Adimo": { "cats": [ - 36 + 6 ], - "icon": "Adcash.svg", + "description": "Adimo is a platform that integrates content with commerce, enabling CPG brands to create a seamless ecommerce experience.", + "icon": "Adimo.svg", "js": { - "SuLoaded": "", - "SuUrl": "", - "ac_bgclick_URL": "", - "ct_nOpp": "", - "ct_nSuUrl": "", - "ct_siteunder": "", - "ct_tag": "" + "Adimo": "" }, + "saas": true, "scriptSrc": [ - "^[^\\/]*//(?:[^\\/]+\\.)?adcash\\.com/(?:script|ad)/" - ], - "url": [ - "^https?://(?:[^\\/]+\\.)?adcash\\.com/script/pop_" + "cdn\\.adimo\\.co/" ], - "website": "https://adcash.com" + "website": "https://www.adimo.co" }, - "AddEvent": { + "AdInfinity": { "cats": [ - 72 - ], - "description": "AddEvent is used to Add to Calendar and event tools for websites and newsletters.", - "icon": "AddEvent.svg", - "pricing": [ - "low", - "recurring", - "freemium" + 36 ], + "icon": "AdInfinity.png", "scriptSrc": [ - "//addevent\\.com/" + "adinfinity\\.com\\.au" + ], + "website": "https://adinfinity.com.au" + }, + "Adition": { + "cats": [ + 36 + ], + "description": "Adition is a provider of programmatic advertising solutions.", + "dom": [ + "link[href*='.adition.com']" ], - "website": "https://www.addevent.com", + "icon": "Adition.svg", "js": { - "addeventatc": "" - } + "adition": "", + "initialize_adition": "" + }, + "saas": true, + "website": "https://www.adition.com" }, - "AddShoppers": { + "Adjust": { "cats": [ - 5, 10 ], - "description": "AddShoppers is the social media marketing command center for small-medium online retailers.", - "icon": "AddShoppers.svg", + "description": "Adjust is the mobile marketing analytics platform.", + "dom": [ + "div[data-adjust*='app.adjust.com/'], a[href*='app.adjust.com/'], a[href*='.adj.st/'], form[action*='app.adjust.com/']" + ], + "icon": "Adjust.svg", + "js": { + "Adjust.initSdk": "" + }, "pricing": [ + "payg", "poa" ], "saas": true, - "scriptSrc": [ - "(?:cdn\\.)?shop\\.pe/widget/" - ], - "website": "https://www.addshoppers.com" + "website": "https://www.adjust.com" }, - "AddThis": { + "Adline": { "cats": [ - 5 + 10, + 36 ], - "description": "AddThis is a social bookmarking service that can be integrated into a website with the use of a web widget.", - "icon": "AddThis.svg", + "description": "Adline is an advertising & analytics software that helps launch multichannel ads with automatic ad optimization.", + "icon": "Adline.svg", "js": { - "addthis": "" + "adlineConfig": "" }, + "pricing": [], + "saas": true, "scriptSrc": [ - "addthis\\.com/js/" + "prod\\.api\\.adline\\.com" ], - "website": "https://www.addthis.com" + "website": "https://adline.com" }, - "AddToAny": { + "Adloox": { "cats": [ - 5 + 36 ], - "description": "AddToAny is a universal sharing platform that can be integrated into a website by use of a web widget or plugin.", - "icon": "AddToAny.svg", - "js": { - "a2apage_init": "" - }, + "description": "Adloox is a European-born buy-side ad verification and insights company.", + "icon": "Adloox.svg", + "pricing": [ + "poa" + ], + "saas": true, "scriptSrc": [ - "addtoany\\.com/menu/page\\.js" + "\\.adlooxtracking\\.com/" ], - "website": "https://www.addtoany.com" + "website": "https://www.adloox.com" }, - "AddToAny Share Buttons": { + "AdminBuy": { "cats": [ - 87 - ], - "description": "AddToAny Share Buttons plugin for WordPress increases traffic and engagement by helping people share your posts and pages to any service.", - "icon": "AddToAny.svg", - "implies": [ - "AddToAny" - ], - "oss": true, - "requires": [ - "WordPress" - ], - "scriptSrc": [ - "/wp-content/plugins/add-to-any/addtoany\\.min\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1" - ], - "website": "https://github.com/projectestac/wordpress-add-to-any" - }, - "Addi": { - "cats": [ - 91 - ], - "description": "Addi is a service that allows users to make purchases and pay for them in installments over time.", - "icon": "addi.svg", - "scriptSrc": [ - "s3\\.amazonaws\\.com/widgets\\.addi\\.com/bundle\\.min\\.js" - ], - "website": "https://co.addi.com/" - }, - "Addsearch": { - "cats": [ - 29 - ], - "description": "Addsearch is a site search solution for small and large websites.", - "icon": "Addsearch.svg", - "js": { - "AddSearchClient": "", - "AddSearchUI": "" - }, - "pricing": [ - "mid", - "recurring" - ], - "saas": true, - "scriptSrc": [ - "//addsearch\\.com/js/" - ], - "website": "https://www.addsearch.com/" - }, - "Adex": { - "cats": [ - 36 - ], - "description": "Adex is a data management platform (DMP) system utilized for organizing and analyzing large volumes of data to optimize targeted advertising campaigns.", - "dom": [ - "link[href*='.theadex.com']" - ], - "icon": "Adex.svg", - "js": { - "_adexc": "", - "adex.v": "([\\d\\.]+)\\;version:\\1" - }, - "pricing": [ - "poa" - ], - "saas": true, - "scriptSrc": [ - "dmp\\.theadex\\.com/" - ], - "website": "https://theadex.com" - }, - "Adform": { - "cats": [ - 36 - ], - "description": "Adform is an all-in-one platform for digital advertising.", - "dom": [ - "link[href*='.adformdsp.net'], link[href*='.adform.net']" - ], - "icon": "Adform.svg", - "pricing": [ - "poa" - ], - "saas": true, - "scriptSrc": [ - "\\.adform\\.net/" - ], - "website": "https://site.adform.com" - }, - "Adimo": { - "cats": [ - 6 - ], - "description": "Adimo is a platform that integrates content with commerce, enabling CPG brands to create a seamless ecommerce experience.", - "icon": "Adimo.svg", - "js": { - "Adimo": "" - }, - "saas": true, - "scriptSrc": [ - "cdn\\.adimo\\.co/" - ], - "website": "https://www.adimo.co" - }, - "Adition": { - "cats": [ - 36 - ], - "description": "Adition is a provider of programmatic advertising solutions.", - "dom": [ - "link[href*='.adition.com']" - ], - "icon": "Adition.svg", - "js": { - "adition": "", - "initialize_adition": "" - }, - "saas": true, - "website": "https://www.adition.com" - }, - "Adjust": { - "cats": [ - 10 - ], - "description": "Adjust is the mobile marketing analytics platform.", - "dom": [ - "div[data-adjust*='app.adjust.com/'], a[href*='app.adjust.com/'], a[href*='.adj.st/'], form[action*='app.adjust.com/']" - ], - "icon": "Adjust.svg", - "js": { - "Adjust.initSdk": "" - }, - "pricing": [ - "payg", - "poa" - ], - "saas": true, - "website": "https://www.adjust.com" - }, - "Adline": { - "cats": [ - 10, - 36 + 1 ], - "description": "Adline is an advertising & analytics software that helps launch multichannel ads with automatic ad optimization.", - "icon": "Adline.svg", - "js": { - "adlineConfig": "" + "description": "AdminBuy is an open-source content management system from China designed for building and managing websites.", + "icon": "AdminBuy.svg", + "meta": { + "author": "www\\.adminbuy\\.cn" }, - "pricing": [], - "saas": true, - "scriptSrc": [ - "prod\\.api\\.adline\\.com" - ], - "website": "https://adline.com" - }, - "Adloox": { - "cats": [ - 36 - ], - "description": "Adloox is a European-born buy-side ad verification and insights company.", - "icon": "Adloox.svg", - "pricing": [ - "poa" - ], "saas": true, - "scriptSrc": [ - "\\.adlooxtracking\\.com/" - ], - "website": "https://www.adloox.com" + "website": "https://www.adminbuy.cn" }, "Adminer": { "cats": [ 3 ], + "cookies": { + "adminer_key": "", + "adminer_sid": "" + }, "cpe": "cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:*", + "description": "Adminer is a lightweight, web-based database management tool that supports multiple database systems and provides a simple interface for managing databases, tables, and running SQL queries.", + "headers": { + "composed-by": "adminer\\((\\d\\.)+\\)\\;version:\\1" + }, "html": [ "Adminer
([\\d.]+)\\;version:\\1", "onclick=\"bodyClick\\(event\\);\" onload=\"verifyVersion\\('([\\d.]+)'\\);\">\\;version:\\1" @@ -1746,6 +1703,7 @@ "implies": [ "PHP" ], + "oss": true, "website": "https://www.adminer.org" }, "Admiral": { @@ -1841,6 +1799,26 @@ ], "website": "https://admost.com/" }, + "AdNabu": { + "cats": [ + 100 + ], + "description": "AdNabu is a software solution for managing product feeds on Shopify, enabling organization and optimization for online stores.", + "icon": "AdNabu.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "Shopify" + ], + "saas": true, + "scripts": [ + "/adnabu-shopify" + ], + "website": "https://www.adnabu.com" + }, "Adnegah": { "cats": [ 36 @@ -1858,6 +1836,21 @@ ], "website": "https://adnegah.net" }, + "Adnymics": { + "cats": [ + 76 + ], + "description": "Adnymics is a platform that enables personalization in ecommerce by tailoring content, recommendations, and experiences to individual users based on their behavior and preferences.", + "icon": "Adnymics.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "trac\\.adnymics\\.com" + ], + "website": "https://adnymics.com" + }, "Adobe Analytics": { "cats": [ 10 @@ -1913,7 +1906,11 @@ "cats": [ 18 ], + "cookies": { + "CFID|CFTOKEN|CFMAGIC|CFGLOBALS": "" + }, "cpe": "cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:*", + "description": "Adobe ColdFusion is a server-side scripting platform for building web applications and APIs, using a language called CFML (ColdFusion Markup Language).", "headers": { "Cookie": "CFTOKEN=" }, @@ -1968,6 +1965,9 @@ ], "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", "description": "Adobe Experience Manager (AEM) is a content management solution for building websites, mobile apps and forms.", + "dom": [ + "div[class*='parbase'], div[data-component-path*='jcr:'], div[class*='aem-Grid']" + ], "html": [ "
]+data-component-path=\"[^\"+]jcr:", @@ -1987,12 +1987,22 @@ "/etc\\.clientlibs/" ], "scripts": [ - "aem-(?:GridColumn|apps/)" + "aem-(?:GridColumn|apps/)|AEMMode" ], - "website": "https://www.adobe.com/marketing/experience-manager.html", - "dom": [ - "div[class*='parbase'], div[data-component-path*='jcr:'], div[class*='aem-Grid']" - ] + "website": "https://www.adobe.com/marketing/experience-manager.html" + }, + "Adobe Experience Manager Edge Delivery Services": { + "cats": [ + 1 + ], + "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", + "description": "Edge Delivery Services in Adobe Experience Manager Sites as a Cloud Service, also know as Helix, Franklin, Next-Generation Composability is a fast and lightweight content management system from Adobe.", + "icon": "Adobe Experience Platform.svg", + "scriptSrc": [ + "^.+/scripts/aem\\.js$", + "^.+/scripts/lib-franklin\\.js$" + ], + "website": "https://www.aem.live" }, "Adobe Experience Manager Franklin": { "cats": [ @@ -2000,10 +2010,13 @@ ], "cpe": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:*:*:*:*", "description": "Adobe Experience Manager Franklin, also known as Project Helix or Composability, is a new way to publish AEM pages using Google Drive or Microsoft Office via Sharepoint. Instead of components, Franklin uses blocks to build pages. Blocks are pieces of a document that will be transformed into web page content.", - "icon": "Adobe Experience Manager Franklin.svg", "excludes": [ "Adobe Experience Manager" ], + "icon": "Adobe Experience Manager Franklin.svg", + "js": { + "hlx.RUM_MANUAL_ENHANCE": "" + }, "scriptSrc": [ "^.+/scripts/lib-franklin\\.js$" ], @@ -2054,6 +2067,9 @@ 17 ], "description": "Adobe Fonts is a web-based service providing access to a vast library of high-quality fonts for web and print design.", + "dom": [ + "link[href*='use.typekit.net'], link[href*='use.typekit.com']" + ], "html": [ "]*href=\"[^\"]+use\\.typekit\\.(?:net|com)" ], @@ -2156,6 +2172,25 @@ "saas": true, "website": "https://www.adobe.com/marketing/target.html" }, + "AdOcean": { + "cats": [ + 36 + ], + "icon": "AdOcean.svg", + "implies": [ + "Gemius" + ], + "js": { + "ado.master": "", + "ado.placement": "", + "ado.slave": "" + }, + "scriptSrc": [ + "adocean\\.pl/files/js/ado\\.js", + "adocean\\.pl\\;confidence:80" + ], + "website": "https://adocean-global.com" + }, "Adomik": { "cats": [ 36 @@ -2176,26 +2211,50 @@ "adonis-session": "", "adonis-session-values": "" }, + "description": "AdonisJS is a Node.js web application framework that follows the MVC pattern, simplifying web development with features like ORM, authentication, and WebSockets.", + "dom": [ + "link[href*='adonisjs.com/'][rel='canonical']" + ], "icon": "AdonisJS.svg", "implies": [ "Node.js" ], - "website": "https://adonisjs.com", "oss": true, - "dom": [ - "link[href*='adonisjs.com/'][rel='canonical']" - ], - "description": "AdonisJS is a Node.js web application framework that follows the MVC pattern, simplifying web development with features like ORM, authentication, and WebSockets." + "website": "https://adonisjs.com" }, - "Adoric": { + "AdOpt": { "cats": [ - 76 + 67 ], - "description": "Adoric is a lead generation tool for personalized website engagement and conversion optimisation (CRO) platform.", - "dom": [ - "link[href*='.adoric-om.com']" + "description": "AdOpt is a consent tool that prioritises privacy and usability towards the LGPD.", + "icon": "AdOpt.svg", + "implies": [ + "Svelte" ], - "icon": "Adoric.svg", + "js": { + "adoptApp.domain": "", + "adopt_website_code": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "tag\\.goadopt\\.io/" + ], + "website": "https://goadopt.io" + }, + "Adoric": { + "cats": [ + 76 + ], + "description": "Adoric is a lead generation tool for personalized website engagement and conversion optimisation (CRO) platform.", + "dom": [ + "link[href*='.adoric-om.com']" + ], + "icon": "Adoric.svg", "js": { "IS_ADORIC_LOADED": "", "__adoric__": "" @@ -2211,6 +2270,136 @@ ], "website": "https://adoric.com" }, + "AdRecover": { + "cats": [ + 36 + ], + "description": "AdRecover is a tool that helps online publishers monetise their Adblock inventory.", + "icon": "adrecover.svg", + "js": { + "adRecover.ap": "" + }, + "website": "https://www.adrecover.com" + }, + "AdRiver": { + "cats": [ + 36 + ], + "description": "AdRiver is a company which provide internet advertising management and audit software.", + "dom": [ + "link[href*='.adriver.ru'], img[src*='.adriver.ru'], iframe[src*='.adriver.ru']" + ], + "icon": "AdRiver.png", + "js": { + "AdriverCounter": "", + "AdriverPrebid": "", + "adfoxBiddersMap.adriver": "", + "adriver": "" + }, + "pricing": [ + "payg" + ], + "saas": true, + "scriptSrc": [ + "\\.adriver\\.ru/" + ], + "website": "https://adriver.ru" + }, + "AdRoll": { + "cats": [ + 36, + 77 + ], + "description": "AdRoll is a digital marketing technology platform that specialises in retargeting.", + "dom": [ + "link[href*='.adroll.com']" + ], + "icon": "AdRoll.svg", + "js": { + "adroll_adv_id": "", + "adroll_pix_id": "", + "adroll_version": "([\\d\\.]+)\\;version:\\1" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "(?:a|s)\\.adroll\\.com" + ], + "scripts": [ + "(?:d|s)\\.adroll\\.com/" + ], + "website": "https://adroll.com" + }, + "AdRoll CMP System": { + "cats": [ + 67 + ], + "description": "AdRoll CMP System is a consent management solution.", + "icon": "AdRoll.svg", + "js": { + "__adroll_consent": "", + "__adroll_consent_is_gdpr": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://www.adroll.com/features/consent-management" + }, + "AdScale": { + "cats": [ + 36 + ], + "description": "AdScale is a cloud-based, AI-powered performance optimisation platform which utilises machine learning to automate and optimise AdWords campaigns across Google Search, Google Shopping, Google Display, and YouTube.", + "icon": "AdScale.svg", + "js": { + "_adscale": "", + "adscaleAddToCart": "", + "adscaleViewProduct": "" + }, + "pricing": [ + "mid", + "recurring", + "payg" + ], + "saas": true, + "scriptSrc": [ + "\\.adscale\\.com/" + ], + "website": "https://www.adscale.com" + }, + "AdThrive": { + "cats": [ + 36 + ], + "description": "AdThrive is an online advertising network aka ad provider for bloggers for blog monetisation.", + "icon": "AdThrive.png", + "js": { + "adthrive": "", + "adthriveVideosInjected": "" + }, + "saas": true, + "scriptSrc": [ + "ads\\.adthrive\\.com" + ], + "website": "https://www.adthrive.com" + }, + "Adtriba": { + "cats": [ + 32 + ], + "description": "Adtriba is a platform that captures all marketing touchpoints and calculates the profitability of each campaign using big data technology and AI.", + "icon": "Adtriba.svg", + "saas": true, + "scripts": [ + "\\.adtriba\\.com" + ], + "website": "https://funnel.io/adtriba" + }, "Adtribute": { "cats": [ 10 @@ -2498,6 +2687,18 @@ ], "website": "https://www.affirm.com" }, + "Aforest LMS": { + "cats": [ + 21 + ], + "description": "AFOREST LMS is a training management system that supports the entire training cycle, including client needs assessment, course organization, learner tracking, quality control, assessments, certification, and e-learning integration, with invoicing capabilities.", + "icon": "AforestLMS.svg", + "meta": { + "publisher": "^Aforest Lux - C.I.D.$" + }, + "saas": true, + "website": "https://www.groupe-aforest.com" + }, "Afosto": { "cats": [ 6 @@ -2506,6 +2707,9 @@ "X-Powered-By": "Afosto SaaS BV\\;version:2.0" }, "icon": "Afosto.svg", + "scripts": [ + "\\.afosto\\.nl/" + ], "website": "https://afosto.com" }, "AfterBuy": { @@ -2529,6 +2733,43 @@ ], "website": "https://www.afterbuy.de" }, + "Afterpay": { + "cats": [ + 41, + 91 + ], + "cpe": "cpe:2.3:a:afterpay:afterpay:*:*:*:*:*:*:*:*", + "description": "Afterpay is a 'buy now, pay later' platform that makes it possible to pay off purchased goods in fortnightly instalments.", + "dom": [ + "#afterpay, .afterpay, .AfterpayMessage, [aria-label='Afterpay'], link[href*='/wp-content/plugins/afterpay-gateway-for-woocommerce/']" + ], + "icon": "afterpay.svg", + "js": { + "AfterPay": "", + "Afterpay": "", + "Afterpay.version": "([\\d\\.]+)\\;version:\\1", + "AfterpayAttractWidget": "", + "AfterpayGenericErrorHtml": "", + "AfterpayWidgetHtml": "", + "afterpay_product": "", + "checkout.enabledpayments.afterpay": "^true$" + }, + "requiresCategory": [ + 6 + ], + "saas": true, + "scriptSrc": [ + "portal\\.afterpay\\.com", + "static\\.afterpay\\.com", + "present-afterpay\\.js", + "afterpay-products\\.min\\.js", + "js\\.stripe\\.com/v3/fingerprinted/js/elements-afterpay-clearpay-message-.+\\.js" + ], + "scripts": [ + "AFTERPAY" + ], + "website": "https://www.afterpay.com/" + }, "AfterShip": { "cats": [ 107 @@ -2564,38 +2805,25 @@ ], "website": "https://www.aftership.com/returns" }, - "Afterpay": { + "AFThemes CoverNews": { "cats": [ - 41, - 91 + 80 ], - "cpe": "cpe:2.3:a:afterpay:afterpay:*:*:*:*:*:*:*:*", - "description": "Afterpay is a 'buy now, pay later' platform that makes it possible to pay off purchased goods in fortnightly instalments.", - "dom": [ - "#afterpay, .afterpay, .AfterpayMessage, [aria-label='Afterpay'], link[href*='/wp-content/plugins/afterpay-gateway-for-woocommerce/']" + "description": "AFThemes CoverNews is a clean and elegant free WordPress theme that is perfect for online blog and magazine.", + "icon": "AFThemes.svg", + "pricing": [ + "freemium", + "onetime", + "recurring", + "low" ], - "icon": "afterpay.svg", - "js": { - "Afterpay": "", - "Afterpay.version": "([\\d\\.]+)\\;version:\\1", - "AfterpayAttractWidget": "", - "AfterpayGenericErrorHtml": "", - "AfterpayWidgetHtml": "", - "afterpay_product": "", - "checkout.enabledpayments.afterpay": "^true$" - }, - "requiresCategory": [ - 6 + "requires": [ + "WordPress" ], - "saas": true, "scriptSrc": [ - "portal\\.afterpay\\.com", - "static\\.afterpay\\.com", - "present-afterpay\\.js", - "afterpay-products\\.min\\.js", - "js\\.stripe\\.com/v3/fingerprinted/js/elements-afterpay-clearpay-message-.+\\.js" + "/wp-content/themes/covernews(?:-pro)?/" ], - "website": "https://www.afterpay.com/" + "website": "https://afthemes.com/products/covernews" }, "Age Gate": { "cats": [ @@ -2618,30 +2846,146 @@ ], "website": "https://wordpress.org/plugins/age-gate" }, - "Agoda": { + "Agendize": { "cats": [ - 104 + 72 ], - "description": "Agoda is an online travel platform offering its services globally via its app and website.", - "dom": [ - "link[href*='banner.agoda.com']" + "description": "Agendize is a next-generation, all-in-one platform that streamlines scheduling, secures data, and improves the performance and efficiency of appointment management.", + "icon": "Agendize.svg", + "pricing": [ + "low", + "recurring", + "poa" ], - "icon": "Agoda.svg", + "saas": true, + "scriptSrc": [ + "app\\.agendize\\.com/" + ], + "website": "https://www.agendize.com" + }, + "AgentFire": { + "cats": [ + 32 + ], + "description": "AgentFire is a platform designed for the real estate industry, offering tools and features that help agents capitalize on digital opportunities for marketing, lead generation, and client engagement.", + "icon": "AgentFire.svg", "js": { - "agoda": "", - "agoda_ad_client": "" + "AgentFire.Api": "", + "AgentFire_Oauth2": "", + "AgentFire_Settings": "" }, "pricing": [ "poa" ], "saas": true, - "website": "https://www.agoda.com" + "website": "https://agentfire.com" }, - "Ahoy": { + "Agile CRM": { "cats": [ - 10 + 53 ], - "cookies": { + "description": "Agile CRM is a software for Customer Relationship Management (CRM) that provides sales and marketing automation features for businesses.", + "icon": "AgileCRM.svg", + "js": { + "AgileCRMTracker": "", + "Agile_API": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://www.agilecrm.com" + }, + "Agility CMS": { + "cats": [ + 1 + ], + "description": "Agility CMS is an enterprise-level content management system provider offering scalable solutions for managing digital content across multiple platforms.", + "icon": "Agility.svg", + "meta": { + "generator": "^Agility CMS$" + }, + "pricing": [ + "high", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.agilitycms\\.com/" + ], + "website": "https://agilitycms.com" + }, + "Agillic": { + "cats": [ + 32 + ], + "description": "Agillic is a Nordic marketing automation platform that delivers scalable, personalized campaigns while ensuring operational efficiency and full GDPR compliance.", + "icon": "Agillic.svg", + "saas": true, + "scriptSrc": [ + "\\.agilliccdn\\.com" + ], + "scripts": [ + "\\.agillic\\.eu" + ], + "website": "https://agillic.com" + }, + "Agoda": { + "cats": [ + 104 + ], + "description": "Agoda is an online travel platform offering its services globally via its app and website.", + "dom": [ + "link[href*='banner.agoda.com']" + ], + "icon": "Agoda.svg", + "js": { + "agoda": "", + "agoda_ad_client": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.agoda.com" + }, + "Agora": { + "cats": [ + 62 + ], + "description": "Agora is a real-time engagement platform that provides infrastructure for interactive communication across applications.", + "headers": { + "Content-Security-Policy": "\\.agora\\.io" + }, + "icon": "Agora.svg", + "pricing": [ + "mid", + "recurring", + "payg", + "poa" + ], + "website": "https://www.agora.io" + }, + "Agorize": { + "cats": [ + 101 + ], + "description": "Agorize is a platform that enables businesses to identify and connect with talent through innovation challenges and collaborative programs.", + "icon": "Agorize.svg", + "saas": true, + "scriptSrc": [ + "\\.fs\\.agorize\\.com" + ], + "website": "https://www.agorize.com" + }, + "Ahoy": { + "cats": [ + 10 + ], + "cookies": { "ahoy_track": "", "ahoy_visit": "", "ahoy_visitor": "" @@ -2672,46 +3016,20 @@ ], "website": "https://ahrefs.com" }, - "AiSpeed": { - "cats": [ - 92, - 100 - ], - "description": "AiSpeed is a shopify app focused on improving site speed.", - "icon": "AiSpeed.png", - "implies": [ - "Shopify" - ], - "js": { - "aispeed_init": "" - }, - "scriptSrc": [ - "aispeed\\.js" - ], - "website": "https://apps.shopify.com/aispeed" - }, - "AiTrillion": { + "AI LOG": { "cats": [ 32 ], - "description": "AiTrillion is a marketing automation platform for ecommerce, offering tools for email campaigns, customer segmentation, loyalty programs, and product recommendations.", - "icon": "AiTrillion.svg", + "description": "AI LOG is a marketing automation and fraud click prevention tool.", + "icon": "AI-LOG.svg", "js": { - "aioAccessModule": "", - "aioMeta.meta_e": "" + "ai_getScript_load": "" }, - "pricing": [ - "mid", - "recurring" - ], - "requiresCategory": [ - 6 - ], "saas": true, "scriptSrc": [ - "\\.aitrillion\\.com/" + "\\.ai-log\\.biz/" ], - "website": "https://www.aitrillion.com" + "website": "https://www.ai-log.biz/" }, "Aidbase": { "cats": [ @@ -2743,6 +3061,39 @@ "saas": true, "website": "https://www.aiden.cx" }, + "Aimbase": { + "cats": [ + 32 + ], + "description": "Aimbase is a marketing automation platform designed to streamline campaign management, customer engagement, and data-driven decision-making.", + "icon": "Aimbase.svg", + "js": { + "Aimbase.Analytics": "" + }, + "saas": true, + "scriptSrc": [ + "ws\\.aimbase\\.com" + ], + "website": "https://aimbase.com" + }, + "AIMEOS": { + "cats": [ + 6 + ], + "description": "Aimeos is a PHP ecommerce framework designed for custom online shops, multi-vendor marketplaces, and complex B2B applications.", + "dom": [ + "link[href*='aimeos.com']" + ], + "icon": "aimeos.svg", + "js": { + "Aimeos": "", + "AimeosAccountFavorite": "", + "AimeosBasketMini": "", + "AimeosCatalog": "" + }, + "oss": true, + "website": "https://aimeos.org" + }, "Aimerce": { "cats": [ 32, @@ -2783,36 +3134,60 @@ ], "website": "https://aimtell.com" }, - "Air360": { + "Aimy": { "cats": [ - 10 + 72 ], - "description": "Air360 is a technology company that specialises in performance-enhancing, mobile and ecommerce experience analytics.", - "icon": "Air360.svg", + "description": "Aimy is a salon management platform that provides scheduling tools, a virtual assistant, and calendar maintenance features to streamline salon operations.", + "icon": "Aimy.svg", "js": { - "Air360.SDK_Version": "^([\\d\\.]+)$\\;version:\\1" + "MeetAimyMeta": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "widget\\.meetaimy\\.com" + ], + "website": "https://meetaimy.com" + }, + "AINIRO": { + "cats": [ + 52 + ], + "description": "AINIRO is a provider of AI chatbots, AI agents, and custom AI solutions designed for various applications.", + "icon": "AINIRO.svg", + "js": { + "ainiro.init": "", + "ainiro_faq_question": "" }, "pricing": [ "mid", "recurring" ], "saas": true, - "website": "https://www.air360.io" + "scriptSrc": [ + "\\.ainiro\\.io" + ], + "website": "https://ainiro.io" }, - "AirRobe": { + "Air360": { "cats": [ - 5 + 10 ], - "description": "AirRobe partners with brands and retailers to power the circular fashion economy.", - "icon": "AirRobe.svg", + "description": "Air360 is a technology company that specialises in performance-enhancing, mobile and ecommerce experience analytics.", + "icon": "Air360.svg", "js": { - "airrobe.app_id": "" + "Air360.SDK_Version": "^([\\d\\.]+)$\\;version:\\1" }, "pricing": [ - "payg" + "mid", + "recurring" ], "saas": true, - "website": "https://airrobe.com" + "website": "https://www.air360.io" }, "Airbridge": { "cats": [ @@ -2838,29 +3213,45 @@ 52 ], "description": "Aircall is a cloud-based phone system for customer support and sales teams.", - "icon": "aircall.png", + "icon": "Aircall.svg", "saas": true, "scriptSrc": [ - "^https?://cdn\\.aircall\\.io/" + "cdn\\.aircall\\.io" ], "website": "https://aircall.io" }, + "Airdata": { + "cats": [ + 104 + ], + "description": "Airdata is a ticket booking system for agents in Vietnam, offering unique features to maximize benefits for businesses in managing and selling flight tickets.", + "icon": "Airdata.svg", + "js": { + "BOOKING_BASE_API_URL": "api\\.airdata\\.vn" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://airdata.vn" + }, "Airee": { "cats": [ 31, 88 ], + "description": "Airee offers scalable web hosting solutions tailored for internet shops and websites, with enhanced performance, DDoS protection, high availability, and detailed speed and security analytics.", "headers": { "Server": "^Airee" }, "icon": "Airee.svg", - "website": "https://xn--80aqc2a.xn--p1ai", - "description": "Airee offers scalable web hosting solutions tailored for internet shops and websites, with enhanced performance, DDoS protection, high availability, and detailed speed and security analytics.", - "saas": true, "pricing": [ "recurring", "mid" - ] + ], + "saas": true, + "website": "https://xn--80aqc2a.xn--p1ai" }, "Airform": { "cats": [ @@ -2874,6 +3265,21 @@ "oss": true, "website": "https://airform.io" }, + "AirRobe": { + "cats": [ + 5 + ], + "description": "AirRobe partners with brands and retailers to power the circular fashion economy.", + "icon": "AirRobe.svg", + "js": { + "airrobe.app_id": "" + }, + "pricing": [ + "payg" + ], + "saas": true, + "website": "https://airrobe.com" + }, "Airship": { "cats": [ 32, @@ -2890,6 +3296,23 @@ ], "website": "https://www.airship.com" }, + "Airship CRM": { + "cats": [ + 53 + ], + "description": "Airship CRM is a hospitality-focused platform that centralizes data, enables tailored email communication, and enhances visit frequency.", + "icon": "AirshipCRM.svg", + "pricing": [ + "high", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.airship\\.co\\.uk/" + ], + "website": "https://airship.co.uk" + }, "Airtable": { "cats": [ 5 @@ -2907,34 +3330,93 @@ "saas": true, "website": "https://www.airtable.com" }, - "AitThemes": { + "AiSpeed": { "cats": [ - 80 + 92, + 100 + ], + "description": "AiSpeed is a shopify app focused on improving site speed.", + "icon": "AiSpeed.png", + "implies": [ + "Shopify" ], - "description": "AitThemes is a customisable theme suitable for business, ecommerce, content, and directory websites.", - "icon": "AitThemes.svg", "js": { - "AitSettings": "", - "ait": "" - }, - "meta": { - "Author": "AitThemes\\.club" + "aispeed_init": "" }, - "pricing": [ - "onetime", - "low", - "recurring" - ], - "requires": [ - "WordPress" + "scriptSrc": [ + "aispeed\\.js" ], - "saas": true, - "website": "https://www.ait-themes.club" + "website": "https://apps.shopify.com/aispeed" }, - "Aivo": { + "AiTrillion": { "cats": [ - 52, - 53 + 32 + ], + "description": "AiTrillion is a marketing automation platform for ecommerce, offering tools for email campaigns, customer segmentation, loyalty programs, and product recommendations.", + "icon": "AiTrillion.svg", + "js": { + "aioAccessModule": "", + "aioMeta.meta_e": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "requiresCategory": [ + 6 + ], + "saas": true, + "scriptSrc": [ + "\\.aitrillion\\.com/" + ], + "website": "https://www.aitrillion.com" + }, + "AitThemes": { + "cats": [ + 80 + ], + "description": "AitThemes is a customisable theme suitable for business, ecommerce, content, and directory websites.", + "icon": "AitThemes.svg", + "js": { + "AitSettings": "", + "ait": "" + }, + "meta": { + "Author": "AitThemes\\.club" + }, + "pricing": [ + "onetime", + "low", + "recurring" + ], + "requires": [ + "WordPress" + ], + "saas": true, + "website": "https://www.ait-themes.club" + }, + "Aiva": { + "cats": [ + 53 + ], + "description": "Aiva is a real estate lead conversion platform that qualifies and engages leads 24/7.", + "icon": "Aiva.svg", + "js": { + "__AivaLiveChat": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.hireaiva\\.com" + ], + "website": "https://hireaiva.com" + }, + "Aivo": { + "cats": [ + 52, + 53 ], "description": "Aivo is a conversational AI platform offering omnichannel tools and live agent solutions to automate customer experiences.", "icon": "Aivo.svg", @@ -2951,6 +3433,18 @@ "saas": true, "website": "https://www.aivo.co" }, + "Ajax.NET Professional": { + "cats": [ + 12 + ], + "description": "Ajax.NET Professional is a legacy framework that generates JavaScript proxies to call .NET server-side methods via AJAX.", + "js": { + "AjaxPro": "", + "AjaxPro.version": "^([\\d\\.]+)$\\;version:\\1" + }, + "oss": true, + "website": "https://github.com/michaelschwarz/Ajax.NET-Professional" + }, "Akamai": { "cats": [ 31 @@ -2988,27 +3482,25 @@ "saas": true, "website": "https://www.akamai.com/us/en/products/security/bot-manager.jsp" }, - "Akamai Web Application Protector": { + "Akamai Connected Cloud": { "cats": [ - 16 + 62 ], - "description": "Akamai Web Application Protector is designed for companies looking for a more automated approach to web application firewall (WAF) and distributed denial-of-service (DDoS) security.", + "description": "Akamai Connected Cloud is a distributed cloud platform that combines core compute, edge services, and security to run applications at global scale.", + "headers": { + "server": "^volt-adc$", + "x-volterra-location": "" + }, "icon": "Akamai.svg", "implies": [ "Akamai" ], - "js": { - "AKSB": "\\;confidence:50" - }, "pricing": [ - "poa" - ], - "saas": true, - "scriptSrc": [ - "ds-aksb-a\\.akamaihd\\.net/aksb.min.js", - "aksb\\.min\\.js\\;confidence:50" + "payg", + "recurring" ], - "website": "https://www.akamai.com/us/en/products/security/web-application-protector-enterprise-waf-firewall-ddos-protection.jsp" + "saas": false, + "website": "https://www.akamai.com/solutions/cloud-computing" }, "Akamai mPulse": { "cats": [ @@ -3018,6 +3510,9 @@ "akaas_AB-Testing": "" }, "description": "Akamai mPulse is a real user monitoring (RUM) solution that enables companies to monitor, find, and fix website and application performance issues.", + "dom": [ + "script#boomr-if-as, script#boomr-scr-as, link[href*='s.go-mpulse.net/boomerang/'][rel='preload']" + ], "html": [ "" ], @@ -3032,15 +3527,35 @@ "poa" ], "saas": true, - "website": "https://developer.akamai.com/akamai-mpulse-real-user-monitoring-solution", - "dom": [ - "script#boomr-if-as, script#boomr-scr-as, link[href*='s.go-mpulse.net/boomerang/'][rel='preload']" - ] + "website": "https://developer.akamai.com/akamai-mpulse-real-user-monitoring-solution" + }, + "Akamai Web Application Protector": { + "cats": [ + 16 + ], + "description": "Akamai Web Application Protector is designed for companies looking for a more automated approach to web application firewall (WAF) and distributed denial-of-service (DDoS) security.", + "icon": "Akamai.svg", + "implies": [ + "Akamai" + ], + "js": { + "AKSB": "\\;confidence:50" + }, + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "ds-aksb-a\\.akamaihd\\.net/aksb.min.js", + "aksb\\.min\\.js\\;confidence:50" + ], + "website": "https://www.akamai.com/us/en/products/security/web-application-protector-enterprise-waf-firewall-ddos-protection.jsp" }, "Akaunting": { "cats": [ 55 ], + "cpe": "cpe:2.3:a:akaunting:akaunting:*:*:*:*:*:*:*:*", "description": "Akaunting is a free and online accounting software.", "headers": { "X-Akaunting": "^Free Accounting Software$" @@ -3053,10 +3568,49 @@ "implies": [ "Laravel" ], - "cpe": "cpe:2.3:a:akaunting:akaunting:*:*:*:*:*:*:*:*", "oss": true, "website": "https://akaunting.com" }, + "Akavita": { + "cats": [ + 10, + 36 + ], + "description": "Akavita is a Russian-based service offering analytics and advertising solutions.", + "icon": "Akavita.svg", + "saas": true, + "scriptSrc": [ + "adlik\\.akavita\\.com/" + ], + "website": "https://akavita.com" + }, + "Akero": { + "cats": [ + 32 + ], + "description": "Akero is a platform that provides marketing and admissions technology designed for educational institutions.", + "icon": "Akero.svg", + "saas": true, + "scripts": [ + "\\.akerolabs\\.com" + ], + "website": "https://akerolabs.com" + }, + "Akia": { + "cats": [ + 52 + ], + "description": "Akia is a platform offering AI-powered communication tools designed to streamline messaging and guest interactions within the hospitality industry.", + "icon": "Akia.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "web\\.akia\\.ai" + ], + "website": "https://www.akia.com" + }, "Akilli Ticaret": { "cats": [ 6 @@ -3084,13 +3638,16 @@ 6 ], "description": "Akinon is a cloud-based headless commerce platform with an integrated application suite including omnichannel and marketplace capabilities, mobile and in-store solutions, and an OMS.", - "icon": "akinon.png", + "icon": "Akinon.svg", "pricing": [ "poa" ], "scriptSrc": [ "cdn-mgsm\\.akinon\\.net/" ], + "scripts": [ + "\\.akinoncloud\\.com" + ], "website": "https://www.akinon.com/" }, "Akismet": { @@ -3152,6 +3709,21 @@ ], "website": "https://www.aklamio.com" }, + "AkoCommerce": { + "cats": [ + 6 + ], + "description": "AkoCommerce is a Shopify partner based in Taiwan that provides website planning and construction, as well as ecommerce store opening consultation services.", + "icon": "AkoCommerce.svg", + "requires": [ + "Shopify" + ], + "saas": true, + "scriptSrc": [ + "app\\.akocommerce\\.com" + ], + "website": "https://akocommerce.com" + }, "Aksara CMS": { "cats": [ 1 @@ -3172,22 +3744,6 @@ "oss": true, "website": "https://aksaracms.com" }, - "AlMatjar": { - "cats": [ - 6 - ], - "description": "AlMatjar is an online store builder designed to help users create and manage ecommerce websites.", - "icon": "AlMatjar.svg", - "meta": { - "generator": "^AlMatjar.store ECommerce Builder$" - }, - "pricing": [ - "low", - "recurring" - ], - "saas": true, - "website": "https://almatjar.store" - }, "Albacross": { "cats": [ 10, @@ -3209,6 +3765,40 @@ ], "website": "https://albacross.com" }, + "Alboom Proof": { + "cats": [ + 7 + ], + "description": "Alboom Proof is a platform that provides client photo galleries, photo sales, and proofing services in one location, enabling photographers and visual artists to deliver their work.", + "dom": [ + "img[data-original*='alfred.alboompro.com/']" + ], + "icon": "Alboom.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://www.alboompro.com/ferramentas/alboom-proof" + }, + "Alboom Prosite": { + "cats": [ + 51 + ], + "description": "Alboom Prosite is a website and landing page builder for businesses.", + "icon": "Alboom.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "bifrost\\.alboompro\\.com" + ], + "website": "https://www.alboompro.com/ferramentas/alboom-prosite" + }, "Alchemer Mobile": { "cats": [ 90 @@ -3308,6 +3898,9 @@ "payg" ], "saas": true, + "scripts": [ + "algoliasearch" + ], "website": "https://www.algolia.com" }, "Algolia DocSearch": { @@ -3315,6 +3908,9 @@ 5 ], "description": "Algolia DocSearch is a search widget specifically designed for documentation websites.", + "dom": [ + "link[href*='.algolia.net'][rel='preconnect']" + ], "icon": "DocSearch.svg", "implies": [ "Algolia" @@ -3328,10 +3924,7 @@ "recurring" ], "saas": true, - "website": "https://docsearch.algolia.com", - "dom": [ - "link[href*='.algolia.net'][rel='preconnect']" - ] + "website": "https://docsearch.algolia.com" }, "Ali Reviews": { "cats": [ @@ -3346,6 +3939,21 @@ "saas": true, "website": "https://apps.shopify.com/ali-reviews" }, + "Alia": { + "cats": [ + 100, + 110 + ], + "description": "Alia is a Shopify app to design Email and SMS sign-up pop-up units", + "icon": "Alia.png", + "implies": [ + "Shopify" + ], + "js": { + "alia": "" + }, + "website": "https://www.alialearn.com/" + }, "Alibaba Cloud CDN": { "cats": [ 31 @@ -3388,6 +3996,36 @@ ], "website": "https://help.aliyun.com/document_detail/193141.html" }, + "Alimama": { + "cats": [ + 32 + ], + "description": "Alimama is a data-driven marketing technology platform that enables businesses to optimize campaigns and audience engagement through advanced analytics.", + "icon": "Alimama.svg", + "saas": true, + "scriptSrc": [ + "\\.alimama\\.com" + ], + "scripts": [ + "\\.alimama\\.com" + ], + "website": "https://www.alimama.com" + }, + "Alinea": { + "cats": [ + 1 + ], + "description": "Alinea is a Git-based content management system designed specifically for integration with Next.js projects.", + "icon": "Alinea.svg", + "meta": { + "generator": "^ALinea ([\\d.]+)\\;version:\\1" + }, + "oss": true, + "pricing": [ + "freemium" + ], + "website": "https://alinea.sh" + }, "Alive5": { "cats": [ 52 @@ -3428,6 +4066,30 @@ ], "website": "https://www.skynettechnologies.com/all-in-one-accessibility" }, + "All in One SEO": { + "cats": [ + 54, + 87 + ], + "cpe": "cpe:2.3:a:aioseo:all_in_one_seo:*:*:*:*:*:wordpress:*:*", + "description": "All in One SEO optimizes a WordPress website and its content for search engines.", + "dom": { + "script.aioseo-schema": {} + }, + "html": [ + "||" + 31 ], - "icon": "inspectlet.png", - "js": { - "__insp": "", - "__inspld": "" + "description": "Incapsula is a cloud-based application delivery platform. It uses a global content delivery network to provide web application security, DDoS mitigation, content caching, application delivery, load balancing and failover services.", + "headers": { + "X-CDN": "Incapsula" }, - "scriptSrc": [ - "cdn\\.inspectlet\\.com" - ], - "website": "https://www.inspectlet.com/" + "icon": "Incapsula.png", + "website": "https://www.incapsula.com" }, - "Instabot": { + "Incident.io": { "cats": [ - 5, - 10, - 32, - 52, - 58 + 13 ], - "description": "Instabot is a conversion chatbot that understands your users, and curates information, answers questions, captures contacts, and books meetings instantly.", - "icon": "Instabot.svg", - "js": { - "Instabot": "" + "description": "Incident.io is a Slack-integrated incident management tool used to announce, manage, and resolve all incidents in a single channel.", + "headers": { + "x-webkit-csp": "incident-io-team\\.vercel\\.app" }, - "scriptSrc": [ - "/rokoInstabot\\.js" - ], - "website": "https://instabot.io/" - }, - "Instafeed": { - "cats": [ - 100 - ], - "description": "Instafeed is an official Instagram app.", - "icon": "Instafeed.svg", + "icon": "Incident.io.svg", "pricing": [ - "freemium", "low", "recurring" ], - "requires": [ - "Shopify" - ], "saas": true, - "scriptSrc": [ - "instafeed\\.nfcube\\.com/" + "website": "https://incident.io" + }, + "Includable": { + "cats": [ + 18 ], - "website": "https://apps.shopify.com/instafeed" + "headers": { + "X-Includable-Version": "" + }, + "icon": "Includable.svg", + "website": "https://includable.com" }, - "Instafeed.js": { + "Indeed": { "cats": [ - 59 + 101 ], - "description": "A way to add Instagram photos to your website.", - "oss": true, + "description": "Indeed is a platform that provides embedded code for tracking job-related clicks and supports job search functionality.", + "icon": "Indeed.svg", + "js": { + "indeed_clk": "" + }, + "saas": true, "scriptSrc": [ - "instafeed(?:\\.min)?\\.js" + "\\.indeed\\.com" ], - "website": "https://instafeedjs.com/" + "website": "https://www.indeed.com" }, - "Instagram Feed for WordPress": { + "Index Exchange": { "cats": [ - 5, - 87 - ], - "description": "Display Instagram photos from any non-private Instagram accounts.", - "dom": [ - "link[href*='/wp-content/plugins/instagram-feed'], a[data-full-res*='/wp-content/uploads/sb-instagram-feed-images/'], img[src*='/wp-content/uploads/sb-instagram-feed-images/'], img[src*='/wp-content/plugins/instagram-feed/'], img[data-src*='/wp-content/uploads/sb-instagram-feed-images/']" + 36 ], - "oss": true, - "pricing": [ - "low" + "description": "Index Exchange is a customizable exchange technology that enables sell side media firms to monetize ad inventories programmatically and in real time.", + "icon": "Index Exchange.svg", + "website": "https://www.indexexchange.com", + "xhr": [ + "\\.casalemedia\\.com" + ] + }, + "Indexhibit": { + "cats": [ + 1 ], - "requires": [ - "WordPress" + "cpe": "cpe:2.3:a:indexhibit:indexhibit:*:*:*:*:*:*:*:*", + "dom": [ + "link[href*='ndxz-studio']" ], - "scriptSrc": [ - "instagram-feed(?:\\/js)?(?:\\/sbi-scripts)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1" + "html": [ + "<(?:link|a href) [^>]+ndxz-studio" ], - "website": "https://wordpress.org/plugins/instagram-feed/" - }, - "Instamojo": { - "cats": [ - 41 + "implies": [ + "PHP", + "Apache HTTP Server", + "Exhibit" ], - "description": "Instamojo is a Bangalore-based company that provides a platform for selling digital goods and collecting payment online.", - "icon": "instamojo.svg", - "js": { - "INITIAL_STATE.seller.avatar": "\\.instamojo\\.com/", - "Instamojo": "" + "meta": { + "generator": "Indexhibit" }, - "website": "https://www.instamojo.com/" + "website": "https://www.indexhibit.org" }, - "Instana": { + "Indexic": { "cats": [ - 10, - 13, - 78 + 104 ], - "description": "Instana is a Kubernetes-native APM tool which is built for new-stack including Microservices and lately Serverless but also supports the existing VM based stacks including several supported technologies.", - "icon": "Instana.svg", - "js": { - "ineum": "" - }, + "description": "Indexic is a booking management platform designed for tours, activities, and rental operations.", + "icon": "Indexic.svg", "pricing": [ - "low", - "recurring" + "poa" ], "saas": true, - "scriptSrc": [ - "eum\\.instana\\.io" + "scripts": [ + "\\.web\\.indexic\\.net" ], - "website": "https://www.instana.com" + "website": "https://www.indexic.net" }, - "Instant": { + "Indi": { "cats": [ - 51, - 100 - ], - "description": "Instant is a no-code, visual page builder for Shopify, allowing users to create custom landing pages and sections through a drag-and-drop interface without requiring any coding skills.", - "dom": [ - "div[class='__instant'][data-instant-version]" + 94 ], - "icon": "Instant.svg", + "description": "Indi is a video social network where everyone - artists, brands, retailers, nonprofits, celebrities and individuals - can connect with fans and supporters to interact directly with your brand utilising exclusive Video Challenges and Video Threads tailor made by you.", + "icon": "Indi.png", "js": { - "Instant.initializedVersion": "([\\d\\.]+)\\;version:\\1", - "__instantInitSliders": "" + "indi.formatStats": "", + "indiCountly.check_any_consent": "", + "indi_carousel.productCta": "" }, - "pricing": [ - "freemium", - "low", - "recurring" - ], - "requires": [ - "Shopify" - ], - "saas": true, - "website": "https://instant.so" + "website": "https://indi.com" }, - "Instant.Page": { + "Indico": { "cats": [ - 59, - 92 + 1 ], - "description": "Instant.Page is a JavaScript library which uses just-in-time preloading technique to make websites faster.", - "icon": "Instant.page.svg", + "cookies": { + "MAKACSESSION": "" + }, + "description": "Indico is an open-source event management system designed for organizing scientific conferences and workshops.", + "html": [ + "Powered by\\s+(?:CERN )?(?:CDS )?Indico( [\\d\\.]+)?\\;version:\\1" + ], + "icon": "Indico.svg", "oss": true, - "scriptSrc": [ - "instant\\.page" + "website": "https://getindico.io" + }, + "Indy": { + "cats": [ + 22 ], - "website": "https://instant.page/" + "headers": { + "Server": "Indy(?:/([\\d.]+))?\\;version:\\1" + }, + "website": "https://indyproject.org" }, - "InstantCMS": { + "Inertia.js": { "cats": [ - 1 + 12 ], - "cookies": { - "InstantCMS[logdate]": "" + "description": "Inertia.js is a protocol for creating monolithic single-page applications.", + "dom": { + "div[data-page*='component']": { + "attributes": { + "data-page": "component.+props.+url" + } + } }, - "cpe": "cpe:2.3:a:instantcms:instantcms:*:*:*:*:*:*:*:*", - "icon": "InstantCMS.png", - "implies": [ - "PHP" + "headers": { + "Vary": "X-Inertia", + "X-Inertia": "" + }, + "icon": "Inertia.svg", + "oss": true, + "website": "https://inertiajs.com" + }, + "InEvent": { + "cats": [ + 104 ], + "description": "InEvent is event management software designed to streamline planning, organization, and execution of virtual, hybrid, and in-person events.", + "icon": "InEvent.svg", "meta": { - "generator": "InstantCMS" + "apiURL": "inevent\\.com", + "namespace": "^InEvent$" }, - "website": "https://www.instantcms.ru" + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://inevent.com" }, - "InstantClick": { + "InfernoJS": { "cats": [ - 59, - 92 + 12 ], - "description": "InstantClick is a JavaScript library that speeds up your website, making navigation faster.", - "icon": "InstantClick.svg", + "description": "InfernoJS is a JavaScript library designed for building user interfaces, known for its high performance and similarity to React.js in terms of API and structure.", + "icon": "InfernoJS.svg", "js": { - "InstantClick": "" + "Inferno": "", + "Inferno.version": "^(.+)$\\;version:\\1" }, "oss": true, - "scriptSrc": [ - "instantclick\\.min\\.js" - ], - "website": "https://instantclick.io/" + "website": "https://infernojs.org" }, - "InstantGeo": { + "Infinite Scroll": { "cats": [ 59 ], - "description": "InstantGeo is a service that provides IP geolocation to web pages", - "icon": "InstantGeo.svg", + "description": "jQuery plugin for infinite scrolling.", + "icon": "Infinite Scroll.svg", "js": { - "geojs": "" + "infinitescroll": "" }, "pricing": [ - "freemium" + "onetime" ], - "saas": true, "scriptSrc": [ - "js\\.instantgeo\\.info", - "script\\.instantgeo\\.info" + "infinite-?scroll(?:\\.pkgd)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1" ], - "website": "https://instantgeo.info" + "website": "https://infinite-scroll.com/" }, - "Instapage": { + "Infinity": { "cats": [ - 51, - 74, - 10 + 47 ], - "description": "Instapage is a cloud-based landing page platform designed for marketing teams and agencies.", - "icon": "Instapage.svg", - "implies": [ - "Lua", - "Node.js" + "description": "Infinity is an all-in-one workspace that allows project organization, task tracking, and team collaboration in a centralized platform.", + "dom": [ + "iframe[src*='app.startinfinity.com/']" ], - "js": { - "_instapageSnowplow": "", - "instapageSp": "" - }, + "icon": "Infinity.svg", "pricing": [ "mid", - "recurring" + "recurring", + "poa" ], "saas": true, - "scriptSrc": [ - "cdn\\.instapagemetrics\\.com", - "heatmap-events-collector\\.instapage\\.com" + "scripts": [ + "app\\.startinfinity\\.com" ], - "website": "https://instapage.com" + "website": "https://startinfinity.com" }, - "Instatus": { + "Influence": { "cats": [ - 13 + 32 ], - "description": "Instatus is a status and incident communication tool.", - "dom": { - "a.footer__link": { - "text": "Powered by Instatus" - }, - "a[href*='instatus.com'][target='_blank'], iframe[src*='.instatus.com']": { - "exists": "" - } + "description": "Influence is a conversion optimisation tool for ecommerce that leverages real-time social proof.", + "icon": "Influence.svg", + "js": { + "Influence": "" }, - "icon": "Instatus.svg", "pricing": [ - "freemium", - "low", + "mid", "recurring" ], "saas": true, - "website": "https://instatus.com" + "scriptSrc": [ + "cdn\\.useinfluence\\.co/" + ], + "website": "https://useinfluence.co" }, - "Intaker": { + "Influenster": { "cats": [ - 52 + 90 ], - "description": "Intaker is a service that enables law firms to send and receive text messages with clients, including automated follow-up messages.", - "dom": { - "link[href*='chat-api.intaker.com/api/']": { - "attributes": { - "href": "api/v([\\d]+)\\;version:\\1" - } - } - }, - "icon": "Intaker.svg", + "description": "Influenster is a product reviews widget that displays feedback and ratings from shoppers on websites.", + "icon": "Influenster.svg", "js": { - "Intaker": "" + "showInfluensterWidget": "" }, "saas": true, - "website": "https://intaker.com" + "scriptSrc": [ + "widget\\.influenster\\.com" + ], + "website": "https://www.influenster.com" }, - "Integral Ad Science": { + "Influx CMS": { "cats": [ - 36 + 1, + 32 ], - "description": "Integral Ad Science is an American publicly owned technology company that analyses the value of digital advertising placements.", + "description": "Influx CMS is a medical marketing platform specialising in custom web design and marketing for doctors, surgeons, and medical spas.", "dom": [ - "link[href*='.adsafeprotected.com']" + "a[href*='www.influxmarketing.com'] > svg[class*='influx-footer-logo']" ], - "icon": "Integral Ad Science.svg", - "pricing": [ - "poa" + "icon": "InfluxCMS.svg", + "meta": { + "generator": "^Influx CMS$" + }, + "requires": [ + "React", + "Gatsby" ], "saas": true, - "scriptSrc": [ - "\\.adsafeprotected\\.com/" - ], - "website": "https://integralads.com" + "website": "https://www.influxmarketing.com" }, - "Intel Active Management Technology": { + "Infogram": { "cats": [ - 22, - 46 + 5 ], - "cpe": "cpe:2.3:a:intel:active_management_technology:*:*:*:*:*:*:*:*", - "description": "Intel Active Management Technology (AMT) is a proprietary remote management and control system for personal computers with Intel CPUs.", - "headers": { - "Server": "Intel\\(R\\) Active Management Technology(?: ([\\d.]+))?\\;version:\\1" - }, - "icon": "Intel Active Management Technology.svg", - "website": "https://intel.com" - }, - "Intelligems": { - "cats": [ - 74 + "description": "Infogram is a web-based data visualisation and infographics platform.", + "dom": [ + "iframe[src*='.infogram.com/']" ], - "description": "Intelligems is a tool that facilitates profit optimization for ecommerce businesses by allowing easy testing of prices, discounts, and shipping rates with the aim of maximizing margins.", - "icon": "Intelligems.svg", + "icon": "Infogram.svg", "js": { - "webpackChunk_intelligems_shopify_plugin": "" + "InfogramEmbeds": "" }, "pricing": [ - "mid", + "freemium", + "low", "recurring" ], "saas": true, - "scriptSrc": [ - "cdn\\.intelligems\\.io/[\\w]+\\.js" - ], - "website": "https://intelligems.io" + "website": "https://infogram.com" }, - "Intellimize": { + "Infolinks": { "cats": [ - 74, - 76 + 36 ], - "description": "Intellimize is a platform that utilizes machine learning to optimize website experiences and increase conversions in real-time.", - "icon": "Intellimize.svg", + "description": "Infolinks is an online advertising platform for publishers and advertisers.", + "icon": "Infolinks.png", "js": { - "intellimize": "" + "infolinks_pid": "", + "infolinks_wsid": "" }, "pricing": [ - "high", - "recurring" + "payg", + "freemium" ], "saas": true, - "scriptSrc": [ - "\\.intellimize\\.co/" - ], - "website": "https://www.intellimize.com" + "website": "https://www.infolinks.com" }, - "IntenseDebate": { + "Infomaniak": { "cats": [ - 15 + 88 ], - "description": "IntenseDebate is a blog commenting system that supports Typepad, Blogger and Wordpress blogs. The system allows blog owners to track and moderate comments from one place with features like threading, comment analytics, user reputation, and comment aggregation.", - "icon": "IntenseDebate.svg", - "scriptSrc": [ - "intensedebate\\.com" + "description": "Infomaniak is a hosting company based in Geneva, Switzerland.", + "dns": { + "SOA": [ + "\\.infomaniak\\.ch" + ] + }, + "icon": "Infomaniak.svg", + "pricing": [ + "low", + "recurring" ], - "website": "https://intensedebate.com" + "website": "https://www.infomaniak.com" }, - "Interact": { + "INFOnline": { "cats": [ - 5 + 10 ], - "description": "Interact is a tool for creating online quizzes.", - "icon": "Interact.svg", + "icon": "INFOnline.png", "js": { - "InteractApp.name": "InteractApp", - "InteractPromotionObject": "" + "iam_data": "", + "szmvars": "" }, - "pricing": [ - "freemium", - "low", - "recurring" - ], - "saas": true, "scriptSrc": [ - "\\.tryinteract\\.com/" + "^https?://(?:[^/]+\\.)?i(?:oam|v)wbox\\.de/" ], - "website": "https://www.tryinteract.com" + "website": "https://www.infonline.de" }, - "InteractiveCalculator": { + "Infor": { "cats": [ - 5 + 53 ], - "description": "InteractiveCalculator is a platform that enables users to create customized calculators that can be embedded on their website.", - "icon": "InteractiveCalculator.svg", + "description": "Infor is a resource planning solution designed to streamline operations, manage workflows, and support data-driven decision-making across various business functions.", + "dom": [ + "iframe[src*='.cloud.infor.com/']" + ], + "icon": "Infor.svg", "pricing": [ - "freemium", - "low", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "embed\\.interactivecalculator\\.com/" + "\\.cloud\\.infor\\.com" ], - "website": "https://www.interactivecalculator.com" + "website": "https://www.infor.com" }, - "Interakt": { + "Informa Markets": { "cats": [ - 52 - ], - "description": "Interakt is a messaging platform tailored for business communication, offering features such as secure messaging, file sharing, and customer support functionalities.", - "icon": "Interakt.svg", - "pricing": [ - "low", - "recurring", - "poa" + 32 ], + "description": "Informa Markets is a platform that facilitates trade, innovation, and growth across various industries and specialist markets.", + "icon": "InformaMarkets.svg", "saas": true, - "scriptSrc": [ - "app\\.interakt\\.ai/" + "scripts": [ + "connect\\.informamarkets\\.com" ], - "website": "https://www.interakt.shop" + "website": "https://www.informamarkets.com" }, - "Intercom": { + "Informizely": { "cats": [ - 52, - 53 + 73 ], - "description": "Intercom is an American software company that produces a messaging platform which allows businesses to communicate with prospective and existing customers within their app, on their website, through social media, or via email.", + "description": "Informizely is a customer feedback platform used to run surveys on websites and applications to understand user behavior and generate actionable insights.", "dom": [ - "link[href^='https://widget.intercom.io']", - "div.live-chat-loader-placeholder", - "iframe#intercom-frame" + "script[id*='_informizely_script_tag']" ], - "icon": "Intercom.svg", - "js": { - "Intercom": "" - }, + "icon": "Informizely.svg", "pricing": [ "mid", "recurring" ], "saas": true, - "scriptSrc": [ - "(?:api\\.intercom\\.io/api|static\\.intercomcdn\\.com/intercom\\.v1)" - ], - "website": "https://www.intercom.com" + "website": "https://www.informizely.com" }, - "Intercom Articles": { + "InforUMobile": { "cats": [ - 4 + 52 ], - "description": "Intercom Articles is a tool to create, organise and publish help articles.", - "html": [ - "]+>We run on Intercom" + "description": "InforUMobile is a multi-channel system that enables digital communication with customers, offering various channels for interacting and engaging with users, developed by the Shamir Systems Group.", + "dom": [ + "iframe[src*='bot.frontcld.com/bot/chat']" ], - "icon": "Intercom.svg", - "website": "https://www.intercom.com/articles" + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.inforu.co.il" }, - "Internet Brands": { + "Infoset": { "cats": [ - 36 + 52, + 53 ], - "description": "Internet Brands is a technology company that operates a variety of web portals and online communities, providing information and services to consumers and businesses across a range of industries.", - "dom": { - "footer > div > form": { - "text": "Internet Brands" - } + "description": "Infoset is an advanced communication and support solutions.", + "icon": "Infoset.svg", + "js": { + "InfosetChat": "", + "InfosetRoot": "" }, - "icon": "Internet Brands.svg", "pricing": [ - "poa", - "payg" + "recurring", + "low" ], "saas": true, - "website": "https://www.internetbrands.com" + "website": "https://infoset.app" }, - "Intersection Observer": { + "Infront": { "cats": [ - 92, - 59 + 1 ], - "description": "Intersection Observer is a browser API that provides a way to observe the visibility and position of a DOM element relative to the containing root element or viewport.", - "icon": "W3C.svg", - "scriptSrc": [ - "cdn\\.jsdelivr\\.net/npm/intersection-observer@([\\d\\.]+)\\;version:\\1", - "/assets/(?:.+)?intersection-observer\\.[\\d\\w\\.]+\\.js" + "description": "Infront is a sports marketing company that specializes in the management, marketing, and distribution of sports media rights and events, providing services to sports federations, leagues, clubs, and media partners worldwide.", + "dom": [ + "#corebine-app" ], - "website": "https://www.w3.org/TR/intersection-observer" + "icon": "Infront.svg", + "js": { + "corebine": "" + }, + "pricing": [ + "poa" + ], + "website": "https://www.infront.sport" }, - "Intershop": { + "InkSoft": { "cats": [ 6 ], - "description": "Intershop is an ecommerce platform, tailored to the needs of complex business processes and major organisations.", - "html": [ - "(?:CDS )?Invenio\\s*v?([\\d\\.]+)?\\;version:\\1" + "icon": "InMoment.svg", + "pricing": [ + "poa" ], - "icon": "Invenio.svg", - "website": "https://invenio-software.org", - "oss": true + "saas": true, + "scriptSrc": [ + "\\.inmoment\\.com(?:\\.\\w+)?/" + ], + "website": "https://inmoment.com" }, - "Inventrue": { + "Innervate": { "cats": [ - 6 + 36 ], - "description": "Inventrue creates websites for RV, Motorsports and Trailer Dealerships.", - "icon": "Inventrue.svg", - "meta": { - "author": "^Inventrue, LLC.$" - }, + "description": "Innervate is a company that provides a plug-and-play solution for dynamic customer experience orchestration across various formats and channels, leveraging existing systems, data, and teams to enhance and streamline customer interactions.", + "dom": [ + "link[href*='.revjet.com']" + ], + "icon": "Innervate.svg", "pricing": [ - "onetime", - "recurring", "poa" ], "saas": true, - "website": "https://www.inventrue.com" + "website": "https://www.innervate.com" }, - "Inveon": { + "InnoShop": { "cats": [ 6 ], "cookies": { - "INV.Customer": "\\;confidence:50", - "inveonSessionId": "" + "innoshop_session": "" }, - "description": "Inveon is a technology company that has been delivering ecommerce infrastructure software and mcommerce applications.", - "icon": "Inveon.svg", + "description": "InnoShop is an open-source ecommerce platform providing flexible tools for building and managing online stores.", + "icon": "InnoShop.svg", "js": { - "InvApp": "\\;confidence:50", - "invTagManagerParams": "" + "inno.addCart": "" }, + "oss": true, "scriptSrc": [ - "Scripts/_app/Inv(?:\\w+)\\.js\\?v=(.+)$\\;version:\\1" + "\\.innoshop\\.cn" ], - "website": "https://www.inveon.com" + "website": "https://www.innoshop.com" }, - "Invision Power Board": { + "Innovid Advertising Measurement": { "cats": [ - 2 - ], - "cookies": { - "ipbWWLmodpids": "", - "ipbWWLsession_id": "" - }, - "description": "Invision Power Board is a commercial Internet forum software developed by Invision Community (formerly Invision Power Services).", - "html": [ - "]+ipb_[^>]+\\.css" - ], - "icon": "Invision Power Board.svg", - "implies": [ - "PHP", - "MySQL" - ], - "js": { - "IPBoard": "", - "ipb_var": "", - "ipsSettings": "" - }, - "pricing": [ - "low", - "recurring" - ], - "scriptSrc": [ - "jscripts/ips_" + 36 ], - "website": "https://invisioncommunity.com" - }, - "Invitario": { - "cats": [ - 104 + "description": "Innovid Advertising Measurement is a solution for assessing and analyzing the performance of advertising campaigns across different platforms and devices.", + "dom": [ + "link[href*='.tvsquared.com']" ], - "description": "Invitario is an event marketing platform that provides a digital invitation and guest management for business events.", - "icon": "Invitario.svg", + "icon": "Innovid.svg", "js": { - "InvitarioWidget": "" + "TV2Track": "", + "_tvq": "" }, "pricing": [ - "poa", - "recurring" + "poa" ], "saas": true, - "website": "https://invitario.com" + "website": "https://www.innovid.com/solutions/advertising-measurement" }, - "Invoca": { + "Innovorder": { "cats": [ - 32, - 10 + 6 ], - "description": "Invoca is an AI-powered call tracking and conversational analytics company.", - "icon": "Invoca.svg", - "js": { - "Invoca.PNAPI.version": "([\\d\\.]+)\\;version:\\1", - "InvocaTagId": "" - }, + "description": "Innovorder is a point-of-sale solution for restaurateurs that uses AI to support order management and in-store operations.", + "dom": [ + "link[href*='static.innovorder.fr/']" + ], + "icon": "Innovorder.svg", "pricing": [ + "mid", + "recurring", "poa" ], "saas": true, - "scriptSrc": [ - "\\.dialogtech\\.com/" - ], - "website": "https://www.invoca.com" - }, - "Ionic": { - "cats": [ - 18 - ], - "description": "Ionic is an open-source framework that enables developers to create cross-platform mobile, web, and desktop applications using web technologies like HTML, CSS, and JavaScript.", - "icon": "Ionic.svg", - "js": { - "Ionic.config": "", - "Ionic.version": "^(.+)$\\;version:\\1" - }, - "oss": true, - "website": "https://ionicframework.com" + "website": "https://www.innovorder.com" }, - "Ionicons": { + "Inplayer": { "cats": [ - 17 + 14 ], - "description": "Ionicons is an open-source icon set crafted for web, iOS, Android, and desktop apps.", - "dom": [ - "link[href*='/ionicons.min.css'], link[href*='/ionicons.css']" + "description": "Inplayer is a platform that enables video streaming at scale, supports audience expansion across devices, and provides tools for content monetization.", + "icon": "Inplayer.svg", + "saas": true, + "scriptSrc": [ + "assets\\.inplayer\\.com" ], - "icon": "Ionicons.svg", - "oss": true, - "website": "https://ionicons.com" + "website": "https://inplayer.com" }, - "IrisLMS": { + "Inputflow": { "cats": [ - 21 + 110 ], - "description": "IrisLMS comprehensive education management system, in order to support e-learning and provide suitable conditions for holding online and offline classes with all facilities.", - "icon": "IrisLMS.png", + "description": "Inputflow is a tool for creating multi-step forms in Webflow with full customization options.", + "icon": "Inputflow.svg", "pricing": [ - "poa" + "low", + "recurring" + ], + "requires": [ + "Webflow" ], "saas": true, "scriptSrc": [ - "\\.irislms\\.ir/" + "script\\.inputflow\\.io" ], - "website": "https://irislms.ir" + "website": "https://inputflow.com" }, - "Irroba": { + "inSales": { "cats": [ 6 ], - "html": [ - "]*href=\"https://www\\.irroba\\.com\\.br" - ], - "icon": "irroba.svg", - "website": "https://www.irroba.com.br/" - }, - "Isotope": { - "cats": [ - 59 - ], - "description": "Isotope.js is a JavaScript library that makes it easy to sort, filter, and add Masonry layouts to items on a webpage.", - "icon": "Isotope.svg", + "description": "inSales is a SaaS ecommerce platform with multichannel integration.", + "icon": "inSales.svg", "js": { - "Isotope": "", - "init_isotope": "" + "InSales": "", + "InSalesUI": "", + "insalesGeocodeResults": "" + }, + "meta": { + "insales-redefined-api-method": "" }, - "oss": true, "pricing": [ "low", - "freemium", - "onetime" + "recurring" ], - "website": "https://isotope.metafizzy.co" + "saas": true, + "website": "https://www.insales.com" }, - "Isso": { + "inSided": { "cats": [ - 15 + 97 ], - "description": "Isso is a lightweight commenting server written in Python and JavaScript, referred to as \"Ich schrei sonst\" in German.", + "description": "inSided is the only Customer Success Community Platform built to help SaaS companies improve customer success and retention.", + "icon": "inSided.svg", "js": { - "Isso.fetchComments": "" + "inSidedData": "", + "insided": "" }, - "implies": [ - "Python" + "pricing": [ + "poa" ], - "oss": true, - "website": "https://github.com/posativ/isso/" + "saas": true, + "website": "https://www.insided.com" }, - "Issuu": { + "Insider": { "cats": [ - 19, - 5 - ], - "description": "Issuu is a digital discovery and publishing platform.", - "dom": [ - "a[href*='issuu.com/'][target='_blank']" + 97 ], - "icon": "Issuu.svg", + "description": "Insider is the first integrated Growth Management Platform helping digital marketers drive growth across the funnel, from Acquisition to Activation, Retention, and Revenue from a unified platform powered by Artificial Intelligence and Machine Learning.", + "icon": "Insider.svg", "js": { - "IssuuReaders": "", - "issuuPanel": "" + "Insider": "\\;confidence:20" }, "pricing": [ - "freemium", - "low", - "recurring" + "poa" ], "saas": true, "scriptSrc": [ - "\\.issuu\\.com/" + "api\\.useinsider\\.\\w+/" ], - "website": "https://issuu.com" + "website": "https://useinsider.com" }, - "It'seeze": { + "Insightly CRM": { "cats": [ - 1 + 53 ], - "description": "It’seeze is a website design platform with a custom CMS for seamless site updates and management.", + "description": "Insightly CRM is a cloud-based customer relationship management software, helps businesses manage leads, contacts, and opportunities, track customer interactions, create custom reports, automate workflows, and integrate with third-party applications, improving customer engagement and streamlining business processes.", "dom": [ - "footer > div[id*='itseezeFooter']" + "form[action*='.insightly.com/']" ], - "icon": "Itseeze.svg", + "icon": "Insightly.svg", "pricing": [ + "recurring", "low", - "recurring" + "payg" ], "saas": true, - "website": "https://itseeze.com/" + "scriptSrc": [ + "\\.insightly\\.services/" + ], + "website": "https://www.insightly.com/crm/" }, - "Iterable": { + "Insignal": { "cats": [ - 32 + 10 + ], + "description": "Insignal is a cloud-based application that tracks website traffic, heatmap, timeline, feedback, session recordings, and survey solutions.", + "icon": "Insignal.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "poa" ], - "description": "Iterable is a cross-channel marketing platform that powers unified customer experiences.", - "icon": "Iterable.svg", - "js": { - "iterableAnalytics": "" - }, "saas": true, "scriptSrc": [ - "js\\.iterable\\.com" + "app\\.insignal\\.co/" ], - "website": "https://iterable.com" + "website": "https://insignal.co/" }, - "Iterate": { + "Inso": { "cats": [ - 73 + 21 ], - "description": "Iterate is a customer insights manager (CIM) system, facilitating website and email surveys to harness customer insights across your entire business.", - "icon": "Iterate.svg", - "js": { - "Iterate": "" + "description": "Inso is an application for kindergartens and nurseries that facilitates communication with parents and supports the automated preparation of billing information.", + "headers": { + "Access-Control-Allow-Origin": "app\\.inso\\.pl" }, + "icon": "Inso.svg", "pricing": [ - "mid", - "recurring", "poa" ], "saas": true, + "website": "https://inso.pl" + }, + "Inspectlet": { + "cats": [ + 10 + ], + "html": [ + "" + ], + "icon": "Inspectlet.svg", + "js": { + "__insp": "", + "__inspld": "" + }, "scriptSrc": [ - "\\.iteratehq\\.com/" + "cdn\\.inspectlet\\.com" ], - "website": "https://iteratehq.com" + "website": "https://www.inspectlet.com/" }, - "Ivory Search": { + "Instabot": { "cats": [ - 87 + 5, + 10, + 32, + 52, + 58 ], - "description": "Ivory Search is a WordPress search plugin that improves WordPress search by providing advanced options to extend search or exclude specific content from search.", - "icon": "ivory_searc.svg", + "description": "Instabot is a conversion chatbot that understands your users, and curates information, answers questions, captures contacts, and books meetings instantly.", + "icon": "Instabot.svg", "js": { - "IvorySearchVars": "", - "ivory_search_analytics": "" + "Instabot": "" }, + "scriptSrc": [ + "/rokoInstabot\\.js" + ], + "website": "https://instabot.io/" + }, + "Instafeed": { + "cats": [ + 100 + ], + "description": "Instafeed is an official Instagram app.", + "icon": "Instafeed.svg", "pricing": [ "freemium", - "recurring", - "onetime" + "low", + "recurring" + ], + "requires": [ + "Shopify" + ], + "saas": true, + "scriptSrc": [ + "instafeed\\.nfcube\\.com/" + ], + "website": "https://apps.shopify.com/instafeed" + }, + "Instafeed.js": { + "cats": [ + 59 + ], + "description": "A way to add Instagram photos to your website.", + "oss": true, + "scriptSrc": [ + "instafeed(?:\\.min)?\\.js" + ], + "website": "https://instafeedjs.com/" + }, + "Instagram Feed for WordPress": { + "cats": [ + 5, + 87 + ], + "description": "Display Instagram photos from any non-private Instagram accounts.", + "dom": [ + "link[href*='/wp-content/plugins/instagram-feed'], a[data-full-res*='/wp-content/uploads/sb-instagram-feed-images/'], img[src*='/wp-content/uploads/sb-instagram-feed-images/'], img[src*='/wp-content/plugins/instagram-feed/'], img[data-src*='/wp-content/uploads/sb-instagram-feed-images/']" + ], + "oss": true, + "pricing": [ + "low" ], "requires": [ "WordPress" ], "scriptSrc": [ - "/wp-content/plugins/add-search-to-menu/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1" + "instagram-feed(?:\\/js)?(?:\\/sbi-scripts)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1" ], - "website": "https://ivorysearch.com" + "website": "https://wordpress.org/plugins/instagram-feed/" }, - "Izooto": { + "Instamojo": { "cats": [ - 32, - 5 + 41 ], - "description": "iZooto is a user engagement and retention tool that leverages web push notifications to help business to drive repeat traffic, leads and sales.", - "icon": "Izooto.svg", + "description": "Instamojo is a Bangalore-based company that provides a platform for selling digital goods and collecting payment online.", + "icon": "instamojo.svg", "js": { - "Izooto": "", - "_izooto": "" + "INITIAL_STATE.seller.avatar": "\\.instamojo\\.com/", + "Instamojo": "" + }, + "website": "https://www.instamojo.com/" + }, + "Instana": { + "cats": [ + 10, + 13, + 78 + ], + "description": "Instana is a Kubernetes-native APM tool which is built for new-stack including Microservices and lately Serverless but also supports the existing VM based stacks including several supported technologies.", + "icon": "Instana.svg", + "js": { + "ineum": "" }, "pricing": [ - "mid", + "low", "recurring" ], "saas": true, "scriptSrc": [ - "cdn\\.izooto\\.\\w+" + "eum\\.instana\\.io" ], - "website": "https://www.izooto.com" + "website": "https://www.instana.com" }, - "i-MSCP": { + "Instant": { "cats": [ - 9 + 51, + 100 ], - "description": "i-MSCP (internet Multi Server Control Panel) is a software for shared hosting environments management on Linux servers.", - "icon": "i-MSCP.png", - "meta": { - "application-name": "^i-MSCP$" + "description": "Instant is a no-code, visual page builder for Shopify, allowing users to create custom landing pages and sections through a drag-and-drop interface without requiring any coding skills.", + "dom": [ + "div[class='__instant'][data-instant-version]" + ], + "icon": "Instant.svg", + "js": { + "Instant.initialized": "", + "Instant.initializedVersion": "([\\d\\.]+)\\;version:\\1", + "__instantInitSliders": "" }, - "oss": true, - "website": "https://github.com/i-MSCP/imscp" + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "Shopify" + ], + "saas": true, + "website": "https://instant.so" }, - "i-mobile": { + "Instant.Page": { "cats": [ - 36 + 59, + 92 ], - "description": "i-mobile is a advertising platform for clients to advertise their product and for publishers to monetize their cyberspace.", - "dom": [ - "img[src*='.i-mobile.co.jp/']" + "description": "Instant.Page is a JavaScript library which uses just-in-time preloading technique to make websites faster.", + "icon": "Instant.page.svg", + "oss": true, + "scriptSrc": [ + "instant\\.page" ], - "icon": "i-mobile.png", - "pricing": [ - "payg" + "website": "https://instant.page/" + }, + "InstantClick": { + "cats": [ + 59, + 92 ], - "saas": true, + "description": "InstantClick is a JavaScript library that speeds up your website, making navigation faster.", + "icon": "InstantClick.svg", + "js": { + "InstantClick": "" + }, + "oss": true, "scriptSrc": [ - "\\.i-mobile\\.co\\.jp/" + "instantclick\\.min\\.js" ], - "website": "https://www2.i-mobile.co.jp" + "website": "https://instantclick.io/" }, - "i-motor": { + "InstantCMS": { "cats": [ 1 ], - "description": "i-motor is a platform that enhances automotive dealer websites by providing innovative, connected solutions to improve the online experience.", - "dom": [ - "link[href*='.i-motor.com.au/']" + "cookies": { + "InstantCMS[logdate]": "" + }, + "cpe": "cpe:2.3:a:instantcms:instantcms:*:*:*:*:*:*:*:*", + "icon": "InstantCMS.png", + "implies": [ + "PHP" ], - "icon": "i-motor.svg", - "saas": true, - "website": "https://www.i-motor.com.au" + "meta": { + "generator": "InstantCMS" + }, + "website": "https://www.instantcms.ru" }, - "i30con": { + "InstantGeo": { "cats": [ - 17 + 59 ], - "description": "i30con is an icon toolkit based on CSS and JavaScript.", - "dom": [ - "[class^='i30con']" + "description": "InstantGeo is a service that provides IP geolocation to web pages", + "icon": "InstantGeo.svg", + "js": { + "geojs": "" + }, + "pricing": [ + "freemium" ], - "icon": "30namaPlayer.svg", - "website": "https://30nama.com/" + "saas": true, + "scriptSrc": [ + "js\\.instantgeo\\.info", + "script\\.instantgeo\\.info" + ], + "website": "https://instantgeo.info" }, - "iAdvize": { + "Instapage": { "cats": [ - 52 + 51, + 74, + 10 ], - "description": "iAdvize is a conversational marketing platform that connects customers in need of advice with experts who are available 24/7 via messaging.", - "dom": [ - "link[href*='.iadvize.com']" + "description": "Instapage is a cloud-based landing page platform designed for marketing teams and agencies.", + "icon": "Instapage.svg", + "implies": [ + "Lua", + "Node.js" + ], + "js": { + "_instapageSnowplow": "", + "instapageSp": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.instapagemetrics\\.com", + "heatmap-events-collector\\.instapage\\.com" + ], + "website": "https://instapage.com" + }, + "Instatus": { + "cats": [ + 13 + ], + "description": "Instatus is a status and incident communication tool.", + "dom": { + "a.footer__link": { + "text": "Powered by Instatus" + }, + "a[href*='instatus.com'][target='_blank'], iframe[src*='.instatus.com']": { + "exists": "" + } + }, + "icon": "Instatus.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "website": "https://instatus.com" + }, + "InSyncai": { + "cats": [ + 52 + ], + "description": "InSyncai offers a conversational platform for enterprises to design and build chatbots having applications in customer support and services.", + "dom": [ + "iframe[src*='insync_iframe_webchat_js_prod'], iframe#insync-iframe" + ], + "icon": "InSyncai.svg", + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.insyncai.com" + }, + "Intaker": { + "cats": [ + 52 + ], + "description": "Intaker is a service that enables law firms to send and receive text messages with clients, including automated follow-up messages.", + "dom": { + "link[href*='chat-api.intaker.com/api/']": { + "attributes": { + "href": "api/v([\\d]+)\\;version:\\1" + } + } + }, + "icon": "Intaker.svg", + "js": { + "Intaker": "" + }, + "saas": true, + "website": "https://intaker.com" + }, + "Integral Ad Science": { + "cats": [ + 36 + ], + "description": "Integral Ad Science is an American publicly owned technology company that analyses the value of digital advertising placements.", + "dom": [ + "link[href*='.adsafeprotected.com']" + ], + "icon": "Integral Ad Science.svg", + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.adsafeprotected\\.com/" + ], + "website": "https://integralads.com" + }, + "Integrately": { + "cats": [ + 32 + ], + "description": "Integrately is a click automation software that enables connection of multiple applications.", + "dom": [ + "input[value*='app.integrately.com']" + ], + "icon": "Integrately.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "app\\.integrately\\.com" + ], + "website": "https://integrately.com" + }, + "Intel Active Management Technology": { + "cats": [ + 22, + 46 + ], + "cpe": "cpe:2.3:a:intel:active_management_technology:*:*:*:*:*:*:*:*", + "description": "Intel Active Management Technology (AMT) is a proprietary remote management and control system for personal computers with Intel CPUs.", + "headers": { + "Server": "Intel\\(R\\) Active Management Technology(?: ([\\d.]+))?\\;version:\\1" + }, + "icon": "Intel Active Management Technology.svg", + "website": "https://intel.com" + }, + "Intelligems": { + "cats": [ + 74 + ], + "description": "Intelligems is a tool that facilitates profit optimization for ecommerce businesses by allowing easy testing of prices, discounts, and shipping rates with the aim of maximizing margins.", + "icon": "Intelligems.svg", + "js": { + "webpackChunk_intelligems_shopify_plugin": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.intelligems\\.io/[\\w]+\\.js" + ], + "website": "https://intelligems.io" + }, + "Intellimize": { + "cats": [ + 74, + 76 + ], + "description": "Intellimize is a platform that utilizes machine learning to optimize website experiences and increase conversions in real-time.", + "icon": "Intellimize.svg", + "js": { + "intellimize": "" + }, + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.intellimize\\.co/" + ], + "website": "https://www.intellimize.com" + }, + "IntenseDebate": { + "cats": [ + 15 + ], + "description": "IntenseDebate is a blog commenting system that supports Typepad, Blogger and Wordpress blogs. The system allows blog owners to track and moderate comments from one place with features like threading, comment analytics, user reputation, and comment aggregation.", + "icon": "IntenseDebate.svg", + "scriptSrc": [ + "intensedebate\\.com" + ], + "website": "https://intensedebate.com" + }, + "Interact": { + "cats": [ + 5 + ], + "description": "Interact is a tool for creating online quizzes.", + "icon": "Interact.svg", + "js": { + "InteractApp.name": "InteractApp", + "InteractPromotionObject": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.tryinteract\\.com/" + ], + "website": "https://www.tryinteract.com" + }, + "InteractiveCalculator": { + "cats": [ + 5 + ], + "description": "InteractiveCalculator is a platform that enables users to create customized calculators that can be embedded on their website.", + "icon": "InteractiveCalculator.svg", + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "embed\\.interactivecalculator\\.com/" + ], + "website": "https://www.interactivecalculator.com" + }, + "Interago": { + "cats": [ + 32 + ], + "description": "Interago is a Brazilian platform that aggregates modern digital tools to support and streamline online business operations.", + "icon": "Interago.svg", + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "www\\.interago\\.com\\.br" + ], + "website": "https://www.interago.com.br" + }, + "Interakt": { + "cats": [ + 52 + ], + "description": "Interakt is a messaging platform tailored for business communication, offering features such as secure messaging, file sharing, and customer support functionalities.", + "icon": "Interakt.svg", + "pricing": [ + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "app\\.interakt\\.ai/" + ], + "website": "https://www.interakt.shop" + }, + "Intercom": { + "cats": [ + 52, + 53 + ], + "description": "Intercom is an American software company that produces a messaging platform which allows businesses to communicate with prospective and existing customers within their app, on their website, through social media, or via email.", + "dom": [ + "link[href^='https://widget.intercom.io']", + "div.live-chat-loader-placeholder", + "iframe#intercom-frame" + ], + "icon": "Intercom.svg", + "js": { + "Intercom": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "(?:api\\.intercom\\.io/api|static\\.intercomcdn\\.com/intercom\\.v1)" + ], + "website": "https://www.intercom.com" + }, + "Intercom Articles": { + "cats": [ + 4 + ], + "description": "Intercom Articles is a tool to create, organise and publish help articles.", + "html": [ + "]+>We run on Intercom" + ], + "icon": "Intercom.svg", + "saas": true, + "website": "https://www.intercom.com/articles" + }, + "Internet Brands": { + "cats": [ + 36 + ], + "description": "Internet Brands is a technology company that operates a variety of web portals and online communities, providing information and services to consumers and businesses across a range of industries.", + "dom": { + "footer > div > form": { + "text": "Internet Brands" + } + }, + "icon": "Internet Brands.svg", + "pricing": [ + "poa", + "payg" + ], + "saas": true, + "website": "https://www.internetbrands.com" + }, + "InterRed": { + "cats": [ + 1 + ], + "description": "InterRed is a software platform that provides integrated, future-proof publishing solutions for digital and print media management.", + "dom": [ + "div[id*='footer__interred'] > a[href*='www.interred.de']" + ], + "icon": "InterRed.svg", + "meta": { + "generator": "^InterRed" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "website": "https://www.interred.de" + }, + "Intersection Observer": { + "cats": [ + 92, + 59 + ], + "description": "Intersection Observer is a browser API that provides a way to observe the visibility and position of a DOM element relative to the containing root element or viewport.", + "icon": "W3C.svg", + "scriptSrc": [ + "cdn\\.jsdelivr\\.net/npm/intersection-observer@([\\d\\.]+)\\;version:\\1", + "/assets/(?:.+)?intersection-observer\\.[\\d\\w\\.]+\\.js" + ], + "website": "https://www.w3.org/TR/intersection-observer" + }, + "Intershop": { + "cats": [ + 6 + ], + "description": "Intershop is an ecommerce platform, tailored to the needs of complex business processes and major organisations.", + "html": [ + "(?:CDS )?Invenio\\s*v?([\\d\\.]+)?\\;version:\\1" + ], + "icon": "Invenio.svg", + "oss": true, + "website": "https://invenio-software.org" + }, + "Inventrue": { + "cats": [ + 6 + ], + "description": "Inventrue creates websites for RV, Motorsports and Trailer Dealerships.", + "icon": "Inventrue.svg", + "meta": { + "author": "^Inventrue, LLC.$" + }, + "pricing": [ + "onetime", + "recurring", + "poa" + ], + "saas": true, + "website": "https://www.inventrue.com" + }, + "Inveon": { + "cats": [ + 6 + ], + "cookies": { + "INV.Customer": "\\;confidence:50", + "inveonSessionId": "" + }, + "description": "Inveon is a technology company that has been delivering ecommerce infrastructure software and mcommerce applications.", + "icon": "Inveon.svg", + "js": { + "InvApp": "\\;confidence:50", + "invTagManagerParams": "" + }, + "scriptSrc": [ + "Scripts/_app/Inv(?:\\w+)\\.js\\?v=(.+)$\\;version:\\1" + ], + "website": "https://www.inveon.com" + }, + "Inveterate": { + "cats": [ + 84 + ], + "description": "Inveterate is a loyalty platform designed to support flexible, scalable loyalty programs across various industries.", + "icon": "Inveterate.svg", + "js": { + "Inveterate": "", + "inveterate": "" + }, + "pricing": [ + "freemium", + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.inveterate\\.js" + ], + "website": "https://www.inveterate.com" + }, + "Invision Community": { + "cats": [ + 1 + ], + "description": "Invision Community is a scalable and customizable platform designed to build and grow online communities.", + "icon": "InvisionCommunity.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.invisioncic\\.com/" + ], + "website": "https://invisioncommunity.com" + }, + "Invision Power Board": { + "cats": [ + 2 + ], + "cookies": { + "ipbWWLmodpids": "", + "ipbWWLsession_id": "" + }, + "description": "Invision Power Board is a commercial Internet forum software developed by Invision Community (formerly Invision Power Services).", + "html": [ + "]+ipb_[^>]+\\.css" + ], + "icon": "Invision Power Board.svg", + "implies": [ + "PHP", + "MySQL" + ], + "js": { + "IPBoard": "", + "ipb_var": "", + "ipsSettings": "" + }, + "pricing": [ + "low", + "recurring" + ], + "scriptSrc": [ + "jscripts/ips_" + ], + "scripts": [ + "ipb_url_filter_option" + ], + "website": "https://invisioncommunity.com" + }, + "Invitario": { + "cats": [ + 104 + ], + "description": "Invitario is an event marketing platform that provides a digital invitation and guest management for business events.", + "icon": "Invitario.svg", + "js": { + "InvitarioWidget": "" + }, + "pricing": [ + "poa", + "recurring" + ], + "saas": true, + "website": "https://invitario.com" + }, + "Invoca": { + "cats": [ + 32, + 10 + ], + "description": "Invoca is an AI-powered call tracking and conversational analytics company.", + "icon": "Invoca.svg", + "js": { + "Invoca.PNAPI.version": "([\\d\\.]+)\\;version:\\1", + "InvocaTagId": "" + }, + "pricing": [ + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.dialogtech\\.com/" + ], + "website": "https://www.invoca.com" + }, + "Ionic": { + "cats": [ + 18 + ], + "description": "Ionic is an open-source framework that enables developers to create cross-platform mobile, web, and desktop applications using web technologies like HTML, CSS, and JavaScript.", + "icon": "Ionic.svg", + "js": { + "Ionic.config": "", + "Ionic.version": "^(.+)$\\;version:\\1" + }, + "oss": true, + "website": "https://ionicframework.com" + }, + "Ionicons": { + "cats": [ + 17 + ], + "description": "Ionicons is an open-source icon set crafted for web, iOS, Android, and desktop apps.", + "dom": [ + "link[href*='/ionicons.min.css'], link[href*='/ionicons.css']" + ], + "icon": "Ionicons.svg", + "oss": true, + "website": "https://ionicons.com" + }, + "IONOS": { + "cats": [ + 88 + ], + "description": "IONOS is the web hosting and cloud partner for small and medium-sized businesses.", + "dns": { + "SOA": [ + "ns1\\d+\\.ui-dns\\.(?:de|org|biz|com)" + ] + }, + "icon": "IONOS.svg", + "pricing": [ + "low", + "recurring" + ], + "website": "https://www.ionos.com" + }, + "ip-api": { + "cats": [ + 79 + ], + "icon": "ip-api.png", + "pricing": [ + "freemium", + "low", + "payg" + ], + "saas": true, + "website": "https://ip-api.com/", + "xhr": [ + "ip-api\\.com" + ] + }, + "ip-label": { + "cats": [ + 10 + ], + "icon": "iplabel.svg", + "js": { + "clobs": "" + }, + "scriptSrc": [ + "clobs\\.js" + ], + "website": "https://www.ip-label.com" + }, + "IP2Location.io": { + "cats": [ + 79 + ], + "cookies": { + "ip2location_redirection_first_visit": "" + }, + "description": "IP2Location.io is a web service that provides geolocation data based on IP addresses through its API, allowing developers to integrate accurate physical location information into their applications.", + "icon": "IP2Location.io.svg", + "pricing": [ + "mid", + "freemium", + "recurring" + ], + "website": "https://www.ip2location.io" + }, + "iPaper": { + "cats": [ + 95 + ], + "description": "iPaper is a platform that converts printed materials into interactive digital catalogs designed to enhance customer engagement and support sales.", + "icon": "iPaper.svg", + "js": { + "iPaper.API": "", + "iPaperDebugger": "" + }, + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "embeds\\.ipaper\\.io" + ], + "website": "https://www.ipaper.io" + }, + "ipapi": { + "cats": [ + 79 + ], + "description": "ipapi is a real-time geolocation and reverse IP lookup REST API.", + "icon": "ipapi.svg", + "pricing": [ + "freemium", + "low", + "payg" + ], + "saas": true, + "website": "https://ipapi.com", + "xhr": [ + "api\\.ipapi\\.com" + ] + }, + "ipapi.co": { + "cats": [ + 79 + ], + "description": "ipapi.co is a web analytics provider with IP address lookup and location API.", + "icon": "ipapi.co.svg", + "pricing": [ + "freemium", + "low", + "payg" + ], + "saas": true, + "website": "https://ipapi.co", + "xhr": [ + "ipapi\\.co/" + ] + }, + "IPB": { + "cats": [ + 2 + ], + "cookies": { + "ipbWWLmodpids": "", + "ipbWWLsession_id": "" + }, + "html": [ + "]+ipb_[^>]+\\.css" + ], + "icon": "IPB.png", + "implies": [ + "PHP", + "MySQL" + ], + "js": { + "IPBoard": "", + "ipb_var": "", + "ipsSettings": "" + }, + "scriptSrc": [ + "jscripts/ips_" + ], + "website": "https://invisioncommunity.com/" + }, + "ipbase": { + "cats": [ + 79 + ], + "description": "ipbase offers an API that supports both IPv4 and IPv6 and provides precise location data from IP addresses.", + "icon": "ipbase.svg", + "pricing": [ + "freemium", + "recurring", + "low" + ], + "saas": true, + "website": "https://ipbase.com", + "xhr": [ + "api\\.ipbase\\.com" + ] + }, + "ipdata": { + "cats": [ + 79 + ], + "description": "ipdata is a JSON IP Address Geolocation API that allows to lookup the location of both IPv4 and IPv6.", + "icon": "ipdata.svg", + "pricing": [ + "freemium", + "recurring", + "low" + ], + "saas": true, + "website": "https://ipdata.co/", + "xhr": [ + "api\\.ipdata\\.co" + ] + }, + "IPFS": { + "cats": [ + 48 + ], + "description": "IPFS is a peer-to-peer hypermedia protocol that provides a distributed hypermedia web.", + "headers": { + "x-cf-ipfs-cache-status": "", + "x-ipfs-datasize": "", + "x-ipfs-gateway-host": "", + "x-ipfs-lb-pop": "", + "x-ipfs-path": "", + "x-ipfs-pop": "", + "x-ipfs-root": "", + "x-ipfs-root-cid": "", + "x-ipfs-roots": "" + }, + "icon": "IPFS.svg", + "website": "https://ipfs.tech/" + }, + "ipgeolocation": { + "cats": [ + 79 + ], + "description": "ipgeolocation is an IP Geolocation API and Accurate IP Lookup Database.", + "icon": "ipgeolocation.png", + "pricing": [ + "freemium", + "recurring", + "mid" + ], + "saas": true, + "website": "https://ipgeolocation.co/", + "xhr": [ + "api\\.ipgeolocation\\.io" + ] + }, + "ipify": { + "cats": [ + 79 + ], + "description": "ipify is a service which provide public IP address API, IP geolocation API, VPN and Proxy detection API products.", + "icon": "ipify.png", + "pricing": [ + "freemium", + "payg", + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.ipify\\.org" + ], + "website": "https://ipify.org", + "xhr": [ + "(?:api|api64|geo)\\.ipify\\.org" + ] + }, + "IPinfo": { + "cats": [ + 79 ], - "icon": "iAdvize.svg", + "description": "IPinfo is an IP address data provider.", + "icon": "IPinfo.svg", "pricing": [ - "poa" + "mid", + "recurring" ], "saas": true, "scriptSrc": [ - "\\.iadvize\\.com/" + "ipinfo\\.io/" ], - "website": "https://www.iadvize.com" + "website": "https://ipinfo.io", + "xhr": [ + "ipinfo\\.io/" + ] }, - "iEXExchanger": { + "IPInfoDB": { "cats": [ - 1 + 79 ], - "cookies": { - "iexexchanger_session": "" - }, - "icon": "iEXExchanger.png", + "description": "IPInfoDB is the API that returns the location of an IP address.", + "icon": "IPInfoDB.svg", + "saas": true, + "website": "https://www.ipinfodb.com/", + "xhr": [ + "api\\.ipinfodb\\.com" + ] + }, + "iPresta": { + "cats": [ + 6 + ], + "icon": "iPresta.svg", "implies": [ "PHP", - "Apache HTTP Server", - "Angular" + "PrestaShop" ], "meta": { - "generator": "iEXExchanger" + "designer": "iPresta" }, - "website": "https://exchanger.iexbase.com" + "website": "https://ipresta.ir" }, - "iGoDigital": { + "ipstack": { "cats": [ - 76 + 79 ], - "description": "iGoDigital provides web-based commerce tools, personalisation, and product recommendations designed to increase customer interaction.", - "icon": "default.svg", - "scriptSrc": [ - "\\.igodigital\\.com/" + "description": "ipstack is a real-time IP to geolocation API capable of looking at location data and assessing security threats originating from risky IP addresses.", + "icon": "ipstack.svg", + "js": { + "ENV.ipStackAccessToken": "" + }, + "pricing": [ + "low", + "freemium" ], - "website": "https://www.igodigital.com" + "saas": true, + "website": "https://ipstack.com", + "xhr": [ + "api\\.ipstack\\.com" + ] }, - "iHomefinder IDX": { + "iRaiser": { "cats": [ - 19 + 111 ], - "description": "iHomefinder provides IDX property search, built-in CRM, and marketing tools.", - "icon": "iHomefinder IDX.svg", + "description": "iRaiser is a platform that provides charities with tailored solutions to optimize and manage fundraising activities.", + "icon": "iRaiser.svg", "js": { - "ihfJquery": "" + "iRaiser.PaymentStartDate": "", + "iraiser_counter": "" }, "pricing": [ - "mid", + "low", "recurring" ], "saas": true, + "scripts": [ + "\\.iraiser\\.eu" + ], + "website": "https://www.iraiser.com" + }, + "Iress": { + "cats": [ + 55 + ], + "description": "Iress is a platform that provides software solutions for the financial services industry.", + "icon": "Iress.svg", + "js": { + "IRESSWebToolbox": "" + }, + "saas": true, + "website": "https://www.iress.com" + }, + "IrisLMS": { + "cats": [ + 21 + ], + "description": "IrisLMS comprehensive education management system, in order to support e-learning and provide suitable conditions for holding online and offline classes with all facilities.", + "icon": "IrisLMS.png", + "pricing": [ + "poa" + ], + "saas": true, "scriptSrc": [ - "\\.idxhome\\.com/" + "\\.irislms\\.ir/" ], - "website": "https://www.ihomefinder.com" + "website": "https://irislms.ir" }, - "iPresta": { + "Irroba": { "cats": [ 6 ], - "icon": "iPresta.svg", - "implies": [ - "PHP", - "PrestaShop" + "html": [ + "]*href=\"https://www\\.irroba\\.com\\.br" ], + "icon": "irroba.svg", "meta": { - "designer": "iPresta" + "copyright": "^IRROBA E-COMMERCE$", + "generator": "^IRROBA E-COMMERCE$", + "webmaster": "^IRROBA E-COMMERCE$" }, - "website": "https://ipresta.ir" + "website": "https://www.irroba.com.br/" + }, + "ISAY": { + "cats": [ + 1 + ], + "description": "ISAY (Internet Pages Management) is a CMS service provided by the Turkish Ministry of Interior for governorships, district governorships and various official websites.", + "dom": [ + "div.topbar-img img[src*='/Areas/WebPart/Contents/FHeader/img/ataturk.svg']" + ], + "icon": "ISAY.svg", + "requires": [ + "Microsoft ASP.NET" + ], + "website": "https://www.icisleri.gov.tr/internet-sayfalari-yonetimi-isay" }, "iScripts": { "cats": [ @@ -2091,6 +3092,22 @@ "saas": true, "website": "https://www.iscripts.com" }, + "iSET": { + "cats": [ + 6 + ], + "description": "iSET is an ecommerce platform providing tools to start, grow, and scale online stores.", + "icon": "iSET.svg", + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "scripts": [ + "cdn\\.iset\\.io/" + ], + "website": "https://www.iset.com.br" + }, "iSina Chat": { "cats": [ 52 @@ -2106,288 +3123,194 @@ ], "website": "https://isina.agency" }, - "iThemes Security": { + "Isotope": { "cats": [ - 87, - 16 - ], - "description": " iThemes Security(formerly known as Better WP Security) plugin enhances the security and protection of your WordPress website.", - "dom": [ - "link[href*='/wp-content/plugins/better-wp-security/']" + 59 ], - "icon": "iThemes Security.svg", + "description": "Isotope.js is a JavaScript library that makes it easy to sort, filter, and add Masonry layouts to items on a webpage.", + "icon": "Isotope.svg", + "js": { + "Isotope": "", + "init_isotope": "" + }, + "oss": true, "pricing": [ - "freemium", "low", - "recurring" - ], - "requires": [ - "WordPress" - ], - "scriptSrc": [ - "/wp-content/plugins/better-wp-security/" + "freemium", + "onetime" ], - "website": "https://ithemes.com/security" + "website": "https://isotope.metafizzy.co" }, - "iWeb": { + "Isso": { "cats": [ - 20 + 15 ], - "description": "iWeb is a web site creation tool.", - "icon": "Apple.svg", - "meta": { - "generator": "^iWeb( [\\d.]+)?\\;version:\\1" - }, - "website": "https://www.apple.com/welcomescreen/ilife/iweb-3/" - }, - "idCloudHost": { - "cats": [ - 88 + "description": "Isso is a lightweight commenting server written in Python and JavaScript, referred to as \"Ich schrei sonst\" in German.", + "implies": [ + "Python" ], - "description": "idCloudHost is a local web service provider based in Indonesia that offer a wide range of services including domain name registration and cloud hosting.", - "dns": { - "NS": "ns\\d+\\.cloudhost\\.id", - "SOA": "ns\\d+\\.cloudhost\\.id" + "js": { + "Isso.fetchComments": "" }, - "icon": "idCloudHost.svg", - "website": "https://idcloudhost.com" - }, - "ikiwiki": { - "cats": [ - 8 - ], - "cpe": "cpe:2.3:a:ikiwiki:ikiwiki:*:*:*:*:*:*:*:*", - "description": "ikiwiki is a free and open-source wiki application.", - "html": [ - " div[id*='itseezeFooter']" + ], + "icon": "Itseeze.svg", "pricing": [ - "freemium", "low", - "payg" + "recurring" ], "saas": true, - "website": "https://ip-api.com/", - "xhr": [ - "ip-api\\.com" - ] + "website": "https://itseeze.com/" }, - "ip-label": { + "Italiaonline": { "cats": [ - 10 + 51 ], - "icon": "iplabel.svg", - "js": { - "clobs": "" - }, - "scriptSrc": [ - "clobs\\.js" + "description": "Italiaonline is a web platform that provides tools and services for building and managing websites.", + "icon": "Italiaonline.svg", + "saas": true, + "scripts": [ + "\\.italiaonline\\.it" ], - "website": "https://www.ip-label.com" + "website": "https://www.italiaonline.it" }, - "ipapi": { + "iTCHYROBOT": { "cats": [ - 79 + 1 ], - "description": "ipapi is a real-time geolocation and reverse IP lookup REST API.", - "icon": "ipapi.svg", + "description": "iTCHYROBOT is a platform that develops school websites and provides marketing strategies to support communication, branding, and digital engagement for educational institutions.", + "icon": "iTCHYROBOT.svg", "pricing": [ - "freemium", "low", - "payg" + "recurring" ], "saas": true, - "website": "https://ipapi.com", - "xhr": [ - "api\\.ipapi\\.com" - ] - }, - "ipapi.co": { - "cats": [ - 79 - ], - "description": "ipapi.co is a web analytics provider with IP address lookup and location API.", - "icon": "ipapi.co.svg", - "pricing": [ - "freemium", - "low", - "payg" + "scriptSrc": [ + "/wp-content/themes/itchyrobot_parent/js/" ], - "saas": true, - "website": "https://ipapi.co", - "xhr": [ - "ipapi\\.co/" - ] + "website": "https://www.itchyrobot.co.uk" }, - "ipbase": { + "Iterable": { "cats": [ - 79 - ], - "description": "ipbase offers an API that supports both IPv4 and IPv6 and provides precise location data from IP addresses.", - "icon": "ipbase.svg", - "pricing": [ - "freemium", - "recurring", - "low" + 32 ], + "description": "Iterable is a cross-channel marketing platform that powers unified customer experiences.", + "icon": "Iterable.svg", + "js": { + "iterableAnalytics": "" + }, "saas": true, - "website": "https://ipbase.com", - "xhr": [ - "api\\.ipbase\\.com" - ] + "scriptSrc": [ + "js\\.iterable\\.com" + ], + "website": "https://iterable.com" }, - "ipdata": { + "Iteras": { "cats": [ - 79 - ], - "description": "ipdata is a JSON IP Address Geolocation API that allows to lookup the location of both IPv4 and IPv6.", - "icon": "ipdata.svg", - "pricing": [ - "freemium", - "recurring", - "low" + 53 ], + "description": "Iteras is a subscriber management system that organizes user accounts, tracks subscription activity, and supports controlled access to digital services.", + "icon": "Iteras.svg", + "js": { + "Iteras.cookieDomain": "" + }, "saas": true, - "website": "https://ipdata.co/", - "xhr": [ - "api\\.ipdata\\.co" - ] + "scriptSrc": [ + "app\\.iteras\\.dk" + ], + "website": "https://www.iteras.com" }, - "ipgeolocation": { + "Iterate": { "cats": [ - 79 + 73 ], - "description": "ipgeolocation is an IP Geolocation API and Accurate IP Lookup Database.", - "icon": "ipgeolocation.png", + "description": "Iterate is a customer insights manager (CIM) system, facilitating website and email surveys to harness customer insights across your entire business.", + "icon": "Iterate.svg", + "js": { + "Iterate": "" + }, "pricing": [ - "freemium", + "mid", "recurring", - "mid" + "poa" ], "saas": true, - "website": "https://ipgeolocation.co/", - "xhr": [ - "api\\.ipgeolocation\\.io" - ] + "scriptSrc": [ + "\\.iteratehq\\.com/" + ], + "website": "https://iteratehq.com" }, - "ipify": { + "iThemes Security": { "cats": [ - 79 + 87, + 16 ], - "description": "ipify is a service which provide public IP address API, IP geolocation API, VPN and Proxy detection API products.", - "icon": "ipify.png", + "description": " iThemes Security(formerly known as Better WP Security) plugin enhances the security and protection of your WordPress website.", + "dom": [ + "link[href*='/wp-content/plugins/better-wp-security/']" + ], + "icon": "iThemes Security.svg", "pricing": [ "freemium", - "payg", - "mid", + "low", "recurring" ], - "saas": true, + "requires": [ + "WordPress" + ], "scriptSrc": [ - "\\.ipify\\.org" + "/wp-content/plugins/better-wp-security/" ], - "website": "https://ipify.org", - "xhr": [ - "(?:api|api64|geo)\\.ipify\\.org" - ] + "website": "https://ithemes.com/security" }, - "ipstack": { + "Itoris": { "cats": [ - 79 - ], - "description": "ipstack is a real-time IP to geolocation API capable of looking at location data and assessing security threats originating from risky IP addresses.", - "icon": "ipstack.svg", - "js": { - "ENV.ipStackAccessToken": "" - }, - "pricing": [ - "low", - "freemium" + 6 ], + "description": "Itoris is a developer specializing in widgets for ecommerce platforms, creating tools that enhance online store functionality.", + "icon": "Itoris.svg", "saas": true, - "website": "https://ipstack.com", - "xhr": [ - "api\\.ipstack\\.com" - ] + "scriptSrc": [ + "\\.itoris\\.com" + ], + "scripts": [ + "\\.itoris\\.com" + ], + "website": "https://www.itoris.com" }, "iubenda": { "cats": [ @@ -2410,6 +3333,71 @@ ], "website": "https://www.iubenda.com" }, + "iugu": { + "cats": [ + 41 + ], + "description": "iugu is a financial management platform that enables businesses to handle payments, billing, and invoicing through a unified system.", + "icon": "iugu.svg", + "js": { + "Iugu.CreditCard": "" + }, + "saas": true, + "scriptSrc": [ + "js\\.iugu\\.com" + ], + "website": "https://www.iugu.com" + }, + "Ivory Search": { + "cats": [ + 87 + ], + "description": "Ivory Search is a WordPress search plugin that improves WordPress search by providing advanced options to extend search or exclude specific content from search.", + "icon": "ivory_searc.svg", + "js": { + "IvorySearchVars": "", + "ivory_search_analytics": "" + }, + "pricing": [ + "freemium", + "recurring", + "onetime" + ], + "requires": [ + "WordPress" + ], + "scriptSrc": [ + "/wp-content/plugins/add-search-to-menu/.+\\.js(?:\\?ver=(\\d+(?:\\.\\d+)+))?\\;version:\\1" + ], + "website": "https://ivorysearch.com" + }, + "iWeb": { + "cats": [ + 20 + ], + "description": "iWeb is a web site creation tool.", + "icon": "Apple.svg", + "meta": { + "generator": "^iWeb( [\\d.]+)?\\;version:\\1" + }, + "website": "https://www.apple.com/welcomescreen/ilife/iweb-3/" + }, + "iWiki": { + "cats": [ + 1 + ], + "description": "iWiki is a Dutch-based content management system provider, formerly known as Kirra.", + "icon": "iWink.svg", + "js": { + "Kirra": "", + "KirraActiveMenuItems": "" + }, + "saas": true, + "scriptSrc": [ + "\\.kirra\\.nl" + ], + "website": "https://www.iwink.nl" + }, "iyzico": { "cats": [ 41 @@ -2425,5 +3413,26 @@ ], "saas": true, "website": "https://www.iyzico.com" + }, + "Izooto": { + "cats": [ + 32, + 5 + ], + "description": "iZooto is a user engagement and retention tool that leverages web push notifications to help business to drive repeat traffic, leads and sales.", + "icon": "Izooto.svg", + "js": { + "Izooto": "", + "_izooto": "" + }, + "pricing": [ + "mid", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "cdn\\.izooto\\.\\w+" + ], + "website": "https://www.izooto.com" } -} \ No newline at end of file +} diff --git a/src/technologies/j.json b/src/technologies/j.json index 90d50091..fa15183d 100644 --- a/src/technologies/j.json +++ b/src/technologies/j.json @@ -19,208 +19,32 @@ ], "website": "https://www.j2store.org" }, - "JANet": { - "cats": [ - 71 - ], - "description": "JANet is an affiliate marketing network.", - "dom": [ - "img[src*='.j-a-net.jp'],img[data-src*='.j-a-net.jp']" - ], - "icon": "JANet.svg", - "website": "https://j-a-net.jp" - }, - "JAlbum": { - "cats": [ - 7 - ], - "description": "jAlbum is across-platform photo website software for creating and uploading galleries from images and videos.", - "icon": "JAlbum.svg", - "implies": [ - "Java" - ], - "meta": { - "generator": "JAlbum( [\\d.]+)?\\;version:\\1" - }, - "website": "https://jalbum.net/en" - }, - "JBoss Application Server": { - "cats": [ - 22 - ], - "cpe": "cpe:2.3:a:redhat:jboss_application_server:*:*:*:*:*:*:*:*", - "headers": { - "X-Powered-By": "JBoss(?:-([\\d.]+))?\\;version:\\1" - }, - "icon": "JBoss Application Server.png", - "website": "https://jboss.org/jbossas.html" - }, - "JBoss Web": { - "cats": [ - 22 - ], - "cpe": "cpe:2.3:a:redhat:jbossweb:*:*:*:*:*:*:*:*", - "excludes": [ - "Apache Tomcat" - ], - "headers": { - "X-Powered-By": "JBossWeb(?:-([\\d.]+))?\\;version:\\1" - }, - "icon": "JBoss Web.png", - "implies": [ - "JBoss Application Server" - ], - "website": "https://jboss.org/jbossweb" - }, - "JET Enterprise": { - "cats": [ - 6 - ], - "headers": { - "powered": "jet-enterprise" - }, - "icon": "JET Enterprise.svg", - "website": "https://www.jetecommerce.com.br/" - }, - "JS Charts": { - "cats": [ - 25 - ], - "icon": "JS Charts.svg", - "js": { - "JSChart": "" - }, - "scriptSrc": [ - "jscharts.{0,32}\\.js" - ], - "website": "https://www.jscharts.com", - "description": "JS Charts is a JavaScript-based tool for creating customizable charts, such as bar, pie, and line charts, with minimal coding required for integration into web projects." - }, - "JS.org": { - "cats": [ - 109 - ], - "description": "JS.org is a provider of free subdomains for JavaScript-based projects.", - "dom": [ - "link[href*='.js.org/'][rel='canonical']" - ], - "icon": "JSOrg.svg", - "oss": true, - "website": "https://js.org" - }, - "JSEcoin": { - "cats": [ - 56 - ], - "description": "JSEcoin is a way to mine, receive payments for your goods or services and transfer cryptocurrency", - "icon": "JSEcoin.png", - "js": { - "jseMine": "" - }, - "scriptSrc": [ - "^(?:https):?//load\\.jsecoin\\.com/load/" - ], - "website": "https://jsecoin.com/" - }, - "JSS": { - "cats": [ - 12, - 47 - ], - "description": "JSS is an authoring tool for CSS which allows you to use JavaScript to describe styles in a declarative, conflict-free and reusable way.", - "dom": [ - "style[data-jss]" - ], - "icon": "JSS.svg", - "oss": true, - "website": "https://cssinjs.org/" - }, - "JSZip": { - "cats": [ - 59 - ], - "cpe": "cpe:2.3:a:jszip_project:jszip:*:*:*:*:*:*:*:*", - "description": "JSZip is a JavaScript library that enables the creation, reading, and manipulation of zip files in a browser environment.", - "js": { - "JSZip.version": "([\\d\\.]+)\\;version:\\1" - }, - "oss": true, - "scriptSrc": [ - "/jszip\\.min\\.js" - ], - "website": "https://stuk.github.io/jszip/" - }, - "JShop": { - "cats": [ - 6 - ], - "description": "JShop is the ecommerce database solution marketed by Whorl Ltd. worldwide.", - "icon": "JShop.svg", - "js": { - "jss_1stepDeliveryType": "", - "jss_1stepFillShipping": "" - }, - "website": "https://www.whorl.co.uk" - }, - "JTL Shop": { - "cats": [ - 6 - ], - "cookies": { - "JTLSHOP": "" - }, - "description": "JTL Shop is an ecommerce product created by JTL Software company.", - "html": [ - "(?:]+name=\"JTLSHOP|" + ], + "icon": "Java.svg", + "website": "https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html" + }, + "JavaScript Infovis Toolkit": { + "cats": [ + 25 + ], + "icon": "JavaScript Infovis Toolkit.png", + "js": { + "$jit": "", + "$jit.version": "^(.+)$\\;version:\\1" + }, + "scriptSrc": [ "jit(?:-yc)?\\.js" ], "website": "https://philogb.github.io/jit/" @@ -363,16 +270,104 @@ ], "website": "https://www.oracle.com/technetwork/java/javaee/jsp/index.html" }, - "Javadoc": { + "JazzHR": { "cats": [ - 4 + 101 ], - "description": "Javadoc is a tool used for generating Java code documentation in HTML format from Java source code.", - "html": [ - "" + "description": "JazzHR is SaaS recruiting software to source talent, conduct interviews and hires.", + "icon": "JazzHR.svg", + "pricing": [ + "mid", + "recurring" ], - "icon": "Java.svg", - "website": "https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html" + "saas": true, + "scriptSrc": [ + "app\\.jazz\\.co/" + ], + "scripts": [ + "JazzHR" + ], + "website": "https://www.jazzhr.com" + }, + "JBoard": { + "cats": [ + 101 + ], + "description": "JBoard is a platform for creating and managing job boards with no coding required, enabling users to post, organize, and maintain job listings.", + "icon": "JBoard.svg", + "js": { + "$JBoardAPI": "", + "$jBoard.adminUserToken": "" + }, + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "app\\.jboard\\.io" + ], + "website": "https://jboard.io" + }, + "JBoss Application Server": { + "cats": [ + 22 + ], + "cpe": "cpe:2.3:a:redhat:jboss_application_server:*:*:*:*:*:*:*:*", + "headers": { + "X-Powered-By": "JBoss(?:-([\\d.]+))?\\;version:\\1" + }, + "icon": "JBoss Application Server.png", + "website": "https://jboss.org/jbossas.html" + }, + "JBoss Web": { + "cats": [ + 22 + ], + "cpe": "cpe:2.3:a:redhat:jbossweb:*:*:*:*:*:*:*:*", + "excludes": [ + "Apache Tomcat" + ], + "headers": { + "X-Powered-By": "JBossWeb(?:-([\\d.]+))?\\;version:\\1" + }, + "icon": "JBoss Web.png", + "implies": [ + "JBoss Application Server" + ], + "website": "https://jboss.org/jbossweb" + }, + "jComponent": { + "cats": [ + 12, + 59 + ], + "description": "jComponent is a platform offering open-source web components and icons for easy integration into web projects.", + "icon": "jComponent.svg", + "implies": [ + "jQuery" + ], + "js": { + "MAIN.version": "(.*)\\;version:\\1" + }, + "oss": true, + "website": "https://componentator.com" + }, + "Jeeng": { + "cats": [ + 76 + ], + "description": "Jeeng is a personalized notification platform that delivers targeted updates based on user preferences and engagement patterns.", + "icon": "Jeeng.svg", + "js": { + "jeeng_attribution": "" + }, + "saas": true, + "scriptSrc": [ + "sdk\\.jeeng\\.com" + ], + "website": "https://www.jeeng.com" }, "Jekyll": { "cats": [ @@ -403,6 +398,9 @@ ], "cpe": "cpe:2.3:a:jenkins:jenkins:*:*:*:*:*:*:*:*", "description": "Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration (CI) purposes.", + "dom": [ + "span.jenkins_ver > a[href='https://jenkins.io/']" + ], "headers": { "X-Jenkins": "([\\d.]+)\\;version:\\1" }, @@ -437,6 +435,58 @@ ], "website": "https://www.getjenny.com" }, + "JET Enterprise": { + "cats": [ + 6 + ], + "headers": { + "powered": "jet-enterprise" + }, + "icon": "JET Enterprise.svg", + "website": "https://www.jetecommerce.com.br/" + }, + "Jetboost": { + "cats": [ + 5 + ], + "description": "Jetboost is a tool that enables real-time search, dynamic filtering, and other features for Webflow sites without requiring code.", + "icon": "Jetboost.svg", + "js": { + "JETBOOST_SITE_ID": "", + "Jetboost.loaded": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "requires": [ + "Webflow" + ], + "saas": true, + "website": "https://www.jetboost.io" + }, + "JetEngine": { + "cats": [ + 87 + ], + "description": "JetEngine is a content plugin for WordPress that allows users to create custom post types, taxonomies, and meta boxes, offering flexibility in building complex websites without requiring coding skills.", + "icon": "JetEngine.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "onetime" + ], + "requires": [ + "WordPress" + ], + "saas": true, + "scriptSrc": [ + "/wp-content/plugins/jet-engine/" + ], + "website": "https://crocoblock.com/plugins/jetengine" + }, "Jetpack": { "cats": [ 87 @@ -489,10 +539,32 @@ }, "website": "https://jetshop.se" }, + "JetTabs": { + "cats": [ + 87 + ], + "description": "JetTabs is a plugin for Elementor that enables the creation of customizable tabs and accordion widgets for organizing content within web pages.", + "icon": "JetTabs.svg", + "implies": [ + "Elementor" + ], + "js": { + "JetTabs.accordionInit": "", + "JetTabsSettings": "" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://crocoblock.com/plugins/jettabs" + }, "Jetty": { "cats": [ 22 ], + "cpe": "cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:*", + "description": "Jetty is an open-source web server and servlet container known for its scalability and efficiency, supporting protocols like HTTP and WebSocket for various applications from development tools to cloud services.", "headers": { "Server": "Jetty(?:\\(([\\d\\.]*\\d+))?\\;version:\\1" }, @@ -500,9 +572,8 @@ "implies": [ "Java" ], - "website": "https://www.eclipse.org/jetty", "oss": true, - "description": "Jetty is an open-source web server and servlet container known for its scalability and efficiency, supporting protocols like HTTP and WebSocket for various applications from development tools to cloud services." + "website": "https://www.eclipse.org/jetty" }, "Jibres": { "cats": [ @@ -528,6 +599,24 @@ ], "website": "https://jibres.com" }, + "Jiglu": { + "cats": [ + 2 + ], + "description": "Jiglu is a collaboration and communities suite that connects enterprise content with conversations to support improved communication.", + "icon": "Jiglu.svg", + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "scriptSrc": [ + "\\.jiglu\\.com/" + ], + "website": "https://www.jiglu.com" + }, "Jilt App": { "cats": [ 100, @@ -603,11 +692,11 @@ "cpe": "cpe:2.3:a:jitsi:jitsi:*:*:*:*:*:*:*:*", "description": "Jitsi is a free and open-source multiplatform voice (VoIP), videoconferencing and instant messaging applications for the web platform.", "icon": "Jitsi.svg", + "oss": true, "scriptSrc": [ "lib-jitsi-meet.*\\.js" ], - "website": "https://jitsi.org", - "oss": true + "website": "https://jitsi.org" }, "Jive": { "cats": [ @@ -663,6 +752,23 @@ ], "website": "https://jivox.com" }, + "Job Board Fire": { + "cats": [ + 101 + ], + "description": "JobBoardFire is a platform that provides software for managing job boards, connecting entrepreneurs and community members.", + "icon": "JobBoardFire.svg", + "pricing": [ + "mid", + "recurring", + "poa" + ], + "saas": true, + "scripts": [ + "jobboardfire\\.twic\\.pics" + ], + "website": "https://www.jobboardfire.com" + }, "JobAdder": { "cats": [ 101 @@ -701,6 +807,22 @@ "oss": true, "website": "https://www.jobberbase.com" }, + "Jobiqo": { + "cats": [ + 101 + ], + "description": "Jobiqo is a job board platform that enables publishers to expand reach and increase recruitment advertising revenue.", + "icon": "Jobiqo.svg", + "meta": { + "owner": "^Jobiqo$" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://www.jobiqo.com" + }, "Jobvite": { "cats": [ 101 @@ -721,50 +843,78 @@ "saas": true, "website": "https://www.jobvite.com" }, - "Jonas Club Software": { + "Jobylon": { + "cats": [ + 101 + ], + "description": "Jobylon is a flexible talent acquisition platform designed to help leading employers streamline recruitment and manage hiring processes.", + "icon": "Jobylon.svg", + "saas": true, + "scriptSrc": [ + "\\.jobylon\\.com" + ], + "website": "https://www.jobylon.com" + }, + "Join It": { "cats": [ 53 ], - "description": "Jonas Club Software is a provider of club management solutions, facilitating relationship building with members, revenue growth, and cost reduction.", - "icon": "Jonas.svg", + "description": "Join It is a membership management platform that helps nonprofits, clubs, and growing organizations manage members, track payments, and streamline administrative tasks.", + "icon": "JoinIt.svg", + "saas": true, + "scripts": [ + "app\\.joinit\\.com" + ], + "website": "https://joinit.com" + }, + "Joinchat": { + "cats": [ + 52 + ], + "description": "Joinchat is a tool that enables businesses to convert customer conversations into sales or leads through integrated communication features.", + "icon": "Joinchat.svg", "js": { - "jonasPrivacyPolicy": "", - "jonasPrivacyPolicyClassName": "" + "joinchat_obj": "" }, "pricing": [ - "mid", + "low", "recurring" ], "saas": true, - "website": "https://jonasclub.com" + "scriptSrc": [ + "/js/joinchat\\.min\\.js" + ], + "website": "https://join.chat" }, - "JoomShopping": { + "Jonas Club Software": { "cats": [ - 6 - ], - "description": "JoomShopping is an open-source ecommerce plugin for Joomla.", - "icon": "JoomShopping.png", - "implies": [ - "Joomla" + 53 ], + "description": "Jonas Club Software is a provider of club management solutions, facilitating relationship building with members, revenue growth, and cost reduction.", + "icon": "Jonas.svg", "js": { - "joomshoppingVideoHtml5": "" + "jonasPrivacyPolicy": "", + "jonasPrivacyPolicyClassName": "" }, - "oss": true, "pricing": [ - "onetime" - ], - "scriptSrc": [ - "/components/com_jshopping/" + "mid", + "recurring" ], - "website": "https://www.webdesigner-profi.de/joomla-webdesign/joomla-shop" + "saas": true, + "website": "https://jonasclub.com" }, "Joomla": { "cats": [ 1 ], + "cookies": { + "joomla_[a-z0-9]+": "" + }, "cpe": "cpe:2.3:a:joomla:joomla\\!:*:*:*:*:*:*:*:*", "description": "Joomla is a free and open-source content management system for publishing web content.", + "dom": [ + "div[id*='wrapper_r'], link[href*='feed/com_'], link[href*='components/com_'], table[class*='pill']" + ], "headers": { "X-Content-Encoded-By": "Joomla! ([\\d.]+)\\;version:\\1" }, @@ -783,21 +933,64 @@ "generator": "Joomla!(?: ([\\d.]+))?\\;version:\\1" }, "oss": true, + "scriptSrc": [ + "(?:^|/)(feed/com_|components/com_)" + ], "url": [ "option=com_" ], "website": "https://www.joomla.org/" }, - "Jotform": { + "JoomShopping": { "cats": [ - 110 + 6 + ], + "description": "JoomShopping is an open-source ecommerce plugin for Joomla.", + "icon": "JoomShopping.png", + "implies": [ + "Joomla" ], - "description": "Jotform is an online form builder that enables the creation of robust forms.", - "icon": "Jotform.svg", "js": { - "JOTFORM_ENV": "", - "JotForm.FBCollectInformation": "", - "JotFormActions": "" + "joomshoppingVideoHtml5": "" + }, + "oss": true, + "pricing": [ + "onetime" + ], + "scriptSrc": [ + "/components/com_jshopping/" + ], + "website": "https://www.webdesigner-profi.de/joomla-webdesign/joomla-shop" + }, + "Joonbot": { + "cats": [ + 52 + ], + "description": "Joonbot is a chatbot builder that enables users to create automated conversational flows without programming knowledge.", + "icon": "Joonbot.svg", + "js": { + "JOONBOT_WIDGET_ID": "", + "joonbot.hide": "" + }, + "pricing": [ + "freemium", + "low", + "recurring", + "poa" + ], + "saas": true, + "website": "https://joonbot.com" + }, + "Jotform": { + "cats": [ + 110 + ], + "description": "Jotform is an online form builder that enables the creation of robust forms.", + "icon": "Jotform.svg", + "js": { + "JOTFORM_ENV": "", + "JotForm.FBCollectInformation": "", + "JotFormActions": "" }, "pricing": [ "freemium", @@ -811,6 +1004,22 @@ ], "website": "https://www.jotform.com" }, + "Jottful": { + "cats": [ + 51 + ], + "description": "Jottful is a platform that enables small businesses to create and manage professional websites.", + "icon": "Jottful.svg", + "meta": { + "web_author": "^Jottful" + }, + "pricing": [ + "low", + "recurring" + ], + "saas": true, + "website": "https://jottful.com" + }, "JouwWeb": { "cats": [ 1, @@ -832,208 +1041,700 @@ ], "website": "https://www.jouwweb.nl" }, - "JsObservable": { - "cats": [ - 59 - ], - "description": "JsObservable is integrated with JsViews and facilitates observable data manipulations that are immediately reflected in the data-bound templates. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", - "icon": "JsObservable.svg", - "oss": true, - "website": "https://www.jsviews.com/#jsobservable" - }, - "JsRender": { + "jPlayer": { "cats": [ + 14, 59 ], - "description": "JsRender is the template library. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", - "icon": "JsRender.svg", + "description": "jPlayer is a cross-browser JavaScript library developed as a jQuery plugin which facilitates the embedding of web based media, notably HTML5 audio and video in addition to Adobe Flash based media.", + "icon": "jPlayer.svg", "implies": [ - "JsViews" + "jQuery" ], + "js": { + "jPlayerPlaylist": "" + }, "oss": true, "scriptSrc": [ - "([\\d\\.]+)?/jsrender(?:\\.min)?\\.js\\;version:\\1" + "/jquery\\.jplayer\\.min\\.js" ], - "website": "https://www.jsviews.com/#jsrender" + "scripts": [ + "jquery\\.jplayer\\.min\\.js" + ], + "website": "https://jplayer.org" }, - "JsViews": { + "jqPlot": { "cats": [ - 59 + 25 ], - "description": "JsViews is the MVVM library which provides two-way data binding for the template. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", - "icon": "JsViews.svg", + "icon": "jqPlot.png", "implies": [ - "JsObservable", - "JsRender" + "jQuery" ], - "oss": true, "scriptSrc": [ - "([\\d\\.]+)?/jsviews(?:\\.min)?\\.js\\;version:\\1" + "jqplot.*\\.js" ], - "website": "https://www.jsviews.com/#jsviews" + "website": "https://www.jqplot.com" }, - "Judge.me": { + "jQTouch": { "cats": [ - 90 + 26 ], - "description": "Judge.me is a reviews app that helps you collect and display product reviews and site reviews with photos, videos and Q&A.", - "icon": "Judge.svg", + "description": "jQTouch is an open-source Zepto/ jQuery plugin with native animations, automatic navigation, and themes for mobile WebKit browsers like iPhone, G1 (Android), and Palm Pre.", + "icon": "jQTouch.png", "js": { - "judgeme": "" + "jQT": "" }, - "pricing": [ - "freemium", - "low", - "recurring" - ], - "saas": true, "scriptSrc": [ - "cdn\\.judge\\.me" + "jqtouch.*\\.js" ], - "website": "https://judge.me" + "website": "https://jqtouch.com" }, - "JuicyAds": { + "jQuery": { "cats": [ - 36 + 59 ], - "description": "JuicyAds is a legitimate advertising network that specializes in adult content.", - "icon": "JuicyAds.svg", + "cpe": "cpe:2.3:a:jquery:jquery:*:*:*:*:*:*:*:*", + "description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.", + "icon": "jQuery.svg", "js": { - "adsbyjuicy": "" - }, - "meta": { - "juicyads-site-verification": "" + "$.fn.jquery": "([\\d.]+)\\;version:\\1", + "jQuery.fn.jquery": "([\\d.]+)\\;version:\\1", + "jQuery.prototype.jquery": "([\\d.]+)\\;version:\\1" }, - "pricing": [ - "payg" + "scriptSrc": [ + "jquery", + "/jquery(?:-(\\d+\\.\\d+\\.\\d+))[/.-]\\;version:\\1", + "/(\\d+\\.\\d+\\.\\d+)/jquery(?!\\.popupoverlay\\.js)[/.-][^u]\\;version:\\1" ], - "saas": true, - "website": "https://www.juicyads.com" + "website": "https://jquery.com" }, - "Jumbo": { + "jQuery BlockUI": { "cats": [ - 92 + 59 ], - "description": "Jumbo is a page speed optimizer app for Shopify based sites.", - "icon": "Jumbo.svg", - "implies": [ - "Shopify" + "description": "jQuery BlockUI is a plugin that simulates synchronous behavior in AJAX by temporarily blocking user interaction and adding DOM elements that visually indicate restricted activity until the block is removed.", + "requires": [ + "jQuery" ], "scriptSrc": [ - "mt\\.tryjumbo\\.com" + "/jquery\\.blockUI\\.js" ], - "website": "https://www.tryjumbo.com/" + "website": "https://jquery.malsup.com/block" }, - "Jumio": { + "jQuery CDN": { "cats": [ - 16 + 31 ], - "description": "Jumio is an online mobile payments and identity verification company that provides card and ID scanning and validation products for mobile and web transactions.", - "dom": [ - "iframe[src*='.netverify.com/']" + "description": "jQuery CDN is a way to include jQuery in your website without actually downloading and keeping it your website's folder.", + "icon": "jQuery.svg", + "implies": [ + "jQuery" ], - "icon": "Jumio.svg", - "pricing": [ - "payg", - "mid", - "recurring" + "scriptSrc": [ + "code\\.jquery\\.com/" ], - "saas": true, - "website": "https://www.jumio.com" + "website": "https://code.jquery.com/" }, - "Jumpseller": { + "jQuery DevBridge Autocomplete": { "cats": [ - 6 + 59 + ], + "description": "Ajax Autocomplete for jQuery allows you to easily create autocomplete/autosuggest boxes for text input fields.", + "icon": "jQuery.svg", + "implies": [ + "jQuery" ], - "description": "Jumpseller is a cloud ecommerce solution for small businesses.", - "icon": "Jumpseller.svg", "js": { - "Jumpseller": "" + "$.devbridgeAutocomplete": "", + "jQuery.devbridgeAutocomplete": "" }, - "pricing": [ - "low", - "recurring" - ], - "saas": true, "scriptSrc": [ - "assets\\.jumpseller\\.\\w+/", - "jumpseller-apps\\.herokuapp\\.\\w+/" + "/devbridgeAutocomplete(?:-min)?\\.js", + "/jquery\\.devbridge-autocomplete/([0-9.]+)/jquery\\.autocomplete(?:.min)?\\.js\\;version:\\1" ], - "website": "https://jumpseller.com" + "website": "https://www.devbridge.com/sourcery/components/jquery-autocomplete/" }, - "June": { + "jQuery Migrate": { "cats": [ - 10, - 97 + 59 ], - "cookies": { - "_june_session": "" - }, - "description": "June is a product analytics for subscription businesses. It automatically generates graphs of the metrics users should track by connecting their segment account.", - "icon": "June.svg", - "pricing": [ - "mid", - "freemium", - "recurring" + "description": "Query Migrate is a javascript library that allows you to preserve the compatibility of your jQuery code developed for versions of jQuery older than 1.9.", + "icon": "jQuery.svg", + "implies": [ + "jQuery" ], - "saas": true, + "js": { + "jQuery.migrateVersion": "([\\d.]+)\\;version:\\1", + "jQuery.migrateWarnings": "", + "jqueryMigrate": "" + }, "scriptSrc": [ - "static\\.june\\.so/analytics\\.js/" + "jquery-migrate(?:\\.min)?(?:-)?(?:\\.min)?\\.js(?:\\?v(?:er)?=((?:\\d+\\.)+\\d+))?\\;version:\\1", + "jquery-migrate(?:\\.min)?(?:-?((?:\\d+\\.)+\\d+))?(?:\\.min)?\\.js\\;version:\\1" ], - "website": "https://june.so", - "xhr": [ - "a\\.june\\.so" - ] + "website": "https://github.com/jquery/jquery-migrate" }, - "Junip": { + "jQuery Mobile": { "cats": [ - 90 + 26 + ], + "description": "jQuery Mobile is a HTML5-based user interface system designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices.", + "icon": "jQuery Mobile.svg", + "implies": [ + "jQuery" ], - "description": "Junip provider of a ecommerce brand review platform designed to share customers' story, send review requests and display review content.", - "icon": "Junip.svg", "js": { - "junipLoaded": "\\;confidence:50", - "webpackChunkjunip_scripts": "\\;confidence:50" + "jQuery.mobile.version": "^(.+)$\\;version:\\1" }, - "pricing": [ - "freemium", - "recurring", - "payg" - ], - "requiresCategory": [ - 6 - ], - "saas": true, "scriptSrc": [ - "\\.juniphq\\.com/" + "jquery[.-]mobile(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", + "jquery[.-]mobile(?:-)?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1" ], - "website": "https://junip.co" + "website": "https://jquerymobile.com" }, - "Juo": { + "jQuery Modal": { "cats": [ - 74 - ], - "description": "Juo is a centralised experimentation platform for innovative marketing and product teams.", - "icon": "Juo.svg", - "pricing": [ - "poa" + 59 ], - "saas": true, + "description": "jQuery Modal is an overlay dialog box or in other words, a popup window that is made to display on the top or 'overlayed' on the current page.", + "dom": [ + "link[href*='jquery.modal.min.css']" + ], + "icon": "jQuery Modal.svg", + "implies": [ + "jQuery" + ], + "oss": true, + "scriptSrc": [ + "jquery-modal/([\\d\\.]+)/jquery\\.modal\\.min\\.js\\;version:\\1" + ], + "website": "https://jquerymodal.com" + }, + "jQuery Payment": { + "cats": [ + 41 + ], + "description": "jQuery Payment is a general-purpose library for building credit card forms, validating input fields, and formatting card numbers.", + "icon": "jQuery.svg", + "oss": true, + "requires": [ + "jQuery" + ], + "scriptSrc": [ + "/jquery-payment/jquery\\.payment\\.min\\.js" + ], + "website": "https://plugins.jquery.com/payment" + }, + "jQuery Popup Overlay": { + "cats": [ + 59 + ], + "description": "jQuery Popup Overlay is a responsive overlay which lets you create modal windows, tooltips, and more.", + "scriptSrc": [ + "(\\d+\\.\\d+\\.\\d+)/jquery\\.popupoverlay\\.js\\;version:\\1" + ], + "website": "https://www.npmjs.com/package/jquery-popup-overlay" + }, + "jQuery Sparklines": { + "cats": [ + 25 + ], + "description": "jQuery Sparklines is a plugin that generates sparklines (small inline charts) directly in the browser using data supplied either inline in the HTML, or via javascript.", + "implies": [ + "jQuery" + ], + "scriptSrc": [ + "jquery\\.sparkline.*\\.js" + ], + "website": "https://omnipotent.net/jquery.sparkline/" + }, + "jQuery UI": { + "cats": [ + 59 + ], + "cpe": "cpe:2.3:a:jquery:jquery_ui:*:*:*:*:*:*:*:*", + "description": "jQuery UI is a collection of GUI widgets, animated visual effects, and themes implemented with jQuery, Cascading Style Sheets, and HTML.", + "icon": "jQuery UI.svg", + "implies": [ + "jQuery" + ], + "js": { + "jQuery.ui.version": "^(.+)$\\;version:\\1" + }, + "scriptSrc": [ + "jquery-ui[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1", + "([\\d.]+)/jquery-ui(?:\\.min)?\\.js\\;version:\\1", + "jquery-ui.*\\.js" + ], + "website": "https://jqueryui.com" + }, + "jQuery-pjax": { + "cats": [ + 26 + ], + "description": "jQuery PJAX is a plugin that uses AJAX and pushState.", + "html": [ + "]+data-pjax-container" + ], + "implies": [ + "jQuery" + ], + "js": { + "jQuery.pjax": "" + }, + "meta": { + "pjax-push": "", + "pjax-replace": "", + "pjax-timeout": "" + }, + "scriptSrc": [ + "jquery[.-]pjax(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", + "jquery[.-]pjax(?:-)?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1" + ], + "website": "https://github.com/defunkt/jquery-pjax" + }, + "JS Charts": { + "cats": [ + 25 + ], + "description": "JS Charts is a JavaScript-based tool for creating customizable charts, such as bar, pie, and line charts, with minimal coding required for integration into web projects.", + "icon": "JS Charts.svg", + "js": { + "JSChart": "" + }, + "scriptSrc": [ + "jscharts.{0,32}\\.js" + ], + "website": "https://www.jscharts.com" + }, + "JS.org": { + "cats": [ + 109 + ], + "description": "JS.org is a provider of free subdomains for JavaScript-based projects.", + "dom": [ + "link[href*='.js.org/'][rel='canonical']" + ], + "icon": "JSOrg.svg", + "oss": true, + "website": "https://js.org" + }, + "jsDelivr": { + "cats": [ + 31 + ], + "description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.", + "dom": [ + "link[href*='cdn.jsdelivr.net']" + ], + "icon": "jsdelivr-icon.svg", + "scriptSrc": [ + "cdn\\.jsdelivr\\.net" + ], + "website": "https://www.jsdelivr.com/", + "xhr": [ + "cdn\\.jsdelivr\\.net" + ] + }, + "JSEcoin": { + "cats": [ + 56 + ], + "description": "JSEcoin is a way to mine, receive payments for your goods or services and transfer cryptocurrency", + "icon": "JSEcoin.png", + "js": { + "jseMine": "" + }, + "scriptSrc": [ + "^(?:https):?//load\\.jsecoin\\.com/load/" + ], + "website": "https://jsecoin.com/" + }, + "JShop": { + "cats": [ + 6 + ], + "description": "JShop is the ecommerce database solution marketed by Whorl Ltd. worldwide.", + "icon": "JShop.svg", + "js": { + "jss_1stepDeliveryType": "", + "jss_1stepFillShipping": "" + }, + "website": "https://www.whorl.co.uk" + }, + "JsObservable": { + "cats": [ + 59 + ], + "description": "JsObservable is integrated with JsViews and facilitates observable data manipulations that are immediately reflected in the data-bound templates. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", + "icon": "JsObservable.svg", + "oss": true, + "website": "https://www.jsviews.com/#jsobservable" + }, + "jsPDF": { + "cats": [ + 59 + ], + "description": "jsPDF is a HTML5 client-side solution for generating PDF documents directly within web browsers.", + "icon": "jsPDF.svg", + "js": { + "jsPDF.API": "" + }, + "oss": true, + "pricing": [ + "freemium" + ], + "scriptSrc": [ + "/jspdf\\.min\\.js" + ], + "website": "https://parall.ax/products/jspdf" + }, + "JsRender": { + "cats": [ + 59 + ], + "description": "JsRender is the template library. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", + "icon": "JsRender.svg", + "implies": [ + "JsViews" + ], + "oss": true, + "scriptSrc": [ + "([\\d\\.]+)?/jsrender(?:\\.min)?\\.js\\;version:\\1" + ], + "website": "https://www.jsviews.com/#jsrender" + }, + "JSS": { + "cats": [ + 12, + 47 + ], + "description": "JSS is an authoring tool for CSS which allows you to use JavaScript to describe styles in a declarative, conflict-free and reusable way.", + "dom": [ + "style[data-jss]" + ], + "icon": "JSS.svg", + "oss": true, + "website": "https://cssinjs.org/" + }, + "JsViews": { + "cats": [ + 59 + ], + "description": "JsViews is the MVVM library which provides two-way data binding for the template. The library is developed and maintained by Microsoft employee Boris Moore and is used in projects such as Outlook.com and Windows Azure.", + "icon": "JsViews.svg", + "implies": [ + "JsObservable", + "JsRender" + ], + "oss": true, + "scriptSrc": [ + "([\\d\\.]+)?/jsviews(?:\\.min)?\\.js\\;version:\\1" + ], + "website": "https://www.jsviews.com/#jsviews" + }, + "JSZip": { + "cats": [ + 59 + ], + "cpe": "cpe:2.3:a:jszip_project:jszip:*:*:*:*:*:*:*:*", + "description": "JSZip is a JavaScript library that enables the creation, reading, and manipulation of zip files in a browser environment.", + "js": { + "JSZip.version": "([\\d\\.]+)\\;version:\\1" + }, + "oss": true, + "scriptSrc": [ + "/jszip\\.min\\.js" + ], + "website": "https://stuk.github.io/jszip/" + }, + "JTL Shop": { + "cats": [ + 6 + ], + "cookies": { + "JTLSHOP": "" + }, + "description": "JTL Shop is an ecommerce product created by JTL Software company.", + "dom": [ + "input[name*='JTLSHOP']" + ], + "html": [ + "(?:]+name=\"JTLSHOP|]+data-pjax-container" - ], - "implies": [ - "jQuery" + "div[data-video-provider*=jwplayer]", + "div[class^='jwplayer']" ], + "icon": "JW Player.svg", "js": { - "jQuery.pjax": "" - }, - "meta": { - "pjax-push": "", - "pjax-replace": "", - "pjax-timeout": "" + "jwDefaults": "", + "jwplayer": "", + "jwplayerApiUrl": "", + "webpackJsonpjwplayer": "" }, - "scriptSrc": [ - "jquery[.-]pjax(?:-([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1", - "jquery[.-]pjax(?:-)?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1" - ], - "website": "https://github.com/defunkt/jquery-pjax" - }, - "jqPlot": { - "cats": [ - 25 - ], - "icon": "jqPlot.png", - "implies": [ - "jQuery" - ], - "scriptSrc": [ - "jqplot.*\\.js" - ], - "website": "https://www.jqplot.com" - }, - "jsDelivr": { - "cats": [ - 31 - ], - "description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.", - "dom": [ - "link[href*='cdn.jsdelivr.net']" + "oss": true, + "pricing": [ + "low", + "recurring", + "freemium" ], - "icon": "jsdelivr-icon.svg", + "saas": true, "scriptSrc": [ - "cdn\\.jsdelivr\\.net" + "\\.jwplayer\\.com", + "\\.jwpcdn\\.com" ], - "website": "https://www.jsdelivr.com/", + "website": "https://www.jwplayer.com", "xhr": [ - "cdn\\.jsdelivr\\.net" + "\\.jwpsrv\\.com" ] } -} \ No newline at end of file +} diff --git a/src/technologies/k.json b/src/technologies/k.json index f30a9b1e..76513b90 100644 --- a/src/technologies/k.json +++ b/src/technologies/k.json @@ -1,4 +1,22 @@ { + "k-eCommerce": { + "cats": [ + 6 + ], + "description": "k-eCommerce is mdf commerce’s platform for SMBs, providing all-in-one ecommerce and digital payment solutions integrated to Microsoft Dynamics and SAP Business One. ", + "dom": [ + "a[href*='.k-ecommerce.com/'][target='_blank']" + ], + "icon": "k-eCommerce.svg", + "meta": { + "generator": "k-eCommerce" + }, + "pricing": [ + "poa" + ], + "saas": true, + "website": "https://www.k-ecommerce.com" + }, "K-Sup": { "cats": [ 1 @@ -18,6 +36,7 @@ "cats": [ 19 ], + "description": "K2 is a content management extension for Joomla, developed by JoomlaWorks, that enhances Joomla's capabilities by providing features like rich content forms, nested categories, tags, comments, and more.", "html": [ "", + "", + "]+(?:id|class)=\"livefyre" - ], - "icon": "Livefyre.svg", - "js": { - "FyreLoader": "", - "L.version": "^(.+)$\\;confidence:0\\;version:\\1", - "LF.CommentCount": "", - "fyre": "" - }, - "scriptSrc": [ - "livefyre_init\\.js" - ], - "website": "https://livefyre.com" - }, - "Liveinternet": { - "cats": [ - 10 - ], - "html": [ - "