├── logos
├── .gitignore
├── South Africa.svg
├── Twitch.svg
├── Facebook Messenger.svg
├── Microsoft Office.svg
├── Facebook (2).svg
├── Pocket.svg
├── pocket.svg
├── Alka Superliga.svg
├── alka superliga.svg
├── Hillary Clinton.svg
├── Periscope (2).svg
├── Periscope.svg
├── Nike.svg
├── Feedly.svg
├── Aol.svg
├── OK.ru.svg
├── Imgur (2).svg
├── Peach.svg
├── peach.svg
├── ESPN.svg
├── Twitter.svg
├── Gap.svg
├── Evernote (3).svg
├── New York Yankees.svg
├── Deepstream.io.svg
├── Adobe Illustrator CS6.svg
├── Dailymotion.svg
├── Citi.svg
├── Fancy (2).svg
├── Pinterest.svg
├── Indesign.svg
├── Blackberry Messenger.svg
├── Philips.svg
├── philips.svg
├── EBay.svg
├── Elevio (2).svg
├── elevio (2).svg
├── Hulu.svg
├── Wikia.svg
├── Kohl's.svg
├── 3M.svg
├── Discord (10).svg
├── AppHunt.svg
├── Netflix.svg
├── Yo.svg
├── FILA.svg
├── Ikea.svg
├── Visual Studio.svg
├── Mango.svg
├── Steam.svg
├── steam.svg
├── Facebook.svg
├── WeChat.svg
├── wechat.svg
├── CNN.svg
├── Ikea (2).svg
├── ClosingBell.svg
├── Komatsu.svg
├── Apple Watch.svg
├── Target.svg
├── United Airlines.svg
├── Chase.svg
├── Next.svg
├── next.svg
├── Sears.svg
├── Etsy.svg
├── FedEx.svg
├── Kakao Talk.svg
├── BBC.svg
├── Fox.svg
├── NBA.svg
├── CBS.svg
├── The Next Web (4).svg
├── PBS (2).svg
├── PBS.svg
├── UPS.svg
├── Discord (9).svg
├── Gucci.svg
├── gucci.svg
├── AMD.svg
├── Fivetran.svg
├── Amazon (2).svg
├── Discord.svg
├── Line Messenger.svg
├── Xbox.svg
├── Sonos.svg
├── sonos.svg
├── Lexus.svg
├── Telegram.svg
├── lexus.svg
├── telegram.svg
├── Suzuki.svg
├── Zoover.svg
├── suzuki.svg
├── zoover.svg
├── VISA.svg
├── visa.svg
├── Walmart (2).svg
├── Obey.svg
├── obey.svg
├── H&R Block.svg
├── Star Wars.svg
└── oozled.svg
├── .gitignore
├── README.md
├── .eslintrc
├── index.js
├── file_logos.js
├── LICENSE
├── seanherron_Flag-Webicons.js
├── gilbarbara_logos.js
├── package.json
├── seanherron_Gov-Webicons.js
├── andyfitz_logomono.js
└── shgysk8zer0_logos.js
/logos/.gitignore:
--------------------------------------------------------------------------------
1 | !.gitignore
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | npm-debug.log
3 | .DS_Store
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # instant-logos
2 |
3 | [](https://www.npmjs.com/package/instant-logos)
4 |
5 | All the logos of instantlogosearch.com
6 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "xo",
3 | "env": {
4 | "browser": true
5 | },
6 | "rules": {
7 | "camelcase": 0,
8 | "key-spacing": [2, {
9 | "align": "value",
10 | "beforeColon": false,
11 | "afterColon": true
12 | }],
13 | "new-cap": 0,
14 | "no-mixed-spaces-and-tabs": [2, "smart-tabs"],
15 | "no-multi-spaces": [2, { "exceptions": { "VariableDeclarator": true } }],
16 | "object-curly-spacing": [2, "always"],
17 | "space-before-function-paren": [2, "never"],
18 | "yoda": [2, "never", { "exceptRange": true }]
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/logos/South Africa.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Twitch.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
15 |
--------------------------------------------------------------------------------
/logos/Facebook Messenger.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 |
3 | var logos = _.union(
4 | require('./gilbarbara_logos'),
5 | require('./shgysk8zer0_logos'),
6 | require('./andyfitz_logomono'),
7 | require('./seanherron_Gov-Webicons'),
8 | require('./seanherron_Flag-Webicons'),
9 | require('./file_logos')
10 | );
11 |
12 | _.chain(logos)
13 | .each(function(logo) {
14 | logo.name = logo.name.replace(/amazon (?:aws|web services)/i, 'AWS');
15 | logo.shortname = logo.shortname || logo.name.toLowerCase().replace(/[.\-() ]/gi, '');
16 | logo.id = logo.source.shortname + '-' + logo.id.replace(/-\d+$/, '');
17 | })
18 | .groupBy('id')
19 | .reject(_.matcher({ length: 1 }))
20 | .each(function(group) {
21 | _.chain(group)
22 | .rest()
23 | .each(function(logo, i) {
24 | logo.id = logo.id + '-' + (i + 2);
25 | });
26 | });
27 |
28 | module.exports = logos;
29 |
--------------------------------------------------------------------------------
/logos/Microsoft Office.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/file_logos.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var fs = require('fs');
3 | var getSlug = require('speakingurl');
4 | var path = require('path');
5 |
6 | module.exports = _.chain(fs.readdirSync(path.join(__dirname, 'logos')))
7 | .filter(function(file) {
8 | return file.match(/\.svg$/);
9 | })
10 | .map(function(file) {
11 | var file_parts = file.split('.');
12 | var name = (file_parts.length < 2) ? file : _.initial(file_parts).join('.');
13 | return {
14 | id: getSlug(name),
15 | name: name.replace(/\s*\(.*\)/, ''),
16 | source: {
17 | name: 'Instant Logo Search',
18 | shortname: 'instantlogosearch',
19 | url: 'http://instantlogosearch.com'
20 | },
21 | svg: {
22 | path: {
23 | directory: path.join(__dirname, 'logos'),
24 | filename: file
25 | }
26 | }
27 | };
28 | })
29 | .value();
30 |
--------------------------------------------------------------------------------
/logos/Facebook (2).svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Pocket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/pocket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Alka Superliga.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/alka superliga.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Hillary Clinton.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Periscope (2).svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Periscope.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Nike.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Feedly.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Kogg
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/seanherron_Flag-Webicons.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var fs = require('fs');
3 | var getSlug = require('speakingurl');
4 | var path = require('path');
5 |
6 | module.exports = _.chain(fs.readdirSync(path.join(__dirname, 'node_modules/seanherron_Flag-Webicons/flags')))
7 | .filter(function(file) {
8 | return file.match(/\.svg$/);
9 | })
10 | .map(function(file) {
11 | file = file.replace(/\.svg$/, '');
12 | var name = getSlug(file, {
13 | separator: ' ',
14 | titleCase: ['and', 'of', 'the'],
15 | custom: { '-': ' ' }
16 | });
17 | name = name.charAt(0).toUpperCase() + name.slice(1);
18 | return {
19 | id: getSlug(file),
20 | name: name,
21 | contributor: {
22 | name: 'Sean Herron',
23 | shortname: 'seanherron'
24 | },
25 | source: {
26 | name: 'Flag Webicons',
27 | shortname: 'flag-webicons',
28 | url: 'https://github.com/seanherron/Flag-Webicons'
29 | },
30 | svg: {
31 | path: {
32 | directory: path.join(__dirname, 'node_modules/seanherron_Flag-Webicons/flags'),
33 | filename: file + '.svg'
34 | }
35 | }
36 | };
37 | })
38 | .value();
39 |
--------------------------------------------------------------------------------
/gilbarbara_logos.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var gilbarbara_logos = require('logos/app/logos');
3 | var path = require('path');
4 |
5 | var replacements = {
6 | 'Google +': 'Google Plus'
7 | };
8 |
9 | module.exports = _.chain(gilbarbara_logos)
10 | .result('items')
11 | .reject(function(logo) {
12 | return _.contains(['adroll', 'google-adsense', 'google-adwords'], logo.shortname);
13 | })
14 | .map(function(logo) {
15 | if (logo.shortname === 'chrome') {
16 | logo.name = 'Google Chrome';
17 | logo.shortname = 'google-chrome';
18 | }
19 | logo.name = replacements[logo.name] || logo.name;
20 | return _.map(logo.files, function(file) {
21 | return {
22 | id: logo.shortname,
23 | name: logo.name,
24 | contributor: {
25 | name: 'Gil Barbara',
26 | shortname: 'gilbarbara'
27 | },
28 | source: {
29 | name: 'SVG Porn',
30 | shortname: 'svgporn',
31 | url: 'http://svgporn.com/'
32 | },
33 | svg: {
34 | path: {
35 | directory: path.join(__dirname, 'node_modules/logos/logos'),
36 | filename: file
37 | }
38 | }
39 | };
40 | });
41 | })
42 | .flatten(true)
43 | .value();
44 |
--------------------------------------------------------------------------------
/logos/Aol.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/OK.ru.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "instant-logos",
3 | "version": "0.4.0",
4 | "description": "All the logos of instantlogosearch.com",
5 | "repository": {
6 | "type": "git",
7 | "url": "git+https://github.com/kogg/instant-logos.git"
8 | },
9 | "license": "MIT",
10 | "main": "index.js",
11 | "scripts": {
12 | "install": "napa",
13 | "test": "eslint . --ignore-path .gitignore --ext .js,.jsx",
14 | "fix": "npm run eslint:fix",
15 | "eslint:fix": "( git diff --staged --name-only | grep \".jsx\\?$\" | xargs eslint --fix ) && ( git diff --staged --name-only | grep \".jsx\\?$\" | xargs git add )"
16 | },
17 | "pre-commit": [
18 | "fix",
19 | "test"
20 | ],
21 | "bugs": {
22 | "url": "https://github.com/kogg/instant-logos/issues"
23 | },
24 | "homepage": "https://github.com/kogg/instant-logos#readme",
25 | "dependencies": {
26 | "logos": "gilbarbara/logos#app",
27 | "napa": "^2.3.0",
28 | "speakingurl": "^9.0.0",
29 | "underscore": "^1.8.3"
30 | },
31 | "napa": {
32 | "andyfitz_logomono": "andyfitz/logomono",
33 | "seanherron_Flag-Webicons": "seanherron/Flag-Webicons",
34 | "seanherron_Gov-Webicons": "seanherron/Gov-Webicons",
35 | "shgysk8zer0_logos": "shgysk8zer0/logos"
36 | },
37 | "devDependencies": {
38 | "eslint": "^2.11.1",
39 | "eslint-config-xo": "^0.14.1",
40 | "pre-commit": "^1.1.2"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/logos/Imgur (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/logos/Peach.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/peach.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/ESPN.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
15 |
--------------------------------------------------------------------------------
/logos/Twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/seanherron_Gov-Webicons.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var fs = require('fs');
3 | var getSlug = require('speakingurl');
4 | var path = require('path');
5 |
6 | var names = _.chain(fs.readFileSync(path.join(__dirname, 'node_modules/seanherron_Gov-Webicons/README.markdown'), 'utf8').split('\n'))
7 | .filter(function(line) {
8 | return line.match(/^\* /);
9 | })
10 | .invoke('substring', 2)
11 | .splice(34, 0, 'United States Social Security Administration')
12 | .value();
13 |
14 | module.exports = _.chain(fs.readdirSync(path.join(__dirname, 'node_modules/seanherron_Gov-Webicons/images')))
15 | .filter(function(file) {
16 | return file.match(/\.svg$/);
17 | })
18 | .map(function(file, i) {
19 | file = file.replace(/\.svg$/, '');
20 | var shortname = file.replace(/gov-/, '');
21 | return {
22 | id: getSlug(shortname),
23 | name: names[i] + (names[i].toLowerCase().includes(shortname.replace('-', ' ')) ? '' : (' (' + shortname.toUpperCase() + ')')),
24 | contributor: {
25 | name: 'Sean Herron',
26 | shortname: 'seanherron'
27 | },
28 | source: {
29 | name: 'Gov Webicons',
30 | shortname: 'gov-webicons',
31 | url: 'https://github.com/seanherron/Gov-Webicons'
32 | },
33 | svg: {
34 | path: {
35 | directory: path.join(__dirname, 'node_modules/seanherron_Gov-Webicons/images'),
36 | filename: file + '.svg'
37 | }
38 | }
39 | };
40 | })
41 | .value();
42 |
--------------------------------------------------------------------------------
/logos/Gap.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/andyfitz_logomono.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var fs = require('fs');
3 | var getSlug = require('speakingurl');
4 | var path = require('path');
5 |
6 | var replacements = {
7 | Googleplusicon: 'Google Plus',
8 | Googlewallet: 'Google Wallet'
9 | };
10 |
11 | module.exports = _.chain(fs.readdirSync(path.join(__dirname, 'node_modules/andyfitz_logomono/logos')))
12 | .without('abyres-.svg', 'apple.svg', 'dribbble.svg', 'facebook-icon.svg', 'github.svg', 'heat.svg', 'helpdesk.svg', 'inkscape.svg')
13 | .filter(function(file) {
14 | return file.match(/\.svg$/);
15 | })
16 | .map(function(file) {
17 | file = file.replace(/\.svg$/, '');
18 | var name = getSlug(file.replace(/[\-_](?:badge|icon|wordmark|(?:no)?logomark|punchout)/, ''), {
19 | separator: ' ',
20 | titleCase: ['and', 'of', 'the'],
21 | custom: { '-': ' ', '_': ' ' }
22 | });
23 | name = name.charAt(0).toUpperCase() + name.slice(1);
24 | name = replacements[name] || name;
25 | return {
26 | id: getSlug(name + ' mono'),
27 | name: name,
28 | contributor: {
29 | name: 'Andy Fitzsimon',
30 | shortname: 'andyfitz'
31 | },
32 | source: {
33 | name: 'Logomono',
34 | shortname: 'logomono',
35 | url: 'http://logomono.com/'
36 | },
37 | svg: {
38 | path: {
39 | directory: path.join(__dirname, 'node_modules/andyfitz_logomono/logos'),
40 | filename: file + '.svg'
41 | }
42 | }
43 | };
44 | })
45 | .value();
46 |
--------------------------------------------------------------------------------
/logos/Evernote (3).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/logos/New York Yankees.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Deepstream.io.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Adobe Illustrator CS6.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Dailymotion.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Citi.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/logos/Fancy (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Pinterest.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Indesign.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Blackberry Messenger.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Philips.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/philips.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/EBay.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/logos/Elevio (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/elevio (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Hulu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/logos/Wikia.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/logos/Kohl's.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/shgysk8zer0_logos.js:
--------------------------------------------------------------------------------
1 | var _ = require('underscore');
2 | var getSlug = require('speakingurl');
3 | var path = require('path');
4 |
5 | module.exports = _.map({
6 | 'Blender.svg': 'Blender',
7 | 'CM_Cid.svg': 'CyanogenMod Cid',
8 | 'CreativeCommons.svg': 'Creative Commons',
9 | 'CyanogenMod_Mascot_Cid.svg': 'CyanogenMod Cid',
10 | 'Gimp.svg': 'Gimp',
11 | 'Google_Play_Store.svg': 'Google Play',
12 | 'Google_Play_logo.svg': 'Google Play',
13 | 'Inkscape.svg': 'Inkscape',
14 | 'KeePassX.svg': 'KeePassX',
15 | 'LibreOffice-Logo.svg': 'LibreOffice',
16 | 'LibreOffice.svg': 'LibreOffice',
17 | 'Linux.svg': 'Linux',
18 | 'MySQL.svg': 'MySQL',
19 | 'PDF.svg': 'PDF',
20 | 'Thunderbird.svg': 'Thunderbird',
21 | 'Webkit.svg': 'Webkit',
22 | 'Wikimedia.svg': 'Wikimedia',
23 | 'YouTube.svg': 'YouTube',
24 | 'anonymous.svg': 'Anonymous',
25 | 'eBay.svg': 'eBay',
26 | 'freecodecamp.svg': 'Free Code Camp',
27 | 'freecodecamp_logo.svg': 'Free Code Camp',
28 | 'linkedin.svg': 'LinkedIn',
29 | 'open_clip_art.svg': 'Openclipart',
30 | 'phpmyadmin.svg': 'phpMyAdmin',
31 | 'tor.svg': 'Tor'
32 | }, function(name, filename) {
33 | return {
34 | id: getSlug(name),
35 | name: name,
36 | contributor: {
37 | name: 'Chris Zuber',
38 | shortname: 'shgysk8zer0'
39 | },
40 | source: {
41 | name: 'shgysk8zer0/logos',
42 | shortname: 'shgysk8zer0-logos',
43 | url: 'https://github.com/shgysk8zer0/logos'
44 | },
45 | svg: {
46 | path: {
47 | directory: path.join(__dirname, 'node_modules/shgysk8zer0_logos'),
48 | filename: filename
49 | }
50 | }
51 | };
52 | });
53 |
--------------------------------------------------------------------------------
/logos/3M.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Discord (10).svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/AppHunt.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Netflix.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/Yo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/FILA.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Ikea.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/logos/Visual Studio.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Mango.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Steam.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/steam.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/WeChat.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/wechat.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/CNN.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/Ikea (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/ClosingBell.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Komatsu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
19 |
20 |
--------------------------------------------------------------------------------
/logos/Apple Watch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Target.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
29 |
--------------------------------------------------------------------------------
/logos/United Airlines.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
28 |
--------------------------------------------------------------------------------
/logos/Chase.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
32 |
--------------------------------------------------------------------------------
/logos/Next.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/next.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/Sears.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/logos/Etsy.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/logos/FedEx.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/logos/Kakao Talk.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/BBC.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/logos/Fox.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/logos/NBA.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/logos/CBS.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/logos/The Next Web (4).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
33 |
--------------------------------------------------------------------------------
/logos/PBS (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/logos/PBS.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
28 |
--------------------------------------------------------------------------------
/logos/UPS.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
29 |
--------------------------------------------------------------------------------
/logos/Discord (9).svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Gucci.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/gucci.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/AMD.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Fivetran.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Amazon (2).svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Discord.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/logos/Line Messenger.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Xbox.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
29 |
--------------------------------------------------------------------------------
/logos/Sonos.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/sonos.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Lexus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Telegram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/lexus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/telegram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Suzuki.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Zoover.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/suzuki.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/zoover.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/VISA.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/visa.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/Walmart (2).svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/logos/Obey.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/obey.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/H&R Block.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
32 |
--------------------------------------------------------------------------------
/logos/Star Wars.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/logos/oozled.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
34 |
--------------------------------------------------------------------------------