diff --git a/build/build-js-files.js b/build/build-js-files.js index c20b9c974..fafc605e1 100644 --- a/build/build-js-files.js +++ b/build/build-js-files.js @@ -52,7 +52,7 @@ dirnames.forEach(setName => { ) fs.writeFile( `js/${setName}/${tsFilename}`, - `export const ${importName}: string[];`, + `export declare const ${importName}: string[];`, () => '' ) }) @@ -63,11 +63,21 @@ dirnames.forEach(setName => { `export const ${setName}Set = ` + JSON.stringify(contents), () => '' ) + fs.writeFile( + `js/${setName}/${setName}-set.d.ts`, + typings(names, setName, false), + () => '' + ) fs.writeFile( `js/${setName}/index.js`, getImports(names, setName), () => '' ) + fs.writeFile( + `js/${setName}/index.d.ts`, + typings(names, setName), + () => '' + ) allNames[setName] = names }, 1000) }) @@ -136,3 +146,17 @@ function getImports(names, setName, deep = false) { }).join('\n') return defaultImport + defaultExport + importString + '\n' + exportString } + +function typings(names, setName, all = true) { + + const icons = names.map(name => { + return ` "${name.importName}": string[];` + }).join('\n') + const set = `export declare const ${setName}Set: {\n${icons}\n}` + + const exportString = names.map(name => { + return `export declare const ${name.importName}: string[];` + }).join('\n') + + return all ? set + '\n' + exportString : set +} diff --git a/js/brand/500px-5.d.ts b/js/brand/500px-5.d.ts new file mode 100644 index 000000000..29ecdeccf --- /dev/null +++ b/js/brand/500px-5.d.ts @@ -0,0 +1 @@ +export declare const n500px5: string[]; \ No newline at end of file diff --git a/js/brand/500px-5.js b/js/brand/500px-5.js new file mode 100644 index 000000000..87d7fcd23 --- /dev/null +++ b/js/brand/500px-5.js @@ -0,0 +1 @@ +export const n500px5 = ["32 32","500px-5"] \ No newline at end of file diff --git a/js/brand/500px.d.ts b/js/brand/500px.d.ts new file mode 100644 index 000000000..e20ad1e4a --- /dev/null +++ b/js/brand/500px.d.ts @@ -0,0 +1 @@ +export declare const n500px: string[]; \ No newline at end of file diff --git a/js/brand/500px.js b/js/brand/500px.js index c86b4a60e..6b5266cda 100644 --- a/js/brand/500px.js +++ b/js/brand/500px.js @@ -1 +1 @@ -export const n500px = ["24 24",""] \ No newline at end of file +export const n500px = ["32 32","500px"] \ No newline at end of file diff --git a/js/brand/about-me.d.ts b/js/brand/about-me.d.ts new file mode 100644 index 000000000..5547689fd --- /dev/null +++ b/js/brand/about-me.d.ts @@ -0,0 +1 @@ +export declare const aboutMe: string[]; \ No newline at end of file diff --git a/js/brand/about-me.js b/js/brand/about-me.js index f675c7416..28d99b779 100644 --- a/js/brand/about-me.js +++ b/js/brand/about-me.js @@ -1 +1 @@ -export const aboutMe = ["24 24",""] \ No newline at end of file +export const aboutMe = ["32 32","about-me"] \ No newline at end of file diff --git a/js/brand/abstract.d.ts b/js/brand/abstract.d.ts new file mode 100644 index 000000000..9e1cb59fa --- /dev/null +++ b/js/brand/abstract.d.ts @@ -0,0 +1 @@ +export declare const abstract: string[]; \ No newline at end of file diff --git a/js/brand/abstract.js b/js/brand/abstract.js index 07e577fad..8b916e4a3 100644 --- a/js/brand/abstract.js +++ b/js/brand/abstract.js @@ -1 +1 @@ -export const abstract = ["24 24",""] \ No newline at end of file +export const abstract = ["32 32","abstract"] \ No newline at end of file diff --git a/js/brand/accusoft.js b/js/brand/accusoft.js deleted file mode 100644 index 508e90aec..000000000 --- a/js/brand/accusoft.js +++ /dev/null @@ -1 +0,0 @@ -export const accusoft = ["640 512",""] \ No newline at end of file diff --git a/js/brand/acm.d.ts b/js/brand/acm.d.ts new file mode 100644 index 000000000..5f3745a67 --- /dev/null +++ b/js/brand/acm.d.ts @@ -0,0 +1 @@ +export declare const acm: string[]; \ No newline at end of file diff --git a/js/brand/acm.js b/js/brand/acm.js index 0b5e4879f..505c86a2a 100644 --- a/js/brand/acm.js +++ b/js/brand/acm.js @@ -1 +1 @@ -export const acm = ["24 24",""] \ No newline at end of file +export const acm = ["32 32","acm"] \ No newline at end of file diff --git a/js/brand/acquisitions-incorporated.js b/js/brand/acquisitions-incorporated.js deleted file mode 100644 index 23828d952..000000000 --- a/js/brand/acquisitions-incorporated.js +++ /dev/null @@ -1 +0,0 @@ -export const acquisitionsIncorporated = ["384 512",""] \ No newline at end of file diff --git a/js/brand/addthis.d.ts b/js/brand/addthis.d.ts new file mode 100644 index 000000000..290de6b78 --- /dev/null +++ b/js/brand/addthis.d.ts @@ -0,0 +1 @@ +export declare const addthis: string[]; \ No newline at end of file diff --git a/js/brand/addthis.js b/js/brand/addthis.js index 77c6d2d57..1ac2ad26d 100644 --- a/js/brand/addthis.js +++ b/js/brand/addthis.js @@ -1 +1 @@ -export const addthis = ["24 24",""] \ No newline at end of file +export const addthis = ["32 32","addthis"] \ No newline at end of file diff --git a/js/brand/adguard.d.ts b/js/brand/adguard.d.ts new file mode 100644 index 000000000..c1f14dbda --- /dev/null +++ b/js/brand/adguard.d.ts @@ -0,0 +1 @@ +export declare const adguard: string[]; \ No newline at end of file diff --git a/js/brand/adguard.js b/js/brand/adguard.js index 7d952b4ea..e35de71a5 100644 --- a/js/brand/adguard.js +++ b/js/brand/adguard.js @@ -1 +1 @@ -export const adguard = ["24 24",""] \ No newline at end of file +export const adguard = ["32 32","adguard"] \ No newline at end of file diff --git a/js/brand/adn.js b/js/brand/adn.js deleted file mode 100644 index d35e0581e..000000000 --- a/js/brand/adn.js +++ /dev/null @@ -1 +0,0 @@ -export const adn = ["496 512",""] \ No newline at end of file diff --git a/js/brand/adobe-acrobat-reader.d.ts b/js/brand/adobe-acrobat-reader.d.ts new file mode 100644 index 000000000..6be6f0808 --- /dev/null +++ b/js/brand/adobe-acrobat-reader.d.ts @@ -0,0 +1 @@ +export declare const adobeAcrobatReader: string[]; \ No newline at end of file diff --git a/js/brand/adobe-acrobat-reader.js b/js/brand/adobe-acrobat-reader.js index 9b1a94ac0..c2f252741 100644 --- a/js/brand/adobe-acrobat-reader.js +++ b/js/brand/adobe-acrobat-reader.js @@ -1 +1 @@ -export const adobeAcrobatReader = ["24 24",""] \ No newline at end of file +export const adobeAcrobatReader = ["32 32","adobe-acrobat-reader"] \ No newline at end of file diff --git a/js/brand/adobe-after-effects.js b/js/brand/adobe-after-effects.js deleted file mode 100644 index f5572fcfe..000000000 --- a/js/brand/adobe-after-effects.js +++ /dev/null @@ -1 +0,0 @@ -export const adobeAfterEffects = ["24 24",""] \ No newline at end of file diff --git a/js/brand/adobe-aftere-ffects.d.ts b/js/brand/adobe-aftere-ffects.d.ts new file mode 100644 index 000000000..80b722dc8 --- /dev/null +++ b/js/brand/adobe-aftere-ffects.d.ts @@ -0,0 +1 @@ +export declare const adobeAftereFfects: string[]; \ No newline at end of file diff --git a/js/brand/adobe-aftere-ffects.js b/js/brand/adobe-aftere-ffects.js new file mode 100644 index 000000000..699229794 --- /dev/null +++ b/js/brand/adobe-aftere-ffects.js @@ -0,0 +1 @@ +export const adobeAftereFfects = ["32 32","adobe-aftere-ffects"] \ No newline at end of file diff --git a/js/brand/adobe-audition.d.ts b/js/brand/adobe-audition.d.ts new file mode 100644 index 000000000..3c0ea1cf7 --- /dev/null +++ b/js/brand/adobe-audition.d.ts @@ -0,0 +1 @@ +export declare const adobeAudition: string[]; \ No newline at end of file diff --git a/js/brand/adobe-audition.js b/js/brand/adobe-audition.js index f67faba5f..8bddaedcc 100644 --- a/js/brand/adobe-audition.js +++ b/js/brand/adobe-audition.js @@ -1 +1 @@ -export const adobeAudition = ["24 24",""] \ No newline at end of file +export const adobeAudition = ["32 32","adobe-audition"] \ No newline at end of file diff --git a/js/brand/adobe-creative-cloud.d.ts b/js/brand/adobe-creative-cloud.d.ts new file mode 100644 index 000000000..36867c59e --- /dev/null +++ b/js/brand/adobe-creative-cloud.d.ts @@ -0,0 +1 @@ +export declare const adobeCreativeCloud: string[]; \ No newline at end of file diff --git a/js/brand/adobe-creative-cloud.js b/js/brand/adobe-creative-cloud.js index d5148222b..3939be331 100644 --- a/js/brand/adobe-creative-cloud.js +++ b/js/brand/adobe-creative-cloud.js @@ -1 +1 @@ -export const adobeCreativeCloud = ["24 24",""] \ No newline at end of file +export const adobeCreativeCloud = ["32 32","adobe-creative-cloud"] \ No newline at end of file diff --git a/js/brand/adobe-dreamweaver.d.ts b/js/brand/adobe-dreamweaver.d.ts new file mode 100644 index 000000000..4baa065d6 --- /dev/null +++ b/js/brand/adobe-dreamweaver.d.ts @@ -0,0 +1 @@ +export declare const adobeDreamweaver: string[]; \ No newline at end of file diff --git a/js/brand/adobe-dreamweaver.js b/js/brand/adobe-dreamweaver.js index ce0f7649e..c9188c970 100644 --- a/js/brand/adobe-dreamweaver.js +++ b/js/brand/adobe-dreamweaver.js @@ -1 +1 @@ -export const adobeDreamweaver = ["24 24",""] \ No newline at end of file +export const adobeDreamweaver = ["32 32","adobe-dreamweaver"] \ No newline at end of file diff --git a/js/brand/adobe-illustrator.d.ts b/js/brand/adobe-illustrator.d.ts new file mode 100644 index 000000000..f63043130 --- /dev/null +++ b/js/brand/adobe-illustrator.d.ts @@ -0,0 +1 @@ +export declare const adobeIllustrator: string[]; \ No newline at end of file diff --git a/js/brand/adobe-illustrator.js b/js/brand/adobe-illustrator.js index 2f325c766..5e0a07d42 100644 --- a/js/brand/adobe-illustrator.js +++ b/js/brand/adobe-illustrator.js @@ -1 +1 @@ -export const adobeIllustrator = ["24 24",""] \ No newline at end of file +export const adobeIllustrator = ["32 32","adobe-illustrator"] \ No newline at end of file diff --git a/js/brand/adobe-indesign.d.ts b/js/brand/adobe-indesign.d.ts new file mode 100644 index 000000000..601afedfc --- /dev/null +++ b/js/brand/adobe-indesign.d.ts @@ -0,0 +1 @@ +export declare const adobeIndesign: string[]; \ No newline at end of file diff --git a/js/brand/adobe-indesign.js b/js/brand/adobe-indesign.js index 5d8159644..098293c12 100644 --- a/js/brand/adobe-indesign.js +++ b/js/brand/adobe-indesign.js @@ -1 +1 @@ -export const adobeIndesign = ["24 24",""] \ No newline at end of file +export const adobeIndesign = ["32 32","adobe-indesign"] \ No newline at end of file diff --git a/js/brand/adobe-lightroom-classic.d.ts b/js/brand/adobe-lightroom-classic.d.ts new file mode 100644 index 000000000..51d781e82 --- /dev/null +++ b/js/brand/adobe-lightroom-classic.d.ts @@ -0,0 +1 @@ +export declare const adobeLightroomClassic: string[]; \ No newline at end of file diff --git a/js/brand/adobe-lightroom-classic.js b/js/brand/adobe-lightroom-classic.js new file mode 100644 index 000000000..49700bb20 --- /dev/null +++ b/js/brand/adobe-lightroom-classic.js @@ -0,0 +1 @@ +export const adobeLightroomClassic = ["32 32","adobe-lightroom-classic"] \ No newline at end of file diff --git a/js/brand/adobe-lightroom.d.ts b/js/brand/adobe-lightroom.d.ts new file mode 100644 index 000000000..49c8f490a --- /dev/null +++ b/js/brand/adobe-lightroom.d.ts @@ -0,0 +1 @@ +export declare const adobeLightroom: string[]; \ No newline at end of file diff --git a/js/brand/adobe-lightroom.js b/js/brand/adobe-lightroom.js new file mode 100644 index 000000000..f1a75991c --- /dev/null +++ b/js/brand/adobe-lightroom.js @@ -0,0 +1 @@ +export const adobeLightroom = ["32 32","adobe-lightroom"] \ No newline at end of file diff --git a/js/brand/adobe-lightroomcc.js b/js/brand/adobe-lightroomcc.js deleted file mode 100644 index bdd87be96..000000000 --- a/js/brand/adobe-lightroomcc.js +++ /dev/null @@ -1 +0,0 @@ -export const adobeLightroomcc = ["24 24",""] \ No newline at end of file diff --git a/js/brand/adobe-lightroomclassic.js b/js/brand/adobe-lightroomclassic.js deleted file mode 100644 index 313e1a74f..000000000 --- a/js/brand/adobe-lightroomclassic.js +++ /dev/null @@ -1 +0,0 @@ -export const adobeLightroomclassic = ["24 24",""] \ No newline at end of file diff --git a/js/brand/adobe-photoshop.d.ts b/js/brand/adobe-photoshop.d.ts new file mode 100644 index 000000000..8144f0a9d --- /dev/null +++ b/js/brand/adobe-photoshop.d.ts @@ -0,0 +1 @@ +export declare const adobePhotoshop: string[]; \ No newline at end of file diff --git a/js/brand/adobe-photoshop.js b/js/brand/adobe-photoshop.js index 58e2cb063..35aa89a59 100644 --- a/js/brand/adobe-photoshop.js +++ b/js/brand/adobe-photoshop.js @@ -1 +1 @@ -export const adobePhotoshop = ["24 24",""] \ No newline at end of file +export const adobePhotoshop = ["32 32","adobe-photoshop"] \ No newline at end of file diff --git a/js/brand/adobe-premiere.d.ts b/js/brand/adobe-premiere.d.ts new file mode 100644 index 000000000..3ea533fe7 --- /dev/null +++ b/js/brand/adobe-premiere.d.ts @@ -0,0 +1 @@ +export declare const adobePremiere: string[]; \ No newline at end of file diff --git a/js/brand/adobe-premiere.js b/js/brand/adobe-premiere.js index 11d7a7870..94ba8da39 100644 --- a/js/brand/adobe-premiere.js +++ b/js/brand/adobe-premiere.js @@ -1 +1 @@ -export const adobePremiere = ["24 24",""] \ No newline at end of file +export const adobePremiere = ["32 32","adobe-premiere"] \ No newline at end of file diff --git a/js/brand/adobe-typekit.d.ts b/js/brand/adobe-typekit.d.ts new file mode 100644 index 000000000..249678182 --- /dev/null +++ b/js/brand/adobe-typekit.d.ts @@ -0,0 +1 @@ +export declare const adobeTypekit: string[]; \ No newline at end of file diff --git a/js/brand/adobe-typekit.js b/js/brand/adobe-typekit.js index bf2c70651..4520128fd 100644 --- a/js/brand/adobe-typekit.js +++ b/js/brand/adobe-typekit.js @@ -1 +1 @@ -export const adobeTypekit = ["24 24",""] \ No newline at end of file +export const adobeTypekit = ["32 32","adobe-typekit"] \ No newline at end of file diff --git a/js/brand/adobe-xd.d.ts b/js/brand/adobe-xd.d.ts new file mode 100644 index 000000000..3c1e394c0 --- /dev/null +++ b/js/brand/adobe-xd.d.ts @@ -0,0 +1 @@ +export declare const adobeXd: string[]; \ No newline at end of file diff --git a/js/brand/adobe-xd.js b/js/brand/adobe-xd.js index 08dea4f98..915f706de 100644 --- a/js/brand/adobe-xd.js +++ b/js/brand/adobe-xd.js @@ -1 +1 @@ -export const adobeXd = ["24 24",""] \ No newline at end of file +export const adobeXd = ["32 32","adobe-xd"] \ No newline at end of file diff --git a/js/brand/adobe.d.ts b/js/brand/adobe.d.ts new file mode 100644 index 000000000..805b84ce4 --- /dev/null +++ b/js/brand/adobe.d.ts @@ -0,0 +1 @@ +export declare const adobe: string[]; \ No newline at end of file diff --git a/js/brand/adobe.js b/js/brand/adobe.js index dd79db017..b9efedc6e 100644 --- a/js/brand/adobe.js +++ b/js/brand/adobe.js @@ -1 +1 @@ -export const adobe = ["24 24",""] \ No newline at end of file +export const adobe = ["32 32","adobe"] \ No newline at end of file diff --git a/js/brand/adversal.js b/js/brand/adversal.js deleted file mode 100644 index 38cc18c63..000000000 --- a/js/brand/adversal.js +++ /dev/null @@ -1 +0,0 @@ -export const adversal = ["512 512",""] \ No newline at end of file diff --git a/js/brand/affiliatetheme.js b/js/brand/affiliatetheme.js deleted file mode 100644 index 84432fba6..000000000 --- a/js/brand/affiliatetheme.js +++ /dev/null @@ -1 +0,0 @@ -export const affiliatetheme = ["512 512",""] \ No newline at end of file diff --git a/js/brand/airbnb.d.ts b/js/brand/airbnb.d.ts new file mode 100644 index 000000000..9edacfb86 --- /dev/null +++ b/js/brand/airbnb.d.ts @@ -0,0 +1 @@ +export declare const airbnb: string[]; \ No newline at end of file diff --git a/js/brand/airbnb.js b/js/brand/airbnb.js index c32b272e7..23b47c704 100644 --- a/js/brand/airbnb.js +++ b/js/brand/airbnb.js @@ -1 +1 @@ -export const airbnb = ["24 24",""] \ No newline at end of file +export const airbnb = ["32 32","airbnb"] \ No newline at end of file diff --git a/js/brand/algolia.d.ts b/js/brand/algolia.d.ts new file mode 100644 index 000000000..152e9f570 --- /dev/null +++ b/js/brand/algolia.d.ts @@ -0,0 +1 @@ +export declare const algolia: string[]; \ No newline at end of file diff --git a/js/brand/algolia.js b/js/brand/algolia.js index 108def7cc..4d39651c0 100644 --- a/js/brand/algolia.js +++ b/js/brand/algolia.js @@ -1 +1 @@ -export const algolia = ["448 512",""] \ No newline at end of file +export const algolia = ["32 32","algolia"] \ No newline at end of file diff --git a/js/brand/alipay.d.ts b/js/brand/alipay.d.ts new file mode 100644 index 000000000..964636f4b --- /dev/null +++ b/js/brand/alipay.d.ts @@ -0,0 +1 @@ +export declare const alipay: string[]; \ No newline at end of file diff --git a/js/brand/alipay.js b/js/brand/alipay.js index 742718db2..3167b2cf1 100644 --- a/js/brand/alipay.js +++ b/js/brand/alipay.js @@ -1 +1 @@ -export const alipay = ["448 512",""] \ No newline at end of file +export const alipay = ["32 32","alipay"] \ No newline at end of file diff --git a/js/brand/allocine.d.ts b/js/brand/allocine.d.ts new file mode 100644 index 000000000..6345b78fc --- /dev/null +++ b/js/brand/allocine.d.ts @@ -0,0 +1 @@ +export declare const allocine: string[]; \ No newline at end of file diff --git a/js/brand/allocine.js b/js/brand/allocine.js index 56711a9f5..82b4cb72b 100644 --- a/js/brand/allocine.js +++ b/js/brand/allocine.js @@ -1 +1 @@ -export const allocine = ["24 24",""] \ No newline at end of file +export const allocine = ["32 32","allocine"] \ No newline at end of file diff --git a/js/brand/amazon-aws.d.ts b/js/brand/amazon-aws.d.ts new file mode 100644 index 000000000..d603e50fd --- /dev/null +++ b/js/brand/amazon-aws.d.ts @@ -0,0 +1 @@ +export declare const amazonAws: string[]; \ No newline at end of file diff --git a/js/brand/amazon-aws.js b/js/brand/amazon-aws.js index 651cb296b..301b7903e 100644 --- a/js/brand/amazon-aws.js +++ b/js/brand/amazon-aws.js @@ -1 +1 @@ -export const amazonAws = ["24 24",""] \ No newline at end of file +export const amazonAws = ["32 32","amazon-aws"] \ No newline at end of file diff --git a/js/brand/amazon-pay.d.ts b/js/brand/amazon-pay.d.ts new file mode 100644 index 000000000..5756f910d --- /dev/null +++ b/js/brand/amazon-pay.d.ts @@ -0,0 +1 @@ +export declare const amazonPay: string[]; \ No newline at end of file diff --git a/js/brand/amazon-pay.js b/js/brand/amazon-pay.js index 3a7652fce..416204e04 100644 --- a/js/brand/amazon-pay.js +++ b/js/brand/amazon-pay.js @@ -1 +1 @@ -export const amazonPay = ["640 512",""] \ No newline at end of file +export const amazonPay = ["32 32","amazon-pay"] \ No newline at end of file diff --git a/js/brand/amazon.d.ts b/js/brand/amazon.d.ts new file mode 100644 index 000000000..50afd4c02 --- /dev/null +++ b/js/brand/amazon.d.ts @@ -0,0 +1 @@ +export declare const amazon: string[]; \ No newline at end of file diff --git a/js/brand/amazon.js b/js/brand/amazon.js index 66c2a3be4..a9e80f0ab 100644 --- a/js/brand/amazon.js +++ b/js/brand/amazon.js @@ -1 +1 @@ -export const amazon = ["24 24",""] \ No newline at end of file +export const amazon = ["32 32","amazon"] \ No newline at end of file diff --git a/js/brand/amd.d.ts b/js/brand/amd.d.ts new file mode 100644 index 000000000..29b5b35e9 --- /dev/null +++ b/js/brand/amd.d.ts @@ -0,0 +1 @@ +export declare const amd: string[]; \ No newline at end of file diff --git a/js/brand/amd.js b/js/brand/amd.js index d4f665c41..b2ff66071 100644 --- a/js/brand/amd.js +++ b/js/brand/amd.js @@ -1 +1 @@ -export const amd = ["24 24",""] \ No newline at end of file +export const amd = ["32 32","amd"] \ No newline at end of file diff --git a/js/brand/american-express.d.ts b/js/brand/american-express.d.ts new file mode 100644 index 000000000..e91895e19 --- /dev/null +++ b/js/brand/american-express.d.ts @@ -0,0 +1 @@ +export declare const americanExpress: string[]; \ No newline at end of file diff --git a/js/brand/american-express.js b/js/brand/american-express.js index ad507360e..5f55edd80 100644 --- a/js/brand/american-express.js +++ b/js/brand/american-express.js @@ -1 +1 @@ -export const americanExpress = ["24 24",""] \ No newline at end of file +export const americanExpress = ["32 32","american-express"] \ No newline at end of file diff --git a/js/brand/amilia.js b/js/brand/amilia.js deleted file mode 100644 index 23dd9a2b3..000000000 --- a/js/brand/amilia.js +++ /dev/null @@ -1 +0,0 @@ -export const amilia = ["448 512",""] \ No newline at end of file diff --git a/js/brand/anaconda.d.ts b/js/brand/anaconda.d.ts new file mode 100644 index 000000000..e1f31fd1b --- /dev/null +++ b/js/brand/anaconda.d.ts @@ -0,0 +1 @@ +export declare const anaconda: string[]; \ No newline at end of file diff --git a/js/brand/anaconda.js b/js/brand/anaconda.js index 7d6e19e77..8458add90 100644 --- a/js/brand/anaconda.js +++ b/js/brand/anaconda.js @@ -1 +1 @@ -export const anaconda = ["24 24",""] \ No newline at end of file +export const anaconda = ["32 32","anaconda"] \ No newline at end of file diff --git a/js/brand/analogue.d.ts b/js/brand/analogue.d.ts new file mode 100644 index 000000000..189ff2f1d --- /dev/null +++ b/js/brand/analogue.d.ts @@ -0,0 +1 @@ +export declare const analogue: string[]; \ No newline at end of file diff --git a/js/brand/analogue.js b/js/brand/analogue.js index e30d21b21..65b9f7faa 100644 --- a/js/brand/analogue.js +++ b/js/brand/analogue.js @@ -1 +1 @@ -export const analogue = ["24 24",""] \ No newline at end of file +export const analogue = ["32 32","analogue"] \ No newline at end of file diff --git a/js/brand/android-alt.d.ts b/js/brand/android-alt.d.ts new file mode 100644 index 000000000..ffb68eff5 --- /dev/null +++ b/js/brand/android-alt.d.ts @@ -0,0 +1 @@ +export declare const androidAlt: string[]; \ No newline at end of file diff --git a/js/brand/android-alt.js b/js/brand/android-alt.js index 1497075a2..fc4f33c89 100644 --- a/js/brand/android-alt.js +++ b/js/brand/android-alt.js @@ -1 +1 @@ -export const androidAlt = ["448 512",""] \ No newline at end of file +export const androidAlt = ["32 32","android-alt"] \ No newline at end of file diff --git a/js/brand/android.d.ts b/js/brand/android.d.ts new file mode 100644 index 000000000..d14c0d5e2 --- /dev/null +++ b/js/brand/android.d.ts @@ -0,0 +1 @@ +export declare const android: string[]; \ No newline at end of file diff --git a/js/brand/android.js b/js/brand/android.js index 88d16e802..fc6b26901 100644 --- a/js/brand/android.js +++ b/js/brand/android.js @@ -1 +1 @@ -export const android = ["24 24",""] \ No newline at end of file +export const android = ["32 32","android"] \ No newline at end of file diff --git a/js/brand/angellist.d.ts b/js/brand/angellist.d.ts new file mode 100644 index 000000000..402eae5f3 --- /dev/null +++ b/js/brand/angellist.d.ts @@ -0,0 +1 @@ +export declare const angellist: string[]; \ No newline at end of file diff --git a/js/brand/angellist.js b/js/brand/angellist.js index 9848ea51b..774904a17 100644 --- a/js/brand/angellist.js +++ b/js/brand/angellist.js @@ -1 +1 @@ -export const angellist = ["24 24",""] \ No newline at end of file +export const angellist = ["32 32","angellist"] \ No newline at end of file diff --git a/js/brand/angrycreative.js b/js/brand/angrycreative.js deleted file mode 100644 index af0ef2467..000000000 --- a/js/brand/angrycreative.js +++ /dev/null @@ -1 +0,0 @@ -export const angrycreative = ["640 512",""] \ No newline at end of file diff --git a/js/brand/angular-universal.d.ts b/js/brand/angular-universal.d.ts new file mode 100644 index 000000000..b1e5cba27 --- /dev/null +++ b/js/brand/angular-universal.d.ts @@ -0,0 +1 @@ +export declare const angularUniversal: string[]; \ No newline at end of file diff --git a/js/brand/angular-universal.js b/js/brand/angular-universal.js index 04303182b..6ff09c9bb 100644 --- a/js/brand/angular-universal.js +++ b/js/brand/angular-universal.js @@ -1 +1 @@ -export const angularUniversal = ["24 24",""] \ No newline at end of file +export const angularUniversal = ["32 32","angular-universal"] \ No newline at end of file diff --git a/js/brand/angular.d.ts b/js/brand/angular.d.ts new file mode 100644 index 000000000..6f96a9d05 --- /dev/null +++ b/js/brand/angular.d.ts @@ -0,0 +1 @@ +export declare const angular: string[]; \ No newline at end of file diff --git a/js/brand/angular.js b/js/brand/angular.js index d946acda2..b6b3a5b70 100644 --- a/js/brand/angular.js +++ b/js/brand/angular.js @@ -1 +1 @@ -export const angular = ["24 24",""] \ No newline at end of file +export const angular = ["32 32","angular"] \ No newline at end of file diff --git a/js/brand/ansible.d.ts b/js/brand/ansible.d.ts new file mode 100644 index 000000000..bca8b16cc --- /dev/null +++ b/js/brand/ansible.d.ts @@ -0,0 +1 @@ +export declare const ansible: string[]; \ No newline at end of file diff --git a/js/brand/ansible.js b/js/brand/ansible.js index ee732ab56..8e1d431da 100644 --- a/js/brand/ansible.js +++ b/js/brand/ansible.js @@ -1 +1 @@ -export const ansible = ["24 24",""] \ No newline at end of file +export const ansible = ["32 32","ansible"] \ No newline at end of file diff --git a/js/brand/apache-airflow.d.ts b/js/brand/apache-airflow.d.ts new file mode 100644 index 000000000..626cac45c --- /dev/null +++ b/js/brand/apache-airflow.d.ts @@ -0,0 +1 @@ +export declare const apacheAirflow: string[]; \ No newline at end of file diff --git a/js/brand/apache-airflow.js b/js/brand/apache-airflow.js index d6b4ad6bd..dab01d913 100644 --- a/js/brand/apache-airflow.js +++ b/js/brand/apache-airflow.js @@ -1 +1 @@ -export const apacheAirflow = ["24 24",""] \ No newline at end of file +export const apacheAirflow = ["32 32","apache-airflow"] \ No newline at end of file diff --git a/js/brand/apache-flink.d.ts b/js/brand/apache-flink.d.ts new file mode 100644 index 000000000..c485229d8 --- /dev/null +++ b/js/brand/apache-flink.d.ts @@ -0,0 +1 @@ +export declare const apacheFlink: string[]; \ No newline at end of file diff --git a/js/brand/apache-flink.js b/js/brand/apache-flink.js index b314630d1..35585a18b 100644 --- a/js/brand/apache-flink.js +++ b/js/brand/apache-flink.js @@ -1 +1 @@ -export const apacheFlink = ["24 24",""] \ No newline at end of file +export const apacheFlink = ["32 32","apache-flink"] \ No newline at end of file diff --git a/js/brand/apache-spark.d.ts b/js/brand/apache-spark.d.ts new file mode 100644 index 000000000..da6047b17 --- /dev/null +++ b/js/brand/apache-spark.d.ts @@ -0,0 +1 @@ +export declare const apacheSpark: string[]; \ No newline at end of file diff --git a/js/brand/apache-spark.js b/js/brand/apache-spark.js index 908319c43..3a856e9f2 100644 --- a/js/brand/apache-spark.js +++ b/js/brand/apache-spark.js @@ -1 +1 @@ -export const apacheSpark = ["24 24",""] \ No newline at end of file +export const apacheSpark = ["32 32","apache-spark"] \ No newline at end of file diff --git a/js/brand/apache.d.ts b/js/brand/apache.d.ts new file mode 100644 index 000000000..3f627a436 --- /dev/null +++ b/js/brand/apache.d.ts @@ -0,0 +1 @@ +export declare const apache: string[]; \ No newline at end of file diff --git a/js/brand/apache.js b/js/brand/apache.js index 8b78ffaed..c83983db3 100644 --- a/js/brand/apache.js +++ b/js/brand/apache.js @@ -1 +1 @@ -export const apache = ["24 24",""] \ No newline at end of file +export const apache = ["32 32","apache"] \ No newline at end of file diff --git a/js/brand/app-store-ios.d.ts b/js/brand/app-store-ios.d.ts new file mode 100644 index 000000000..8e03cf308 --- /dev/null +++ b/js/brand/app-store-ios.d.ts @@ -0,0 +1 @@ +export declare const appStoreIos: string[]; \ No newline at end of file diff --git a/js/brand/app-store-ios.js b/js/brand/app-store-ios.js new file mode 100644 index 000000000..4571db72c --- /dev/null +++ b/js/brand/app-store-ios.js @@ -0,0 +1 @@ +export const appStoreIos = ["32 32","app-store-ios"] \ No newline at end of file diff --git a/js/brand/app-store.d.ts b/js/brand/app-store.d.ts new file mode 100644 index 000000000..ae8ef8b87 --- /dev/null +++ b/js/brand/app-store.d.ts @@ -0,0 +1 @@ +export declare const appStore: string[]; \ No newline at end of file diff --git a/js/brand/app-store.js b/js/brand/app-store.js index 2d330f15e..2a3d5d033 100644 --- a/js/brand/app-store.js +++ b/js/brand/app-store.js @@ -1 +1 @@ -export const appStore = ["512 512",""] \ No newline at end of file +export const appStore = ["32 32","app-store"] \ No newline at end of file diff --git a/js/brand/apper.js b/js/brand/apper.js deleted file mode 100644 index 601a4b954..000000000 --- a/js/brand/apper.js +++ /dev/null @@ -1 +0,0 @@ -export const apper = ["640 512",""] \ No newline at end of file diff --git a/js/brand/apple-music.d.ts b/js/brand/apple-music.d.ts new file mode 100644 index 000000000..702570020 --- /dev/null +++ b/js/brand/apple-music.d.ts @@ -0,0 +1 @@ +export declare const appleMusic: string[]; \ No newline at end of file diff --git a/js/brand/apple-music.js b/js/brand/apple-music.js new file mode 100644 index 000000000..bf988effb --- /dev/null +++ b/js/brand/apple-music.js @@ -0,0 +1 @@ +export const appleMusic = ["32 32","apple-music"] \ No newline at end of file diff --git a/js/brand/apple-pay.d.ts b/js/brand/apple-pay.d.ts new file mode 100644 index 000000000..2654cdb28 --- /dev/null +++ b/js/brand/apple-pay.d.ts @@ -0,0 +1 @@ +export declare const applePay: string[]; \ No newline at end of file diff --git a/js/brand/apple-pay.js b/js/brand/apple-pay.js index b44ab0aa0..607a3a684 100644 --- a/js/brand/apple-pay.js +++ b/js/brand/apple-pay.js @@ -1 +1 @@ -export const applePay = ["24 24",""] \ No newline at end of file +export const applePay = ["32 32","apple-pay"] \ No newline at end of file diff --git a/js/brand/apple-podcasts.d.ts b/js/brand/apple-podcasts.d.ts new file mode 100644 index 000000000..608673890 --- /dev/null +++ b/js/brand/apple-podcasts.d.ts @@ -0,0 +1 @@ +export declare const applePodcasts: string[]; \ No newline at end of file diff --git a/js/brand/apple-podcasts.js b/js/brand/apple-podcasts.js new file mode 100644 index 000000000..67c11ff10 --- /dev/null +++ b/js/brand/apple-podcasts.js @@ -0,0 +1 @@ +export const applePodcasts = ["32 32","apple-podcasts"] \ No newline at end of file diff --git a/js/brand/apple.d.ts b/js/brand/apple.d.ts new file mode 100644 index 000000000..36f36f8cc --- /dev/null +++ b/js/brand/apple.d.ts @@ -0,0 +1 @@ +export declare const apple: string[]; \ No newline at end of file diff --git a/js/brand/apple.js b/js/brand/apple.js index c7063989b..f21300f36 100644 --- a/js/brand/apple.js +++ b/js/brand/apple.js @@ -1 +1 @@ -export const apple = ["24 24",""] \ No newline at end of file +export const apple = ["32 32","apple"] \ No newline at end of file diff --git a/js/brand/appveyor.d.ts b/js/brand/appveyor.d.ts new file mode 100644 index 000000000..ea2cca50b --- /dev/null +++ b/js/brand/appveyor.d.ts @@ -0,0 +1 @@ +export declare const appveyor: string[]; \ No newline at end of file diff --git a/js/brand/appveyor.js b/js/brand/appveyor.js index 1a2d422c9..0459e3f77 100644 --- a/js/brand/appveyor.js +++ b/js/brand/appveyor.js @@ -1 +1 @@ -export const appveyor = ["24 24",""] \ No newline at end of file +export const appveyor = ["32 32","appveyor"] \ No newline at end of file diff --git a/js/brand/aral.d.ts b/js/brand/aral.d.ts new file mode 100644 index 000000000..ae5523788 --- /dev/null +++ b/js/brand/aral.d.ts @@ -0,0 +1 @@ +export declare const aral: string[]; \ No newline at end of file diff --git a/js/brand/aral.js b/js/brand/aral.js index 55a88bc2c..4416d53fe 100644 --- a/js/brand/aral.js +++ b/js/brand/aral.js @@ -1 +1 @@ -export const aral = ["24 24",""] \ No newline at end of file +export const aral = ["32 32","aral"] \ No newline at end of file diff --git a/js/brand/arch-linux.d.ts b/js/brand/arch-linux.d.ts new file mode 100644 index 000000000..af3d16366 --- /dev/null +++ b/js/brand/arch-linux.d.ts @@ -0,0 +1 @@ +export declare const archLinux: string[]; \ No newline at end of file diff --git a/js/brand/arch-linux.js b/js/brand/arch-linux.js index eb5ea7e16..d900ad4ed 100644 --- a/js/brand/arch-linux.js +++ b/js/brand/arch-linux.js @@ -1 +1 @@ -export const archLinux = ["24 24",""] \ No newline at end of file +export const archLinux = ["32 32","arch-linux"] \ No newline at end of file diff --git a/js/brand/archive-of-our-own.d.ts b/js/brand/archive-of-our-own.d.ts new file mode 100644 index 000000000..60f69282e --- /dev/null +++ b/js/brand/archive-of-our-own.d.ts @@ -0,0 +1 @@ +export declare const archiveOfOurOwn: string[]; \ No newline at end of file diff --git a/js/brand/archive-of-our-own.js b/js/brand/archive-of-our-own.js index 0b09304d2..42bcbb61a 100644 --- a/js/brand/archive-of-our-own.js +++ b/js/brand/archive-of-our-own.js @@ -1 +1 @@ -export const archiveOfOurOwn = ["24 24",""] \ No newline at end of file +export const archiveOfOurOwn = ["32 32","archive-of-our-own"] \ No newline at end of file diff --git a/js/brand/arduino.d.ts b/js/brand/arduino.d.ts new file mode 100644 index 000000000..deb118eff --- /dev/null +++ b/js/brand/arduino.d.ts @@ -0,0 +1 @@ +export declare const arduino: string[]; \ No newline at end of file diff --git a/js/brand/arduino.js b/js/brand/arduino.js index 70efa7dfa..e27b81910 100644 --- a/js/brand/arduino.js +++ b/js/brand/arduino.js @@ -1 +1 @@ -export const arduino = ["24 24",""] \ No newline at end of file +export const arduino = ["32 32","arduino"] \ No newline at end of file diff --git a/js/brand/artstation.d.ts b/js/brand/artstation.d.ts new file mode 100644 index 000000000..f2bde49fe --- /dev/null +++ b/js/brand/artstation.d.ts @@ -0,0 +1 @@ +export declare const artstation: string[]; \ No newline at end of file diff --git a/js/brand/artstation.js b/js/brand/artstation.js index b1f2395fe..126f642fd 100644 --- a/js/brand/artstation.js +++ b/js/brand/artstation.js @@ -1 +1 @@ -export const artstation = ["24 24",""] \ No newline at end of file +export const artstation = ["32 32","artstation"] \ No newline at end of file diff --git a/js/brand/arxiv.d.ts b/js/brand/arxiv.d.ts new file mode 100644 index 000000000..9da4e8528 --- /dev/null +++ b/js/brand/arxiv.d.ts @@ -0,0 +1 @@ +export declare const arxiv: string[]; \ No newline at end of file diff --git a/js/brand/arxiv.js b/js/brand/arxiv.js index 40aabdbac..c4a0b0f3f 100644 --- a/js/brand/arxiv.js +++ b/js/brand/arxiv.js @@ -1 +1 @@ -export const arxiv = ["24 24",""] \ No newline at end of file +export const arxiv = ["32 32","arxiv"] \ No newline at end of file diff --git a/js/brand/asana.d.ts b/js/brand/asana.d.ts new file mode 100644 index 000000000..a7d50e01c --- /dev/null +++ b/js/brand/asana.d.ts @@ -0,0 +1 @@ +export declare const asana: string[]; \ No newline at end of file diff --git a/js/brand/asana.js b/js/brand/asana.js index 6c3b68f9e..978b6ddd3 100644 --- a/js/brand/asana.js +++ b/js/brand/asana.js @@ -1 +1 @@ -export const asana = ["24 24",""] \ No newline at end of file +export const asana = ["32 32","asana"] \ No newline at end of file diff --git a/js/brand/asymmetrik.js b/js/brand/asymmetrik.js deleted file mode 100644 index 1c831f065..000000000 --- a/js/brand/asymmetrik.js +++ /dev/null @@ -1 +0,0 @@ -export const asymmetrik = ["576 512",""] \ No newline at end of file diff --git a/js/brand/at-and-t.d.ts b/js/brand/at-and-t.d.ts new file mode 100644 index 000000000..7d111454c --- /dev/null +++ b/js/brand/at-and-t.d.ts @@ -0,0 +1 @@ +export declare const atAndT: string[]; \ No newline at end of file diff --git a/js/brand/at-and-t.js b/js/brand/at-and-t.js index 247834bdb..24df0ae6a 100644 --- a/js/brand/at-and-t.js +++ b/js/brand/at-and-t.js @@ -1 +1 @@ -export const atAndT = ["24 24",""] \ No newline at end of file +export const atAndT = ["32 32","at-and-t"] \ No newline at end of file diff --git a/js/brand/atlassian.d.ts b/js/brand/atlassian.d.ts new file mode 100644 index 000000000..af1b3bd10 --- /dev/null +++ b/js/brand/atlassian.d.ts @@ -0,0 +1 @@ +export declare const atlassian: string[]; \ No newline at end of file diff --git a/js/brand/atlassian.js b/js/brand/atlassian.js index 278d29cff..50cdf4d41 100644 --- a/js/brand/atlassian.js +++ b/js/brand/atlassian.js @@ -1 +1 @@ -export const atlassian = ["24 24",""] \ No newline at end of file +export const atlassian = ["32 32","atlassian"] \ No newline at end of file diff --git a/js/brand/atom.d.ts b/js/brand/atom.d.ts new file mode 100644 index 000000000..8aecec40b --- /dev/null +++ b/js/brand/atom.d.ts @@ -0,0 +1 @@ +export declare const atom: string[]; \ No newline at end of file diff --git a/js/brand/atom.js b/js/brand/atom.js index 8c2491c76..0bc5a2cfe 100644 --- a/js/brand/atom.js +++ b/js/brand/atom.js @@ -1 +1 @@ -export const atom = ["24 24",""] \ No newline at end of file +export const atom = ["32 32","atom"] \ No newline at end of file diff --git a/js/brand/audible.d.ts b/js/brand/audible.d.ts new file mode 100644 index 000000000..b3073cb63 --- /dev/null +++ b/js/brand/audible.d.ts @@ -0,0 +1 @@ +export declare const audible: string[]; \ No newline at end of file diff --git a/js/brand/audible.js b/js/brand/audible.js index 8954660c6..3fa6973d6 100644 --- a/js/brand/audible.js +++ b/js/brand/audible.js @@ -1 +1 @@ -export const audible = ["24 24",""] \ No newline at end of file +export const audible = ["32 32","audible"] \ No newline at end of file diff --git a/js/brand/aurelia.d.ts b/js/brand/aurelia.d.ts new file mode 100644 index 000000000..1bf6428a1 --- /dev/null +++ b/js/brand/aurelia.d.ts @@ -0,0 +1 @@ +export declare const aurelia: string[]; \ No newline at end of file diff --git a/js/brand/aurelia.js b/js/brand/aurelia.js index 3cfb472d3..d74aa87ca 100644 --- a/js/brand/aurelia.js +++ b/js/brand/aurelia.js @@ -1 +1 @@ -export const aurelia = ["24 24",""] \ No newline at end of file +export const aurelia = ["32 32","aurelia"] \ No newline at end of file diff --git a/js/brand/auth0.d.ts b/js/brand/auth0.d.ts new file mode 100644 index 000000000..6d2089498 --- /dev/null +++ b/js/brand/auth0.d.ts @@ -0,0 +1 @@ +export declare const auth0: string[]; \ No newline at end of file diff --git a/js/brand/auth0.js b/js/brand/auth0.js index 5b8cd43fe..1e3a4bce6 100644 --- a/js/brand/auth0.js +++ b/js/brand/auth0.js @@ -1 +1 @@ -export const auth0 = ["24 24",""] \ No newline at end of file +export const auth0 = ["32 32","auth0"] \ No newline at end of file diff --git a/js/brand/automatic.d.ts b/js/brand/automatic.d.ts new file mode 100644 index 000000000..57e63b744 --- /dev/null +++ b/js/brand/automatic.d.ts @@ -0,0 +1 @@ +export declare const automatic: string[]; \ No newline at end of file diff --git a/js/brand/automatic.js b/js/brand/automatic.js index a635e9046..7d9423f7f 100644 --- a/js/brand/automatic.js +++ b/js/brand/automatic.js @@ -1 +1 @@ -export const automatic = ["24 24",""] \ No newline at end of file +export const automatic = ["32 32","automatic"] \ No newline at end of file diff --git a/js/brand/autoprefixer.js b/js/brand/autoprefixer.js deleted file mode 100644 index 8ee733d04..000000000 --- a/js/brand/autoprefixer.js +++ /dev/null @@ -1 +0,0 @@ -export const autoprefixer = ["640 512",""] \ No newline at end of file diff --git a/js/brand/autotask.d.ts b/js/brand/autotask.d.ts new file mode 100644 index 000000000..14e9a6f99 --- /dev/null +++ b/js/brand/autotask.d.ts @@ -0,0 +1 @@ +export declare const autotask: string[]; \ No newline at end of file diff --git a/js/brand/autotask.js b/js/brand/autotask.js index cd240c2f7..ef8e2922c 100644 --- a/js/brand/autotask.js +++ b/js/brand/autotask.js @@ -1 +1 @@ -export const autotask = ["24 24",""] \ No newline at end of file +export const autotask = ["32 32","autotask"] \ No newline at end of file diff --git a/js/brand/aventrix.d.ts b/js/brand/aventrix.d.ts new file mode 100644 index 000000000..6f11df076 --- /dev/null +++ b/js/brand/aventrix.d.ts @@ -0,0 +1 @@ +export declare const aventrix: string[]; \ No newline at end of file diff --git a/js/brand/aventrix.js b/js/brand/aventrix.js index 1016e0b8c..3e4d349ce 100644 --- a/js/brand/aventrix.js +++ b/js/brand/aventrix.js @@ -1 +1 @@ -export const aventrix = ["24 24",""] \ No newline at end of file +export const aventrix = ["32 32","aventrix"] \ No newline at end of file diff --git a/js/brand/avianex.js b/js/brand/avianex.js deleted file mode 100644 index 8bd4da159..000000000 --- a/js/brand/avianex.js +++ /dev/null @@ -1 +0,0 @@ -export const avianex = ["512 512",""] \ No newline at end of file diff --git a/js/brand/aviato.js b/js/brand/aviato.js deleted file mode 100644 index 02ff746fe..000000000 --- a/js/brand/aviato.js +++ /dev/null @@ -1 +0,0 @@ -export const aviato = ["640 512",""] \ No newline at end of file diff --git a/js/brand/aws.js b/js/brand/aws.js deleted file mode 100644 index 3098b7f9a..000000000 --- a/js/brand/aws.js +++ /dev/null @@ -1 +0,0 @@ -export const aws = ["640 512",""] \ No newline at end of file diff --git a/js/brand/azure-artifacts.d.ts b/js/brand/azure-artifacts.d.ts new file mode 100644 index 000000000..77f98842e --- /dev/null +++ b/js/brand/azure-artifacts.d.ts @@ -0,0 +1 @@ +export declare const azureArtifacts: string[]; \ No newline at end of file diff --git a/js/brand/azure-artifacts.js b/js/brand/azure-artifacts.js index 2ffaa5535..fb1fb5651 100644 --- a/js/brand/azure-artifacts.js +++ b/js/brand/azure-artifacts.js @@ -1 +1 @@ -export const azureArtifacts = ["24 24",""] \ No newline at end of file +export const azureArtifacts = ["32 32","azure-artifacts"] \ No newline at end of file diff --git a/js/brand/azure-devops.d.ts b/js/brand/azure-devops.d.ts new file mode 100644 index 000000000..8f9f653df --- /dev/null +++ b/js/brand/azure-devops.d.ts @@ -0,0 +1 @@ +export declare const azureDevops: string[]; \ No newline at end of file diff --git a/js/brand/azure-devops.js b/js/brand/azure-devops.js index a6f9d66cd..3e9c2a8b4 100644 --- a/js/brand/azure-devops.js +++ b/js/brand/azure-devops.js @@ -1 +1 @@ -export const azureDevops = ["24 24",""] \ No newline at end of file +export const azureDevops = ["32 32","azure-devops"] \ No newline at end of file diff --git a/js/brand/azure-pipelines.d.ts b/js/brand/azure-pipelines.d.ts new file mode 100644 index 000000000..5aa683458 --- /dev/null +++ b/js/brand/azure-pipelines.d.ts @@ -0,0 +1 @@ +export declare const azurePipelines: string[]; \ No newline at end of file diff --git a/js/brand/azure-pipelines.js b/js/brand/azure-pipelines.js index 8d150f68f..b12e12f97 100644 --- a/js/brand/azure-pipelines.js +++ b/js/brand/azure-pipelines.js @@ -1 +1 @@ -export const azurePipelines = ["24 24",""] \ No newline at end of file +export const azurePipelines = ["32 32","azure-pipelines"] \ No newline at end of file diff --git a/js/brand/babel.d.ts b/js/brand/babel.d.ts new file mode 100644 index 000000000..7c39f0a61 --- /dev/null +++ b/js/brand/babel.d.ts @@ -0,0 +1 @@ +export declare const babel: string[]; \ No newline at end of file diff --git a/js/brand/babel.js b/js/brand/babel.js index 20b1565ad..af68f8625 100644 --- a/js/brand/babel.js +++ b/js/brand/babel.js @@ -1 +1 @@ -export const babel = ["24 24",""] \ No newline at end of file +export const babel = ["32 32","babel"] \ No newline at end of file diff --git a/js/brand/baidu.d.ts b/js/brand/baidu.d.ts new file mode 100644 index 000000000..875c61c7e --- /dev/null +++ b/js/brand/baidu.d.ts @@ -0,0 +1 @@ +export declare const baidu: string[]; \ No newline at end of file diff --git a/js/brand/baidu.js b/js/brand/baidu.js index e631ed7ba..54ee63eeb 100644 --- a/js/brand/baidu.js +++ b/js/brand/baidu.js @@ -1 +1 @@ -export const baidu = ["24 24",""] \ No newline at end of file +export const baidu = ["32 32","baidu"] \ No newline at end of file diff --git a/js/brand/bamboo.d.ts b/js/brand/bamboo.d.ts new file mode 100644 index 000000000..a63dfcbaa --- /dev/null +++ b/js/brand/bamboo.d.ts @@ -0,0 +1 @@ +export declare const bamboo: string[]; \ No newline at end of file diff --git a/js/brand/bamboo.js b/js/brand/bamboo.js index a038fcd27..eebb47afb 100644 --- a/js/brand/bamboo.js +++ b/js/brand/bamboo.js @@ -1 +1 @@ -export const bamboo = ["24 24",""] \ No newline at end of file +export const bamboo = ["32 32","bamboo"] \ No newline at end of file diff --git a/js/brand/bancontact.d.ts b/js/brand/bancontact.d.ts new file mode 100644 index 000000000..8a82f1dbf --- /dev/null +++ b/js/brand/bancontact.d.ts @@ -0,0 +1 @@ +export declare const bancontact: string[]; \ No newline at end of file diff --git a/js/brand/bancontact.js b/js/brand/bancontact.js index b91ac3a66..dc135d856 100644 --- a/js/brand/bancontact.js +++ b/js/brand/bancontact.js @@ -1 +1 @@ -export const bancontact = ["24 24",""] \ No newline at end of file +export const bancontact = ["32 32","bancontact"] \ No newline at end of file diff --git a/js/brand/bandcamp.d.ts b/js/brand/bandcamp.d.ts new file mode 100644 index 000000000..577b70451 --- /dev/null +++ b/js/brand/bandcamp.d.ts @@ -0,0 +1 @@ +export declare const bandcamp: string[]; \ No newline at end of file diff --git a/js/brand/bandcamp.js b/js/brand/bandcamp.js index 91a32fcff..c43a9e314 100644 --- a/js/brand/bandcamp.js +++ b/js/brand/bandcamp.js @@ -1 +1 @@ -export const bandcamp = ["24 24",""] \ No newline at end of file +export const bandcamp = ["32 32","bandcamp"] \ No newline at end of file diff --git a/js/brand/basecamp.d.ts b/js/brand/basecamp.d.ts new file mode 100644 index 000000000..b8ad8296f --- /dev/null +++ b/js/brand/basecamp.d.ts @@ -0,0 +1 @@ +export declare const basecamp: string[]; \ No newline at end of file diff --git a/js/brand/basecamp.js b/js/brand/basecamp.js index 18440ae52..8cc6a5a52 100644 --- a/js/brand/basecamp.js +++ b/js/brand/basecamp.js @@ -1 +1 @@ -export const basecamp = ["24 24",""] \ No newline at end of file +export const basecamp = ["32 32","basecamp"] \ No newline at end of file diff --git a/js/brand/bathasu.d.ts b/js/brand/bathasu.d.ts new file mode 100644 index 000000000..f4e9894ac --- /dev/null +++ b/js/brand/bathasu.d.ts @@ -0,0 +1 @@ +export declare const bathasu: string[]; \ No newline at end of file diff --git a/js/brand/bathasu.js b/js/brand/bathasu.js index 454f1faf2..82d64fcf4 100644 --- a/js/brand/bathasu.js +++ b/js/brand/bathasu.js @@ -1 +1 @@ -export const bathasu = ["24 24",""] \ No newline at end of file +export const bathasu = ["32 32","bathasu"] \ No newline at end of file diff --git a/js/brand/battle-net.js b/js/brand/battle-net.js deleted file mode 100644 index 9e97c7cce..000000000 --- a/js/brand/battle-net.js +++ /dev/null @@ -1 +0,0 @@ -export const battleNet = ["512 512",""] \ No newline at end of file diff --git a/js/brand/beats.js b/js/brand/beats.js deleted file mode 100644 index 9dfedd75f..000000000 --- a/js/brand/beats.js +++ /dev/null @@ -1 +0,0 @@ -export const beats = ["24 24",""] \ No newline at end of file diff --git a/js/brand/behance.d.ts b/js/brand/behance.d.ts new file mode 100644 index 000000000..7a411a55b --- /dev/null +++ b/js/brand/behance.d.ts @@ -0,0 +1 @@ +export declare const behance: string[]; \ No newline at end of file diff --git a/js/brand/behance.js b/js/brand/behance.js index 117093449..157cf5cb7 100644 --- a/js/brand/behance.js +++ b/js/brand/behance.js @@ -1 +1 @@ -export const behance = ["24 24",""] \ No newline at end of file +export const behance = ["32 32","behance"] \ No newline at end of file diff --git a/js/brand/big-cartel.d.ts b/js/brand/big-cartel.d.ts new file mode 100644 index 000000000..f0e712e27 --- /dev/null +++ b/js/brand/big-cartel.d.ts @@ -0,0 +1 @@ +export declare const bigCartel: string[]; \ No newline at end of file diff --git a/js/brand/big-cartel.js b/js/brand/big-cartel.js index 3d9aec242..08baa256b 100644 --- a/js/brand/big-cartel.js +++ b/js/brand/big-cartel.js @@ -1 +1 @@ -export const bigCartel = ["24 24",""] \ No newline at end of file +export const bigCartel = ["32 32","big-cartel"] \ No newline at end of file diff --git a/js/brand/bimobject.js b/js/brand/bimobject.js deleted file mode 100644 index 5849675d1..000000000 --- a/js/brand/bimobject.js +++ /dev/null @@ -1 +0,0 @@ -export const bimobject = ["448 512",""] \ No newline at end of file diff --git a/js/brand/bing.d.ts b/js/brand/bing.d.ts new file mode 100644 index 000000000..1aa11d180 --- /dev/null +++ b/js/brand/bing.d.ts @@ -0,0 +1 @@ +export declare const bing: string[]; \ No newline at end of file diff --git a/js/brand/bing.js b/js/brand/bing.js index 7bc26105f..bedee5d64 100644 --- a/js/brand/bing.js +++ b/js/brand/bing.js @@ -1 +1 @@ -export const bing = ["24 24",""] \ No newline at end of file +export const bing = ["32 32","bing"] \ No newline at end of file diff --git a/js/brand/bit.d.ts b/js/brand/bit.d.ts new file mode 100644 index 000000000..089514b2b --- /dev/null +++ b/js/brand/bit.d.ts @@ -0,0 +1 @@ +export declare const bit: string[]; \ No newline at end of file diff --git a/js/brand/bit.js b/js/brand/bit.js index b724415bc..a00bc1b72 100644 --- a/js/brand/bit.js +++ b/js/brand/bit.js @@ -1 +1 @@ -export const bit = ["24 24",""] \ No newline at end of file +export const bit = ["32 32","bit"] \ No newline at end of file diff --git a/js/brand/bitbucket.d.ts b/js/brand/bitbucket.d.ts new file mode 100644 index 000000000..5a6847fb4 --- /dev/null +++ b/js/brand/bitbucket.d.ts @@ -0,0 +1 @@ +export declare const bitbucket: string[]; \ No newline at end of file diff --git a/js/brand/bitbucket.js b/js/brand/bitbucket.js index dd65d7192..c8442be22 100644 --- a/js/brand/bitbucket.js +++ b/js/brand/bitbucket.js @@ -1 +1 @@ -export const bitbucket = ["24 24",""] \ No newline at end of file +export const bitbucket = ["32 32","bitbucket"] \ No newline at end of file diff --git a/js/brand/bitcoin.d.ts b/js/brand/bitcoin.d.ts new file mode 100644 index 000000000..b4c505eae --- /dev/null +++ b/js/brand/bitcoin.d.ts @@ -0,0 +1 @@ +export declare const bitcoin: string[]; \ No newline at end of file diff --git a/js/brand/bitcoin.js b/js/brand/bitcoin.js index c2bb0de41..6363a78fe 100644 --- a/js/brand/bitcoin.js +++ b/js/brand/bitcoin.js @@ -1 +1 @@ -export const bitcoin = ["24 24",""] \ No newline at end of file +export const bitcoin = ["32 32","bitcoin"] \ No newline at end of file diff --git a/js/brand/bitdefender.d.ts b/js/brand/bitdefender.d.ts new file mode 100644 index 000000000..0bb2ff6af --- /dev/null +++ b/js/brand/bitdefender.d.ts @@ -0,0 +1 @@ +export declare const bitdefender: string[]; \ No newline at end of file diff --git a/js/brand/bitdefender.js b/js/brand/bitdefender.js index 6394bdf9e..a25a7ef84 100644 --- a/js/brand/bitdefender.js +++ b/js/brand/bitdefender.js @@ -1 +1 @@ -export const bitdefender = ["24 24",""] \ No newline at end of file +export const bitdefender = ["32 32","bitdefender"] \ No newline at end of file diff --git a/js/brand/bitly.d.ts b/js/brand/bitly.d.ts new file mode 100644 index 000000000..b94adf9be --- /dev/null +++ b/js/brand/bitly.d.ts @@ -0,0 +1 @@ +export declare const bitly: string[]; \ No newline at end of file diff --git a/js/brand/bitly.js b/js/brand/bitly.js index 9ce8a9e2c..287ba507d 100644 --- a/js/brand/bitly.js +++ b/js/brand/bitly.js @@ -1 +1 @@ -export const bitly = ["24 24",""] \ No newline at end of file +export const bitly = ["32 32","bitly"] \ No newline at end of file diff --git a/js/brand/bity.js b/js/brand/bity.js deleted file mode 100644 index ccb299f11..000000000 --- a/js/brand/bity.js +++ /dev/null @@ -1 +0,0 @@ -export const bity = ["496 512",""] \ No newline at end of file diff --git a/js/brand/black-tie.js b/js/brand/black-tie.js deleted file mode 100644 index 171d5e264..000000000 --- a/js/brand/black-tie.js +++ /dev/null @@ -1 +0,0 @@ -export const blackTie = ["448 512",""] \ No newline at end of file diff --git a/js/brand/blackberry.d.ts b/js/brand/blackberry.d.ts new file mode 100644 index 000000000..dfce7c268 --- /dev/null +++ b/js/brand/blackberry.d.ts @@ -0,0 +1 @@ +export declare const blackberry: string[]; \ No newline at end of file diff --git a/js/brand/blackberry.js b/js/brand/blackberry.js index abc778740..f26ec4ae6 100644 --- a/js/brand/blackberry.js +++ b/js/brand/blackberry.js @@ -1 +1 @@ -export const blackberry = ["512 512",""] \ No newline at end of file +export const blackberry = ["32 32","blackberry"] \ No newline at end of file diff --git a/js/brand/blender.d.ts b/js/brand/blender.d.ts new file mode 100644 index 000000000..3eeebafa4 --- /dev/null +++ b/js/brand/blender.d.ts @@ -0,0 +1 @@ +export declare const blender: string[]; \ No newline at end of file diff --git a/js/brand/blender.js b/js/brand/blender.js index 63c9131d1..42e5f805f 100644 --- a/js/brand/blender.js +++ b/js/brand/blender.js @@ -1 +1 @@ -export const blender = ["24 24",""] \ No newline at end of file +export const blender = ["32 32","blender"] \ No newline at end of file diff --git a/js/brand/blogger-b.d.ts b/js/brand/blogger-b.d.ts new file mode 100644 index 000000000..0c497db9d --- /dev/null +++ b/js/brand/blogger-b.d.ts @@ -0,0 +1 @@ +export declare const bloggerB: string[]; \ No newline at end of file diff --git a/js/brand/blogger-b.js b/js/brand/blogger-b.js new file mode 100644 index 000000000..754f96a56 --- /dev/null +++ b/js/brand/blogger-b.js @@ -0,0 +1 @@ +export const bloggerB = ["32 32","blogger-b"] \ No newline at end of file diff --git a/js/brand/blogger.d.ts b/js/brand/blogger.d.ts new file mode 100644 index 000000000..54b02b0f2 --- /dev/null +++ b/js/brand/blogger.d.ts @@ -0,0 +1 @@ +export declare const blogger: string[]; \ No newline at end of file diff --git a/js/brand/blogger.js b/js/brand/blogger.js index 1ca7e2c7d..7713ccfb2 100644 --- a/js/brand/blogger.js +++ b/js/brand/blogger.js @@ -1 +1 @@ -export const blogger = ["24 24",""] \ No newline at end of file +export const blogger = ["32 32","blogger"] \ No newline at end of file diff --git a/js/brand/bluetooth-b.d.ts b/js/brand/bluetooth-b.d.ts new file mode 100644 index 000000000..3ea83c020 --- /dev/null +++ b/js/brand/bluetooth-b.d.ts @@ -0,0 +1 @@ +export declare const bluetoothB: string[]; \ No newline at end of file diff --git a/js/brand/bluetooth-b.js b/js/brand/bluetooth-b.js index 1294d8d58..c03a26176 100644 --- a/js/brand/bluetooth-b.js +++ b/js/brand/bluetooth-b.js @@ -1 +1 @@ -export const bluetoothB = ["320 512",""] \ No newline at end of file +export const bluetoothB = ["32 32","bluetooth-b"] \ No newline at end of file diff --git a/js/brand/bluetooth.d.ts b/js/brand/bluetooth.d.ts new file mode 100644 index 000000000..3bfa25353 --- /dev/null +++ b/js/brand/bluetooth.d.ts @@ -0,0 +1 @@ +export declare const bluetooth: string[]; \ No newline at end of file diff --git a/js/brand/bluetooth.js b/js/brand/bluetooth.js index ad237679c..2397df6d5 100644 --- a/js/brand/bluetooth.js +++ b/js/brand/bluetooth.js @@ -1 +1 @@ -export const bluetooth = ["448 512",""] \ No newline at end of file +export const bluetooth = ["32 32","bluetooth"] \ No newline at end of file diff --git a/js/brand/boeing.d.ts b/js/brand/boeing.d.ts new file mode 100644 index 000000000..2a865ab48 --- /dev/null +++ b/js/brand/boeing.d.ts @@ -0,0 +1 @@ +export declare const boeing: string[]; \ No newline at end of file diff --git a/js/brand/boeing.js b/js/brand/boeing.js index fd5d211dc..56ff786b9 100644 --- a/js/brand/boeing.js +++ b/js/brand/boeing.js @@ -1 +1 @@ -export const boeing = ["24 24",""] \ No newline at end of file +export const boeing = ["32 32","boeing"] \ No newline at end of file diff --git a/js/brand/boost.d.ts b/js/brand/boost.d.ts new file mode 100644 index 000000000..7ecf32fef --- /dev/null +++ b/js/brand/boost.d.ts @@ -0,0 +1 @@ +export declare const boost: string[]; \ No newline at end of file diff --git a/js/brand/boost.js b/js/brand/boost.js index c293c1c28..00881e37f 100644 --- a/js/brand/boost.js +++ b/js/brand/boost.js @@ -1 +1 @@ -export const boost = ["24 24",""] \ No newline at end of file +export const boost = ["32 32","boost"] \ No newline at end of file diff --git a/js/brand/bootstrap.d.ts b/js/brand/bootstrap.d.ts new file mode 100644 index 000000000..6c0826a53 --- /dev/null +++ b/js/brand/bootstrap.d.ts @@ -0,0 +1 @@ +export declare const bootstrap: string[]; \ No newline at end of file diff --git a/js/brand/bootstrap.js b/js/brand/bootstrap.js index 29e2dcfc3..839eeed23 100644 --- a/js/brand/bootstrap.js +++ b/js/brand/bootstrap.js @@ -1 +1 @@ -export const bootstrap = ["24 24",""] \ No newline at end of file +export const bootstrap = ["32 32","bootstrap"] \ No newline at end of file diff --git a/js/brand/bower.d.ts b/js/brand/bower.d.ts new file mode 100644 index 000000000..20df8e5f6 --- /dev/null +++ b/js/brand/bower.d.ts @@ -0,0 +1 @@ +export declare const bower: string[]; \ No newline at end of file diff --git a/js/brand/bower.js b/js/brand/bower.js index 8c2068296..5f6c7c6da 100644 --- a/js/brand/bower.js +++ b/js/brand/bower.js @@ -1 +1 @@ -export const bower = ["24 24",""] \ No newline at end of file +export const bower = ["32 32","bower"] \ No newline at end of file diff --git a/js/brand/brand-ai.d.ts b/js/brand/brand-ai.d.ts new file mode 100644 index 000000000..a9936a610 --- /dev/null +++ b/js/brand/brand-ai.d.ts @@ -0,0 +1 @@ +export declare const brandAi: string[]; \ No newline at end of file diff --git a/js/brand/brand-ai.js b/js/brand/brand-ai.js index e5c1af7f2..5b3e5afe9 100644 --- a/js/brand/brand-ai.js +++ b/js/brand/brand-ai.js @@ -1 +1 @@ -export const brandAi = ["24 24",""] \ No newline at end of file +export const brandAi = ["32 32","brand-ai"] \ No newline at end of file diff --git a/js/brand/brand-set.d.ts b/js/brand/brand-set.d.ts new file mode 100644 index 000000000..7eb4b438b --- /dev/null +++ b/js/brand/brand-set.d.ts @@ -0,0 +1,831 @@ +export declare const brandSet: { + "n500px5": string[]; + "aboutMe": string[]; + "n500px": string[]; + "abstract": string[]; + "acm": string[]; + "addthis": string[]; + "adobeAcrobatReader": string[]; + "adguard": string[]; + "adobeAudition": string[]; + "adobeAftereFfects": string[]; + "adobeCreativeCloud": string[]; + "adobeDreamweaver": string[]; + "adobeIndesign": string[]; + "adobeIllustrator": string[]; + "adobeLightroomClassic": string[]; + "adobeLightroom": string[]; + "adobePremiere": string[]; + "adobePhotoshop": string[]; + "adobeTypekit": string[]; + "adobeXd": string[]; + "adobe": string[]; + "airbnb": string[]; + "algolia": string[]; + "alipay": string[]; + "allocine": string[]; + "amazonAws": string[]; + "amazonPay": string[]; + "amd": string[]; + "amazon": string[]; + "americanExpress": string[]; + "anaconda": string[]; + "analogue": string[]; + "androidAlt": string[]; + "android": string[]; + "angellist": string[]; + "angularUniversal": string[]; + "ansible": string[]; + "angular": string[]; + "apacheAirflow": string[]; + "apacheSpark": string[]; + "appStoreIos": string[]; + "apache": string[]; + "appleMusic": string[]; + "appStore": string[]; + "applePay": string[]; + "applePodcasts": string[]; + "appveyor": string[]; + "apple": string[]; + "aral": string[]; + "archLinux": string[]; + "archiveOfOurOwn": string[]; + "arduino": string[]; + "artstation": string[]; + "arxiv": string[]; + "asana": string[]; + "atAndT": string[]; + "atom": string[]; + "audible": string[]; + "atlassian": string[]; + "auth0": string[]; + "automatic": string[]; + "aurelia": string[]; + "autotask": string[]; + "aventrix": string[]; + "azureArtifacts": string[]; + "azureDevops": string[]; + "azurePipelines": string[]; + "baidu": string[]; + "bamboo": string[]; + "bandcamp": string[]; + "bancontact": string[]; + "bathasu": string[]; + "basecamp": string[]; + "bigCartel": string[]; + "behance": string[]; + "bing": string[]; + "bit": string[]; + "bitbucket": string[]; + "bitcoin": string[]; + "bitdefender": string[]; + "bitly": string[]; + "blackberry": string[]; + "bloggerB": string[]; + "blender": string[]; + "blogger": string[]; + "bluetoothB": string[]; + "bluetooth": string[]; + "boeing": string[]; + "boost": string[]; + "bootstrap": string[]; + "bower": string[]; + "brandAi": string[]; + "brave": string[]; + "btc": string[]; + "buddy": string[]; + "buyMeACoffee": string[]; + "buffer": string[]; + "buysellads": string[]; + "buzzfeed": string[]; + "cakephp": string[]; + "c": string[]; + "campaignMonitor": string[]; + "cashapp": string[]; + "canva": string[]; + "cassandra": string[]; + "castro": string[]; + "ccAmazonPay": string[]; + "ccApplePay": string[]; + "ccDinersClub": string[]; + "ccAmex": string[]; + "ccDiscover": string[]; + "ccJcb": string[]; + "ccPaypal": string[]; + "ccMastercard": string[]; + "ccStripe": string[]; + "ccVisa": string[]; + "cevo": string[]; + "centos": string[]; + "chase": string[]; + "chef": string[]; + "chromecast": string[]; + "circle": string[]; + "circleci": string[]; + "civicrm": string[]; + "cisco": string[]; + "cirrusci": string[]; + "clockify": string[]; + "cloudflare": string[]; + "clojure": string[]; + "cloudbees": string[]; + "coOp": string[]; + "codacy": string[]; + "cmake": string[]; + "codeClimate": string[]; + "codecademy": string[]; + "codecov": string[]; + "codeigniter": string[]; + "codepen": string[]; + "coderwall": string[]; + "codesandbox": string[]; + "codeship": string[]; + "codio": string[]; + "coffeescript": string[]; + "commonWorkflowLanguage": string[]; + "condaForge": string[]; + "conekta": string[]; + "confluence": string[]; + "coreui": string[]; + "coursera": string[]; + "coreuiC": string[]; + "coveralls": string[]; + "cplusplus": string[]; + "creativeCommonsBy": string[]; + "cpanel": string[]; + "creativeCommonsNcEu": string[]; + "creativeCommonsNcJp": string[]; + "creativeCommonsNc": string[]; + "creativeCommonsNd": string[]; + "creativeCommonsPdAlt": string[]; + "creativeCommonsPd": string[]; + "creativeCommonsRemix": string[]; + "creativeCommonsSa": string[]; + "creativeCommonsSamplingPlus": string[]; + "creativeCommonsSampling": string[]; + "creativeCommonsShare": string[]; + "creativeCommonsZero": string[]; + "creativeCommons": string[]; + "crunchyroll": string[]; + "crunchbase": string[]; + "css3Shiled": string[]; + "css3": string[]; + "d3Js": string[]; + "csswizardry": string[]; + "dailymotion": string[]; + "dashlane": string[]; + "dazn": string[]; + "dblp": string[]; + "debian": string[]; + "deepin": string[]; + "deezer": string[]; + "delicious": string[]; + "dell": string[]; + "designerNews": string[]; + "dependabot": string[]; + "devTo": string[]; + "deviantart": string[]; + "devrant": string[]; + "diaspora": string[]; + "digitalOcean": string[]; + "discord": string[]; + "digg": string[]; + "discourse": string[]; + "discover": string[]; + "disqus": string[]; + "disroot": string[]; + "docker": string[]; + "django": string[]; + "docusign": string[]; + "dotNet": string[]; + "dribbble": string[]; + "drone": string[]; + "draugiemLv": string[]; + "dropbox": string[]; + "drupal": string[]; + "duckduckgo": string[]; + "dtube": string[]; + "ebay": string[]; + "dynatrace": string[]; + "eclipseide": string[]; + "elasticSearch": string[]; + "elasticCloud": string[]; + "elementary": string[]; + "elasticStack": string[]; + "elastic": string[]; + "electron": string[]; + "eleventy": string[]; + "ello": string[]; + "emlakjet": string[]; + "empirekred": string[]; + "envato": string[]; + "epson": string[]; + "esea": string[]; + "eslint": string[]; + "ethereum": string[]; + "etsy": string[]; + "eventStore": string[]; + "eventbrite": string[]; + "evernote": string[]; + "everplaces": string[]; + "evry": string[]; + "expertsExchange": string[]; + "exercism": string[]; + "eyeem": string[]; + "expo": string[]; + "facebookF": string[]; + "fSecure": string[]; + "facebook": string[]; + "faceit": string[]; + "fandango": string[]; + "favro": string[]; + "feathub": string[]; + "fedora": string[]; + "fedex": string[]; + "feedly": string[]; + "fidoAlliance": string[]; + "figma": string[]; + "filezilla": string[]; + "firebase": string[]; + "fitbit": string[]; + "flickr": string[]; + "flattr": string[]; + "fnac": string[]; + "flipboard": string[]; + "foursquare": string[]; + "flutter": string[]; + "freebsd": string[]; + "framer": string[]; + "freecodecamp": string[]; + "furAffinity": string[]; + "furryNetwork": string[]; + "garmin": string[]; + "gatsby": string[]; + "gauges": string[]; + "genius": string[]; + "gentoo": string[]; + "geocaching": string[]; + "gg": string[]; + "ghost": string[]; + "gimp": string[]; + "git": string[]; + "gitea": string[]; + "github": string[]; + "gitkraken": string[]; + "gitlab": string[]; + "gitpod": string[]; + "gitter": string[]; + "glassdoor": string[]; + "gmail": string[]; + "gnuPrivacyGuard": string[]; + "glitch": string[]; + "gnuSocial": string[]; + "go": string[]; + "gogCom": string[]; + "goldenline": string[]; + "godotEngine": string[]; + "goodreads": string[]; + "googleAds": string[]; + "googleAnalytics": string[]; + "googleChrome": string[]; + "googleAllo": string[]; + "googleCloud": string[]; + "googleKeep": string[]; + "googlePay": string[]; + "googlePlay": string[]; + "govUk": string[]; + "google": string[]; + "gradle": string[]; + "googlesCholar": string[]; + "googlePodcasts": string[]; + "grafana": string[]; + "graphql": string[]; + "grav": string[]; + "graphcool": string[]; + "greenkeeper": string[]; + "gravatar": string[]; + "groupon": string[]; + "groovy": string[]; + "grunt": string[]; + "gulp": string[]; + "gumtree": string[]; + "gumroad": string[]; + "habr": string[]; + "hackerearth": string[]; + "hackerone": string[]; + "hackaday": string[]; + "hackerrank": string[]; + "hackhands": string[]; + "hackster": string[]; + "happycow": string[]; + "hashnode": string[]; + "haskell": string[]; + "hatenaBookmark": string[]; + "haxe": string[]; + "heroku": string[]; + "here": string[]; + "helm": string[]; + "hexo": string[]; + "highly": string[]; + "hipchat": string[]; + "hitachi": string[]; + "hockeyapp": string[]; + "homify": string[]; + "hotjar": string[]; + "hootsuite": string[]; + "houzz": string[]; + "hp": string[]; + "html5Shield": string[]; + "html5": string[]; + "htmlacademy": string[]; + "huawei": string[]; + "hubspot": string[]; + "hulu": string[]; + "humbleBundle": string[]; + "iata": string[]; + "ibm": string[]; + "icloud": string[]; + "ideal": string[]; + "ifixit": string[]; + "icq": string[]; + "imdb": string[]; + "iconjar": string[]; + "inkscape": string[]; + "indeed": string[]; + "instacart": string[]; + "instagram": string[]; + "instapaper": string[]; + "intellijidea": string[]; + "intel": string[]; + "intercom": string[]; + "ionic": string[]; + "invision": string[]; + "internetExplorer": string[]; + "issuu": string[]; + "jabber": string[]; + "itchIo": string[]; + "javascript": string[]; + "java": string[]; + "jekyll": string[]; + "jenkins": string[]; + "jest": string[]; + "jet": string[]; + "jetbrains": string[]; + "jira": string[]; + "joomla": string[]; + "js": string[]; + "jquery": string[]; + "jsfiddle": string[]; + "jsdelivr": string[]; + "justgiving": string[]; + "json": string[]; + "jupyter": string[]; + "kaggle": string[]; + "kaspersky": string[]; + "kaios": string[]; + "kentico": string[]; + "keras": string[]; + "keybase": string[]; + "keycdn": string[]; + "khanAcademy": string[]; + "kibana": string[]; + "kickstarter": string[]; + "kik": string[]; + "klout": string[]; + "kirby": string[]; + "kodi": string[]; + "koFi": string[]; + "koding": string[]; + "known": string[]; + "kotlin": string[]; + "krita": string[]; + "lanyrd": string[]; + "kubernetes": string[]; + "laravelHorizon": string[]; + "laravelNova": string[]; + "lastFm": string[]; + "laravel": string[]; + "latex": string[]; + "launchpad": string[]; + "leetcode": string[]; + "lenovo": string[]; + "less": string[]; + "letsEncrypt": string[]; + "lgtm": string[]; + "letterboxd": string[]; + "liberapay": string[]; + "librarything": string[]; + "libreoffice": string[]; + "line": string[]; + "linkedinIn": string[]; + "linkedin": string[]; + "linuxFoundation": string[]; + "linuxMint": string[]; + "linux": string[]; + "livejournal": string[]; + "livestream": string[]; + "lua": string[]; + "lumen": string[]; + "logstash": string[]; + "lyft": string[]; + "macys": string[]; + "magento": string[]; + "magisk": string[]; + "mailRu": string[]; + "makerbot": string[]; + "mailchimp": string[]; + "markdown": string[]; + "manjaro": string[]; + "marketo": string[]; + "mastercard": string[]; + "mastodon": string[]; + "materialDesign": string[]; + "matrix": string[]; + "mathworks": string[]; + "matternet": string[]; + "maxcdn": string[]; + "mcafee": string[]; + "mattermost": string[]; + "mediafire": string[]; + "mediumM": string[]; + "mediaTemple": string[]; + "meetup": string[]; + "medium": string[]; + "mega": string[]; + "messenger": string[]; + "mendeley": string[]; + "microBlog": string[]; + "meteor": string[]; + "microgenetics": string[]; + "microsoftEdge": string[]; + "microsoft": string[]; + "minetest": string[]; + "minutemailer": string[]; + "mix": string[]; + "mixcloud": string[]; + "mojang": string[]; + "monero": string[]; + "mixer": string[]; + "monkeytie": string[]; + "mongodb": string[]; + "monogram": string[]; + "monzo": string[]; + "moo": string[]; + "mozillaFirefox": string[]; + "mozilla": string[]; + "musescore": string[]; + "mxlinux": string[]; + "myspace": string[]; + "nativescript": string[]; + "nec": string[]; + "neo4j": string[]; + "mysql": string[]; + "netlify": string[]; + "nextJs": string[]; + "nextcloud": string[]; + "netflix": string[]; + "nextdoor": string[]; + "nginx": string[]; + "nim": string[]; + "nintendoGamecube": string[]; + "nintendoSwitch": string[]; + "nintendo": string[]; + "nintendo3ds": string[]; + "nodemon": string[]; + "nodeRed": string[]; + "nodeJs": string[]; + "nokia": string[]; + "notion": string[]; + "npm": string[]; + "nucleo": string[]; + "nvidia": string[]; + "nuget": string[]; + "nuxtJs": string[]; + "ocaml": string[]; + "octave": string[]; + "oculus": string[]; + "octopusDeploy": string[]; + "odnoklassniki": string[]; + "openCollective": string[]; + "openAccess": string[]; + "openId": string[]; + "openSourceInitiative": string[]; + "openstreetmap": string[]; + "openvpn": string[]; + "opensuse": string[]; + "opera": string[]; + "opsgenie": string[]; + "oracle": string[]; + "orcid": string[]; + "origin": string[]; + "osmc": string[]; + "osi": string[]; + "overcast": string[]; + "ovh": string[]; + "palantir": string[]; + "pagekit": string[]; + "overleaf": string[]; + "pandora": string[]; + "pantheon": string[]; + "paypal": string[]; + "php": string[]; + "patreon": string[]; + "periscope": string[]; + "pinboard": string[]; + "picartoTv": string[]; + "pingdom": string[]; + "pingup": string[]; + "pinterestP": string[]; + "pinterest": string[]; + "pivotaltracker": string[]; + "plangrid": string[]; + "playerMe": string[]; + "playerfm": string[]; + "playstation": string[]; + "playstation3": string[]; + "playstation4": string[]; + "plesk": string[]; + "plex": string[]; + "plurk": string[]; + "pluralsight": string[]; + "pocket": string[]; + "postman": string[]; + "postwoman": string[]; + "postgresql": string[]; + "prismic": string[]; + "powershell": string[]; + "prettier": string[]; + "probot": string[]; + "productHunt": string[]; + "processwire": string[]; + "protonmail": string[]; + "protoIo": string[]; + "proxmox": string[]; + "pypi": string[]; + "pytorch": string[]; + "python": string[]; + "qiita": string[]; + "qgis": string[]; + "qq": string[]; + "qualcomm": string[]; + "quantcast": string[]; + "quantopian": string[]; + "quarkus": string[]; + "qwiklabs": string[]; + "qzone": string[]; + "quora": string[]; + "r": string[]; + "radiopublic": string[]; + "rails": string[]; + "raspberryPi": string[]; + "readTheDocs": string[]; + "react": string[]; + "readme": string[]; + "realm": string[]; + "redbubble": string[]; + "reason": string[]; + "redditAlt": string[]; + "redhat": string[]; + "reddit": string[]; + "redis": string[]; + "riot": string[]; + "redux": string[]; + "reverbnation": string[]; + "renren": string[]; + "riseup": string[]; + "ripple": string[]; + "rollupJs": string[]; + "roots": string[]; + "rss": string[]; + "rstudio": string[]; + "roundcube": string[]; + "ruby": string[]; + "rubygems": string[]; + "runkeeper": string[]; + "safari": string[]; + "rust": string[]; + "sahibinden": string[]; + "salesforce": string[]; + "saltstack": string[]; + "samsungPay": string[]; + "sap": string[]; + "samsung": string[]; + "sassAlt": string[]; + "sass": string[]; + "scala": string[]; + "saucelabs": string[]; + "scribd": string[]; + "scaleway": string[]; + "scrutinizerci": string[]; + "seagate": string[]; + "sega": string[]; + "sellfy": string[]; + "semaphoreci": string[]; + "sentry": string[]; + "sensu": string[]; + "serverFault": string[]; + "shazam": string[]; + "shopify": string[]; + "shell": string[]; + "showpad": string[]; + "signal": string[]; + "sinaWeibo": string[]; + "siemens": string[]; + "sitepoint": string[]; + "sketch": string[]; + "skillshare": string[]; + "skyliner": string[]; + "skype": string[]; + "slack": string[]; + "slashdot": string[]; + "slickpic": string[]; + "slides": string[]; + "slideshare": string[]; + "smashingmagazine": string[]; + "snapchat": string[]; + "snapcraft": string[]; + "snyk": string[]; + "society6": string[]; + "socketIo": string[]; + "sogou": string[]; + "songkick": string[]; + "solus": string[]; + "sourceforge": string[]; + "sourcegraph": string[]; + "soundcloud": string[]; + "sonos": string[]; + "spacemacs": string[]; + "spacex": string[]; + "sparkfun": string[]; + "sparkpost": string[]; + "spdx": string[]; + "spectrum": string[]; + "spotify": string[]; + "spreaker": string[]; + "speakerDeck": string[]; + "spring": string[]; + "spotlight": string[]; + "sprint": string[]; + "stackexchange": string[]; + "stackoverflow": string[]; + "stackbit": string[]; + "squarespace": string[]; + "stadia": string[]; + "stackshare": string[]; + "stackpath": string[]; + "statamic": string[]; + "staticman": string[]; + "statuspage": string[]; + "steam": string[]; + "steem": string[]; + "steemit": string[]; + "stitcher": string[]; + "storify": string[]; + "strapi": string[]; + "storybook": string[]; + "strava": string[]; + "stripe": string[]; + "stubhub": string[]; + "stripeS": string[]; + "stumbleupon": string[]; + "styleshare": string[]; + "stylus": string[]; + "sublimeText": string[]; + "subversion": string[]; + "superuser": string[]; + "svelte": string[]; + "svg": string[]; + "swagger": string[]; + "swarm": string[]; + "swift": string[]; + "symantec": string[]; + "symfony": string[]; + "synology": string[]; + "tMobile": string[]; + "tableau": string[]; + "tails": string[]; + "tapas": string[]; + "teamviewer": string[]; + "ted": string[]; + "teespring": string[]; + "telegramPlane": string[]; + "telegram": string[]; + "tencentQq": string[]; + "tensorflow": string[]; + "terraform": string[]; + "tencentWeibo": string[]; + "tesla": string[]; + "theMighty": string[]; + "tidal": string[]; + "theMovieDatabase": string[]; + "tinder": string[]; + "tiktok": string[]; + "todoist": string[]; + "toggl": string[]; + "topcoder": string[]; + "tor": string[]; + "toptal": string[]; + "trainerroad": string[]; + "toshiba": string[]; + "trakt": string[]; + "treehouse": string[]; + "trello": string[]; + "tripadvisor": string[]; + "tumblr": string[]; + "trulia": string[]; + "twilio": string[]; + "twitch": string[]; + "twitter": string[]; + "twoo": string[]; + "typescript": string[]; + "uber": string[]; + "typo3": string[]; + "ublockOrigin": string[]; + "ubisoft": string[]; + "ubuntu": string[]; + "udacity": string[]; + "udemy": string[]; + "uikit": string[]; + "unrealEngine": string[]; + "unity": string[]; + "umbraco": string[]; + "unsplash": string[]; + "untappd": string[]; + "upwork": string[]; + "usb": string[]; + "v8": string[]; + "vagrant": string[]; + "verizon": string[]; + "venmo": string[]; + "viber": string[]; + "vim": string[]; + "viadeo": string[]; + "vimeoV": string[]; + "vimeo": string[]; + "vine": string[]; + "virb": string[]; + "visa": string[]; + "visualStudioCode": string[]; + "visualStudio": string[]; + "vk": string[]; + "vlc": string[]; + "vsco": string[]; + "vueJs": string[]; + "weasyl": string[]; + "wattpad": string[]; + "webpack": string[]; + "webcomponentsOrg": string[]; + "webstorm": string[]; + "wechat": string[]; + "whatsapp": string[]; + "wii": string[]; + "whenIWork": string[]; + "wikipedia": string[]; + "wiiu": string[]; + "windows": string[]; + "wire": string[]; + "wireguard": string[]; + "wix": string[]; + "wolframLanguage": string[]; + "wolframMathematica": string[]; + "wolfram": string[]; + "wordpress": string[]; + "wpengine": string[]; + "xPack": string[]; + "xbox": string[]; + "xcode": string[]; + "xero": string[]; + "xiaomi": string[]; + "xing": string[]; + "xrp": string[]; + "xsplit": string[]; + "yCombinator": string[]; + "yahoo": string[]; + "yammer": string[]; + "yandex": string[]; + "yarn": string[]; + "yelp": string[]; + "youtube": string[]; + "zalando": string[]; + "zapier": string[]; + "zeit": string[]; + "zendesk": string[]; + "zerply": string[]; + "zillow": string[]; + "zingat": string[]; + "zoom": string[]; + "zorin": string[]; + "zulip": string[]; + "deno": string[]; + "epicGames": string[]; + "flask": string[]; + "gerrit": string[]; + "greensock": string[]; + "travisci": string[]; + "apacheFlink": string[]; + "babel": string[]; + "codewars": string[]; + "gnu": string[]; + "composer": string[]; + "elsevier": string[]; +} \ No newline at end of file diff --git a/js/brand/brand-set.js b/js/brand/brand-set.js index d053470f6..369c7e3cc 100644 --- a/js/brand/brand-set.js +++ b/js/brand/brand-set.js @@ -1 +1 @@ -export const brandSet = {"500px":["24 24",""],"aboutMe":["24 24",""],"abstract":["24 24",""],"addthis":["24 24",""],"accusoft":["640 512",""],"acm":["24 24",""],"adguard":["24 24",""],"adn":["496 512",""],"adobeAfterEffects":["24 24",""],"adobeAudition":["24 24",""],"acquisitionsIncorporated":["384 512",""],"adobeDreamweaver":["24 24",""],"adobeAcrobatReader":["24 24",""],"adobeIllustrator":["24 24",""],"adobeCreativeCloud":["24 24",""],"adobeLightroomcc":["24 24",""],"adobeLightroomclassic":["24 24",""],"adobeIndesign":["24 24",""],"adobePremiere":["24 24",""],"adobeTypekit":["24 24",""],"adobeXd":["24 24",""],"airbnb":["24 24",""],"adobe":["24 24",""],"adobePhotoshop":["24 24",""],"adversal":["512 512",""],"algolia":["448 512",""],"alipay":["448 512",""],"affiliatetheme":["512 512",""],"allocine":["24 24",""],"amazonAws":["24 24",""],"amazonPay":["640 512",""],"americanExpress":["24 24",""],"amd":["24 24",""],"amazon":["24 24",""],"anaconda":["24 24",""],"android":["24 24",""],"analogue":["24 24",""],"amilia":["448 512",""],"angrycreative":["640 512",""],"androidAlt":["448 512",""],"angellist":["24 24",""],"angular":["24 24",""],"angularUniversal":["24 24",""],"apacheAirflow":["24 24",""],"ansible":["24 24",""],"apacheSpark":["24 24",""],"appStore":["512 512",""],"applePay":["24 24",""],"apache":["24 24",""],"apper":["640 512",""],"aral":["24 24",""],"apple":["24 24",""],"appveyor":["24 24",""],"arduino":["24 24",""],"archLinux":["24 24",""],"arxiv":["24 24",""],"archiveOfOurOwn":["24 24",""],"artstation":["24 24",""],"atAndT":["24 24",""],"atlassian":["24 24",""],"atom":["24 24",""],"asana":["24 24",""],"aurelia":["24 24",""],"audible":["24 24",""],"asymmetrik":["576 512",""],"auth0":["24 24",""],"autotask":["24 24",""],"aventrix":["24 24",""],"automatic":["24 24",""],"avianex":["512 512",""],"autoprefixer":["640 512",""],"azureArtifacts":["24 24",""],"azureDevops":["24 24",""],"aviato":["640 512",""],"aws":["640 512",""],"azurePipelines":["24 24",""],"bancontact":["24 24",""],"baidu":["24 24",""],"bamboo":["24 24",""],"bandcamp":["24 24",""],"battleNet":["512 512",""],"basecamp":["24 24",""],"bathasu":["24 24",""],"behance":["24 24",""],"bimobject":["448 512",""],"beats":["24 24",""],"bigCartel":["24 24",""],"bit":["24 24",""],"bitbucket":["24 24",""],"bing":["24 24",""],"bitcoin":["24 24",""],"bitdefender":["24 24",""],"blackTie":["448 512",""],"bity":["496 512",""],"bitly":["24 24",""],"blender":["24 24",""],"blogger":["24 24",""],"bluetoothB":["320 512",""],"blackberry":["512 512",""],"bluetooth":["448 512",""],"boost":["24 24",""],"boeing":["24 24",""],"brandAi":["24 24",""],"bower":["24 24",""],"btc":["384 512",""],"buddy":["24 24",""],"bootstrap":["24 24",""],"buromobelexperte":["448 512",""],"brave":["24 24",""],"buymeacoffee":["24 24",""],"buffer":["24 24",""],"buysellads":["448 512",""],"c":["24 24",""],"campaignMonitor":["24 24",""],"buzzfeed":["24 24",""],"cakephp":["24 24",""],"cashapp":["24 24",""],"canadianMapleLeaf":["512 512",""],"canva":["24 24",""],"cassandra":["24 24",""],"castro":["24 24",""],"castorama":["24 24",""],"ccAmex":["576 512",""],"ccAmazonPay":["576 512",""],"ccDinersClub":["576 512",""],"ccDiscover":["576 512",""],"ccApplePay":["576 512",""],"ccPaypal":["576 512",""],"ccJcb":["576 512",""],"ccStripe":["576 512",""],"ccVisa":["576 512",""],"ccMastercard":["576 512",""],"centercode":["512 512",""],"centos":["24 24",""],"cevo":["24 24",""],"chef":["24 24",""],"chase":["24 24",""],"chromecast":["512 512",""],"circleCi":["24 24",""],"cisco":["24 24",""],"chrome":["496 512",""],"circle":["24 24",""],"cirrusci":["24 24",""],"civicrm":["24 24",""],"cloudbees":["24 24",""],"clockify":["24 24",""],"cloudflare":["24 24",""],"clojure":["24 24",""],"cloudscale":["448 512",""],"cloudversify":["616 512",""],"codacy":["24 24",""],"cloudsmith":["332 512",""],"codecademy":["24 24",""],"codecov":["24 24",""],"coOp":["24 24",""],"cmake":["24 24",""],"codeclimate":["24 24",""],"codefactor":["24 24",""],"codeigniter":["24 24",""],"codeforces":["24 24",""],"codepen":["24 24",""],"coderwall":["24 24",""],"codio":["24 24",""],"codesandbox":["24 24",""],"codiepie":["472 512",""],"codeship":["24 24",""],"commonworkflowlanguage":["24 24",""],"coffeescript":["24 24",""],"condaForge":["24 24",""],"confluence":["24 24",""],"conekta":["24 24",""],"compropago":["24 24",""],"connectdevelop":["576 512",""],"coveralls":["24 24",""],"cpanel":["640 512",""],"coursera":["24 24",""],"contao":["512 512",""],"cplusplus":["24 24",""],"creativeCommonsBy":["496 512",""],"creativeCommonsNcEu":["496 512",""],"creativeCommonsNcJp":["496 512",""],"creativeCommonsPd":["496 512",""],"creativeCommonsNd":["496 512",""],"creativeCommonsSamplingPlus":["496 512",""],"creativeCommonsNc":["496 512",""],"creativeCommonsPdAlt":["496 512",""],"creativeCommonsZero":["496 512",""],"creativeCommonsRemix":["496 512",""],"creativeCommonsShare":["496 512",""],"creativeCommonsSampling":["496 512",""],"creativeCommonsSa":["496 512",""],"crunchyroll":["24 24",""],"creativeCommons":["24 24",""],"criticalRole":["448 512",""],"css3Alt":["384 512",""],"css3":["24 24",""],"crunchbase":["24 24",""],"csswizardry":["24 24",""],"cuttlefish":["440 512",""],"dailymotion":["24 24",""],"dAndD":["576 512",""],"dAndDBeyond":["640 512",""],"dashcube":["448 512",""],"dblp":["24 24",""],"d3DotJs":["24 24",""],"dashlane":["24 24",""],"debian":["24 24",""],"dazn":["24 24",""],"deepin":["24 24",""],"delicious":["24 24",""],"deezer":["24 24",""],"deskpro":["480 512",""],"dassaultsystemes":["24 24",""],"dell":["24 24",""],"dependabot":["24 24",""],"designernews":["24 24",""],"deviantart":["24 24",""],"deno":["24 24",""],"devTo":["24 24",""],"deploydog":["512 512",""],"devrant":["24 24",""],"diaspora":["24 24",""],"dhl":["640 512",""],"digg":["24 24",""],"digitalocean":["24 24",""],"digitalOcean":["512 512",""],"discord":["24 24",""],"disroot":["24 24",""],"discover":["24 24",""],"disqus":["24 24",""],"discourse":["24 24",""],"dochub":["416 512",""],"docker":["24 24",""],"docusign":["24 24",""],"dotNet":["24 24",""],"django":["24 24",""],"draft2digital":["480 512",""],"draugiemDotLv":["24 24",""],"dribbble":["24 24",""],"dropbox":["24 24",""],"drone":["24 24",""],"dyalog":["416 512",""],"drupal":["24 24",""],"dtube":["24 24",""],"earlybirds":["480 512",""],"duckduckgo":["24 24",""],"dynatrace":["24 24",""],"ebay":["24 24",""],"elasticcloud":["24 24",""],"edge":["512 512",""],"eclipseide":["24 24",""],"elastic":["24 24",""],"elasticstack":["24 24",""],"elementor":["448 512",""],"electron":["24 24",""],"elasticsearch":["24 24",""],"elementary":["24 24",""],"eleventy":["24 24",""],"ello":["24 24",""],"ember":["640 512",""],"emlakjet":["24 24",""],"envato":["24 24",""],"empire":["496 512",""],"empirekred":["24 24",""],"epson":["24 24",""],"erlang":["640 512",""],"envira":["448 512",""],"esea":["24 24",""],"ethereum":["24 24",""],"eslint":["24 24",""],"eventbrite":["24 24",""],"everplaces":["24 24",""],"evernote":["24 24",""],"etsy":["24 24",""],"eventstore":["24 24",""],"expertsexchange":["24 24",""],"exercism":["24 24",""],"evry":["24 24",""],"expeditedssl":["496 512",""],"expo":["24 24",""],"eyeem":["24 24",""],"fSecure":["24 24",""],"facebookF":["320 512",""],"fandango":["24 24",""],"facebookMessenger":["512 512",""],"fantasyFlightGames":["512 512",""],"favro":["24 24",""],"facebook":["24 24",""],"fedex":["640 512",""],"faceit":["24 24",""],"fedora":["24 24",""],"feathub":["24 24",""],"feedly":["24 24",""],"fidoalliance":["24 24",""],"filezilla":["24 24",""],"figma":["24 24",""],"firefox":["480 512",""],"firstOrderAlt":["496 512",""],"firstOrder":["448 512",""],"firebase":["24 24",""],"fitbit":["24 24",""],"firstdraft":["384 512",""],"flipboard":["24 24",""],"flickr":["24 24",""],"flattr":["24 24",""],"flutter":["24 24",""],"fly":["384 512",""],"fontAwesomeAlt":["448 512",""],"forumbee":["448 512",""],"fnac":["24 24",""],"freebsd":["24 24",""],"framer":["24 24",""],"freecodecamp":["24 24",""],"furrynetwork":["24 24",""],"freeCodeCamp":["576 512",""],"fulcrum":["320 512",""],"galacticRepublic":["496 512",""],"furaffinity":["24 24",""],"galacticSenate":["512 512",""],"gauges":["24 24",""],"gatsby":["24 24",""],"garmin":["24 24",""],"gentoo":["24 24",""],"genius":["24 24",""],"getPocket":["448 512",""],"geocaching":["24 24",""],"ggCircle":["512 512",""],"ghost":["24 24",""],"gitea":["24 24",""],"gg":["512 512",""],"githubAlt":["480 512",""],"gimp":["24 24",""],"gitlab":["24 24",""],"git":["24 24",""],"gitkraken":["592 512",""],"gitpod":["24 24",""],"gitter":["24 24",""],"glideG":["448 512",""],"glassdoor":["24 24",""],"glitch":["24 24",""],"github":["24 24",""],"gmail":["24 24",""],"glide":["448 512",""],"godotengine":["24 24",""],"gnusocial":["24 24",""],"gnuprivacyguard":["24 24",""],"gofore":["400 512",""],"gogCom":["24 24",""],"go":["24 24",""],"goldenline":["24 24",""],"goodreads":["24 24",""],"googleAds":["24 24",""],"googleAllo":["24 24",""],"goodreadsG":["384 512",""],"googleCloud":["24 24",""],"googleAnalytics":["24 24",""],"googleHangouts":["24 24",""],"googleDrive":["24 24",""],"googleKeep":["24 24",""],"googlePay":["24 24",""],"googlePodcasts":["24 24",""],"googlePlay":["24 24",""],"googleHangoutschat":["24 24",""],"googleWallet":["448 512",""],"google":["24 24",""],"googleScholar":["24 24",""],"gradle":["24 24",""],"govUk":["24 24",""],"graphcool":["24 24",""],"graphql":["24 24",""],"grav":["24 24",""],"grafana":["24 24",""],"gratipay":["496 512",""],"greenkeeper":["24 24",""],"groovy":["24 24",""],"gripfire":["384 512",""],"groupon":["24 24",""],"grunt":["384 512",""],"gravatar":["24 24",""],"gulp":["24 24",""],"gumroad":["24 24",""],"habr":["24 24",""],"gumtree":["24 24",""],"hackerNews":["448 512",""],"hackaday":["24 24",""],"hackhands":["24 24",""],"hackerearth":["24 24",""],"hackerrank":["24 24",""],"happycow":["24 24",""],"hackster":["24 24",""],"hashnode":["24 24",""],"haskell":["24 24",""],"hackerone":["24 24",""],"haxe":["24 24",""],"helm":["24 24",""],"here":["24 24",""],"hexo":["24 24",""],"hatenabookmark":["24 24",""],"heroku":["24 24",""],"hipchat":["24 24",""],"hireAHelper":["512 512",""],"hitachi":["24 24",""],"highly":["24 24",""],"hips":["640 512",""],"homify":["24 24",""],"hockeyapp":["24 24",""],"hooli":["640 512",""],"hootsuite":["24 24",""],"hornbill":["512 512",""],"hotjar":["448 512",""],"html5":["24 24",""],"hp":["24 24",""],"houzz":["24 24",""],"huawei":["24 24",""],"htmlacademy":["24 24",""],"iata":["24 24",""],"hubspot":["24 24",""],"hulu":["24 24",""],"humblebundle":["24 24",""],"icloud":["24 24",""],"hurriyetemlak":["24 24",""],"ibm":["24 24",""],"icq":["24 24",""],"imdb":["24 24",""],"ifixit":["24 24",""],"indeed":["24 24",""],"ideal":["24 24",""],"iconjar":["24 24",""],"instacart":["24 24",""],"instagram":["24 24",""],"inkscape":["24 24",""],"instapaper":["24 24",""],"intel":["24 24",""],"intellijidea":["24 24",""],"intercom":["24 24",""],"internetexplorer":["24 24",""],"internetExplorer":["512 512",""],"invision":["24 24",""],"ionic":["24 24",""],"itchDotIo":["24 24",""],"itchIo":["512 512",""],"ioxhost":["640 512",""],"itunes":["448 512",""],"issuu":["24 24",""],"jabber":["24 24",""],"javascript":["24 24",""],"itunesNote":["384 512",""],"jediOrder":["448 512",""],"java":["24 24",""],"jenkins":["24 24",""],"jest":["24 24",""],"jekyll":["24 24",""],"jet":["24 24",""],"joget":["496 512",""],"jetbrains":["24 24",""],"jira":["24 24",""],"joomla":["24 24",""],"jquery":["24 24",""],"jsfiddle":["24 24",""],"jsdelivr":["24 24",""],"json":["24 24",""],"jupyter":["24 24",""],"justgiving":["24 24",""],"kaspersky":["24 24",""],"kaggle":["24 24",""],"kaios":["24 24",""],"kentico":["24 24",""],"keras":["24 24",""],"kibana":["24 24",""],"keybase":["24 24",""],"keycdn":["24 24",""],"kik":["24 24",""],"khanacademy":["24 24",""],"known":["24 24",""],"kickstarter":["24 24",""],"kirby":["24 24",""],"kodi":["24 24",""],"koding":["24 24",""],"korvue":["446 512",""],"klout":["24 24",""],"koFi":["24 24",""],"kubernetes":["24 24",""],"kotlin":["24 24",""],"lanyrd":["24 24",""],"krita":["24 24",""],"laravelhorizon":["24 24",""],"laravelnova":["24 24",""],"lastfm":["512 512",""],"laravel":["24 24",""],"lastDotFm":["24 24",""],"launchpad":["24 24",""],"leetcode":["24 24",""],"less":["640 512",""],"latex":["24 24",""],"leanpub":["576 512",""],"letterboxd":["24 24",""],"lenovo":["24 24",""],"lgtm":["24 24",""],"letsencrypt":["24 24",""],"liberapay":["24 24",""],"librarything":["24 24",""],"libreoffice":["24 24",""],"line":["24 24",""],"linewebtoon":["24 24",""],"linkedin":["24 24",""],"linux":["24 24",""],"linuxfoundation":["24 24",""],"linuxmint":["24 24",""],"linode":["448 512",""],"livejournal":["24 24",""],"livestream":["24 24",""],"logstash":["24 24",""],"lyft":["24 24",""],"lua":["24 24",""],"macys":["24 24",""],"magisk":["24 24",""],"magento":["24 24",""],"lumen":["24 24",""],"mailDotRu":["24 24",""],"mandalorian":["448 512",""],"manjaro":["24 24",""],"makerbot":["24 24",""],"mailchimp":["24 24",""],"mastercard":["24 24",""],"markdown":["24 24",""],"mastodon":["24 24",""],"marketo":["24 24",""],"materialdesign":["24 24",""],"mathworks":["24 24",""],"mattermost":["24 24",""],"matternet":["24 24",""],"matrix":["24 24",""],"maxcdn":["512 512",""],"medium":["24 24",""],"mediatemple":["24 24",""],"medapps":["320 512",""],"mcafee":["24 24",""],"mediafire":["24 24",""],"mega":["24 24",""],"medrt":["544 512",""],"meetup":["24 24",""],"mendeley":["24 24",""],"messenger":["24 24",""],"meteor":["24 24",""],"microsoftEdge":["24 24",""],"microsoft":["24 24",""],"megaport":["496 512",""],"minetest":["24 24",""],"microgenetics":["24 24",""],"mix":["24 24",""],"microDotBlog":["24 24",""],"minutemailer":["24 24",""],"modx":["448 512",""],"mixcloud":["24 24",""],"mizuni":["496 512",""],"mojang":["24 24",""],"mixer":["24 24",""],"mongodb":["24 24",""],"monero":["24 24",""],"monkeytie":["24 24",""],"moo":["24 24",""],"mozillaFirefox":["24 24",""],"monzo":["24 24",""],"mxlinux":["24 24",""],"monogram":["24 24",""],"myspace":["24 24",""],"musescore":["24 24",""],"mysql":["24 24",""],"mozilla":["24 24",""],"napster":["496 512",""],"nativescript":["24 24",""],"neo4j":["24 24",""],"neos":["512 512",""],"netflix":["24 24",""],"nec":["24 24",""],"nextJs":["24 24",""],"nextcloud":["24 24",""],"netlify":["24 24",""],"nextdoor":["24 24",""],"nginx":["24 24",""],"nimblr":["384 512",""],"nim":["24 24",""],"nintendo":["24 24",""],"nintendoSwitch":["24 24",""],"nintendo3ds":["24 24",""],"node":["640 512",""],"nodeJs":["24 24",""],"nintendoGamecube":["24 24",""],"nokia":["24 24",""],"nodeRed":["24 24",""],"npm":["24 24",""],"nodemon":["24 24",""],"notion":["24 24",""],"nuget":["24 24",""],"ns8":["640 512",""],"nucleo":["24 24",""],"nutritionix":["400 512",""],"nuxtDotJs":["24 24",""],"ocaml":["24 24",""],"odnoklassniki":["24 24",""],"nvidia":["24 24",""],"octopusdeploy":["24 24",""],"oculus":["24 24",""],"octave":["24 24",""],"openaccess":["24 24",""],"opencart":["640 512",""],"opensourceinitiative":["24 24",""],"opencollective":["24 24",""],"openid":["448 512",""],"openstreetmap":["24 24",""],"opensuse":["24 24",""],"openvpn":["24 24",""],"opsgenie":["24 24",""],"opera":["24 24",""],"optinMonster":["576 512",""],"orcid":["24 24",""],"origin":["24 24",""],"osi":["512 512",""],"overcast":["24 24",""],"overleaf":["24 24",""],"oracle":["24 24",""],"osmc":["24 24",""],"page4":["496 512",""],"pagekit":["24 24",""],"ovh":["24 24",""],"palantir":["24 24",""],"palfed":["576 512",""],"pandora":["24 24",""],"pagelines":["384 512",""],"paloaltosoftware":["24 24",""],"patreon":["24 24",""],"pennyArcade":["640 512",""],"phabricator":["496 512",""],"paypal":["24 24",""],"pantheon":["24 24",""],"periscope":["24 24",""],"php":["24 24",""],"picartoDotTv":["24 24",""],"phoenixSquadron":["512 512",""],"phoenixFramework":["640 512",""],"piedPiperPp":["448 512",""],"pinboard":["24 24",""],"piedPiperHat":["640 512",""],"pingdom":["24 24",""],"piedPiperAlt":["576 512",""],"piedPiper":["448 512",""],"plangrid":["24 24",""],"pinterestP":["384 512",""],"pingup":["24 24",""],"pinterest":["24 24",""],"pivotaltracker":["24 24",""],"playstation":["24 24",""],"playerDotMe":["24 24",""],"playerfm":["24 24",""],"playstation4":["24 24",""],"pluralsight":["24 24",""],"plesk":["24 24",""],"plex":["24 24",""],"playstation3":["24 24",""],"plurk":["24 24",""],"postwoman":["24 24",""],"pocket":["24 24",""],"postgresql":["24 24",""],"powershell":["24 24",""],"prettier":["24 24",""],"postman":["24 24",""],"processwire":["24 24",""],"probot":["24 24",""],"producthunt":["24 24",""],"pushed":["432 512",""],"protoDotIo":["24 24",""],"pypi":["24 24",""],"prismic":["24 24",""],"protonmail":["24 24",""],"proxmox":["24 24",""],"python":["24 24",""],"qgis":["24 24",""],"qiita":["24 24",""],"pytorch":["24 24",""],"quantopian":["24 24",""],"qq":["448 512",""],"quantcast":["24 24",""],"qualcomm":["24 24",""],"quora":["24 24",""],"quinscape":["512 512",""],"qwiklabs":["24 24",""],"quarkus":["24 24",""],"rProject":["581 512",""],"r":["24 24",""],"qzone":["24 24",""],"radiopublic":["24 24",""],"raspberrypi":["24 24",""],"rails":["24 24",""],"reacteurope":["576 512",""],"ravelry":["512 512",""],"react":["24 24",""],"readme":["576 512",""],"readthedocs":["24 24",""],"rebel":["512 512",""],"realm":["24 24",""],"reason":["24 24",""],"redRiver":["448 512",""],"redhat":["24 24",""],"redbubble":["24 24",""],"redditAlien":["512 512",""],"reddit":["24 24",""],"redux":["24 24",""],"renren":["24 24",""],"researchgate":["448 512",""],"replyd":["448 512",""],"redis":["24 24",""],"riot":["24 24",""],"rev":["448 512",""],"resolving":["496 512",""],"ripple":["24 24",""],"reverbnation":["24 24",""],"rocketchat":["576 512",""],"rockrms":["496 512",""],"roundcube":["24 24",""],"riseup":["24 24",""],"roots":["24 24",""],"rollupJs":["24 24",""],"rss":["24 24",""],"rstudio":["24 24",""],"ruby":["24 24",""],"runkeeper":["24 24",""],"sahibinden":["24 24",""],"rubygems":["24 24",""],"rust":["24 24",""],"saltstack":["24 24",""],"safari":["24 24",""],"salesforce":["24 24",""],"samsungPay":["24 24",""],"samsung":["24 24",""],"sass":["24 24",""],"sap":["24 24",""],"scala":["24 24",""],"saucelabs":["24 24",""],"scaleway":["24 24",""],"seagate":["24 24",""],"scrutinizerci":["24 24",""],"schlix":["448 512",""],"scribd":["24 24",""],"searchengin":["460 512",""],"sega":["24 24",""],"semaphoreci":["24 24",""],"sellsy":["640 512",""],"sensu":["24 24",""],"sellfy":["24 24",""],"servicestack":["496 512",""],"sellcast":["448 512",""],"sentry":["24 24",""],"serverfault":["24 24",""],"shell":["24 24",""],"shazam":["24 24",""],"shopware":["512 512",""],"shirtsinbulk":["448 512",""],"showpad":["24 24",""],"simpleicons":["24 24",""],"shopify":["24 24",""],"sitepoint":["24 24",""],"simplybuilt":["512 512",""],"siemens":["24 24",""],"sistrix":["448 512",""],"sith":["448 512",""],"signal":["24 24",""],"sinaweibo":["24 24",""],"sketch":["512 512",""],"skillshare":["24 24",""],"slackHash":["448 512",""],"skyatlas":["640 512",""],"slashdot":["24 24",""],"slideshare":["512 512",""],"skype":["24 24",""],"slack":["24 24",""],"skyliner":["24 24",""],"slickpic":["24 24",""],"smashingmagazine":["24 24",""],"snapchatGhost":["512 512",""],"slides":["24 24",""],"snapchat":["24 24",""],"snapcraft":["24 24",""],"sogou":["24 24",""],"society6":["24 24",""],"snyk":["24 24",""],"songkick":["24 24",""],"solus":["24 24",""],"socketDotIo":["24 24",""],"sonos":["24 24",""],"sourceforge":["24 24",""],"sourcegraph":["24 24",""],"sourcetree":["448 512",""],"soundcloud":["24 24",""],"spacex":["24 24",""],"sparkpost":["24 24",""],"spacemacs":["24 24",""],"sparkfun":["24 24",""],"spdx":["24 24",""],"speakerDeck":["512 512",""],"spectrum":["24 24",""],"speakap":["448 512",""],"spotlight":["24 24",""],"speakerdeck":["24 24",""],"spotify":["24 24",""],"spring":["24 24",""],"spreaker":["24 24",""],"sprint":["24 24",""],"squarespace":["24 24",""],"stackOverflow":["384 512",""],"stackexchange":["24 24",""],"stackoverflow":["24 24",""],"stackExchange":["448 512",""],"stackbit":["24 24",""],"stackpath":["448 512",""],"statamic":["24 24",""],"stackshare":["24 24",""],"stadia":["24 24",""],"staticman":["24 24",""],"statuspage":["24 24",""],"steam":["24 24",""],"staylinked":["440 512",""],"steamSymbol":["448 512",""],"steem":["24 24",""],"steemit":["24 24",""],"storybook":["24 24",""],"stitcher":["24 24",""],"stickerMule":["576 512",""],"storify":["24 24",""],"strapi":["24 24",""],"strava":["24 24",""],"stripe":["24 24",""],"stubhub":["24 24",""],"studiovinari":["512 512",""],"stumbleupon":["512 512",""],"stumbleuponCircle":["496 512",""],"styleshare":["24 24",""],"sublimetext":["24 24",""],"stylus":["24 24",""],"superpowers":["448 512",""],"subversion":["24 24",""],"superuser":["24 24",""],"supple":["640 512",""],"suse":["640 512",""],"svelte":["24 24",""],"svg":["24 24",""],"swagger":["24 24",""],"swarm":["24 24",""],"symfony":["24 24",""],"swift":["24 24",""],"symantec":["24 24",""],"tableau":["24 24",""],"synology":["24 24",""],"tapas":["24 24",""],"teamspeak":["512 512",""],"tMobile":["24 24",""],"teamviewer":["24 24",""],"tails":["24 24",""],"teespring":["24 24",""],"ted":["24 24",""],"tencentqq":["24 24",""],"tencentWeibo":["384 512",""],"telegram":["448 512",""],"terraform":["24 24",""],"tensorflow":["24 24",""],"tencentweibo":["24 24",""],"theRedYeti":["512 512",""],"tesla":["24 24",""],"themeisle":["512 512",""],"themighty":["24 24",""],"themeco":["448 512",""],"thinkPeaks":["576 512",""],"tidal":["24 24",""],"tiktok":["24 24",""],"tinder":["24 24",""],"themoviedatabase":["24 24",""],"todoist":["24 24",""],"toggl":["24 24",""],"toptal":["24 24",""],"topcoder":["24 24",""],"tor":["24 24",""],"tradeFederation":["496 512",""],"trainerroad":["24 24",""],"toshiba":["24 24",""],"treehouse":["24 24",""],"trakt":["24 24",""],"travisci":["24 24",""],"tripadvisor":["24 24",""],"trello":["24 24",""],"turkishairlines":["24 24",""],"twilio":["24 24",""],"trulia":["24 24",""],"twitch":["24 24",""],"typescript":["24 24",""],"twitter":["24 24",""],"tumblr":["24 24",""],"typo3":["24 24",""],"twoo":["24 24",""],"ublockorigin":["24 24",""],"ubisoft":["24 24",""],"uber":["24 24",""],"ubuntu":["24 24",""],"uikit":["24 24",""],"udemy":["24 24",""],"umbraco":["24 24",""],"udacity":["24 24",""],"uniregistry":["384 512",""],"untappd":["24 24",""],"unsplash":["24 24",""],"unity":["24 24",""],"unrealengine":["24 24",""],"usb":["640 512",""],"upwork":["24 24",""],"usps":["576 512",""],"ups":["384 512",""],"v8":["24 24",""],"vagrant":["24 24",""],"ussunnah":["512 512",""],"verizon":["24 24",""],"vaadin":["448 512",""],"viacoin":["384 512",""],"venmo":["24 24",""],"viadeo":["24 24",""],"vim":["24 24",""],"viber":["24 24",""],"vimeo":["24 24",""],"visa":["24 24",""],"vine":["24 24",""],"visualstudio":["24 24",""],"virb":["24 24",""],"vk":["24 24",""],"visualstudiocode":["24 24",""],"vlc":["24 24",""],"vnv":["640 512",""],"vsco":["24 24",""],"vueJs":["24 24",""],"vuejs":["448 512",""],"weasyl":["24 24",""],"wattpad":["24 24",""],"waze":["512 512",""],"webstorm":["24 24",""],"webpack":["24 24",""],"wechat":["24 24",""],"weebly":["512 512",""],"weibo":["512 512",""],"webcomponentsDotOrg":["24 24",""],"wheniwork":["24 24",""],"weixin":["576 512",""],"whmcs":["448 512",""],"whatsapp":["24 24",""],"wii":["24 24",""],"wikipedia":["24 24",""],"wiiu":["24 24",""],"wire":["24 24",""],"wix":["24 24",""],"wireguard":["24 24",""],"windows":["24 24",""],"wizardsOfTheCoast":["640 512",""],"wolframMathematica":["24 24",""],"wolfPackBattalion":["512 512",""],"wolframLanguage":["24 24",""],"wordpress":["24 24",""],"wolfram":["24 24",""],"wpbeginner":["512 512",""],"wpforms":["448 512",""],"wpexplorer":["512 512",""],"wpengine":["24 24",""],"wpressr":["496 512",""],"xPack":["24 24",""],"xero":["24 24",""],"xcode":["24 24",""],"xiaomi":["24 24",""],"xbox":["24 24",""],"xrp":["24 24",""],"xing":["24 24",""],"xsplit":["24 24",""],"yamahaCorporation":["24 24",""],"yamahaMotorCorporation":["24 24",""],"yammer":["24 24",""],"yahoo":["24 24",""],"ycombinator":["24 24",""],"yandex":["24 24",""],"yandexInternational":["320 512",""],"yelp":["24 24",""],"yoast":["448 512",""],"zalando":["24 24",""],"yarn":["24 24",""],"zapier":["24 24",""],"youtube":["24 24",""],"zeit":["24 24",""],"zendesk":["24 24",""],"zhihu":["640 512",""],"zingat":["24 24",""],"zerply":["24 24",""],"zoom":["24 24",""],"zorin":["24 24",""],"zillow":["24 24",""],"zulip":["24 24",""],"apacheFlink":["24 24",""],"codewars":["24 24",""],"epicgames":["24 24",""],"flask":["24 24",""],"gerrit":["24 24",""],"gnu":["24 24",""],"greensock":["24 24",""],"oldRepublic":["496 512",""],"babel":["24 24",""],"composer":["24 24",""],"elsevier":["24 24",""]} \ No newline at end of file +export const brandSet = {"500px5":["32 32","500px-5"],"aboutMe":["32 32","about-me"],"500px":["32 32","500px"],"abstract":["32 32","abstract"],"acm":["32 32","acm"],"addthis":["32 32","addthis"],"adobeAcrobatReader":["32 32","adobe-acrobat-reader"],"adguard":["32 32","adguard"],"adobeAudition":["32 32","adobe-audition"],"adobeAftereFfects":["32 32","adobe-aftere-ffects"],"adobeCreativeCloud":["32 32","adobe-creative-cloud"],"adobeDreamweaver":["32 32","adobe-dreamweaver"],"adobeIndesign":["32 32","adobe-indesign"],"adobeIllustrator":["32 32","adobe-illustrator"],"adobeLightroomClassic":["32 32","adobe-lightroom-classic"],"adobeLightroom":["32 32","adobe-lightroom"],"adobePremiere":["32 32","adobe-premiere"],"adobePhotoshop":["32 32","adobe-photoshop"],"adobeTypekit":["32 32","adobe-typekit"],"adobeXd":["32 32","adobe-xd"],"adobe":["32 32","adobe"],"airbnb":["32 32","airbnb"],"algolia":["32 32","algolia"],"alipay":["32 32","alipay"],"allocine":["32 32","allocine"],"amazonAws":["32 32","amazon-aws"],"amazonPay":["32 32","amazon-pay"],"amd":["32 32","amd"],"amazon":["32 32","amazon"],"americanExpress":["32 32","american-express"],"anaconda":["32 32","anaconda"],"analogue":["32 32","analogue"],"androidAlt":["32 32","android-alt"],"android":["32 32","android"],"angellist":["32 32","angellist"],"angularUniversal":["32 32","angular-universal"],"ansible":["32 32","ansible"],"angular":["32 32","angular"],"apacheAirflow":["32 32","apache-airflow"],"apacheSpark":["32 32","apache-spark"],"appStoreIos":["32 32","app-store-ios"],"apache":["32 32","apache"],"appleMusic":["32 32","apple-music"],"appStore":["32 32","app-store"],"applePay":["32 32","apple-pay"],"applePodcasts":["32 32","apple-podcasts"],"appveyor":["32 32","appveyor"],"apple":["32 32","apple"],"aral":["32 32","aral"],"archLinux":["32 32","arch-linux"],"archiveOfOurOwn":["32 32","archive-of-our-own"],"arduino":["32 32","arduino"],"artstation":["32 32","artstation"],"arxiv":["32 32","arxiv"],"asana":["32 32","asana"],"atAndT":["32 32","at-and-t"],"atom":["32 32","atom"],"audible":["32 32","audible"],"atlassian":["32 32","atlassian"],"auth0":["32 32","auth0"],"automatic":["32 32","automatic"],"aurelia":["32 32","aurelia"],"autotask":["32 32","autotask"],"aventrix":["32 32","aventrix"],"azureArtifacts":["32 32","azure-artifacts"],"azureDevops":["32 32","azure-devops"],"azurePipelines":["32 32","azure-pipelines"],"baidu":["32 32","baidu"],"bamboo":["32 32","bamboo"],"bandcamp":["32 32","bandcamp"],"bancontact":["32 32","bancontact"],"bathasu":["32 32","bathasu"],"basecamp":["32 32","basecamp"],"bigCartel":["32 32","big-cartel"],"behance":["32 32","behance"],"bing":["32 32","bing"],"bit":["32 32","bit"],"bitbucket":["32 32","bitbucket"],"bitcoin":["32 32","bitcoin"],"bitdefender":["32 32","bitdefender"],"bitly":["32 32","bitly"],"blackberry":["32 32","blackberry"],"bloggerB":["32 32","blogger-b"],"blender":["32 32","blender"],"blogger":["32 32","blogger"],"bluetoothB":["32 32","bluetooth-b"],"bluetooth":["32 32","bluetooth"],"boeing":["32 32","boeing"],"boost":["32 32","boost"],"bootstrap":["32 32","bootstrap"],"bower":["32 32","bower"],"brandAi":["32 32","brand-ai"],"brave":["32 32","brave"],"btc":["32 32","btc"],"buddy":["32 32","buddy"],"buyMeACoffee":["32 32","buy-me-a-coffee"],"buffer":["32 32","buffer"],"buysellads":["32 32","buysellads"],"buzzfeed":["32 32","buzzfeed"],"cakephp":["32 32","cakephp"],"c":["32 32","c"],"campaignMonitor":["32 32","campaign-monitor"],"cashapp":["32 32","cashapp"],"canva":["32 32","canva"],"cassandra":["32 32","cassandra"],"castro":["32 32","castro"],"ccAmazonPay":["32 32","cc-amazon-pay"],"ccApplePay":["32 32","cc-apple-pay"],"ccDinersClub":["32 32","cc-diners-club"],"ccAmex":["32 32","cc-amex"],"ccDiscover":["32 32","cc-discover"],"ccJcb":["32 32","cc-jcb"],"ccPaypal":["32 32","cc-paypal"],"ccMastercard":["32 32","cc-mastercard"],"ccStripe":["32 32","cc-stripe"],"ccVisa":["32 32","cc-visa"],"cevo":["32 32","cevo"],"centos":["32 32","centos"],"chase":["32 32","chase"],"chef":["32 32","chef"],"chromecast":["32 32","chromecast"],"circle":["32 32","circle"],"circleci":["32 32","circleci"],"civicrm":["32 32","civicrm"],"cisco":["32 32","cisco"],"cirrusci":["32 32","cirrusci"],"clockify":["32 32","clockify"],"cloudflare":["32 32","cloudflare"],"clojure":["32 32","clojure"],"cloudbees":["32 32","cloudbees"],"coOp":["32 32","co-op"],"codacy":["32 32","codacy"],"cmake":["32 32","cmake"],"codeClimate":["32 32","code-climate"],"codecademy":["32 32","codecademy"],"codecov":["32 32","codecov"],"codeigniter":["32 32","codeigniter"],"codepen":["32 32","codepen"],"coderwall":["32 32","coderwall"],"codesandbox":["32 32","codesandbox"],"codeship":["32 32","codeship"],"codio":["32 32","codio"],"coffeescript":["32 32","coffeescript"],"commonWorkflowLanguage":["32 32","common-workflow-language"],"condaForge":["32 32","conda-forge"],"conekta":["32 32","conekta"],"confluence":["32 32","confluence"],"coreui":["32 32","coreui"],"coursera":["32 32","coursera"],"coreuiC":["32 32","coreui-c"],"coveralls":["32 32","coveralls"],"cplusplus":["32 32","cplusplus"],"creativeCommonsBy":["32 32","creative-commons-by"],"cpanel":["32 32","cpanel"],"creativeCommonsNcEu":["32 32","creative-commons-nc-eu"],"creativeCommonsNcJp":["32 32","creative-commons-nc-jp"],"creativeCommonsNc":["32 32","creative-commons-nc"],"creativeCommonsNd":["32 32","creative-commons-nd"],"creativeCommonsPdAlt":["32 32","creative-commons-pd-alt"],"creativeCommonsPd":["32 32","creative-commons-pd"],"creativeCommonsRemix":["32 32","creative-commons-remix"],"creativeCommonsSa":["32 32","creative-commons-sa"],"creativeCommonsSamplingPlus":["32 32","creative-commons-sampling-plus"],"creativeCommonsSampling":["32 32","creative-commons-sampling"],"creativeCommonsShare":["32 32","creative-commons-share"],"creativeCommonsZero":["32 32","creative-commons-zero"],"creativeCommons":["32 32","creative-commons"],"crunchyroll":["32 32","crunchyroll"],"crunchbase":["32 32","crunchbase"],"css3Shiled":["32 32","css3-shiled"],"css3":["32 32","css3"],"d3Js":["32 32","d3-js"],"csswizardry":["32 32","csswizardry"],"dailymotion":["32 32","dailymotion"],"dashlane":["32 32","dashlane"],"dazn":["32 32","dazn"],"dblp":["32 32","dblp"],"debian":["32 32","debian"],"deepin":["32 32","deepin"],"deezer":["32 32","deezer"],"delicious":["32 32","delicious"],"dell":["32 32","dell"],"designerNews":["32 32","designer-news"],"dependabot":["32 32","dependabot"],"devTo":["32 32","dev-to"],"deviantart":["32 32","deviantart"],"devrant":["32 32","devrant"],"diaspora":["32 32","diaspora"],"digitalOcean":["32 32","digital-ocean"],"discord":["32 32","discord"],"digg":["32 32","digg"],"discourse":["32 32","discourse"],"discover":["32 32","discover"],"disqus":["32 32","disqus"],"disroot":["32 32","disroot"],"docker":["32 32","docker"],"django":["32 32","django"],"docusign":["32 32","docusign"],"dotNet":["32 32","dot-net"],"dribbble":["32 32","dribbble"],"drone":["32 32","drone"],"draugiemLv":["32 32","draugiem-lv"],"dropbox":["32 32","dropbox"],"drupal":["32 32","drupal"],"duckduckgo":["32 32","duckduckgo"],"dtube":["32 32","dtube"],"ebay":["32 32","ebay"],"dynatrace":["32 32","dynatrace"],"eclipseide":["32 32","eclipseide"],"elasticSearch":["32 32","elastic-search"],"elasticCloud":["32 32","elastic-cloud"],"elementary":["32 32","elementary"],"elasticStack":["32 32","elastic-stack"],"elastic":["32 32","elastic"],"electron":["32 32","electron"],"eleventy":["32 32","eleventy"],"ello":["32 32","ello"],"emlakjet":["32 32","emlakjet"],"empirekred":["32 32","empirekred"],"envato":["32 32","envato"],"epson":["32 32","epson"],"esea":["32 32","esea"],"eslint":["32 32","eslint"],"ethereum":["32 32","ethereum"],"etsy":["32 32","etsy"],"eventStore":["32 32","event-store"],"eventbrite":["32 32","eventbrite"],"evernote":["32 32","evernote"],"everplaces":["32 32","everplaces"],"evry":["32 32","evry"],"expertsExchange":["32 32","experts-exchange"],"exercism":["32 32","exercism"],"eyeem":["32 32","eyeem"],"expo":["32 32","expo"],"facebookF":["32 32","facebook-f"],"fSecure":["32 32","f-secure"],"facebook":["32 32","facebook"],"faceit":["32 32","faceit"],"fandango":["32 32","fandango"],"favro":["32 32","favro"],"feathub":["32 32","feathub"],"fedora":["32 32","fedora"],"fedex":["32 32","fedex"],"feedly":["32 32","feedly"],"fidoAlliance":["32 32","fido-alliance"],"figma":["32 32","figma"],"filezilla":["32 32","filezilla"],"firebase":["32 32","firebase"],"fitbit":["32 32","fitbit"],"flickr":["32 32","flickr"],"flattr":["32 32","flattr"],"fnac":["32 32","fnac"],"flipboard":["32 32","flipboard"],"foursquare":["32 32","foursquare"],"flutter":["32 32","flutter"],"freebsd":["32 32","freebsd"],"framer":["32 32","framer"],"freecodecamp":["32 32","freecodecamp"],"furAffinity":["32 32","fur-affinity"],"furryNetwork":["32 32","furry-network"],"garmin":["32 32","garmin"],"gatsby":["32 32","gatsby"],"gauges":["32 32","gauges"],"genius":["32 32","genius"],"gentoo":["32 32","gentoo"],"geocaching":["32 32","geocaching"],"gg":["32 32","gg"],"ghost":["32 32","ghost"],"gimp":["32 32","gimp"],"git":["32 32","git"],"gitea":["32 32","gitea"],"github":["32 32","github"],"gitkraken":["32 32","gitkraken"],"gitlab":["32 32","gitlab"],"gitpod":["32 32","gitpod"],"gitter":["32 32","gitter"],"glassdoor":["32 32","glassdoor"],"gmail":["32 32","gmail"],"gnuPrivacyGuard":["32 32","gnu-privacy-guard"],"glitch":["32 32","glitch"],"gnuSocial":["32 32","gnu-social"],"go":["32 32","go"],"gogCom":["32 32","gog-com"],"goldenline":["32 32","goldenline"],"godotEngine":["32 32","godot-engine"],"goodreads":["32 32","goodreads"],"googleAds":["32 32","google-ads"],"googleAnalytics":["32 32","google-analytics"],"googleChrome":["32 32","google-chrome"],"googleAllo":["32 32","google-allo"],"googleCloud":["32 32","google-cloud"],"googleKeep":["32 32","google-keep"],"googlePay":["32 32","google-pay"],"googlePlay":["32 32","google-play"],"govUk":["32 32","gov-uk"],"google":["32 32","google"],"gradle":["32 32","gradle"],"googlesCholar":["32 32","googles-cholar"],"googlePodcasts":["32 32","google-podcasts"],"grafana":["32 32","grafana"],"graphql":["32 32","graphql"],"grav":["32 32","grav"],"graphcool":["32 32","graphcool"],"greenkeeper":["32 32","greenkeeper"],"gravatar":["32 32","gravatar"],"groupon":["32 32","groupon"],"groovy":["32 32","groovy"],"grunt":["32 32","grunt"],"gulp":["32 32","gulp"],"gumtree":["32 32","gumtree"],"gumroad":["32 32","gumroad"],"habr":["32 32","habr"],"hackerearth":["32 32","hackerearth"],"hackerone":["32 32","hackerone"],"hackaday":["32 32","hackaday"],"hackerrank":["32 32","hackerrank"],"hackhands":["32 32","hackhands"],"hackster":["32 32","hackster"],"happycow":["32 32","happycow"],"hashnode":["32 32","hashnode"],"haskell":["32 32","haskell"],"hatenaBookmark":["32 32","hatena-bookmark"],"haxe":["32 32","haxe"],"heroku":["32 32","heroku"],"here":["32 32","here"],"helm":["32 32","helm"],"hexo":["32 32","hexo"],"highly":["32 32","highly"],"hipchat":["32 32","hipchat"],"hitachi":["32 32","hitachi"],"hockeyapp":["32 32","hockeyapp"],"homify":["32 32","homify"],"hotjar":["32 32","hotjar"],"hootsuite":["32 32","hootsuite"],"houzz":["32 32","houzz"],"hp":["32 32","hp"],"html5Shield":["32 32","html5-shield"],"html5":["32 32","html5"],"htmlacademy":["32 32","htmlacademy"],"huawei":["32 32","huawei"],"hubspot":["32 32","hubspot"],"hulu":["32 32","hulu"],"humbleBundle":["32 32","humble-bundle"],"iata":["32 32","iata"],"ibm":["32 32","ibm"],"icloud":["32 32","icloud"],"ideal":["32 32","ideal"],"ifixit":["32 32","ifixit"],"icq":["32 32","icq"],"imdb":["32 32","imdb"],"iconjar":["32 32","iconjar"],"inkscape":["32 32","inkscape"],"indeed":["32 32","indeed"],"instacart":["32 32","instacart"],"instagram":["32 32","instagram"],"instapaper":["32 32","instapaper"],"intellijidea":["32 32","intellijidea"],"intel":["32 32","intel"],"intercom":["32 32","intercom"],"ionic":["32 32","ionic"],"invision":["32 32","invision"],"internetExplorer":["32 32","internet-explorer"],"issuu":["32 32","issuu"],"jabber":["32 32","jabber"],"itchIo":["32 32","itch-io"],"javascript":["32 32","javascript"],"java":["32 32","java"],"jekyll":["32 32","jekyll"],"jenkins":["32 32","jenkins"],"jest":["32 32","jest"],"jet":["32 32","jet"],"jetbrains":["32 32","jetbrains"],"jira":["32 32","jira"],"joomla":["32 32","joomla"],"js":["32 32","js"],"jquery":["32 32","jquery"],"jsfiddle":["32 32","jsfiddle"],"jsdelivr":["32 32","jsdelivr"],"justgiving":["32 32","justgiving"],"json":["32 32","json"],"jupyter":["32 32","jupyter"],"kaggle":["32 32","kaggle"],"kaspersky":["32 32","kaspersky"],"kaios":["32 32","kaios"],"kentico":["32 32","kentico"],"keras":["32 32","keras"],"keybase":["32 32","keybase"],"keycdn":["32 32","keycdn"],"khanAcademy":["32 32","khan-academy"],"kibana":["32 32","kibana"],"kickstarter":["32 32","kickstarter"],"kik":["32 32","kik"],"klout":["32 32","klout"],"kirby":["32 32","kirby"],"kodi":["32 32","kodi"],"koFi":["32 32","ko-fi"],"koding":["32 32","koding"],"known":["32 32","known"],"kotlin":["32 32","kotlin"],"krita":["32 32","krita"],"lanyrd":["32 32","lanyrd"],"kubernetes":["32 32","kubernetes"],"laravelHorizon":["32 32","laravel-horizon"],"laravelNova":["32 32","laravel-nova"],"lastFm":["32 32","last-fm"],"laravel":["32 32","laravel"],"latex":["32 32","latex"],"launchpad":["32 32","launchpad"],"leetcode":["32 32","leetcode"],"lenovo":["32 32","lenovo"],"less":["32 32","less"],"letsEncrypt":["32 32","lets-encrypt"],"lgtm":["32 32","lgtm"],"letterboxd":["32 32","letterboxd"],"liberapay":["32 32","liberapay"],"librarything":["32 32","librarything"],"libreoffice":["32 32","libreoffice"],"line":["32 32","line"],"linkedinIn":["32 32","linkedin-in"],"linkedin":["32 32","linkedin"],"linuxFoundation":["32 32","linux-foundation"],"linuxMint":["32 32","linux-mint"],"linux":["32 32","linux"],"livejournal":["32 32","livejournal"],"livestream":["32 32","livestream"],"lua":["32 32","lua"],"lumen":["32 32","lumen"],"logstash":["32 32","logstash"],"lyft":["32 32","lyft"],"macys":["32 32","macys"],"magento":["32 32","magento"],"magisk":["32 32","magisk"],"mailRu":["32 32","mail-ru"],"makerbot":["32 32","makerbot"],"mailchimp":["32 32","mailchimp"],"markdown":["32 32","markdown"],"manjaro":["32 32","manjaro"],"marketo":["32 32","marketo"],"mastercard":["32 32","mastercard"],"mastodon":["32 32","mastodon"],"materialDesign":["32 32","material-design"],"matrix":["32 32","matrix"],"mathworks":["32 32","mathworks"],"matternet":["32 32","matternet"],"maxcdn":["32 32","maxcdn"],"mcafee":["32 32","mcafee"],"mattermost":["32 32","mattermost"],"mediafire":["32 32","mediafire"],"mediumM":["32 32","medium-m"],"mediaTemple":["32 32","media-temple"],"meetup":["32 32","meetup"],"medium":["32 32","medium"],"mega":["32 32","mega"],"messenger":["32 32","messenger"],"mendeley":["32 32","mendeley"],"microBlog":["32 32","micro-blog"],"meteor":["32 32","meteor"],"microgenetics":["32 32","microgenetics"],"microsoftEdge":["32 32","microsoft-edge"],"microsoft":["32 32","microsoft"],"minetest":["32 32","minetest"],"minutemailer":["32 32","minutemailer"],"mix":["32 32","mix"],"mixcloud":["32 32","mixcloud"],"mojang":["32 32","mojang"],"monero":["32 32","monero"],"mixer":["32 32","mixer"],"monkeytie":["32 32","monkeytie"],"mongodb":["32 32","mongodb"],"monogram":["32 32","monogram"],"monzo":["32 32","monzo"],"moo":["32 32","moo"],"mozillaFirefox":["32 32","mozilla-firefox"],"mozilla":["32 32","mozilla"],"musescore":["32 32","musescore"],"mxlinux":["32 32","mxlinux"],"myspace":["32 32","myspace"],"nativescript":["32 32","nativescript"],"nec":["32 32","nec"],"neo4j":["32 32","neo4j"],"mysql":["32 32","mysql"],"netlify":["32 32","netlify"],"nextJs":["32 32","next-js"],"nextcloud":["32 32","nextcloud"],"netflix":["32 32","netflix"],"nextdoor":["32 32","nextdoor"],"nginx":["32 32","nginx"],"nim":["32 32","nim"],"nintendoGamecube":["32 32","nintendo-gamecube"],"nintendoSwitch":["32 32","nintendo-switch"],"nintendo":["32 32","nintendo"],"nintendo3ds":["32 32","nintendo-3ds"],"nodemon":["32 32","nodemon"],"nodeRed":["32 32","node-red"],"nodeJs":["32 32","node-js"],"nokia":["32 32","nokia"],"notion":["32 32","notion"],"npm":["32 32","npm"],"nucleo":["32 32","nucleo"],"nvidia":["32 32","nvidia"],"nuget":["32 32","nuget"],"nuxtJs":["32 32","nuxt-js"],"ocaml":["32 32","ocaml"],"octave":["32 32","octave"],"oculus":["32 32","oculus"],"octopusDeploy":["32 32","octopus-deploy"],"odnoklassniki":["32 32","odnoklassniki"],"openCollective":["32 32","open-collective"],"openAccess":["32 32","open-access"],"openId":["32 32","open-id"],"openSourceInitiative":["32 32","open-source-initiative"],"openstreetmap":["32 32","openstreetmap"],"openvpn":["32 32","openvpn"],"opensuse":["32 32","opensuse"],"opera":["32 32","opera"],"opsgenie":["32 32","opsgenie"],"oracle":["32 32","oracle"],"orcid":["32 32","orcid"],"origin":["32 32","origin"],"osmc":["32 32","osmc"],"osi":["32 32","osi"],"overcast":["32 32","overcast"],"ovh":["32 32","ovh"],"palantir":["32 32","palantir"],"pagekit":["32 32","pagekit"],"overleaf":["32 32","overleaf"],"pandora":["32 32","pandora"],"pantheon":["32 32","pantheon"],"paypal":["32 32","paypal"],"php":["32 32","php"],"patreon":["32 32","patreon"],"periscope":["32 32","periscope"],"pinboard":["32 32","pinboard"],"picartoTv":["32 32","picarto-tv"],"pingdom":["32 32","pingdom"],"pingup":["32 32","pingup"],"pinterestP":["32 32","pinterest-p"],"pinterest":["32 32","pinterest"],"pivotaltracker":["32 32","pivotaltracker"],"plangrid":["32 32","plangrid"],"playerMe":["32 32","player-me"],"playerfm":["32 32","playerfm"],"playstation":["32 32","playstation"],"playstation3":["32 32","playstation3"],"playstation4":["32 32","playstation4"],"plesk":["32 32","plesk"],"plex":["32 32","plex"],"plurk":["32 32","plurk"],"pluralsight":["32 32","pluralsight"],"pocket":["32 32","pocket"],"postman":["32 32","postman"],"postwoman":["32 32","postwoman"],"postgresql":["32 32","postgresql"],"prismic":["32 32","prismic"],"powershell":["32 32","powershell"],"prettier":["32 32","prettier"],"probot":["32 32","probot"],"productHunt":["32 32","product-hunt"],"processwire":["32 32","processwire"],"protonmail":["32 32","protonmail"],"protoIo":["32 32","proto-io"],"proxmox":["32 32","proxmox"],"pypi":["32 32","pypi"],"pytorch":["32 32","pytorch"],"python":["32 32","python"],"qiita":["32 32","qiita"],"qgis":["32 32","qgis"],"qq":["32 32","qq"],"qualcomm":["32 32","qualcomm"],"quantcast":["32 32","quantcast"],"quantopian":["32 32","quantopian"],"quarkus":["32 32","quarkus"],"qwiklabs":["32 32","qwiklabs"],"qzone":["32 32","qzone"],"quora":["32 32","quora"],"r":["32 32","r"],"radiopublic":["32 32","radiopublic"],"rails":["32 32","rails"],"raspberryPi":["32 32","raspberry-pi"],"readTheDocs":["32 32","read-the-docs"],"react":["32 32","react"],"readme":["32 32","readme"],"realm":["32 32","realm"],"redbubble":["32 32","redbubble"],"reason":["32 32","reason"],"redditAlt":["32 32","reddit-alt"],"redhat":["32 32","redhat"],"reddit":["32 32","reddit"],"redis":["32 32","redis"],"riot":["32 32","riot"],"redux":["32 32","redux"],"reverbnation":["32 32","reverbnation"],"renren":["32 32","renren"],"riseup":["32 32","riseup"],"ripple":["32 32","ripple"],"rollupJs":["32 32","rollup-js"],"roots":["32 32","roots"],"rss":["32 32","rss"],"rstudio":["32 32","rstudio"],"roundcube":["32 32","roundcube"],"ruby":["32 32","ruby"],"rubygems":["32 32","rubygems"],"runkeeper":["32 32","runkeeper"],"safari":["32 32","safari"],"rust":["32 32","rust"],"sahibinden":["32 32","sahibinden"],"salesforce":["32 32","salesforce"],"saltstack":["32 32","saltstack"],"samsungPay":["32 32","samsung-pay"],"sap":["32 32","sap"],"samsung":["32 32","samsung"],"sassAlt":["32 32","sass-alt"],"sass":["32 32","sass"],"scala":["32 32","scala"],"saucelabs":["32 32","saucelabs"],"scribd":["32 32","scribd"],"scaleway":["32 32","scaleway"],"scrutinizerci":["32 32","scrutinizerci"],"seagate":["32 32","seagate"],"sega":["32 32","sega"],"sellfy":["32 32","sellfy"],"semaphoreci":["32 32","semaphoreci"],"sentry":["32 32","sentry"],"sensu":["32 32","sensu"],"serverFault":["32 32","server-fault"],"shazam":["32 32","shazam"],"shopify":["32 32","shopify"],"shell":["32 32","shell"],"showpad":["32 32","showpad"],"signal":["32 32","signal"],"sinaWeibo":["32 32","sina-weibo"],"siemens":["32 32","siemens"],"sitepoint":["32 32","sitepoint"],"sketch":["32 32","sketch"],"skillshare":["32 32","skillshare"],"skyliner":["32 32","skyliner"],"skype":["32 32","skype"],"slack":["32 32","slack"],"slashdot":["32 32","slashdot"],"slickpic":["32 32","slickpic"],"slides":["32 32","slides"],"slideshare":["32 32","slideshare"],"smashingmagazine":["32 32","smashingmagazine"],"snapchat":["32 32","snapchat"],"snapcraft":["32 32","snapcraft"],"snyk":["32 32","snyk"],"society6":["32 32","society6"],"socketIo":["32 32","socket-io"],"sogou":["32 32","sogou"],"songkick":["32 32","songkick"],"solus":["32 32","solus"],"sourceforge":["32 32","sourceforge"],"sourcegraph":["32 32","sourcegraph"],"soundcloud":["32 32","soundcloud"],"sonos":["32 32","sonos"],"spacemacs":["32 32","spacemacs"],"spacex":["32 32","spacex"],"sparkfun":["32 32","sparkfun"],"sparkpost":["32 32","sparkpost"],"spdx":["32 32","spdx"],"spectrum":["32 32","spectrum"],"spotify":["32 32","spotify"],"spreaker":["32 32","spreaker"],"speakerDeck":["32 32","speaker-deck"],"spring":["32 32","spring"],"spotlight":["32 32","spotlight"],"sprint":["32 32","sprint"],"stackexchange":["32 32","stackexchange"],"stackoverflow":["32 32","stackoverflow"],"stackbit":["32 32","stackbit"],"squarespace":["32 32","squarespace"],"stadia":["32 32","stadia"],"stackshare":["32 32","stackshare"],"stackpath":["32 32","stackpath"],"statamic":["32 32","statamic"],"staticman":["32 32","staticman"],"statuspage":["32 32","statuspage"],"steam":["32 32","steam"],"steem":["32 32","steem"],"steemit":["32 32","steemit"],"stitcher":["32 32","stitcher"],"storify":["32 32","storify"],"strapi":["32 32","strapi"],"storybook":["32 32","storybook"],"strava":["32 32","strava"],"stripe":["32 32","stripe"],"stubhub":["32 32","stubhub"],"stripeS":["32 32","stripe-s"],"stumbleupon":["32 32","stumbleupon"],"styleshare":["32 32","styleshare"],"stylus":["32 32","stylus"],"sublimeText":["32 32","sublime-text"],"subversion":["32 32","subversion"],"superuser":["32 32","superuser"],"svelte":["32 32","svelte"],"svg":["32 32","svg"],"swagger":["32 32","swagger"],"swarm":["32 32","swarm"],"swift":["32 32","swift"],"symantec":["32 32","symantec"],"symfony":["32 32","symfony"],"synology":["32 32","synology"],"tMobile":["32 32","t-mobile"],"tableau":["32 32","tableau"],"tails":["32 32","tails"],"tapas":["32 32","tapas"],"teamviewer":["32 32","teamviewer"],"ted":["32 32","ted"],"teespring":["32 32","teespring"],"telegramPlane":["32 32","telegram-plane"],"telegram":["32 32","telegram"],"tencentQq":["32 32","tencent-qq"],"tensorflow":["32 32","tensorflow"],"terraform":["32 32","terraform"],"tencentWeibo":["32 32","tencent-weibo"],"tesla":["32 32","tesla"],"theMighty":["32 32","the-mighty"],"tidal":["32 32","tidal"],"theMovieDatabase":["32 32","the-movie-database"],"tinder":["32 32","tinder"],"tiktok":["32 32","tiktok"],"todoist":["32 32","todoist"],"toggl":["32 32","toggl"],"topcoder":["32 32","topcoder"],"tor":["32 32","tor"],"toptal":["32 32","toptal"],"trainerroad":["32 32","trainerroad"],"toshiba":["32 32","toshiba"],"trakt":["32 32","trakt"],"treehouse":["32 32","treehouse"],"trello":["32 32","trello"],"tripadvisor":["32 32","tripadvisor"],"tumblr":["32 32","tumblr"],"trulia":["32 32","trulia"],"twilio":["32 32","twilio"],"twitch":["32 32","twitch"],"twitter":["32 32","twitter"],"twoo":["32 32","twoo"],"typescript":["32 32","typescript"],"uber":["32 32","uber"],"typo3":["32 32","typo3"],"ublockOrigin":["32 32","ublock-origin"],"ubisoft":["32 32","ubisoft"],"ubuntu":["32 32","ubuntu"],"udacity":["32 32","udacity"],"udemy":["32 32","udemy"],"uikit":["32 32","uikit"],"unrealEngine":["32 32","unreal-engine"],"unity":["32 32","unity"],"umbraco":["32 32","umbraco"],"unsplash":["32 32","unsplash"],"untappd":["32 32","untappd"],"upwork":["32 32","upwork"],"usb":["32 32","usb"],"v8":["32 32","v8"],"vagrant":["32 32","vagrant"],"verizon":["32 32","verizon"],"venmo":["32 32","venmo"],"viber":["32 32","viber"],"vim":["32 32","vim"],"viadeo":["32 32","viadeo"],"vimeoV":["32 32","vimeo-v"],"vimeo":["32 32","vimeo"],"vine":["32 32","vine"],"virb":["32 32","virb"],"visa":["32 32","visa"],"visualStudioCode":["32 32","visual-studio-code"],"visualStudio":["32 32","visual-studio"],"vk":["32 32","vk"],"vlc":["32 32","vlc"],"vsco":["32 32","vsco"],"vueJs":["32 32","vue-js"],"weasyl":["32 32","weasyl"],"wattpad":["32 32","wattpad"],"webpack":["32 32","webpack"],"webcomponentsOrg":["32 32","webcomponents-org"],"webstorm":["32 32","webstorm"],"wechat":["32 32","wechat"],"whatsapp":["32 32","whatsapp"],"wii":["32 32","wii"],"whenIWork":["32 32","when-i-work"],"wikipedia":["32 32","wikipedia"],"wiiu":["32 32","wiiu"],"windows":["32 32","windows"],"wire":["32 32","wire"],"wireguard":["32 32","wireguard"],"wix":["32 32","wix"],"wolframLanguage":["32 32","wolfram-language"],"wolframMathematica":["32 32","wolfram-mathematica"],"wolfram":["32 32","wolfram"],"wordpress":["32 32","wordpress"],"wpengine":["32 32","wpengine"],"xPack":["32 32","x-pack"],"xbox":["32 32","xbox"],"xcode":["32 32","xcode"],"xero":["32 32","xero"],"xiaomi":["32 32","xiaomi"],"xing":["32 32","xing"],"xrp":["32 32","xrp"],"xsplit":["32 32","xsplit"],"yCombinator":["32 32","y-combinator"],"yahoo":["32 32","yahoo"],"yammer":["32 32","yammer"],"yandex":["32 32","yandex"],"yarn":["32 32","yarn"],"yelp":["32 32","yelp"],"youtube":["32 32","youtube"],"zalando":["32 32","zalando"],"zapier":["32 32","zapier"],"zeit":["32 32","zeit"],"zendesk":["32 32","zendesk"],"zerply":["32 32","zerply"],"zillow":["32 32","zillow"],"zingat":["32 32","zingat"],"zoom":["32 32","zoom"],"zorin":["32 32","zorin"],"zulip":["32 32","zulip"],"deno":["32 32","deno"],"epicGames":["32 32","epic-games"],"flask":["32 32","flask"],"gerrit":["32 32","gerrit"],"greensock":["32 32","greensock"],"travisci":["32 32","travisci"],"apacheFlink":["32 32","apache-flink"],"babel":["32 32","babel"],"codewars":["32 32","codewars"],"gnu":["32 32","gnu"],"composer":["32 32","composer"],"elsevier":["32 32","elsevier"]} \ No newline at end of file diff --git a/js/brand/brave.d.ts b/js/brand/brave.d.ts new file mode 100644 index 000000000..218af3b3c --- /dev/null +++ b/js/brand/brave.d.ts @@ -0,0 +1 @@ +export declare const brave: string[]; \ No newline at end of file diff --git a/js/brand/brave.js b/js/brand/brave.js index b039b9582..c3701d136 100644 --- a/js/brand/brave.js +++ b/js/brand/brave.js @@ -1 +1 @@ -export const brave = ["24 24",""] \ No newline at end of file +export const brave = ["32 32","brave"] \ No newline at end of file diff --git a/js/brand/btc.d.ts b/js/brand/btc.d.ts new file mode 100644 index 000000000..4b42f3970 --- /dev/null +++ b/js/brand/btc.d.ts @@ -0,0 +1 @@ +export declare const btc: string[]; \ No newline at end of file diff --git a/js/brand/btc.js b/js/brand/btc.js index f05f840e0..db719082f 100644 --- a/js/brand/btc.js +++ b/js/brand/btc.js @@ -1 +1 @@ -export const btc = ["384 512",""] \ No newline at end of file +export const btc = ["32 32","btc"] \ No newline at end of file diff --git a/js/brand/buddy.d.ts b/js/brand/buddy.d.ts new file mode 100644 index 000000000..79dd9b654 --- /dev/null +++ b/js/brand/buddy.d.ts @@ -0,0 +1 @@ +export declare const buddy: string[]; \ No newline at end of file diff --git a/js/brand/buddy.js b/js/brand/buddy.js index 443339a01..c88e2cb50 100644 --- a/js/brand/buddy.js +++ b/js/brand/buddy.js @@ -1 +1 @@ -export const buddy = ["24 24",""] \ No newline at end of file +export const buddy = ["32 32","buddy"] \ No newline at end of file diff --git a/js/brand/buffer.d.ts b/js/brand/buffer.d.ts new file mode 100644 index 000000000..6a601b5e5 --- /dev/null +++ b/js/brand/buffer.d.ts @@ -0,0 +1 @@ +export declare const buffer: string[]; \ No newline at end of file diff --git a/js/brand/buffer.js b/js/brand/buffer.js index 699f3ba83..b2ff0d00d 100644 --- a/js/brand/buffer.js +++ b/js/brand/buffer.js @@ -1 +1 @@ -export const buffer = ["24 24",""] \ No newline at end of file +export const buffer = ["32 32","buffer"] \ No newline at end of file diff --git a/js/brand/buromobelexperte.js b/js/brand/buromobelexperte.js deleted file mode 100644 index a5bf8c551..000000000 --- a/js/brand/buromobelexperte.js +++ /dev/null @@ -1 +0,0 @@ -export const buromobelexperte = ["448 512",""] \ No newline at end of file diff --git a/js/brand/buy-me-a-coffee.d.ts b/js/brand/buy-me-a-coffee.d.ts new file mode 100644 index 000000000..3885989cb --- /dev/null +++ b/js/brand/buy-me-a-coffee.d.ts @@ -0,0 +1 @@ +export declare const buyMeACoffee: string[]; \ No newline at end of file diff --git a/js/brand/buy-me-a-coffee.js b/js/brand/buy-me-a-coffee.js new file mode 100644 index 000000000..ef370b15a --- /dev/null +++ b/js/brand/buy-me-a-coffee.js @@ -0,0 +1 @@ +export const buyMeACoffee = ["32 32","buy-me-a-coffee"] \ No newline at end of file diff --git a/js/brand/buymeacoffee.js b/js/brand/buymeacoffee.js deleted file mode 100644 index 529766d1c..000000000 --- a/js/brand/buymeacoffee.js +++ /dev/null @@ -1 +0,0 @@ -export const buymeacoffee = ["24 24",""] \ No newline at end of file diff --git a/js/brand/buysellads.d.ts b/js/brand/buysellads.d.ts new file mode 100644 index 000000000..907f35927 --- /dev/null +++ b/js/brand/buysellads.d.ts @@ -0,0 +1 @@ +export declare const buysellads: string[]; \ No newline at end of file diff --git a/js/brand/buysellads.js b/js/brand/buysellads.js index 68b2316fd..bd4bf0c29 100644 --- a/js/brand/buysellads.js +++ b/js/brand/buysellads.js @@ -1 +1 @@ -export const buysellads = ["448 512",""] \ No newline at end of file +export const buysellads = ["32 32","buysellads"] \ No newline at end of file diff --git a/js/brand/buzzfeed.d.ts b/js/brand/buzzfeed.d.ts new file mode 100644 index 000000000..a8b12242c --- /dev/null +++ b/js/brand/buzzfeed.d.ts @@ -0,0 +1 @@ +export declare const buzzfeed: string[]; \ No newline at end of file diff --git a/js/brand/buzzfeed.js b/js/brand/buzzfeed.js index b42f4567f..015f2db3c 100644 --- a/js/brand/buzzfeed.js +++ b/js/brand/buzzfeed.js @@ -1 +1 @@ -export const buzzfeed = ["24 24",""] \ No newline at end of file +export const buzzfeed = ["32 32","buzzfeed"] \ No newline at end of file diff --git a/js/brand/c.d.ts b/js/brand/c.d.ts new file mode 100644 index 000000000..c0d0549e6 --- /dev/null +++ b/js/brand/c.d.ts @@ -0,0 +1 @@ +export declare const c: string[]; \ No newline at end of file diff --git a/js/brand/c.js b/js/brand/c.js index f54a157cc..e90c7c741 100644 --- a/js/brand/c.js +++ b/js/brand/c.js @@ -1 +1 @@ -export const c = ["24 24",""] \ No newline at end of file +export const c = ["32 32","c"] \ No newline at end of file diff --git a/js/brand/cakephp.d.ts b/js/brand/cakephp.d.ts new file mode 100644 index 000000000..729083fb7 --- /dev/null +++ b/js/brand/cakephp.d.ts @@ -0,0 +1 @@ +export declare const cakephp: string[]; \ No newline at end of file diff --git a/js/brand/cakephp.js b/js/brand/cakephp.js index 8dc257524..752ff3caa 100644 --- a/js/brand/cakephp.js +++ b/js/brand/cakephp.js @@ -1 +1 @@ -export const cakephp = ["24 24",""] \ No newline at end of file +export const cakephp = ["32 32","cakephp"] \ No newline at end of file diff --git a/js/brand/campaign-monitor.d.ts b/js/brand/campaign-monitor.d.ts new file mode 100644 index 000000000..909068362 --- /dev/null +++ b/js/brand/campaign-monitor.d.ts @@ -0,0 +1 @@ +export declare const campaignMonitor: string[]; \ No newline at end of file diff --git a/js/brand/campaign-monitor.js b/js/brand/campaign-monitor.js index f7d3ffb1f..cdb389890 100644 --- a/js/brand/campaign-monitor.js +++ b/js/brand/campaign-monitor.js @@ -1 +1 @@ -export const campaignMonitor = ["24 24",""] \ No newline at end of file +export const campaignMonitor = ["32 32","campaign-monitor"] \ No newline at end of file diff --git a/js/brand/canadian-maple-leaf.js b/js/brand/canadian-maple-leaf.js deleted file mode 100644 index 6375677ec..000000000 --- a/js/brand/canadian-maple-leaf.js +++ /dev/null @@ -1 +0,0 @@ -export const canadianMapleLeaf = ["512 512",""] \ No newline at end of file diff --git a/js/brand/canva.d.ts b/js/brand/canva.d.ts new file mode 100644 index 000000000..db3c55a0d --- /dev/null +++ b/js/brand/canva.d.ts @@ -0,0 +1 @@ +export declare const canva: string[]; \ No newline at end of file diff --git a/js/brand/canva.js b/js/brand/canva.js index c52e7b7db..baf8ed19a 100644 --- a/js/brand/canva.js +++ b/js/brand/canva.js @@ -1 +1 @@ -export const canva = ["24 24",""] \ No newline at end of file +export const canva = ["32 32","canva"] \ No newline at end of file diff --git a/js/brand/cashapp.d.ts b/js/brand/cashapp.d.ts new file mode 100644 index 000000000..34785343f --- /dev/null +++ b/js/brand/cashapp.d.ts @@ -0,0 +1 @@ +export declare const cashapp: string[]; \ No newline at end of file diff --git a/js/brand/cashapp.js b/js/brand/cashapp.js index 40b8c8d21..422609db5 100644 --- a/js/brand/cashapp.js +++ b/js/brand/cashapp.js @@ -1 +1 @@ -export const cashapp = ["24 24",""] \ No newline at end of file +export const cashapp = ["32 32","cashapp"] \ No newline at end of file diff --git a/js/brand/cassandra.d.ts b/js/brand/cassandra.d.ts new file mode 100644 index 000000000..21b47d8ae --- /dev/null +++ b/js/brand/cassandra.d.ts @@ -0,0 +1 @@ +export declare const cassandra: string[]; \ No newline at end of file diff --git a/js/brand/cassandra.js b/js/brand/cassandra.js index e662bf5da..fd2e1766a 100644 --- a/js/brand/cassandra.js +++ b/js/brand/cassandra.js @@ -1 +1 @@ -export const cassandra = ["24 24",""] \ No newline at end of file +export const cassandra = ["32 32","cassandra"] \ No newline at end of file diff --git a/js/brand/castorama.js b/js/brand/castorama.js deleted file mode 100644 index e15ed4059..000000000 --- a/js/brand/castorama.js +++ /dev/null @@ -1 +0,0 @@ -export const castorama = ["24 24",""] \ No newline at end of file diff --git a/js/brand/castro.d.ts b/js/brand/castro.d.ts new file mode 100644 index 000000000..64edade29 --- /dev/null +++ b/js/brand/castro.d.ts @@ -0,0 +1 @@ +export declare const castro: string[]; \ No newline at end of file diff --git a/js/brand/castro.js b/js/brand/castro.js index 6a06900e8..00fae7cf8 100644 --- a/js/brand/castro.js +++ b/js/brand/castro.js @@ -1 +1 @@ -export const castro = ["24 24",""] \ No newline at end of file +export const castro = ["32 32","castro"] \ No newline at end of file diff --git a/js/brand/cc-amazon-pay.d.ts b/js/brand/cc-amazon-pay.d.ts new file mode 100644 index 000000000..9238345ce --- /dev/null +++ b/js/brand/cc-amazon-pay.d.ts @@ -0,0 +1 @@ +export declare const ccAmazonPay: string[]; \ No newline at end of file diff --git a/js/brand/cc-amazon-pay.js b/js/brand/cc-amazon-pay.js index 115965748..fb29e0094 100644 --- a/js/brand/cc-amazon-pay.js +++ b/js/brand/cc-amazon-pay.js @@ -1 +1 @@ -export const ccAmazonPay = ["576 512",""] \ No newline at end of file +export const ccAmazonPay = ["32 32","cc-amazon-pay"] \ No newline at end of file diff --git a/js/brand/cc-amex.d.ts b/js/brand/cc-amex.d.ts new file mode 100644 index 000000000..cf1118b27 --- /dev/null +++ b/js/brand/cc-amex.d.ts @@ -0,0 +1 @@ +export declare const ccAmex: string[]; \ No newline at end of file diff --git a/js/brand/cc-amex.js b/js/brand/cc-amex.js index 228cc01d3..d0c76b646 100644 --- a/js/brand/cc-amex.js +++ b/js/brand/cc-amex.js @@ -1 +1 @@ -export const ccAmex = ["576 512",""] \ No newline at end of file +export const ccAmex = ["32 32","cc-amex"] \ No newline at end of file diff --git a/js/brand/cc-apple-pay.d.ts b/js/brand/cc-apple-pay.d.ts new file mode 100644 index 000000000..15f87d782 --- /dev/null +++ b/js/brand/cc-apple-pay.d.ts @@ -0,0 +1 @@ +export declare const ccApplePay: string[]; \ No newline at end of file diff --git a/js/brand/cc-apple-pay.js b/js/brand/cc-apple-pay.js index 9925937a1..ca4b0c728 100644 --- a/js/brand/cc-apple-pay.js +++ b/js/brand/cc-apple-pay.js @@ -1 +1 @@ -export const ccApplePay = ["576 512",""] \ No newline at end of file +export const ccApplePay = ["32 32","cc-apple-pay"] \ No newline at end of file diff --git a/js/brand/cc-diners-club.d.ts b/js/brand/cc-diners-club.d.ts new file mode 100644 index 000000000..39c33d5e3 --- /dev/null +++ b/js/brand/cc-diners-club.d.ts @@ -0,0 +1 @@ +export declare const ccDinersClub: string[]; \ No newline at end of file diff --git a/js/brand/cc-diners-club.js b/js/brand/cc-diners-club.js index d9ca96e76..159573d44 100644 --- a/js/brand/cc-diners-club.js +++ b/js/brand/cc-diners-club.js @@ -1 +1 @@ -export const ccDinersClub = ["576 512",""] \ No newline at end of file +export const ccDinersClub = ["32 32","cc-diners-club"] \ No newline at end of file diff --git a/js/brand/cc-discover.d.ts b/js/brand/cc-discover.d.ts new file mode 100644 index 000000000..6416f3385 --- /dev/null +++ b/js/brand/cc-discover.d.ts @@ -0,0 +1 @@ +export declare const ccDiscover: string[]; \ No newline at end of file diff --git a/js/brand/cc-discover.js b/js/brand/cc-discover.js index 4c510b77b..9f785c3ce 100644 --- a/js/brand/cc-discover.js +++ b/js/brand/cc-discover.js @@ -1 +1 @@ -export const ccDiscover = ["576 512",""] \ No newline at end of file +export const ccDiscover = ["32 32","cc-discover"] \ No newline at end of file diff --git a/js/brand/cc-jcb.d.ts b/js/brand/cc-jcb.d.ts new file mode 100644 index 000000000..d52879b5f --- /dev/null +++ b/js/brand/cc-jcb.d.ts @@ -0,0 +1 @@ +export declare const ccJcb: string[]; \ No newline at end of file diff --git a/js/brand/cc-jcb.js b/js/brand/cc-jcb.js index a9d430704..880836580 100644 --- a/js/brand/cc-jcb.js +++ b/js/brand/cc-jcb.js @@ -1 +1 @@ -export const ccJcb = ["576 512",""] \ No newline at end of file +export const ccJcb = ["32 32","cc-jcb"] \ No newline at end of file diff --git a/js/brand/cc-mastercard.d.ts b/js/brand/cc-mastercard.d.ts new file mode 100644 index 000000000..fd758a52d --- /dev/null +++ b/js/brand/cc-mastercard.d.ts @@ -0,0 +1 @@ +export declare const ccMastercard: string[]; \ No newline at end of file diff --git a/js/brand/cc-mastercard.js b/js/brand/cc-mastercard.js index c26a6c771..a0813d33c 100644 --- a/js/brand/cc-mastercard.js +++ b/js/brand/cc-mastercard.js @@ -1 +1 @@ -export const ccMastercard = ["576 512",""] \ No newline at end of file +export const ccMastercard = ["32 32","cc-mastercard"] \ No newline at end of file diff --git a/js/brand/cc-paypal.d.ts b/js/brand/cc-paypal.d.ts new file mode 100644 index 000000000..ce5773158 --- /dev/null +++ b/js/brand/cc-paypal.d.ts @@ -0,0 +1 @@ +export declare const ccPaypal: string[]; \ No newline at end of file diff --git a/js/brand/cc-paypal.js b/js/brand/cc-paypal.js index b38f0bb88..a5f64eeff 100644 --- a/js/brand/cc-paypal.js +++ b/js/brand/cc-paypal.js @@ -1 +1 @@ -export const ccPaypal = ["576 512",""] \ No newline at end of file +export const ccPaypal = ["32 32","cc-paypal"] \ No newline at end of file diff --git a/js/brand/cc-stripe.d.ts b/js/brand/cc-stripe.d.ts new file mode 100644 index 000000000..7f4f4886f --- /dev/null +++ b/js/brand/cc-stripe.d.ts @@ -0,0 +1 @@ +export declare const ccStripe: string[]; \ No newline at end of file diff --git a/js/brand/cc-stripe.js b/js/brand/cc-stripe.js index b386627af..10ac1f82d 100644 --- a/js/brand/cc-stripe.js +++ b/js/brand/cc-stripe.js @@ -1 +1 @@ -export const ccStripe = ["576 512",""] \ No newline at end of file +export const ccStripe = ["32 32","cc-stripe"] \ No newline at end of file diff --git a/js/brand/cc-visa.d.ts b/js/brand/cc-visa.d.ts new file mode 100644 index 000000000..7d02892e4 --- /dev/null +++ b/js/brand/cc-visa.d.ts @@ -0,0 +1 @@ +export declare const ccVisa: string[]; \ No newline at end of file diff --git a/js/brand/cc-visa.js b/js/brand/cc-visa.js index e19dbd93e..4c8c1158a 100644 --- a/js/brand/cc-visa.js +++ b/js/brand/cc-visa.js @@ -1 +1 @@ -export const ccVisa = ["576 512",""] \ No newline at end of file +export const ccVisa = ["32 32","cc-visa"] \ No newline at end of file diff --git a/js/brand/centercode.js b/js/brand/centercode.js deleted file mode 100644 index bf9296818..000000000 --- a/js/brand/centercode.js +++ /dev/null @@ -1 +0,0 @@ -export const centercode = ["512 512",""] \ No newline at end of file diff --git a/js/brand/centos.d.ts b/js/brand/centos.d.ts new file mode 100644 index 000000000..3e6f4f3cf --- /dev/null +++ b/js/brand/centos.d.ts @@ -0,0 +1 @@ +export declare const centos: string[]; \ No newline at end of file diff --git a/js/brand/centos.js b/js/brand/centos.js index 48758ee93..d108af12b 100644 --- a/js/brand/centos.js +++ b/js/brand/centos.js @@ -1 +1 @@ -export const centos = ["24 24",""] \ No newline at end of file +export const centos = ["32 32","centos"] \ No newline at end of file diff --git a/js/brand/cevo.d.ts b/js/brand/cevo.d.ts new file mode 100644 index 000000000..91e84b83d --- /dev/null +++ b/js/brand/cevo.d.ts @@ -0,0 +1 @@ +export declare const cevo: string[]; \ No newline at end of file diff --git a/js/brand/cevo.js b/js/brand/cevo.js index 2ec80edd2..8d12109cb 100644 --- a/js/brand/cevo.js +++ b/js/brand/cevo.js @@ -1 +1 @@ -export const cevo = ["24 24",""] \ No newline at end of file +export const cevo = ["32 32","cevo"] \ No newline at end of file diff --git a/js/brand/chase.d.ts b/js/brand/chase.d.ts new file mode 100644 index 000000000..f940f4358 --- /dev/null +++ b/js/brand/chase.d.ts @@ -0,0 +1 @@ +export declare const chase: string[]; \ No newline at end of file diff --git a/js/brand/chase.js b/js/brand/chase.js index 89af8e2d1..4adb45374 100644 --- a/js/brand/chase.js +++ b/js/brand/chase.js @@ -1 +1 @@ -export const chase = ["24 24",""] \ No newline at end of file +export const chase = ["32 32","chase"] \ No newline at end of file diff --git a/js/brand/chef.d.ts b/js/brand/chef.d.ts new file mode 100644 index 000000000..66c3d7459 --- /dev/null +++ b/js/brand/chef.d.ts @@ -0,0 +1 @@ +export declare const chef: string[]; \ No newline at end of file diff --git a/js/brand/chef.js b/js/brand/chef.js index 9db450254..4682478d2 100644 --- a/js/brand/chef.js +++ b/js/brand/chef.js @@ -1 +1 @@ -export const chef = ["24 24",""] \ No newline at end of file +export const chef = ["32 32","chef"] \ No newline at end of file diff --git a/js/brand/chrome.js b/js/brand/chrome.js deleted file mode 100644 index 1e8a5c399..000000000 --- a/js/brand/chrome.js +++ /dev/null @@ -1 +0,0 @@ -export const chrome = ["496 512",""] \ No newline at end of file diff --git a/js/brand/chromecast.d.ts b/js/brand/chromecast.d.ts new file mode 100644 index 000000000..f2dbffbaf --- /dev/null +++ b/js/brand/chromecast.d.ts @@ -0,0 +1 @@ +export declare const chromecast: string[]; \ No newline at end of file diff --git a/js/brand/chromecast.js b/js/brand/chromecast.js index a81a5d189..78ac508e0 100644 --- a/js/brand/chromecast.js +++ b/js/brand/chromecast.js @@ -1 +1 @@ -export const chromecast = ["512 512",""] \ No newline at end of file +export const chromecast = ["32 32","chromecast"] \ No newline at end of file diff --git a/js/brand/circle-ci.js b/js/brand/circle-ci.js deleted file mode 100644 index e6981cdbf..000000000 --- a/js/brand/circle-ci.js +++ /dev/null @@ -1 +0,0 @@ -export const circleCi = ["24 24",""] \ No newline at end of file diff --git a/js/brand/circle.d.ts b/js/brand/circle.d.ts new file mode 100644 index 000000000..7ac44f4dd --- /dev/null +++ b/js/brand/circle.d.ts @@ -0,0 +1 @@ +export declare const circle: string[]; \ No newline at end of file diff --git a/js/brand/circle.js b/js/brand/circle.js index 4761aa1db..e26a35763 100644 --- a/js/brand/circle.js +++ b/js/brand/circle.js @@ -1 +1 @@ -export const circle = ["24 24",""] \ No newline at end of file +export const circle = ["32 32","circle"] \ No newline at end of file diff --git a/js/brand/circleci.d.ts b/js/brand/circleci.d.ts new file mode 100644 index 000000000..1386411ad --- /dev/null +++ b/js/brand/circleci.d.ts @@ -0,0 +1 @@ +export declare const circleci: string[]; \ No newline at end of file diff --git a/js/brand/circleci.js b/js/brand/circleci.js new file mode 100644 index 000000000..ee94d8752 --- /dev/null +++ b/js/brand/circleci.js @@ -0,0 +1 @@ +export const circleci = ["32 32","circleci"] \ No newline at end of file diff --git a/js/brand/cirrusci.d.ts b/js/brand/cirrusci.d.ts new file mode 100644 index 000000000..e8cb28f81 --- /dev/null +++ b/js/brand/cirrusci.d.ts @@ -0,0 +1 @@ +export declare const cirrusci: string[]; \ No newline at end of file diff --git a/js/brand/cirrusci.js b/js/brand/cirrusci.js index 5b0f15fd1..342d03337 100644 --- a/js/brand/cirrusci.js +++ b/js/brand/cirrusci.js @@ -1 +1 @@ -export const cirrusci = ["24 24",""] \ No newline at end of file +export const cirrusci = ["32 32","cirrusci"] \ No newline at end of file diff --git a/js/brand/cisco.d.ts b/js/brand/cisco.d.ts new file mode 100644 index 000000000..08a4260d6 --- /dev/null +++ b/js/brand/cisco.d.ts @@ -0,0 +1 @@ +export declare const cisco: string[]; \ No newline at end of file diff --git a/js/brand/cisco.js b/js/brand/cisco.js index bcbb5549e..5d61ffdae 100644 --- a/js/brand/cisco.js +++ b/js/brand/cisco.js @@ -1 +1 @@ -export const cisco = ["24 24",""] \ No newline at end of file +export const cisco = ["32 32","cisco"] \ No newline at end of file diff --git a/js/brand/civicrm.d.ts b/js/brand/civicrm.d.ts new file mode 100644 index 000000000..4f65b1cc2 --- /dev/null +++ b/js/brand/civicrm.d.ts @@ -0,0 +1 @@ +export declare const civicrm: string[]; \ No newline at end of file diff --git a/js/brand/civicrm.js b/js/brand/civicrm.js index 399efcda0..f78353e1e 100644 --- a/js/brand/civicrm.js +++ b/js/brand/civicrm.js @@ -1 +1 @@ -export const civicrm = ["24 24",""] \ No newline at end of file +export const civicrm = ["32 32","civicrm"] \ No newline at end of file diff --git a/js/brand/clockify.d.ts b/js/brand/clockify.d.ts new file mode 100644 index 000000000..30aa3c51d --- /dev/null +++ b/js/brand/clockify.d.ts @@ -0,0 +1 @@ +export declare const clockify: string[]; \ No newline at end of file diff --git a/js/brand/clockify.js b/js/brand/clockify.js index cfc441a0f..9afc8b5d7 100644 --- a/js/brand/clockify.js +++ b/js/brand/clockify.js @@ -1 +1 @@ -export const clockify = ["24 24",""] \ No newline at end of file +export const clockify = ["32 32","clockify"] \ No newline at end of file diff --git a/js/brand/clojure.d.ts b/js/brand/clojure.d.ts new file mode 100644 index 000000000..8a552270d --- /dev/null +++ b/js/brand/clojure.d.ts @@ -0,0 +1 @@ +export declare const clojure: string[]; \ No newline at end of file diff --git a/js/brand/clojure.js b/js/brand/clojure.js index 9c9de3eac..5b569316b 100644 --- a/js/brand/clojure.js +++ b/js/brand/clojure.js @@ -1 +1 @@ -export const clojure = ["24 24",""] \ No newline at end of file +export const clojure = ["32 32","clojure"] \ No newline at end of file diff --git a/js/brand/cloudbees.d.ts b/js/brand/cloudbees.d.ts new file mode 100644 index 000000000..3107459c6 --- /dev/null +++ b/js/brand/cloudbees.d.ts @@ -0,0 +1 @@ +export declare const cloudbees: string[]; \ No newline at end of file diff --git a/js/brand/cloudbees.js b/js/brand/cloudbees.js index 174e2c5fe..c955e8cd1 100644 --- a/js/brand/cloudbees.js +++ b/js/brand/cloudbees.js @@ -1 +1 @@ -export const cloudbees = ["24 24",""] \ No newline at end of file +export const cloudbees = ["32 32","cloudbees"] \ No newline at end of file diff --git a/js/brand/cloudflare.d.ts b/js/brand/cloudflare.d.ts new file mode 100644 index 000000000..96b5fb0d4 --- /dev/null +++ b/js/brand/cloudflare.d.ts @@ -0,0 +1 @@ +export declare const cloudflare: string[]; \ No newline at end of file diff --git a/js/brand/cloudflare.js b/js/brand/cloudflare.js index e0871d125..498c698d6 100644 --- a/js/brand/cloudflare.js +++ b/js/brand/cloudflare.js @@ -1 +1 @@ -export const cloudflare = ["24 24",""] \ No newline at end of file +export const cloudflare = ["32 32","cloudflare"] \ No newline at end of file diff --git a/js/brand/cloudscale.js b/js/brand/cloudscale.js deleted file mode 100644 index 785eb96a3..000000000 --- a/js/brand/cloudscale.js +++ /dev/null @@ -1 +0,0 @@ -export const cloudscale = ["448 512",""] \ No newline at end of file diff --git a/js/brand/cloudsmith.js b/js/brand/cloudsmith.js deleted file mode 100644 index f86780db7..000000000 --- a/js/brand/cloudsmith.js +++ /dev/null @@ -1 +0,0 @@ -export const cloudsmith = ["332 512",""] \ No newline at end of file diff --git a/js/brand/cloudversify.js b/js/brand/cloudversify.js deleted file mode 100644 index f790bb7a2..000000000 --- a/js/brand/cloudversify.js +++ /dev/null @@ -1 +0,0 @@ -export const cloudversify = ["616 512",""] \ No newline at end of file diff --git a/js/brand/cmake.d.ts b/js/brand/cmake.d.ts new file mode 100644 index 000000000..ffb33e025 --- /dev/null +++ b/js/brand/cmake.d.ts @@ -0,0 +1 @@ +export declare const cmake: string[]; \ No newline at end of file diff --git a/js/brand/cmake.js b/js/brand/cmake.js index 5cc59e486..44c94185b 100644 --- a/js/brand/cmake.js +++ b/js/brand/cmake.js @@ -1 +1 @@ -export const cmake = ["24 24",""] \ No newline at end of file +export const cmake = ["32 32","cmake"] \ No newline at end of file diff --git a/js/brand/co-op.d.ts b/js/brand/co-op.d.ts new file mode 100644 index 000000000..9b48ba1ee --- /dev/null +++ b/js/brand/co-op.d.ts @@ -0,0 +1 @@ +export declare const coOp: string[]; \ No newline at end of file diff --git a/js/brand/co-op.js b/js/brand/co-op.js index f845b01d8..cf4899bdc 100644 --- a/js/brand/co-op.js +++ b/js/brand/co-op.js @@ -1 +1 @@ -export const coOp = ["24 24",""] \ No newline at end of file +export const coOp = ["32 32","co-op"] \ No newline at end of file diff --git a/js/brand/codacy.d.ts b/js/brand/codacy.d.ts new file mode 100644 index 000000000..4090549b3 --- /dev/null +++ b/js/brand/codacy.d.ts @@ -0,0 +1 @@ +export declare const codacy: string[]; \ No newline at end of file diff --git a/js/brand/codacy.js b/js/brand/codacy.js index 08d2cb1bb..653733df7 100644 --- a/js/brand/codacy.js +++ b/js/brand/codacy.js @@ -1 +1 @@ -export const codacy = ["24 24",""] \ No newline at end of file +export const codacy = ["32 32","codacy"] \ No newline at end of file diff --git a/js/brand/code-climate.d.ts b/js/brand/code-climate.d.ts new file mode 100644 index 000000000..b5f0fb8fb --- /dev/null +++ b/js/brand/code-climate.d.ts @@ -0,0 +1 @@ +export declare const codeClimate: string[]; \ No newline at end of file diff --git a/js/brand/code-climate.js b/js/brand/code-climate.js new file mode 100644 index 000000000..f28eccedf --- /dev/null +++ b/js/brand/code-climate.js @@ -0,0 +1 @@ +export const codeClimate = ["32 32","code-climate"] \ No newline at end of file diff --git a/js/brand/codecademy.d.ts b/js/brand/codecademy.d.ts new file mode 100644 index 000000000..ec5167415 --- /dev/null +++ b/js/brand/codecademy.d.ts @@ -0,0 +1 @@ +export declare const codecademy: string[]; \ No newline at end of file diff --git a/js/brand/codecademy.js b/js/brand/codecademy.js index ebecb746b..742cf36ff 100644 --- a/js/brand/codecademy.js +++ b/js/brand/codecademy.js @@ -1 +1 @@ -export const codecademy = ["24 24",""] \ No newline at end of file +export const codecademy = ["32 32","codecademy"] \ No newline at end of file diff --git a/js/brand/codeclimate.js b/js/brand/codeclimate.js deleted file mode 100644 index 482433a18..000000000 --- a/js/brand/codeclimate.js +++ /dev/null @@ -1 +0,0 @@ -export const codeclimate = ["24 24",""] \ No newline at end of file diff --git a/js/brand/codecov.d.ts b/js/brand/codecov.d.ts new file mode 100644 index 000000000..99dc834f6 --- /dev/null +++ b/js/brand/codecov.d.ts @@ -0,0 +1 @@ +export declare const codecov: string[]; \ No newline at end of file diff --git a/js/brand/codecov.js b/js/brand/codecov.js index c5eaffcbb..2e20d0709 100644 --- a/js/brand/codecov.js +++ b/js/brand/codecov.js @@ -1 +1 @@ -export const codecov = ["24 24",""] \ No newline at end of file +export const codecov = ["32 32","codecov"] \ No newline at end of file diff --git a/js/brand/codefactor.js b/js/brand/codefactor.js deleted file mode 100644 index 5f2db7dd7..000000000 --- a/js/brand/codefactor.js +++ /dev/null @@ -1 +0,0 @@ -export const codefactor = ["24 24",""] \ No newline at end of file diff --git a/js/brand/codeforces.js b/js/brand/codeforces.js deleted file mode 100644 index 2c92b1395..000000000 --- a/js/brand/codeforces.js +++ /dev/null @@ -1 +0,0 @@ -export const codeforces = ["24 24",""] \ No newline at end of file diff --git a/js/brand/codeigniter.d.ts b/js/brand/codeigniter.d.ts new file mode 100644 index 000000000..665b5e709 --- /dev/null +++ b/js/brand/codeigniter.d.ts @@ -0,0 +1 @@ +export declare const codeigniter: string[]; \ No newline at end of file diff --git a/js/brand/codeigniter.js b/js/brand/codeigniter.js index 2573dc93c..a3aaaad51 100644 --- a/js/brand/codeigniter.js +++ b/js/brand/codeigniter.js @@ -1 +1 @@ -export const codeigniter = ["24 24",""] \ No newline at end of file +export const codeigniter = ["32 32","codeigniter"] \ No newline at end of file diff --git a/js/brand/codepen.d.ts b/js/brand/codepen.d.ts new file mode 100644 index 000000000..5fb204b9a --- /dev/null +++ b/js/brand/codepen.d.ts @@ -0,0 +1 @@ +export declare const codepen: string[]; \ No newline at end of file diff --git a/js/brand/codepen.js b/js/brand/codepen.js index 3664b5ad1..a2656ec42 100644 --- a/js/brand/codepen.js +++ b/js/brand/codepen.js @@ -1 +1 @@ -export const codepen = ["24 24",""] \ No newline at end of file +export const codepen = ["32 32","codepen"] \ No newline at end of file diff --git a/js/brand/coderwall.d.ts b/js/brand/coderwall.d.ts new file mode 100644 index 000000000..db339ea4c --- /dev/null +++ b/js/brand/coderwall.d.ts @@ -0,0 +1 @@ +export declare const coderwall: string[]; \ No newline at end of file diff --git a/js/brand/coderwall.js b/js/brand/coderwall.js index 267d100d5..a4f4aaba0 100644 --- a/js/brand/coderwall.js +++ b/js/brand/coderwall.js @@ -1 +1 @@ -export const coderwall = ["24 24",""] \ No newline at end of file +export const coderwall = ["32 32","coderwall"] \ No newline at end of file diff --git a/js/brand/codesandbox.d.ts b/js/brand/codesandbox.d.ts new file mode 100644 index 000000000..e60b8e963 --- /dev/null +++ b/js/brand/codesandbox.d.ts @@ -0,0 +1 @@ +export declare const codesandbox: string[]; \ No newline at end of file diff --git a/js/brand/codesandbox.js b/js/brand/codesandbox.js index e81202037..0c95ed976 100644 --- a/js/brand/codesandbox.js +++ b/js/brand/codesandbox.js @@ -1 +1 @@ -export const codesandbox = ["24 24",""] \ No newline at end of file +export const codesandbox = ["32 32","codesandbox"] \ No newline at end of file diff --git a/js/brand/codeship.d.ts b/js/brand/codeship.d.ts new file mode 100644 index 000000000..c6442d7b5 --- /dev/null +++ b/js/brand/codeship.d.ts @@ -0,0 +1 @@ +export declare const codeship: string[]; \ No newline at end of file diff --git a/js/brand/codeship.js b/js/brand/codeship.js index d85e26bd1..1639f9e92 100644 --- a/js/brand/codeship.js +++ b/js/brand/codeship.js @@ -1 +1 @@ -export const codeship = ["24 24",""] \ No newline at end of file +export const codeship = ["32 32","codeship"] \ No newline at end of file diff --git a/js/brand/codewars.d.ts b/js/brand/codewars.d.ts new file mode 100644 index 000000000..ae6edbe7b --- /dev/null +++ b/js/brand/codewars.d.ts @@ -0,0 +1 @@ +export declare const codewars: string[]; \ No newline at end of file diff --git a/js/brand/codewars.js b/js/brand/codewars.js index c26b0334e..06a930cbc 100644 --- a/js/brand/codewars.js +++ b/js/brand/codewars.js @@ -1 +1 @@ -export const codewars = ["24 24",""] \ No newline at end of file +export const codewars = ["32 32","codewars"] \ No newline at end of file diff --git a/js/brand/codiepie.js b/js/brand/codiepie.js deleted file mode 100644 index cc3e18f7c..000000000 --- a/js/brand/codiepie.js +++ /dev/null @@ -1 +0,0 @@ -export const codiepie = ["472 512",""] \ No newline at end of file diff --git a/js/brand/codio.d.ts b/js/brand/codio.d.ts new file mode 100644 index 000000000..8dc7d4038 --- /dev/null +++ b/js/brand/codio.d.ts @@ -0,0 +1 @@ +export declare const codio: string[]; \ No newline at end of file diff --git a/js/brand/codio.js b/js/brand/codio.js index a33abbd70..777503170 100644 --- a/js/brand/codio.js +++ b/js/brand/codio.js @@ -1 +1 @@ -export const codio = ["24 24",""] \ No newline at end of file +export const codio = ["32 32","codio"] \ No newline at end of file diff --git a/js/brand/coffeescript.d.ts b/js/brand/coffeescript.d.ts new file mode 100644 index 000000000..a6be22dd7 --- /dev/null +++ b/js/brand/coffeescript.d.ts @@ -0,0 +1 @@ +export declare const coffeescript: string[]; \ No newline at end of file diff --git a/js/brand/coffeescript.js b/js/brand/coffeescript.js index f09c2059a..0f62a3dd3 100644 --- a/js/brand/coffeescript.js +++ b/js/brand/coffeescript.js @@ -1 +1 @@ -export const coffeescript = ["24 24",""] \ No newline at end of file +export const coffeescript = ["32 32","coffeescript"] \ No newline at end of file diff --git a/js/brand/common-workflow-language.d.ts b/js/brand/common-workflow-language.d.ts new file mode 100644 index 000000000..e5ef15520 --- /dev/null +++ b/js/brand/common-workflow-language.d.ts @@ -0,0 +1 @@ +export declare const commonWorkflowLanguage: string[]; \ No newline at end of file diff --git a/js/brand/common-workflow-language.js b/js/brand/common-workflow-language.js new file mode 100644 index 000000000..9da87951a --- /dev/null +++ b/js/brand/common-workflow-language.js @@ -0,0 +1 @@ +export const commonWorkflowLanguage = ["32 32","common-workflow-language"] \ No newline at end of file diff --git a/js/brand/commonworkflowlanguage.js b/js/brand/commonworkflowlanguage.js deleted file mode 100644 index 5b5382bd8..000000000 --- a/js/brand/commonworkflowlanguage.js +++ /dev/null @@ -1 +0,0 @@ -export const commonworkflowlanguage = ["24 24",""] \ No newline at end of file diff --git a/js/brand/composer.d.ts b/js/brand/composer.d.ts new file mode 100644 index 000000000..7962f81b6 --- /dev/null +++ b/js/brand/composer.d.ts @@ -0,0 +1 @@ +export declare const composer: string[]; \ No newline at end of file diff --git a/js/brand/composer.js b/js/brand/composer.js index 1adb6a8b1..ad0a4e4ba 100644 --- a/js/brand/composer.js +++ b/js/brand/composer.js @@ -1 +1 @@ -export const composer = ["24 24",""] \ No newline at end of file +export const composer = ["32 32","composer"] \ No newline at end of file diff --git a/js/brand/compropago.js b/js/brand/compropago.js deleted file mode 100644 index 8cee90e9a..000000000 --- a/js/brand/compropago.js +++ /dev/null @@ -1 +0,0 @@ -export const compropago = ["24 24",""] \ No newline at end of file diff --git a/js/brand/conda-forge.d.ts b/js/brand/conda-forge.d.ts new file mode 100644 index 000000000..9287ba140 --- /dev/null +++ b/js/brand/conda-forge.d.ts @@ -0,0 +1 @@ +export declare const condaForge: string[]; \ No newline at end of file diff --git a/js/brand/conda-forge.js b/js/brand/conda-forge.js index 416068ba8..e61105d2d 100644 --- a/js/brand/conda-forge.js +++ b/js/brand/conda-forge.js @@ -1 +1 @@ -export const condaForge = ["24 24",""] \ No newline at end of file +export const condaForge = ["32 32","conda-forge"] \ No newline at end of file diff --git a/js/brand/conekta.d.ts b/js/brand/conekta.d.ts new file mode 100644 index 000000000..3d068105d --- /dev/null +++ b/js/brand/conekta.d.ts @@ -0,0 +1 @@ +export declare const conekta: string[]; \ No newline at end of file diff --git a/js/brand/conekta.js b/js/brand/conekta.js index 9c1a001ec..2631910a4 100644 --- a/js/brand/conekta.js +++ b/js/brand/conekta.js @@ -1 +1 @@ -export const conekta = ["24 24",""] \ No newline at end of file +export const conekta = ["32 32","conekta"] \ No newline at end of file diff --git a/js/brand/confluence.d.ts b/js/brand/confluence.d.ts new file mode 100644 index 000000000..5cf5deb3f --- /dev/null +++ b/js/brand/confluence.d.ts @@ -0,0 +1 @@ +export declare const confluence: string[]; \ No newline at end of file diff --git a/js/brand/confluence.js b/js/brand/confluence.js index c24578c4a..5b9ba6d03 100644 --- a/js/brand/confluence.js +++ b/js/brand/confluence.js @@ -1 +1 @@ -export const confluence = ["24 24",""] \ No newline at end of file +export const confluence = ["32 32","confluence"] \ No newline at end of file diff --git a/js/brand/connectdevelop.js b/js/brand/connectdevelop.js deleted file mode 100644 index 50ce690cc..000000000 --- a/js/brand/connectdevelop.js +++ /dev/null @@ -1 +0,0 @@ -export const connectdevelop = ["576 512",""] \ No newline at end of file diff --git a/js/brand/contao.js b/js/brand/contao.js deleted file mode 100644 index 1de66477b..000000000 --- a/js/brand/contao.js +++ /dev/null @@ -1 +0,0 @@ -export const contao = ["512 512",""] \ No newline at end of file diff --git a/js/brand/coreui-c.d.ts b/js/brand/coreui-c.d.ts new file mode 100644 index 000000000..c7198ae1f --- /dev/null +++ b/js/brand/coreui-c.d.ts @@ -0,0 +1 @@ +export declare const coreuiC: string[]; \ No newline at end of file diff --git a/js/brand/coreui-c.js b/js/brand/coreui-c.js new file mode 100644 index 000000000..c5eacabfa --- /dev/null +++ b/js/brand/coreui-c.js @@ -0,0 +1 @@ +export const coreuiC = ["32 32","coreui-c"] \ No newline at end of file diff --git a/js/brand/coreui.d.ts b/js/brand/coreui.d.ts new file mode 100644 index 000000000..f1730b8e5 --- /dev/null +++ b/js/brand/coreui.d.ts @@ -0,0 +1 @@ +export declare const coreui: string[]; \ No newline at end of file diff --git a/js/brand/coreui.js b/js/brand/coreui.js new file mode 100644 index 000000000..9b546eb87 --- /dev/null +++ b/js/brand/coreui.js @@ -0,0 +1 @@ +export const coreui = ["32 32","coreui"] \ No newline at end of file diff --git a/js/brand/coursera.d.ts b/js/brand/coursera.d.ts new file mode 100644 index 000000000..3645c76dc --- /dev/null +++ b/js/brand/coursera.d.ts @@ -0,0 +1 @@ +export declare const coursera: string[]; \ No newline at end of file diff --git a/js/brand/coursera.js b/js/brand/coursera.js index 84629a43b..ced54ca6e 100644 --- a/js/brand/coursera.js +++ b/js/brand/coursera.js @@ -1 +1 @@ -export const coursera = ["24 24",""] \ No newline at end of file +export const coursera = ["32 32","coursera"] \ No newline at end of file diff --git a/js/brand/coveralls.d.ts b/js/brand/coveralls.d.ts new file mode 100644 index 000000000..b5c5d80f3 --- /dev/null +++ b/js/brand/coveralls.d.ts @@ -0,0 +1 @@ +export declare const coveralls: string[]; \ No newline at end of file diff --git a/js/brand/coveralls.js b/js/brand/coveralls.js index 77b1d7953..699767c99 100644 --- a/js/brand/coveralls.js +++ b/js/brand/coveralls.js @@ -1 +1 @@ -export const coveralls = ["24 24",""] \ No newline at end of file +export const coveralls = ["32 32","coveralls"] \ No newline at end of file diff --git a/js/brand/cpanel.d.ts b/js/brand/cpanel.d.ts new file mode 100644 index 000000000..23b1563f3 --- /dev/null +++ b/js/brand/cpanel.d.ts @@ -0,0 +1 @@ +export declare const cpanel: string[]; \ No newline at end of file diff --git a/js/brand/cpanel.js b/js/brand/cpanel.js index 7d4cf9ccc..3fd803736 100644 --- a/js/brand/cpanel.js +++ b/js/brand/cpanel.js @@ -1 +1 @@ -export const cpanel = ["640 512",""] \ No newline at end of file +export const cpanel = ["32 32","cpanel"] \ No newline at end of file diff --git a/js/brand/cplusplus.d.ts b/js/brand/cplusplus.d.ts new file mode 100644 index 000000000..4380b3d01 --- /dev/null +++ b/js/brand/cplusplus.d.ts @@ -0,0 +1 @@ +export declare const cplusplus: string[]; \ No newline at end of file diff --git a/js/brand/cplusplus.js b/js/brand/cplusplus.js index c8f113d9e..0571d8649 100644 --- a/js/brand/cplusplus.js +++ b/js/brand/cplusplus.js @@ -1 +1 @@ -export const cplusplus = ["24 24",""] \ No newline at end of file +export const cplusplus = ["32 32","cplusplus"] \ No newline at end of file diff --git a/js/brand/creative-commons-by.d.ts b/js/brand/creative-commons-by.d.ts new file mode 100644 index 000000000..d610063af --- /dev/null +++ b/js/brand/creative-commons-by.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsBy: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-by.js b/js/brand/creative-commons-by.js index 82757e79d..0f5c55290 100644 --- a/js/brand/creative-commons-by.js +++ b/js/brand/creative-commons-by.js @@ -1 +1 @@ -export const creativeCommonsBy = ["496 512",""] \ No newline at end of file +export const creativeCommonsBy = ["32 32","creative-commons-by"] \ No newline at end of file diff --git a/js/brand/creative-commons-nc-eu.d.ts b/js/brand/creative-commons-nc-eu.d.ts new file mode 100644 index 000000000..b8b6209a6 --- /dev/null +++ b/js/brand/creative-commons-nc-eu.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsNcEu: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-nc-eu.js b/js/brand/creative-commons-nc-eu.js index 9b810cfd5..79d2f1ab5 100644 --- a/js/brand/creative-commons-nc-eu.js +++ b/js/brand/creative-commons-nc-eu.js @@ -1 +1 @@ -export const creativeCommonsNcEu = ["496 512",""] \ No newline at end of file +export const creativeCommonsNcEu = ["32 32","creative-commons-nc-eu"] \ No newline at end of file diff --git a/js/brand/creative-commons-nc-jp.d.ts b/js/brand/creative-commons-nc-jp.d.ts new file mode 100644 index 000000000..3df00216d --- /dev/null +++ b/js/brand/creative-commons-nc-jp.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsNcJp: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-nc-jp.js b/js/brand/creative-commons-nc-jp.js index 4181ddf85..43c672a18 100644 --- a/js/brand/creative-commons-nc-jp.js +++ b/js/brand/creative-commons-nc-jp.js @@ -1 +1 @@ -export const creativeCommonsNcJp = ["496 512",""] \ No newline at end of file +export const creativeCommonsNcJp = ["32 32","creative-commons-nc-jp"] \ No newline at end of file diff --git a/js/brand/creative-commons-nc.d.ts b/js/brand/creative-commons-nc.d.ts new file mode 100644 index 000000000..9b0ea8ccc --- /dev/null +++ b/js/brand/creative-commons-nc.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsNc: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-nc.js b/js/brand/creative-commons-nc.js index c7caa87c0..85002f9c1 100644 --- a/js/brand/creative-commons-nc.js +++ b/js/brand/creative-commons-nc.js @@ -1 +1 @@ -export const creativeCommonsNc = ["496 512",""] \ No newline at end of file +export const creativeCommonsNc = ["32 32","creative-commons-nc"] \ No newline at end of file diff --git a/js/brand/creative-commons-nd.d.ts b/js/brand/creative-commons-nd.d.ts new file mode 100644 index 000000000..5d8730bb6 --- /dev/null +++ b/js/brand/creative-commons-nd.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsNd: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-nd.js b/js/brand/creative-commons-nd.js index ecdca44cd..72b9216dd 100644 --- a/js/brand/creative-commons-nd.js +++ b/js/brand/creative-commons-nd.js @@ -1 +1 @@ -export const creativeCommonsNd = ["496 512",""] \ No newline at end of file +export const creativeCommonsNd = ["32 32","creative-commons-nd"] \ No newline at end of file diff --git a/js/brand/creative-commons-pd-alt.d.ts b/js/brand/creative-commons-pd-alt.d.ts new file mode 100644 index 000000000..609963c93 --- /dev/null +++ b/js/brand/creative-commons-pd-alt.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsPdAlt: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-pd-alt.js b/js/brand/creative-commons-pd-alt.js index fd84d8c4d..28737996b 100644 --- a/js/brand/creative-commons-pd-alt.js +++ b/js/brand/creative-commons-pd-alt.js @@ -1 +1 @@ -export const creativeCommonsPdAlt = ["496 512",""] \ No newline at end of file +export const creativeCommonsPdAlt = ["32 32","creative-commons-pd-alt"] \ No newline at end of file diff --git a/js/brand/creative-commons-pd.d.ts b/js/brand/creative-commons-pd.d.ts new file mode 100644 index 000000000..d417feec0 --- /dev/null +++ b/js/brand/creative-commons-pd.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsPd: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-pd.js b/js/brand/creative-commons-pd.js index 1c8bc8972..7fef7b004 100644 --- a/js/brand/creative-commons-pd.js +++ b/js/brand/creative-commons-pd.js @@ -1 +1 @@ -export const creativeCommonsPd = ["496 512",""] \ No newline at end of file +export const creativeCommonsPd = ["32 32","creative-commons-pd"] \ No newline at end of file diff --git a/js/brand/creative-commons-remix.d.ts b/js/brand/creative-commons-remix.d.ts new file mode 100644 index 000000000..207b9ceae --- /dev/null +++ b/js/brand/creative-commons-remix.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsRemix: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-remix.js b/js/brand/creative-commons-remix.js index 31f4422fe..0d60cfb6c 100644 --- a/js/brand/creative-commons-remix.js +++ b/js/brand/creative-commons-remix.js @@ -1 +1 @@ -export const creativeCommonsRemix = ["496 512",""] \ No newline at end of file +export const creativeCommonsRemix = ["32 32","creative-commons-remix"] \ No newline at end of file diff --git a/js/brand/creative-commons-sa.d.ts b/js/brand/creative-commons-sa.d.ts new file mode 100644 index 000000000..4e01fef1a --- /dev/null +++ b/js/brand/creative-commons-sa.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsSa: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-sa.js b/js/brand/creative-commons-sa.js index c514e0f0a..c861e9134 100644 --- a/js/brand/creative-commons-sa.js +++ b/js/brand/creative-commons-sa.js @@ -1 +1 @@ -export const creativeCommonsSa = ["496 512",""] \ No newline at end of file +export const creativeCommonsSa = ["32 32","creative-commons-sa"] \ No newline at end of file diff --git a/js/brand/creative-commons-sampling-plus.d.ts b/js/brand/creative-commons-sampling-plus.d.ts new file mode 100644 index 000000000..bd11814f4 --- /dev/null +++ b/js/brand/creative-commons-sampling-plus.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsSamplingPlus: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-sampling-plus.js b/js/brand/creative-commons-sampling-plus.js index 5499ce5be..876d63af1 100644 --- a/js/brand/creative-commons-sampling-plus.js +++ b/js/brand/creative-commons-sampling-plus.js @@ -1 +1 @@ -export const creativeCommonsSamplingPlus = ["496 512",""] \ No newline at end of file +export const creativeCommonsSamplingPlus = ["32 32","creative-commons-sampling-plus"] \ No newline at end of file diff --git a/js/brand/creative-commons-sampling.d.ts b/js/brand/creative-commons-sampling.d.ts new file mode 100644 index 000000000..2c33ba9c3 --- /dev/null +++ b/js/brand/creative-commons-sampling.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsSampling: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-sampling.js b/js/brand/creative-commons-sampling.js index 854db89ad..8204ec99f 100644 --- a/js/brand/creative-commons-sampling.js +++ b/js/brand/creative-commons-sampling.js @@ -1 +1 @@ -export const creativeCommonsSampling = ["496 512",""] \ No newline at end of file +export const creativeCommonsSampling = ["32 32","creative-commons-sampling"] \ No newline at end of file diff --git a/js/brand/creative-commons-share.d.ts b/js/brand/creative-commons-share.d.ts new file mode 100644 index 000000000..a55678a1a --- /dev/null +++ b/js/brand/creative-commons-share.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsShare: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-share.js b/js/brand/creative-commons-share.js index 1316e83ac..fa937abe1 100644 --- a/js/brand/creative-commons-share.js +++ b/js/brand/creative-commons-share.js @@ -1 +1 @@ -export const creativeCommonsShare = ["496 512",""] \ No newline at end of file +export const creativeCommonsShare = ["32 32","creative-commons-share"] \ No newline at end of file diff --git a/js/brand/creative-commons-zero.d.ts b/js/brand/creative-commons-zero.d.ts new file mode 100644 index 000000000..8b8c3f6a9 --- /dev/null +++ b/js/brand/creative-commons-zero.d.ts @@ -0,0 +1 @@ +export declare const creativeCommonsZero: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons-zero.js b/js/brand/creative-commons-zero.js index 444c00a09..54a33f0db 100644 --- a/js/brand/creative-commons-zero.js +++ b/js/brand/creative-commons-zero.js @@ -1 +1 @@ -export const creativeCommonsZero = ["496 512",""] \ No newline at end of file +export const creativeCommonsZero = ["32 32","creative-commons-zero"] \ No newline at end of file diff --git a/js/brand/creative-commons.d.ts b/js/brand/creative-commons.d.ts new file mode 100644 index 000000000..a8e546970 --- /dev/null +++ b/js/brand/creative-commons.d.ts @@ -0,0 +1 @@ +export declare const creativeCommons: string[]; \ No newline at end of file diff --git a/js/brand/creative-commons.js b/js/brand/creative-commons.js index ab41eba96..f54ae8fed 100644 --- a/js/brand/creative-commons.js +++ b/js/brand/creative-commons.js @@ -1 +1 @@ -export const creativeCommons = ["24 24",""] \ No newline at end of file +export const creativeCommons = ["32 32","creative-commons"] \ No newline at end of file diff --git a/js/brand/critical-role.js b/js/brand/critical-role.js deleted file mode 100644 index 64ec1444f..000000000 --- a/js/brand/critical-role.js +++ /dev/null @@ -1 +0,0 @@ -export const criticalRole = ["448 512",""] \ No newline at end of file diff --git a/js/brand/crunchbase.d.ts b/js/brand/crunchbase.d.ts new file mode 100644 index 000000000..a8a4dd07a --- /dev/null +++ b/js/brand/crunchbase.d.ts @@ -0,0 +1 @@ +export declare const crunchbase: string[]; \ No newline at end of file diff --git a/js/brand/crunchbase.js b/js/brand/crunchbase.js index cc1920ad1..3b44999db 100644 --- a/js/brand/crunchbase.js +++ b/js/brand/crunchbase.js @@ -1 +1 @@ -export const crunchbase = ["24 24",""] \ No newline at end of file +export const crunchbase = ["32 32","crunchbase"] \ No newline at end of file diff --git a/js/brand/crunchyroll.d.ts b/js/brand/crunchyroll.d.ts new file mode 100644 index 000000000..6d4e255df --- /dev/null +++ b/js/brand/crunchyroll.d.ts @@ -0,0 +1 @@ +export declare const crunchyroll: string[]; \ No newline at end of file diff --git a/js/brand/crunchyroll.js b/js/brand/crunchyroll.js index d10e8079b..34fe5e79e 100644 --- a/js/brand/crunchyroll.js +++ b/js/brand/crunchyroll.js @@ -1 +1 @@ -export const crunchyroll = ["24 24",""] \ No newline at end of file +export const crunchyroll = ["32 32","crunchyroll"] \ No newline at end of file diff --git a/js/brand/css3-alt.js b/js/brand/css3-alt.js deleted file mode 100644 index 3b4077964..000000000 --- a/js/brand/css3-alt.js +++ /dev/null @@ -1 +0,0 @@ -export const css3Alt = ["384 512",""] \ No newline at end of file diff --git a/js/brand/css3-shiled.d.ts b/js/brand/css3-shiled.d.ts new file mode 100644 index 000000000..bb1f33a9a --- /dev/null +++ b/js/brand/css3-shiled.d.ts @@ -0,0 +1 @@ +export declare const css3Shiled: string[]; \ No newline at end of file diff --git a/js/brand/css3-shiled.js b/js/brand/css3-shiled.js new file mode 100644 index 000000000..a10bc963d --- /dev/null +++ b/js/brand/css3-shiled.js @@ -0,0 +1 @@ +export const css3Shiled = ["32 32","css3-shiled"] \ No newline at end of file diff --git a/js/brand/css3.d.ts b/js/brand/css3.d.ts new file mode 100644 index 000000000..be7e04aa2 --- /dev/null +++ b/js/brand/css3.d.ts @@ -0,0 +1 @@ +export declare const css3: string[]; \ No newline at end of file diff --git a/js/brand/css3.js b/js/brand/css3.js index b0e577670..895427d8d 100644 --- a/js/brand/css3.js +++ b/js/brand/css3.js @@ -1 +1 @@ -export const css3 = ["24 24",""] \ No newline at end of file +export const css3 = ["32 32","css3"] \ No newline at end of file diff --git a/js/brand/csswizardry.d.ts b/js/brand/csswizardry.d.ts new file mode 100644 index 000000000..18c79ee3c --- /dev/null +++ b/js/brand/csswizardry.d.ts @@ -0,0 +1 @@ +export declare const csswizardry: string[]; \ No newline at end of file diff --git a/js/brand/csswizardry.js b/js/brand/csswizardry.js index f6d202665..5e3ee1567 100644 --- a/js/brand/csswizardry.js +++ b/js/brand/csswizardry.js @@ -1 +1 @@ -export const csswizardry = ["24 24",""] \ No newline at end of file +export const csswizardry = ["32 32","csswizardry"] \ No newline at end of file diff --git a/js/brand/cuttlefish.js b/js/brand/cuttlefish.js deleted file mode 100644 index 8f565a520..000000000 --- a/js/brand/cuttlefish.js +++ /dev/null @@ -1 +0,0 @@ -export const cuttlefish = ["440 512",""] \ No newline at end of file diff --git a/js/brand/d-and-d-beyond.js b/js/brand/d-and-d-beyond.js deleted file mode 100644 index caaea751c..000000000 --- a/js/brand/d-and-d-beyond.js +++ /dev/null @@ -1 +0,0 @@ -export const dAndDBeyond = ["640 512",""] \ No newline at end of file diff --git a/js/brand/d-and-d.js b/js/brand/d-and-d.js deleted file mode 100644 index d05015ae3..000000000 --- a/js/brand/d-and-d.js +++ /dev/null @@ -1 +0,0 @@ -export const dAndD = ["576 512",""] \ No newline at end of file diff --git a/js/brand/d3-dot-js.js b/js/brand/d3-dot-js.js deleted file mode 100644 index f78c509df..000000000 --- a/js/brand/d3-dot-js.js +++ /dev/null @@ -1 +0,0 @@ -export const d3DotJs = ["24 24",""] \ No newline at end of file diff --git a/js/brand/d3-js.d.ts b/js/brand/d3-js.d.ts new file mode 100644 index 000000000..74facc2d1 --- /dev/null +++ b/js/brand/d3-js.d.ts @@ -0,0 +1 @@ +export declare const d3Js: string[]; \ No newline at end of file diff --git a/js/brand/d3-js.js b/js/brand/d3-js.js new file mode 100644 index 000000000..082bb6b12 --- /dev/null +++ b/js/brand/d3-js.js @@ -0,0 +1 @@ +export const d3Js = ["32 32","d3-js"] \ No newline at end of file diff --git a/js/brand/dailymotion.d.ts b/js/brand/dailymotion.d.ts new file mode 100644 index 000000000..3fe3abb28 --- /dev/null +++ b/js/brand/dailymotion.d.ts @@ -0,0 +1 @@ +export declare const dailymotion: string[]; \ No newline at end of file diff --git a/js/brand/dailymotion.js b/js/brand/dailymotion.js index 46aa0283c..baa046eb1 100644 --- a/js/brand/dailymotion.js +++ b/js/brand/dailymotion.js @@ -1 +1 @@ -export const dailymotion = ["24 24",""] \ No newline at end of file +export const dailymotion = ["32 32","dailymotion"] \ No newline at end of file diff --git a/js/brand/dashcube.js b/js/brand/dashcube.js deleted file mode 100644 index c1d4df8fe..000000000 --- a/js/brand/dashcube.js +++ /dev/null @@ -1 +0,0 @@ -export const dashcube = ["448 512",""] \ No newline at end of file diff --git a/js/brand/dashlane.d.ts b/js/brand/dashlane.d.ts new file mode 100644 index 000000000..6e556b6b3 --- /dev/null +++ b/js/brand/dashlane.d.ts @@ -0,0 +1 @@ +export declare const dashlane: string[]; \ No newline at end of file diff --git a/js/brand/dashlane.js b/js/brand/dashlane.js index 45ec71ddb..ae5e0b463 100644 --- a/js/brand/dashlane.js +++ b/js/brand/dashlane.js @@ -1 +1 @@ -export const dashlane = ["24 24",""] \ No newline at end of file +export const dashlane = ["32 32","dashlane"] \ No newline at end of file diff --git a/js/brand/dassaultsystemes.js b/js/brand/dassaultsystemes.js deleted file mode 100644 index 7df77d271..000000000 --- a/js/brand/dassaultsystemes.js +++ /dev/null @@ -1 +0,0 @@ -export const dassaultsystemes = ["24 24",""] \ No newline at end of file diff --git a/js/brand/dazn.d.ts b/js/brand/dazn.d.ts new file mode 100644 index 000000000..d22c40a44 --- /dev/null +++ b/js/brand/dazn.d.ts @@ -0,0 +1 @@ +export declare const dazn: string[]; \ No newline at end of file diff --git a/js/brand/dazn.js b/js/brand/dazn.js index 860de1764..0c360524f 100644 --- a/js/brand/dazn.js +++ b/js/brand/dazn.js @@ -1 +1 @@ -export const dazn = ["24 24",""] \ No newline at end of file +export const dazn = ["32 32","dazn"] \ No newline at end of file diff --git a/js/brand/dblp.d.ts b/js/brand/dblp.d.ts new file mode 100644 index 000000000..263901244 --- /dev/null +++ b/js/brand/dblp.d.ts @@ -0,0 +1 @@ +export declare const dblp: string[]; \ No newline at end of file diff --git a/js/brand/dblp.js b/js/brand/dblp.js index 9c5379715..be238e7b5 100644 --- a/js/brand/dblp.js +++ b/js/brand/dblp.js @@ -1 +1 @@ -export const dblp = ["24 24",""] \ No newline at end of file +export const dblp = ["32 32","dblp"] \ No newline at end of file diff --git a/js/brand/debian.d.ts b/js/brand/debian.d.ts new file mode 100644 index 000000000..dc0cdedd0 --- /dev/null +++ b/js/brand/debian.d.ts @@ -0,0 +1 @@ +export declare const debian: string[]; \ No newline at end of file diff --git a/js/brand/debian.js b/js/brand/debian.js index 0706ba25d..1f79b3243 100644 --- a/js/brand/debian.js +++ b/js/brand/debian.js @@ -1 +1 @@ -export const debian = ["24 24",""] \ No newline at end of file +export const debian = ["32 32","debian"] \ No newline at end of file diff --git a/js/brand/deepin.d.ts b/js/brand/deepin.d.ts new file mode 100644 index 000000000..9eb4b46cb --- /dev/null +++ b/js/brand/deepin.d.ts @@ -0,0 +1 @@ +export declare const deepin: string[]; \ No newline at end of file diff --git a/js/brand/deepin.js b/js/brand/deepin.js index f9108db71..c6fdc4560 100644 --- a/js/brand/deepin.js +++ b/js/brand/deepin.js @@ -1 +1 @@ -export const deepin = ["24 24",""] \ No newline at end of file +export const deepin = ["32 32","deepin"] \ No newline at end of file diff --git a/js/brand/deezer.d.ts b/js/brand/deezer.d.ts new file mode 100644 index 000000000..9b1103a6b --- /dev/null +++ b/js/brand/deezer.d.ts @@ -0,0 +1 @@ +export declare const deezer: string[]; \ No newline at end of file diff --git a/js/brand/deezer.js b/js/brand/deezer.js index 079b56101..da008ffd5 100644 --- a/js/brand/deezer.js +++ b/js/brand/deezer.js @@ -1 +1 @@ -export const deezer = ["24 24",""] \ No newline at end of file +export const deezer = ["32 32","deezer"] \ No newline at end of file diff --git a/js/brand/delicious.d.ts b/js/brand/delicious.d.ts new file mode 100644 index 000000000..c88e3a103 --- /dev/null +++ b/js/brand/delicious.d.ts @@ -0,0 +1 @@ +export declare const delicious: string[]; \ No newline at end of file diff --git a/js/brand/delicious.js b/js/brand/delicious.js index dd47612a8..79a652b27 100644 --- a/js/brand/delicious.js +++ b/js/brand/delicious.js @@ -1 +1 @@ -export const delicious = ["24 24",""] \ No newline at end of file +export const delicious = ["32 32","delicious"] \ No newline at end of file diff --git a/js/brand/dell.d.ts b/js/brand/dell.d.ts new file mode 100644 index 000000000..21fc6dda4 --- /dev/null +++ b/js/brand/dell.d.ts @@ -0,0 +1 @@ +export declare const dell: string[]; \ No newline at end of file diff --git a/js/brand/dell.js b/js/brand/dell.js index 493f75b2e..9930da985 100644 --- a/js/brand/dell.js +++ b/js/brand/dell.js @@ -1 +1 @@ -export const dell = ["24 24",""] \ No newline at end of file +export const dell = ["32 32","dell"] \ No newline at end of file diff --git a/js/brand/deno.d.ts b/js/brand/deno.d.ts new file mode 100644 index 000000000..941dff829 --- /dev/null +++ b/js/brand/deno.d.ts @@ -0,0 +1 @@ +export declare const deno: string[]; \ No newline at end of file diff --git a/js/brand/deno.js b/js/brand/deno.js index a00aa40ac..5f38cb71b 100644 --- a/js/brand/deno.js +++ b/js/brand/deno.js @@ -1 +1 @@ -export const deno = ["24 24",""] \ No newline at end of file +export const deno = ["32 32","deno"] \ No newline at end of file diff --git a/js/brand/dependabot.d.ts b/js/brand/dependabot.d.ts new file mode 100644 index 000000000..c70801043 --- /dev/null +++ b/js/brand/dependabot.d.ts @@ -0,0 +1 @@ +export declare const dependabot: string[]; \ No newline at end of file diff --git a/js/brand/dependabot.js b/js/brand/dependabot.js index 75d8804b2..a89e249af 100644 --- a/js/brand/dependabot.js +++ b/js/brand/dependabot.js @@ -1 +1 @@ -export const dependabot = ["24 24",""] \ No newline at end of file +export const dependabot = ["32 32","dependabot"] \ No newline at end of file diff --git a/js/brand/deploydog.js b/js/brand/deploydog.js deleted file mode 100644 index 8d78598d7..000000000 --- a/js/brand/deploydog.js +++ /dev/null @@ -1 +0,0 @@ -export const deploydog = ["512 512",""] \ No newline at end of file diff --git a/js/brand/designer-news.d.ts b/js/brand/designer-news.d.ts new file mode 100644 index 000000000..ab36e68bd --- /dev/null +++ b/js/brand/designer-news.d.ts @@ -0,0 +1 @@ +export declare const designerNews: string[]; \ No newline at end of file diff --git a/js/brand/designer-news.js b/js/brand/designer-news.js new file mode 100644 index 000000000..9839eda06 --- /dev/null +++ b/js/brand/designer-news.js @@ -0,0 +1 @@ +export const designerNews = ["32 32","designer-news"] \ No newline at end of file diff --git a/js/brand/designernews.js b/js/brand/designernews.js deleted file mode 100644 index a6c2fb943..000000000 --- a/js/brand/designernews.js +++ /dev/null @@ -1 +0,0 @@ -export const designernews = ["24 24",""] \ No newline at end of file diff --git a/js/brand/deskpro.js b/js/brand/deskpro.js deleted file mode 100644 index 994dc50e5..000000000 --- a/js/brand/deskpro.js +++ /dev/null @@ -1 +0,0 @@ -export const deskpro = ["480 512",""] \ No newline at end of file diff --git a/js/brand/dev-to.d.ts b/js/brand/dev-to.d.ts new file mode 100644 index 000000000..eac4ac872 --- /dev/null +++ b/js/brand/dev-to.d.ts @@ -0,0 +1 @@ +export declare const devTo: string[]; \ No newline at end of file diff --git a/js/brand/dev-to.js b/js/brand/dev-to.js index 082755f79..b8cd46a2d 100644 --- a/js/brand/dev-to.js +++ b/js/brand/dev-to.js @@ -1 +1 @@ -export const devTo = ["24 24",""] \ No newline at end of file +export const devTo = ["32 32","dev-to"] \ No newline at end of file diff --git a/js/brand/deviantart.d.ts b/js/brand/deviantart.d.ts new file mode 100644 index 000000000..a510e27dd --- /dev/null +++ b/js/brand/deviantart.d.ts @@ -0,0 +1 @@ +export declare const deviantart: string[]; \ No newline at end of file diff --git a/js/brand/deviantart.js b/js/brand/deviantart.js index 375cc89e3..3bcdfdd3a 100644 --- a/js/brand/deviantart.js +++ b/js/brand/deviantart.js @@ -1 +1 @@ -export const deviantart = ["24 24",""] \ No newline at end of file +export const deviantart = ["32 32","deviantart"] \ No newline at end of file diff --git a/js/brand/devrant.d.ts b/js/brand/devrant.d.ts new file mode 100644 index 000000000..771398206 --- /dev/null +++ b/js/brand/devrant.d.ts @@ -0,0 +1 @@ +export declare const devrant: string[]; \ No newline at end of file diff --git a/js/brand/devrant.js b/js/brand/devrant.js index 86e9fdab0..955ab6108 100644 --- a/js/brand/devrant.js +++ b/js/brand/devrant.js @@ -1 +1 @@ -export const devrant = ["24 24",""] \ No newline at end of file +export const devrant = ["32 32","devrant"] \ No newline at end of file diff --git a/js/brand/dhl.js b/js/brand/dhl.js deleted file mode 100644 index 9087bbcd9..000000000 --- a/js/brand/dhl.js +++ /dev/null @@ -1 +0,0 @@ -export const dhl = ["640 512",""] \ No newline at end of file diff --git a/js/brand/diaspora.d.ts b/js/brand/diaspora.d.ts new file mode 100644 index 000000000..47b452349 --- /dev/null +++ b/js/brand/diaspora.d.ts @@ -0,0 +1 @@ +export declare const diaspora: string[]; \ No newline at end of file diff --git a/js/brand/diaspora.js b/js/brand/diaspora.js index 541d4cfcf..97baa4519 100644 --- a/js/brand/diaspora.js +++ b/js/brand/diaspora.js @@ -1 +1 @@ -export const diaspora = ["24 24",""] \ No newline at end of file +export const diaspora = ["32 32","diaspora"] \ No newline at end of file diff --git a/js/brand/digg.d.ts b/js/brand/digg.d.ts new file mode 100644 index 000000000..e7bee85eb --- /dev/null +++ b/js/brand/digg.d.ts @@ -0,0 +1 @@ +export declare const digg: string[]; \ No newline at end of file diff --git a/js/brand/digg.js b/js/brand/digg.js index ac30c77ee..65f36b012 100644 --- a/js/brand/digg.js +++ b/js/brand/digg.js @@ -1 +1 @@ -export const digg = ["24 24",""] \ No newline at end of file +export const digg = ["32 32","digg"] \ No newline at end of file diff --git a/js/brand/digital-ocean.d.ts b/js/brand/digital-ocean.d.ts new file mode 100644 index 000000000..e53ab9bad --- /dev/null +++ b/js/brand/digital-ocean.d.ts @@ -0,0 +1 @@ +export declare const digitalOcean: string[]; \ No newline at end of file diff --git a/js/brand/digital-ocean.js b/js/brand/digital-ocean.js index cb7116b1b..abc8bc4bc 100644 --- a/js/brand/digital-ocean.js +++ b/js/brand/digital-ocean.js @@ -1 +1 @@ -export const digitalOcean = ["512 512",""] \ No newline at end of file +export const digitalOcean = ["32 32","digital-ocean"] \ No newline at end of file diff --git a/js/brand/digitalocean.js b/js/brand/digitalocean.js deleted file mode 100644 index c51515a8c..000000000 --- a/js/brand/digitalocean.js +++ /dev/null @@ -1 +0,0 @@ -export const digitalocean = ["24 24",""] \ No newline at end of file diff --git a/js/brand/discord.d.ts b/js/brand/discord.d.ts new file mode 100644 index 000000000..0977dbcdb --- /dev/null +++ b/js/brand/discord.d.ts @@ -0,0 +1 @@ +export declare const discord: string[]; \ No newline at end of file diff --git a/js/brand/discord.js b/js/brand/discord.js index 25fbebc8e..501f7c75d 100644 --- a/js/brand/discord.js +++ b/js/brand/discord.js @@ -1 +1 @@ -export const discord = ["24 24",""] \ No newline at end of file +export const discord = ["32 32","discord"] \ No newline at end of file diff --git a/js/brand/discourse.d.ts b/js/brand/discourse.d.ts new file mode 100644 index 000000000..d2d22ce6a --- /dev/null +++ b/js/brand/discourse.d.ts @@ -0,0 +1 @@ +export declare const discourse: string[]; \ No newline at end of file diff --git a/js/brand/discourse.js b/js/brand/discourse.js index 4cb3d87ef..2d2ed1eea 100644 --- a/js/brand/discourse.js +++ b/js/brand/discourse.js @@ -1 +1 @@ -export const discourse = ["24 24",""] \ No newline at end of file +export const discourse = ["32 32","discourse"] \ No newline at end of file diff --git a/js/brand/discover.d.ts b/js/brand/discover.d.ts new file mode 100644 index 000000000..bde856d51 --- /dev/null +++ b/js/brand/discover.d.ts @@ -0,0 +1 @@ +export declare const discover: string[]; \ No newline at end of file diff --git a/js/brand/discover.js b/js/brand/discover.js index b2609fe1a..571364b03 100644 --- a/js/brand/discover.js +++ b/js/brand/discover.js @@ -1 +1 @@ -export const discover = ["24 24",""] \ No newline at end of file +export const discover = ["32 32","discover"] \ No newline at end of file diff --git a/js/brand/disqus.d.ts b/js/brand/disqus.d.ts new file mode 100644 index 000000000..42ecf0305 --- /dev/null +++ b/js/brand/disqus.d.ts @@ -0,0 +1 @@ +export declare const disqus: string[]; \ No newline at end of file diff --git a/js/brand/disqus.js b/js/brand/disqus.js index 661ee0607..c0ddb5c20 100644 --- a/js/brand/disqus.js +++ b/js/brand/disqus.js @@ -1 +1 @@ -export const disqus = ["24 24",""] \ No newline at end of file +export const disqus = ["32 32","disqus"] \ No newline at end of file diff --git a/js/brand/disroot.d.ts b/js/brand/disroot.d.ts new file mode 100644 index 000000000..444ab507e --- /dev/null +++ b/js/brand/disroot.d.ts @@ -0,0 +1 @@ +export declare const disroot: string[]; \ No newline at end of file diff --git a/js/brand/disroot.js b/js/brand/disroot.js index 34b61ac4e..ad2a283b7 100644 --- a/js/brand/disroot.js +++ b/js/brand/disroot.js @@ -1 +1 @@ -export const disroot = ["24 24",""] \ No newline at end of file +export const disroot = ["32 32","disroot"] \ No newline at end of file diff --git a/js/brand/django.d.ts b/js/brand/django.d.ts new file mode 100644 index 000000000..41054191e --- /dev/null +++ b/js/brand/django.d.ts @@ -0,0 +1 @@ +export declare const django: string[]; \ No newline at end of file diff --git a/js/brand/django.js b/js/brand/django.js index 8317f9e88..081eb42c0 100644 --- a/js/brand/django.js +++ b/js/brand/django.js @@ -1 +1 @@ -export const django = ["24 24",""] \ No newline at end of file +export const django = ["32 32","django"] \ No newline at end of file diff --git a/js/brand/dochub.js b/js/brand/dochub.js deleted file mode 100644 index 4d6025e0c..000000000 --- a/js/brand/dochub.js +++ /dev/null @@ -1 +0,0 @@ -export const dochub = ["416 512",""] \ No newline at end of file diff --git a/js/brand/docker.d.ts b/js/brand/docker.d.ts new file mode 100644 index 000000000..904a59a48 --- /dev/null +++ b/js/brand/docker.d.ts @@ -0,0 +1 @@ +export declare const docker: string[]; \ No newline at end of file diff --git a/js/brand/docker.js b/js/brand/docker.js index 4e39d982b..89acfa726 100644 --- a/js/brand/docker.js +++ b/js/brand/docker.js @@ -1 +1 @@ -export const docker = ["24 24",""] \ No newline at end of file +export const docker = ["32 32","docker"] \ No newline at end of file diff --git a/js/brand/docusign.d.ts b/js/brand/docusign.d.ts new file mode 100644 index 000000000..b029dbf16 --- /dev/null +++ b/js/brand/docusign.d.ts @@ -0,0 +1 @@ +export declare const docusign: string[]; \ No newline at end of file diff --git a/js/brand/docusign.js b/js/brand/docusign.js index 2afce7cf1..6104f2761 100644 --- a/js/brand/docusign.js +++ b/js/brand/docusign.js @@ -1 +1 @@ -export const docusign = ["24 24",""] \ No newline at end of file +export const docusign = ["32 32","docusign"] \ No newline at end of file diff --git a/js/brand/dot-net.d.ts b/js/brand/dot-net.d.ts new file mode 100644 index 000000000..f7d08e232 --- /dev/null +++ b/js/brand/dot-net.d.ts @@ -0,0 +1 @@ +export declare const dotNet: string[]; \ No newline at end of file diff --git a/js/brand/dot-net.js b/js/brand/dot-net.js index dcfd2b018..bfc6c6fea 100644 --- a/js/brand/dot-net.js +++ b/js/brand/dot-net.js @@ -1 +1 @@ -export const dotNet = ["24 24",""] \ No newline at end of file +export const dotNet = ["32 32","dot-net"] \ No newline at end of file diff --git a/js/brand/draft2digital.js b/js/brand/draft2digital.js deleted file mode 100644 index 23be725b6..000000000 --- a/js/brand/draft2digital.js +++ /dev/null @@ -1 +0,0 @@ -export const draft2digital = ["480 512",""] \ No newline at end of file diff --git a/js/brand/draugiem-dot-lv.js b/js/brand/draugiem-dot-lv.js deleted file mode 100644 index 94a3d6df3..000000000 --- a/js/brand/draugiem-dot-lv.js +++ /dev/null @@ -1 +0,0 @@ -export const draugiemDotLv = ["24 24",""] \ No newline at end of file diff --git a/js/brand/draugiem-lv.d.ts b/js/brand/draugiem-lv.d.ts new file mode 100644 index 000000000..02a7966b7 --- /dev/null +++ b/js/brand/draugiem-lv.d.ts @@ -0,0 +1 @@ +export declare const draugiemLv: string[]; \ No newline at end of file diff --git a/js/brand/draugiem-lv.js b/js/brand/draugiem-lv.js new file mode 100644 index 000000000..a2cd203bf --- /dev/null +++ b/js/brand/draugiem-lv.js @@ -0,0 +1 @@ +export const draugiemLv = ["32 32","draugiem-lv"] \ No newline at end of file diff --git a/js/brand/dribbble.d.ts b/js/brand/dribbble.d.ts new file mode 100644 index 000000000..591cc6238 --- /dev/null +++ b/js/brand/dribbble.d.ts @@ -0,0 +1 @@ +export declare const dribbble: string[]; \ No newline at end of file diff --git a/js/brand/dribbble.js b/js/brand/dribbble.js index 5678078b4..a05be7644 100644 --- a/js/brand/dribbble.js +++ b/js/brand/dribbble.js @@ -1 +1 @@ -export const dribbble = ["24 24",""] \ No newline at end of file +export const dribbble = ["32 32","dribbble"] \ No newline at end of file diff --git a/js/brand/drone.d.ts b/js/brand/drone.d.ts new file mode 100644 index 000000000..c31063e97 --- /dev/null +++ b/js/brand/drone.d.ts @@ -0,0 +1 @@ +export declare const drone: string[]; \ No newline at end of file diff --git a/js/brand/drone.js b/js/brand/drone.js index 48da2be37..b9e6a6e33 100644 --- a/js/brand/drone.js +++ b/js/brand/drone.js @@ -1 +1 @@ -export const drone = ["24 24",""] \ No newline at end of file +export const drone = ["32 32","drone"] \ No newline at end of file diff --git a/js/brand/dropbox.d.ts b/js/brand/dropbox.d.ts new file mode 100644 index 000000000..597a3908a --- /dev/null +++ b/js/brand/dropbox.d.ts @@ -0,0 +1 @@ +export declare const dropbox: string[]; \ No newline at end of file diff --git a/js/brand/dropbox.js b/js/brand/dropbox.js index f64b15bfc..aecfc9525 100644 --- a/js/brand/dropbox.js +++ b/js/brand/dropbox.js @@ -1 +1 @@ -export const dropbox = ["24 24",""] \ No newline at end of file +export const dropbox = ["32 32","dropbox"] \ No newline at end of file diff --git a/js/brand/drupal.d.ts b/js/brand/drupal.d.ts new file mode 100644 index 000000000..d4fdb7e92 --- /dev/null +++ b/js/brand/drupal.d.ts @@ -0,0 +1 @@ +export declare const drupal: string[]; \ No newline at end of file diff --git a/js/brand/drupal.js b/js/brand/drupal.js index bd3a537b9..9f24de177 100644 --- a/js/brand/drupal.js +++ b/js/brand/drupal.js @@ -1 +1 @@ -export const drupal = ["24 24",""] \ No newline at end of file +export const drupal = ["32 32","drupal"] \ No newline at end of file diff --git a/js/brand/dtube.d.ts b/js/brand/dtube.d.ts new file mode 100644 index 000000000..e08445d1e --- /dev/null +++ b/js/brand/dtube.d.ts @@ -0,0 +1 @@ +export declare const dtube: string[]; \ No newline at end of file diff --git a/js/brand/dtube.js b/js/brand/dtube.js index d15aee4d2..43d78c588 100644 --- a/js/brand/dtube.js +++ b/js/brand/dtube.js @@ -1 +1 @@ -export const dtube = ["24 24",""] \ No newline at end of file +export const dtube = ["32 32","dtube"] \ No newline at end of file diff --git a/js/brand/duckduckgo.d.ts b/js/brand/duckduckgo.d.ts new file mode 100644 index 000000000..fee1089da --- /dev/null +++ b/js/brand/duckduckgo.d.ts @@ -0,0 +1 @@ +export declare const duckduckgo: string[]; \ No newline at end of file diff --git a/js/brand/duckduckgo.js b/js/brand/duckduckgo.js index 217586fc9..c4bed0cae 100644 --- a/js/brand/duckduckgo.js +++ b/js/brand/duckduckgo.js @@ -1 +1 @@ -export const duckduckgo = ["24 24",""] \ No newline at end of file +export const duckduckgo = ["32 32","duckduckgo"] \ No newline at end of file diff --git a/js/brand/dyalog.js b/js/brand/dyalog.js deleted file mode 100644 index 07d4a4214..000000000 --- a/js/brand/dyalog.js +++ /dev/null @@ -1 +0,0 @@ -export const dyalog = ["416 512",""] \ No newline at end of file diff --git a/js/brand/dynatrace.d.ts b/js/brand/dynatrace.d.ts new file mode 100644 index 000000000..27b322a7a --- /dev/null +++ b/js/brand/dynatrace.d.ts @@ -0,0 +1 @@ +export declare const dynatrace: string[]; \ No newline at end of file diff --git a/js/brand/dynatrace.js b/js/brand/dynatrace.js index b576c7690..ad1d3b344 100644 --- a/js/brand/dynatrace.js +++ b/js/brand/dynatrace.js @@ -1 +1 @@ -export const dynatrace = ["24 24",""] \ No newline at end of file +export const dynatrace = ["32 32","dynatrace"] \ No newline at end of file diff --git a/js/brand/earlybirds.js b/js/brand/earlybirds.js deleted file mode 100644 index 2f0a0ae89..000000000 --- a/js/brand/earlybirds.js +++ /dev/null @@ -1 +0,0 @@ -export const earlybirds = ["480 512",""] \ No newline at end of file diff --git a/js/brand/ebay.d.ts b/js/brand/ebay.d.ts new file mode 100644 index 000000000..63f483650 --- /dev/null +++ b/js/brand/ebay.d.ts @@ -0,0 +1 @@ +export declare const ebay: string[]; \ No newline at end of file diff --git a/js/brand/ebay.js b/js/brand/ebay.js index 0f6069366..4182a5b77 100644 --- a/js/brand/ebay.js +++ b/js/brand/ebay.js @@ -1 +1 @@ -export const ebay = ["24 24",""] \ No newline at end of file +export const ebay = ["32 32","ebay"] \ No newline at end of file diff --git a/js/brand/eclipseide.d.ts b/js/brand/eclipseide.d.ts new file mode 100644 index 000000000..e31f43327 --- /dev/null +++ b/js/brand/eclipseide.d.ts @@ -0,0 +1 @@ +export declare const eclipseide: string[]; \ No newline at end of file diff --git a/js/brand/eclipseide.js b/js/brand/eclipseide.js index efcd73c36..b3f894b3d 100644 --- a/js/brand/eclipseide.js +++ b/js/brand/eclipseide.js @@ -1 +1 @@ -export const eclipseide = ["24 24",""] \ No newline at end of file +export const eclipseide = ["32 32","eclipseide"] \ No newline at end of file diff --git a/js/brand/edge.js b/js/brand/edge.js deleted file mode 100644 index deda8dbc4..000000000 --- a/js/brand/edge.js +++ /dev/null @@ -1 +0,0 @@ -export const edge = ["512 512",""] \ No newline at end of file diff --git a/js/brand/elastic-cloud.d.ts b/js/brand/elastic-cloud.d.ts new file mode 100644 index 000000000..f4d4da593 --- /dev/null +++ b/js/brand/elastic-cloud.d.ts @@ -0,0 +1 @@ +export declare const elasticCloud: string[]; \ No newline at end of file diff --git a/js/brand/elastic-cloud.js b/js/brand/elastic-cloud.js new file mode 100644 index 000000000..6a6dbd2ec --- /dev/null +++ b/js/brand/elastic-cloud.js @@ -0,0 +1 @@ +export const elasticCloud = ["32 32","elastic-cloud"] \ No newline at end of file diff --git a/js/brand/elastic-search.d.ts b/js/brand/elastic-search.d.ts new file mode 100644 index 000000000..7b8a78513 --- /dev/null +++ b/js/brand/elastic-search.d.ts @@ -0,0 +1 @@ +export declare const elasticSearch: string[]; \ No newline at end of file diff --git a/js/brand/elastic-search.js b/js/brand/elastic-search.js new file mode 100644 index 000000000..9202c7a54 --- /dev/null +++ b/js/brand/elastic-search.js @@ -0,0 +1 @@ +export const elasticSearch = ["32 32","elastic-search"] \ No newline at end of file diff --git a/js/brand/elastic-stack.d.ts b/js/brand/elastic-stack.d.ts new file mode 100644 index 000000000..624c5d356 --- /dev/null +++ b/js/brand/elastic-stack.d.ts @@ -0,0 +1 @@ +export declare const elasticStack: string[]; \ No newline at end of file diff --git a/js/brand/elastic-stack.js b/js/brand/elastic-stack.js new file mode 100644 index 000000000..b27109e36 --- /dev/null +++ b/js/brand/elastic-stack.js @@ -0,0 +1 @@ +export const elasticStack = ["32 32","elastic-stack"] \ No newline at end of file diff --git a/js/brand/elastic.d.ts b/js/brand/elastic.d.ts new file mode 100644 index 000000000..01f9ec6cf --- /dev/null +++ b/js/brand/elastic.d.ts @@ -0,0 +1 @@ +export declare const elastic: string[]; \ No newline at end of file diff --git a/js/brand/elastic.js b/js/brand/elastic.js index 8f30fb171..4222e21c8 100644 --- a/js/brand/elastic.js +++ b/js/brand/elastic.js @@ -1 +1 @@ -export const elastic = ["24 24",""] \ No newline at end of file +export const elastic = ["32 32","elastic"] \ No newline at end of file diff --git a/js/brand/elasticcloud.js b/js/brand/elasticcloud.js deleted file mode 100644 index 2569c23be..000000000 --- a/js/brand/elasticcloud.js +++ /dev/null @@ -1 +0,0 @@ -export const elasticcloud = ["24 24",""] \ No newline at end of file diff --git a/js/brand/elasticsearch.js b/js/brand/elasticsearch.js deleted file mode 100644 index 029f35b1a..000000000 --- a/js/brand/elasticsearch.js +++ /dev/null @@ -1 +0,0 @@ -export const elasticsearch = ["24 24",""] \ No newline at end of file diff --git a/js/brand/elasticstack.js b/js/brand/elasticstack.js deleted file mode 100644 index a8f4e5e87..000000000 --- a/js/brand/elasticstack.js +++ /dev/null @@ -1 +0,0 @@ -export const elasticstack = ["24 24",""] \ No newline at end of file diff --git a/js/brand/electron.d.ts b/js/brand/electron.d.ts new file mode 100644 index 000000000..e35d942a5 --- /dev/null +++ b/js/brand/electron.d.ts @@ -0,0 +1 @@ +export declare const electron: string[]; \ No newline at end of file diff --git a/js/brand/electron.js b/js/brand/electron.js index bebae05bf..d51f3e226 100644 --- a/js/brand/electron.js +++ b/js/brand/electron.js @@ -1 +1 @@ -export const electron = ["24 24",""] \ No newline at end of file +export const electron = ["32 32","electron"] \ No newline at end of file diff --git a/js/brand/elementary.d.ts b/js/brand/elementary.d.ts new file mode 100644 index 000000000..ca6963c33 --- /dev/null +++ b/js/brand/elementary.d.ts @@ -0,0 +1 @@ +export declare const elementary: string[]; \ No newline at end of file diff --git a/js/brand/elementary.js b/js/brand/elementary.js index 1ffc88382..a3c6f6b63 100644 --- a/js/brand/elementary.js +++ b/js/brand/elementary.js @@ -1 +1 @@ -export const elementary = ["24 24",""] \ No newline at end of file +export const elementary = ["32 32","elementary"] \ No newline at end of file diff --git a/js/brand/elementor.js b/js/brand/elementor.js deleted file mode 100644 index 46b864e91..000000000 --- a/js/brand/elementor.js +++ /dev/null @@ -1 +0,0 @@ -export const elementor = ["448 512",""] \ No newline at end of file diff --git a/js/brand/eleventy.d.ts b/js/brand/eleventy.d.ts new file mode 100644 index 000000000..8f044f9f7 --- /dev/null +++ b/js/brand/eleventy.d.ts @@ -0,0 +1 @@ +export declare const eleventy: string[]; \ No newline at end of file diff --git a/js/brand/eleventy.js b/js/brand/eleventy.js index 2bf3c4076..19c7215f4 100644 --- a/js/brand/eleventy.js +++ b/js/brand/eleventy.js @@ -1 +1 @@ -export const eleventy = ["24 24",""] \ No newline at end of file +export const eleventy = ["32 32","eleventy"] \ No newline at end of file diff --git a/js/brand/ello.d.ts b/js/brand/ello.d.ts new file mode 100644 index 000000000..51e358866 --- /dev/null +++ b/js/brand/ello.d.ts @@ -0,0 +1 @@ +export declare const ello: string[]; \ No newline at end of file diff --git a/js/brand/ello.js b/js/brand/ello.js index df77c401f..7d6b4d9e8 100644 --- a/js/brand/ello.js +++ b/js/brand/ello.js @@ -1 +1 @@ -export const ello = ["24 24",""] \ No newline at end of file +export const ello = ["32 32","ello"] \ No newline at end of file diff --git a/js/brand/elsevier.d.ts b/js/brand/elsevier.d.ts new file mode 100644 index 000000000..80079af56 --- /dev/null +++ b/js/brand/elsevier.d.ts @@ -0,0 +1 @@ +export declare const elsevier: string[]; \ No newline at end of file diff --git a/js/brand/elsevier.js b/js/brand/elsevier.js index 41183a2ff..880564417 100644 --- a/js/brand/elsevier.js +++ b/js/brand/elsevier.js @@ -1 +1 @@ -export const elsevier = ["24 24",""] \ No newline at end of file +export const elsevier = ["32 32","elsevier"] \ No newline at end of file diff --git a/js/brand/ember.js b/js/brand/ember.js deleted file mode 100644 index 8eee7b712..000000000 --- a/js/brand/ember.js +++ /dev/null @@ -1 +0,0 @@ -export const ember = ["640 512",""] \ No newline at end of file diff --git a/js/brand/emlakjet.d.ts b/js/brand/emlakjet.d.ts new file mode 100644 index 000000000..a32f6bfd1 --- /dev/null +++ b/js/brand/emlakjet.d.ts @@ -0,0 +1 @@ +export declare const emlakjet: string[]; \ No newline at end of file diff --git a/js/brand/emlakjet.js b/js/brand/emlakjet.js index 42f3a0adb..606013d54 100644 --- a/js/brand/emlakjet.js +++ b/js/brand/emlakjet.js @@ -1 +1 @@ -export const emlakjet = ["24 24",""] \ No newline at end of file +export const emlakjet = ["32 32","emlakjet"] \ No newline at end of file diff --git a/js/brand/empire.js b/js/brand/empire.js deleted file mode 100644 index 1cec0b5ed..000000000 --- a/js/brand/empire.js +++ /dev/null @@ -1 +0,0 @@ -export const empire = ["496 512",""] \ No newline at end of file diff --git a/js/brand/empirekred.d.ts b/js/brand/empirekred.d.ts new file mode 100644 index 000000000..7cd85958b --- /dev/null +++ b/js/brand/empirekred.d.ts @@ -0,0 +1 @@ +export declare const empirekred: string[]; \ No newline at end of file diff --git a/js/brand/empirekred.js b/js/brand/empirekred.js index 6f353bcad..ad288aef6 100644 --- a/js/brand/empirekred.js +++ b/js/brand/empirekred.js @@ -1 +1 @@ -export const empirekred = ["24 24",""] \ No newline at end of file +export const empirekred = ["32 32","empirekred"] \ No newline at end of file diff --git a/js/brand/envato.d.ts b/js/brand/envato.d.ts new file mode 100644 index 000000000..3ce7bb9d8 --- /dev/null +++ b/js/brand/envato.d.ts @@ -0,0 +1 @@ +export declare const envato: string[]; \ No newline at end of file diff --git a/js/brand/envato.js b/js/brand/envato.js index a767b2f8b..6cadd472a 100644 --- a/js/brand/envato.js +++ b/js/brand/envato.js @@ -1 +1 @@ -export const envato = ["24 24",""] \ No newline at end of file +export const envato = ["32 32","envato"] \ No newline at end of file diff --git a/js/brand/envira.js b/js/brand/envira.js deleted file mode 100644 index 4c3eb32bf..000000000 --- a/js/brand/envira.js +++ /dev/null @@ -1 +0,0 @@ -export const envira = ["448 512",""] \ No newline at end of file diff --git a/js/brand/epic-games.d.ts b/js/brand/epic-games.d.ts new file mode 100644 index 000000000..2bf505fc6 --- /dev/null +++ b/js/brand/epic-games.d.ts @@ -0,0 +1 @@ +export declare const epicGames: string[]; \ No newline at end of file diff --git a/js/brand/epic-games.js b/js/brand/epic-games.js new file mode 100644 index 000000000..338ffa2f6 --- /dev/null +++ b/js/brand/epic-games.js @@ -0,0 +1 @@ +export const epicGames = ["32 32","epic-games"] \ No newline at end of file diff --git a/js/brand/epicgames.js b/js/brand/epicgames.js deleted file mode 100644 index 5d5b88694..000000000 --- a/js/brand/epicgames.js +++ /dev/null @@ -1 +0,0 @@ -export const epicgames = ["24 24",""] \ No newline at end of file diff --git a/js/brand/epson.d.ts b/js/brand/epson.d.ts new file mode 100644 index 000000000..23e304f35 --- /dev/null +++ b/js/brand/epson.d.ts @@ -0,0 +1 @@ +export declare const epson: string[]; \ No newline at end of file diff --git a/js/brand/epson.js b/js/brand/epson.js index 03bdcf712..71892bdc3 100644 --- a/js/brand/epson.js +++ b/js/brand/epson.js @@ -1 +1 @@ -export const epson = ["24 24",""] \ No newline at end of file +export const epson = ["32 32","epson"] \ No newline at end of file diff --git a/js/brand/erlang.js b/js/brand/erlang.js deleted file mode 100644 index 710d4ec62..000000000 --- a/js/brand/erlang.js +++ /dev/null @@ -1 +0,0 @@ -export const erlang = ["640 512",""] \ No newline at end of file diff --git a/js/brand/esea.d.ts b/js/brand/esea.d.ts new file mode 100644 index 000000000..aada1e403 --- /dev/null +++ b/js/brand/esea.d.ts @@ -0,0 +1 @@ +export declare const esea: string[]; \ No newline at end of file diff --git a/js/brand/esea.js b/js/brand/esea.js index ddccbe0c2..82331a5f3 100644 --- a/js/brand/esea.js +++ b/js/brand/esea.js @@ -1 +1 @@ -export const esea = ["24 24",""] \ No newline at end of file +export const esea = ["32 32","esea"] \ No newline at end of file diff --git a/js/brand/eslint.d.ts b/js/brand/eslint.d.ts new file mode 100644 index 000000000..e4ce16509 --- /dev/null +++ b/js/brand/eslint.d.ts @@ -0,0 +1 @@ +export declare const eslint: string[]; \ No newline at end of file diff --git a/js/brand/eslint.js b/js/brand/eslint.js index 891516f57..fcef6b04d 100644 --- a/js/brand/eslint.js +++ b/js/brand/eslint.js @@ -1 +1 @@ -export const eslint = ["24 24",""] \ No newline at end of file +export const eslint = ["32 32","eslint"] \ No newline at end of file diff --git a/js/brand/ethereum.d.ts b/js/brand/ethereum.d.ts new file mode 100644 index 000000000..1fffafe38 --- /dev/null +++ b/js/brand/ethereum.d.ts @@ -0,0 +1 @@ +export declare const ethereum: string[]; \ No newline at end of file diff --git a/js/brand/ethereum.js b/js/brand/ethereum.js index 0747b9ea7..ee94587f0 100644 --- a/js/brand/ethereum.js +++ b/js/brand/ethereum.js @@ -1 +1 @@ -export const ethereum = ["24 24",""] \ No newline at end of file +export const ethereum = ["32 32","ethereum"] \ No newline at end of file diff --git a/js/brand/etsy.d.ts b/js/brand/etsy.d.ts new file mode 100644 index 000000000..8ce5499ca --- /dev/null +++ b/js/brand/etsy.d.ts @@ -0,0 +1 @@ +export declare const etsy: string[]; \ No newline at end of file diff --git a/js/brand/etsy.js b/js/brand/etsy.js index adfae6237..87d0d5cad 100644 --- a/js/brand/etsy.js +++ b/js/brand/etsy.js @@ -1 +1 @@ -export const etsy = ["24 24",""] \ No newline at end of file +export const etsy = ["32 32","etsy"] \ No newline at end of file diff --git a/js/brand/event-store.d.ts b/js/brand/event-store.d.ts new file mode 100644 index 000000000..1438c067e --- /dev/null +++ b/js/brand/event-store.d.ts @@ -0,0 +1 @@ +export declare const eventStore: string[]; \ No newline at end of file diff --git a/js/brand/event-store.js b/js/brand/event-store.js new file mode 100644 index 000000000..79159338e --- /dev/null +++ b/js/brand/event-store.js @@ -0,0 +1 @@ +export const eventStore = ["32 32","event-store"] \ No newline at end of file diff --git a/js/brand/eventbrite.d.ts b/js/brand/eventbrite.d.ts new file mode 100644 index 000000000..5fb0e5a5a --- /dev/null +++ b/js/brand/eventbrite.d.ts @@ -0,0 +1 @@ +export declare const eventbrite: string[]; \ No newline at end of file diff --git a/js/brand/eventbrite.js b/js/brand/eventbrite.js index a90b55dbb..d543b78b7 100644 --- a/js/brand/eventbrite.js +++ b/js/brand/eventbrite.js @@ -1 +1 @@ -export const eventbrite = ["24 24",""] \ No newline at end of file +export const eventbrite = ["32 32","eventbrite"] \ No newline at end of file diff --git a/js/brand/eventstore.js b/js/brand/eventstore.js deleted file mode 100644 index 7d93fbe93..000000000 --- a/js/brand/eventstore.js +++ /dev/null @@ -1 +0,0 @@ -export const eventstore = ["24 24",""] \ No newline at end of file diff --git a/js/brand/evernote.d.ts b/js/brand/evernote.d.ts new file mode 100644 index 000000000..d33db73ee --- /dev/null +++ b/js/brand/evernote.d.ts @@ -0,0 +1 @@ +export declare const evernote: string[]; \ No newline at end of file diff --git a/js/brand/evernote.js b/js/brand/evernote.js index d919d15c2..17c069500 100644 --- a/js/brand/evernote.js +++ b/js/brand/evernote.js @@ -1 +1 @@ -export const evernote = ["24 24",""] \ No newline at end of file +export const evernote = ["32 32","evernote"] \ No newline at end of file diff --git a/js/brand/everplaces.d.ts b/js/brand/everplaces.d.ts new file mode 100644 index 000000000..6bb2ef0c6 --- /dev/null +++ b/js/brand/everplaces.d.ts @@ -0,0 +1 @@ +export declare const everplaces: string[]; \ No newline at end of file diff --git a/js/brand/everplaces.js b/js/brand/everplaces.js index 34816bb23..de3bc7da5 100644 --- a/js/brand/everplaces.js +++ b/js/brand/everplaces.js @@ -1 +1 @@ -export const everplaces = ["24 24",""] \ No newline at end of file +export const everplaces = ["32 32","everplaces"] \ No newline at end of file diff --git a/js/brand/evry.d.ts b/js/brand/evry.d.ts new file mode 100644 index 000000000..e8031041f --- /dev/null +++ b/js/brand/evry.d.ts @@ -0,0 +1 @@ +export declare const evry: string[]; \ No newline at end of file diff --git a/js/brand/evry.js b/js/brand/evry.js index 10b9418d2..02308dd7c 100644 --- a/js/brand/evry.js +++ b/js/brand/evry.js @@ -1 +1 @@ -export const evry = ["24 24",""] \ No newline at end of file +export const evry = ["32 32","evry"] \ No newline at end of file diff --git a/js/brand/exercism.d.ts b/js/brand/exercism.d.ts new file mode 100644 index 000000000..d09d46b23 --- /dev/null +++ b/js/brand/exercism.d.ts @@ -0,0 +1 @@ +export declare const exercism: string[]; \ No newline at end of file diff --git a/js/brand/exercism.js b/js/brand/exercism.js index 3cd72e84b..119e150e5 100644 --- a/js/brand/exercism.js +++ b/js/brand/exercism.js @@ -1 +1 @@ -export const exercism = ["24 24",""] \ No newline at end of file +export const exercism = ["32 32","exercism"] \ No newline at end of file diff --git a/js/brand/expeditedssl.js b/js/brand/expeditedssl.js deleted file mode 100644 index ac5c4859b..000000000 --- a/js/brand/expeditedssl.js +++ /dev/null @@ -1 +0,0 @@ -export const expeditedssl = ["496 512",""] \ No newline at end of file diff --git a/js/brand/experts-exchange.d.ts b/js/brand/experts-exchange.d.ts new file mode 100644 index 000000000..8e9fad7ad --- /dev/null +++ b/js/brand/experts-exchange.d.ts @@ -0,0 +1 @@ +export declare const expertsExchange: string[]; \ No newline at end of file diff --git a/js/brand/experts-exchange.js b/js/brand/experts-exchange.js new file mode 100644 index 000000000..afee778a9 --- /dev/null +++ b/js/brand/experts-exchange.js @@ -0,0 +1 @@ +export const expertsExchange = ["32 32","experts-exchange"] \ No newline at end of file diff --git a/js/brand/expertsexchange.js b/js/brand/expertsexchange.js deleted file mode 100644 index 48b9b20e0..000000000 --- a/js/brand/expertsexchange.js +++ /dev/null @@ -1 +0,0 @@ -export const expertsexchange = ["24 24",""] \ No newline at end of file diff --git a/js/brand/expo.d.ts b/js/brand/expo.d.ts new file mode 100644 index 000000000..3f9e76a13 --- /dev/null +++ b/js/brand/expo.d.ts @@ -0,0 +1 @@ +export declare const expo: string[]; \ No newline at end of file diff --git a/js/brand/expo.js b/js/brand/expo.js index f44071fdd..bb02ad7ce 100644 --- a/js/brand/expo.js +++ b/js/brand/expo.js @@ -1 +1 @@ -export const expo = ["24 24",""] \ No newline at end of file +export const expo = ["32 32","expo"] \ No newline at end of file diff --git a/js/brand/eyeem.d.ts b/js/brand/eyeem.d.ts new file mode 100644 index 000000000..b8c78152f --- /dev/null +++ b/js/brand/eyeem.d.ts @@ -0,0 +1 @@ +export declare const eyeem: string[]; \ No newline at end of file diff --git a/js/brand/eyeem.js b/js/brand/eyeem.js index 71fb8a39f..07daf2909 100644 --- a/js/brand/eyeem.js +++ b/js/brand/eyeem.js @@ -1 +1 @@ -export const eyeem = ["24 24",""] \ No newline at end of file +export const eyeem = ["32 32","eyeem"] \ No newline at end of file diff --git a/js/brand/f-secure.d.ts b/js/brand/f-secure.d.ts new file mode 100644 index 000000000..7aa377632 --- /dev/null +++ b/js/brand/f-secure.d.ts @@ -0,0 +1 @@ +export declare const fSecure: string[]; \ No newline at end of file diff --git a/js/brand/f-secure.js b/js/brand/f-secure.js index 943daad8b..7615c8825 100644 --- a/js/brand/f-secure.js +++ b/js/brand/f-secure.js @@ -1 +1 @@ -export const fSecure = ["24 24",""] \ No newline at end of file +export const fSecure = ["32 32","f-secure"] \ No newline at end of file diff --git a/js/brand/facebook-f.d.ts b/js/brand/facebook-f.d.ts new file mode 100644 index 000000000..be251c9dc --- /dev/null +++ b/js/brand/facebook-f.d.ts @@ -0,0 +1 @@ +export declare const facebookF: string[]; \ No newline at end of file diff --git a/js/brand/facebook-f.js b/js/brand/facebook-f.js index 70ccc0543..be4cf3018 100644 --- a/js/brand/facebook-f.js +++ b/js/brand/facebook-f.js @@ -1 +1 @@ -export const facebookF = ["320 512",""] \ No newline at end of file +export const facebookF = ["32 32","facebook-f"] \ No newline at end of file diff --git a/js/brand/facebook-messenger.js b/js/brand/facebook-messenger.js deleted file mode 100644 index 549943b35..000000000 --- a/js/brand/facebook-messenger.js +++ /dev/null @@ -1 +0,0 @@ -export const facebookMessenger = ["512 512",""] \ No newline at end of file diff --git a/js/brand/facebook.d.ts b/js/brand/facebook.d.ts new file mode 100644 index 000000000..b3ac8eb52 --- /dev/null +++ b/js/brand/facebook.d.ts @@ -0,0 +1 @@ +export declare const facebook: string[]; \ No newline at end of file diff --git a/js/brand/facebook.js b/js/brand/facebook.js index 441ffa84c..f3318ddbc 100644 --- a/js/brand/facebook.js +++ b/js/brand/facebook.js @@ -1 +1 @@ -export const facebook = ["24 24",""] \ No newline at end of file +export const facebook = ["32 32","facebook"] \ No newline at end of file diff --git a/js/brand/faceit.d.ts b/js/brand/faceit.d.ts new file mode 100644 index 000000000..55f3d71f0 --- /dev/null +++ b/js/brand/faceit.d.ts @@ -0,0 +1 @@ +export declare const faceit: string[]; \ No newline at end of file diff --git a/js/brand/faceit.js b/js/brand/faceit.js index 99d202845..0848dac4a 100644 --- a/js/brand/faceit.js +++ b/js/brand/faceit.js @@ -1 +1 @@ -export const faceit = ["24 24",""] \ No newline at end of file +export const faceit = ["32 32","faceit"] \ No newline at end of file diff --git a/js/brand/fandango.d.ts b/js/brand/fandango.d.ts new file mode 100644 index 000000000..1acaa28df --- /dev/null +++ b/js/brand/fandango.d.ts @@ -0,0 +1 @@ +export declare const fandango: string[]; \ No newline at end of file diff --git a/js/brand/fandango.js b/js/brand/fandango.js index bbe600e26..fb26308a6 100644 --- a/js/brand/fandango.js +++ b/js/brand/fandango.js @@ -1 +1 @@ -export const fandango = ["24 24",""] \ No newline at end of file +export const fandango = ["32 32","fandango"] \ No newline at end of file diff --git a/js/brand/fantasy-flight-games.js b/js/brand/fantasy-flight-games.js deleted file mode 100644 index 8326991f3..000000000 --- a/js/brand/fantasy-flight-games.js +++ /dev/null @@ -1 +0,0 @@ -export const fantasyFlightGames = ["512 512",""] \ No newline at end of file diff --git a/js/brand/favro.d.ts b/js/brand/favro.d.ts new file mode 100644 index 000000000..1204a1035 --- /dev/null +++ b/js/brand/favro.d.ts @@ -0,0 +1 @@ +export declare const favro: string[]; \ No newline at end of file diff --git a/js/brand/favro.js b/js/brand/favro.js index 217166845..6d9449f49 100644 --- a/js/brand/favro.js +++ b/js/brand/favro.js @@ -1 +1 @@ -export const favro = ["24 24",""] \ No newline at end of file +export const favro = ["32 32","favro"] \ No newline at end of file diff --git a/js/brand/feathub.d.ts b/js/brand/feathub.d.ts new file mode 100644 index 000000000..3280a92ea --- /dev/null +++ b/js/brand/feathub.d.ts @@ -0,0 +1 @@ +export declare const feathub: string[]; \ No newline at end of file diff --git a/js/brand/feathub.js b/js/brand/feathub.js index dec7716a4..cedbab753 100644 --- a/js/brand/feathub.js +++ b/js/brand/feathub.js @@ -1 +1 @@ -export const feathub = ["24 24",""] \ No newline at end of file +export const feathub = ["32 32","feathub"] \ No newline at end of file diff --git a/js/brand/fedex.d.ts b/js/brand/fedex.d.ts new file mode 100644 index 000000000..a213a4d3a --- /dev/null +++ b/js/brand/fedex.d.ts @@ -0,0 +1 @@ +export declare const fedex: string[]; \ No newline at end of file diff --git a/js/brand/fedex.js b/js/brand/fedex.js index 695216021..921901331 100644 --- a/js/brand/fedex.js +++ b/js/brand/fedex.js @@ -1 +1 @@ -export const fedex = ["640 512",""] \ No newline at end of file +export const fedex = ["32 32","fedex"] \ No newline at end of file diff --git a/js/brand/fedora.d.ts b/js/brand/fedora.d.ts new file mode 100644 index 000000000..5e867c666 --- /dev/null +++ b/js/brand/fedora.d.ts @@ -0,0 +1 @@ +export declare const fedora: string[]; \ No newline at end of file diff --git a/js/brand/fedora.js b/js/brand/fedora.js index cf8dafd4b..b44a9eddd 100644 --- a/js/brand/fedora.js +++ b/js/brand/fedora.js @@ -1 +1 @@ -export const fedora = ["24 24",""] \ No newline at end of file +export const fedora = ["32 32","fedora"] \ No newline at end of file diff --git a/js/brand/feedly.d.ts b/js/brand/feedly.d.ts new file mode 100644 index 000000000..eb9b4efa9 --- /dev/null +++ b/js/brand/feedly.d.ts @@ -0,0 +1 @@ +export declare const feedly: string[]; \ No newline at end of file diff --git a/js/brand/feedly.js b/js/brand/feedly.js index 45d9d0c7c..e93fd9af6 100644 --- a/js/brand/feedly.js +++ b/js/brand/feedly.js @@ -1 +1 @@ -export const feedly = ["24 24",""] \ No newline at end of file +export const feedly = ["32 32","feedly"] \ No newline at end of file diff --git a/js/brand/fido-alliance.d.ts b/js/brand/fido-alliance.d.ts new file mode 100644 index 000000000..ed54608d4 --- /dev/null +++ b/js/brand/fido-alliance.d.ts @@ -0,0 +1 @@ +export declare const fidoAlliance: string[]; \ No newline at end of file diff --git a/js/brand/fido-alliance.js b/js/brand/fido-alliance.js new file mode 100644 index 000000000..5dce52f4b --- /dev/null +++ b/js/brand/fido-alliance.js @@ -0,0 +1 @@ +export const fidoAlliance = ["32 32","fido-alliance"] \ No newline at end of file diff --git a/js/brand/fidoalliance.js b/js/brand/fidoalliance.js deleted file mode 100644 index 7324efffd..000000000 --- a/js/brand/fidoalliance.js +++ /dev/null @@ -1 +0,0 @@ -export const fidoalliance = ["24 24",""] \ No newline at end of file diff --git a/js/brand/figma.d.ts b/js/brand/figma.d.ts new file mode 100644 index 000000000..eee2f70ab --- /dev/null +++ b/js/brand/figma.d.ts @@ -0,0 +1 @@ +export declare const figma: string[]; \ No newline at end of file diff --git a/js/brand/figma.js b/js/brand/figma.js index 1ab42a3be..79df6a204 100644 --- a/js/brand/figma.js +++ b/js/brand/figma.js @@ -1 +1 @@ -export const figma = ["24 24",""] \ No newline at end of file +export const figma = ["32 32","figma"] \ No newline at end of file diff --git a/js/brand/filezilla.d.ts b/js/brand/filezilla.d.ts new file mode 100644 index 000000000..e98485aeb --- /dev/null +++ b/js/brand/filezilla.d.ts @@ -0,0 +1 @@ +export declare const filezilla: string[]; \ No newline at end of file diff --git a/js/brand/filezilla.js b/js/brand/filezilla.js index 69f908582..acde75b81 100644 --- a/js/brand/filezilla.js +++ b/js/brand/filezilla.js @@ -1 +1 @@ -export const filezilla = ["24 24",""] \ No newline at end of file +export const filezilla = ["32 32","filezilla"] \ No newline at end of file diff --git a/js/brand/firebase.d.ts b/js/brand/firebase.d.ts new file mode 100644 index 000000000..1dc3ba429 --- /dev/null +++ b/js/brand/firebase.d.ts @@ -0,0 +1 @@ +export declare const firebase: string[]; \ No newline at end of file diff --git a/js/brand/firebase.js b/js/brand/firebase.js index 9cfb20034..cefee7f93 100644 --- a/js/brand/firebase.js +++ b/js/brand/firebase.js @@ -1 +1 @@ -export const firebase = ["24 24",""] \ No newline at end of file +export const firebase = ["32 32","firebase"] \ No newline at end of file diff --git a/js/brand/firefox.js b/js/brand/firefox.js deleted file mode 100644 index db26de346..000000000 --- a/js/brand/firefox.js +++ /dev/null @@ -1 +0,0 @@ -export const firefox = ["480 512",""] \ No newline at end of file diff --git a/js/brand/first-order-alt.js b/js/brand/first-order-alt.js deleted file mode 100644 index a7b2de37a..000000000 --- a/js/brand/first-order-alt.js +++ /dev/null @@ -1 +0,0 @@ -export const firstOrderAlt = ["496 512",""] \ No newline at end of file diff --git a/js/brand/first-order.js b/js/brand/first-order.js deleted file mode 100644 index 8c2d0b914..000000000 --- a/js/brand/first-order.js +++ /dev/null @@ -1 +0,0 @@ -export const firstOrder = ["448 512",""] \ No newline at end of file diff --git a/js/brand/firstdraft.js b/js/brand/firstdraft.js deleted file mode 100644 index 306aac3a4..000000000 --- a/js/brand/firstdraft.js +++ /dev/null @@ -1 +0,0 @@ -export const firstdraft = ["384 512",""] \ No newline at end of file diff --git a/js/brand/fitbit.d.ts b/js/brand/fitbit.d.ts new file mode 100644 index 000000000..0623e53d6 --- /dev/null +++ b/js/brand/fitbit.d.ts @@ -0,0 +1 @@ +export declare const fitbit: string[]; \ No newline at end of file diff --git a/js/brand/fitbit.js b/js/brand/fitbit.js index 8abf1a915..ec363272d 100644 --- a/js/brand/fitbit.js +++ b/js/brand/fitbit.js @@ -1 +1 @@ -export const fitbit = ["24 24",""] \ No newline at end of file +export const fitbit = ["32 32","fitbit"] \ No newline at end of file diff --git a/js/brand/flask.d.ts b/js/brand/flask.d.ts new file mode 100644 index 000000000..fd2480bb7 --- /dev/null +++ b/js/brand/flask.d.ts @@ -0,0 +1 @@ +export declare const flask: string[]; \ No newline at end of file diff --git a/js/brand/flask.js b/js/brand/flask.js index 8e25c3667..d4f03324c 100644 --- a/js/brand/flask.js +++ b/js/brand/flask.js @@ -1 +1 @@ -export const flask = ["24 24",""] \ No newline at end of file +export const flask = ["32 32","flask"] \ No newline at end of file diff --git a/js/brand/flattr.d.ts b/js/brand/flattr.d.ts new file mode 100644 index 000000000..efb82abb0 --- /dev/null +++ b/js/brand/flattr.d.ts @@ -0,0 +1 @@ +export declare const flattr: string[]; \ No newline at end of file diff --git a/js/brand/flattr.js b/js/brand/flattr.js index 1a68f0351..925dc1406 100644 --- a/js/brand/flattr.js +++ b/js/brand/flattr.js @@ -1 +1 @@ -export const flattr = ["24 24",""] \ No newline at end of file +export const flattr = ["32 32","flattr"] \ No newline at end of file diff --git a/js/brand/flickr.d.ts b/js/brand/flickr.d.ts new file mode 100644 index 000000000..0208d060d --- /dev/null +++ b/js/brand/flickr.d.ts @@ -0,0 +1 @@ +export declare const flickr: string[]; \ No newline at end of file diff --git a/js/brand/flickr.js b/js/brand/flickr.js index 71b5597d1..87832c38f 100644 --- a/js/brand/flickr.js +++ b/js/brand/flickr.js @@ -1 +1 @@ -export const flickr = ["24 24",""] \ No newline at end of file +export const flickr = ["32 32","flickr"] \ No newline at end of file diff --git a/js/brand/flipboard.d.ts b/js/brand/flipboard.d.ts new file mode 100644 index 000000000..981d95231 --- /dev/null +++ b/js/brand/flipboard.d.ts @@ -0,0 +1 @@ +export declare const flipboard: string[]; \ No newline at end of file diff --git a/js/brand/flipboard.js b/js/brand/flipboard.js index abf532c33..f2738a46f 100644 --- a/js/brand/flipboard.js +++ b/js/brand/flipboard.js @@ -1 +1 @@ -export const flipboard = ["24 24",""] \ No newline at end of file +export const flipboard = ["32 32","flipboard"] \ No newline at end of file diff --git a/js/brand/flutter.d.ts b/js/brand/flutter.d.ts new file mode 100644 index 000000000..34c2b789c --- /dev/null +++ b/js/brand/flutter.d.ts @@ -0,0 +1 @@ +export declare const flutter: string[]; \ No newline at end of file diff --git a/js/brand/flutter.js b/js/brand/flutter.js index c82115080..3a908ee08 100644 --- a/js/brand/flutter.js +++ b/js/brand/flutter.js @@ -1 +1 @@ -export const flutter = ["24 24",""] \ No newline at end of file +export const flutter = ["32 32","flutter"] \ No newline at end of file diff --git a/js/brand/fly.js b/js/brand/fly.js deleted file mode 100644 index e7d87a9a8..000000000 --- a/js/brand/fly.js +++ /dev/null @@ -1 +0,0 @@ -export const fly = ["384 512",""] \ No newline at end of file diff --git a/js/brand/fnac.d.ts b/js/brand/fnac.d.ts new file mode 100644 index 000000000..3421429f5 --- /dev/null +++ b/js/brand/fnac.d.ts @@ -0,0 +1 @@ +export declare const fnac: string[]; \ No newline at end of file diff --git a/js/brand/fnac.js b/js/brand/fnac.js index c3bbcebe5..06ee3d65b 100644 --- a/js/brand/fnac.js +++ b/js/brand/fnac.js @@ -1 +1 @@ -export const fnac = ["24 24",""] \ No newline at end of file +export const fnac = ["32 32","fnac"] \ No newline at end of file diff --git a/js/brand/font-awesome-alt.js b/js/brand/font-awesome-alt.js deleted file mode 100644 index 8b6cd6921..000000000 --- a/js/brand/font-awesome-alt.js +++ /dev/null @@ -1 +0,0 @@ -export const fontAwesomeAlt = ["448 512",""] \ No newline at end of file diff --git a/js/brand/forumbee.js b/js/brand/forumbee.js deleted file mode 100644 index ec181f01f..000000000 --- a/js/brand/forumbee.js +++ /dev/null @@ -1 +0,0 @@ -export const forumbee = ["448 512",""] \ No newline at end of file diff --git a/js/brand/foursquare.d.ts b/js/brand/foursquare.d.ts new file mode 100644 index 000000000..71786995b --- /dev/null +++ b/js/brand/foursquare.d.ts @@ -0,0 +1 @@ +export declare const foursquare: string[]; \ No newline at end of file diff --git a/js/brand/foursquare.js b/js/brand/foursquare.js new file mode 100644 index 000000000..658ece760 --- /dev/null +++ b/js/brand/foursquare.js @@ -0,0 +1 @@ +export const foursquare = ["32 32","foursquare"] \ No newline at end of file diff --git a/js/brand/framer.d.ts b/js/brand/framer.d.ts new file mode 100644 index 000000000..cb1845d84 --- /dev/null +++ b/js/brand/framer.d.ts @@ -0,0 +1 @@ +export declare const framer: string[]; \ No newline at end of file diff --git a/js/brand/framer.js b/js/brand/framer.js index 9b0a12f57..964e6db10 100644 --- a/js/brand/framer.js +++ b/js/brand/framer.js @@ -1 +1 @@ -export const framer = ["24 24",""] \ No newline at end of file +export const framer = ["32 32","framer"] \ No newline at end of file diff --git a/js/brand/free-code-camp.js b/js/brand/free-code-camp.js deleted file mode 100644 index 80341d46d..000000000 --- a/js/brand/free-code-camp.js +++ /dev/null @@ -1 +0,0 @@ -export const freeCodeCamp = ["576 512",""] \ No newline at end of file diff --git a/js/brand/freebsd.d.ts b/js/brand/freebsd.d.ts new file mode 100644 index 000000000..c03d264f1 --- /dev/null +++ b/js/brand/freebsd.d.ts @@ -0,0 +1 @@ +export declare const freebsd: string[]; \ No newline at end of file diff --git a/js/brand/freebsd.js b/js/brand/freebsd.js index 7c3660308..1534b259b 100644 --- a/js/brand/freebsd.js +++ b/js/brand/freebsd.js @@ -1 +1 @@ -export const freebsd = ["24 24",""] \ No newline at end of file +export const freebsd = ["32 32","freebsd"] \ No newline at end of file diff --git a/js/brand/freecodecamp.d.ts b/js/brand/freecodecamp.d.ts new file mode 100644 index 000000000..00747fe8d --- /dev/null +++ b/js/brand/freecodecamp.d.ts @@ -0,0 +1 @@ +export declare const freecodecamp: string[]; \ No newline at end of file diff --git a/js/brand/freecodecamp.js b/js/brand/freecodecamp.js index 769d8dd79..4aaa54dfa 100644 --- a/js/brand/freecodecamp.js +++ b/js/brand/freecodecamp.js @@ -1 +1 @@ -export const freecodecamp = ["24 24",""] \ No newline at end of file +export const freecodecamp = ["32 32","freecodecamp"] \ No newline at end of file diff --git a/js/brand/fulcrum.js b/js/brand/fulcrum.js deleted file mode 100644 index 3f16bed35..000000000 --- a/js/brand/fulcrum.js +++ /dev/null @@ -1 +0,0 @@ -export const fulcrum = ["320 512",""] \ No newline at end of file diff --git a/js/brand/fur-affinity.d.ts b/js/brand/fur-affinity.d.ts new file mode 100644 index 000000000..38f7d8d27 --- /dev/null +++ b/js/brand/fur-affinity.d.ts @@ -0,0 +1 @@ +export declare const furAffinity: string[]; \ No newline at end of file diff --git a/js/brand/fur-affinity.js b/js/brand/fur-affinity.js new file mode 100644 index 000000000..80cc8af5a --- /dev/null +++ b/js/brand/fur-affinity.js @@ -0,0 +1 @@ +export const furAffinity = ["32 32","fur-affinity"] \ No newline at end of file diff --git a/js/brand/furaffinity.js b/js/brand/furaffinity.js deleted file mode 100644 index 0c41e0c97..000000000 --- a/js/brand/furaffinity.js +++ /dev/null @@ -1 +0,0 @@ -export const furaffinity = ["24 24",""] \ No newline at end of file diff --git a/js/brand/furry-network.d.ts b/js/brand/furry-network.d.ts new file mode 100644 index 000000000..1cd697946 --- /dev/null +++ b/js/brand/furry-network.d.ts @@ -0,0 +1 @@ +export declare const furryNetwork: string[]; \ No newline at end of file diff --git a/js/brand/furry-network.js b/js/brand/furry-network.js new file mode 100644 index 000000000..679567bcd --- /dev/null +++ b/js/brand/furry-network.js @@ -0,0 +1 @@ +export const furryNetwork = ["32 32","furry-network"] \ No newline at end of file diff --git a/js/brand/furrynetwork.js b/js/brand/furrynetwork.js deleted file mode 100644 index 36db623b8..000000000 --- a/js/brand/furrynetwork.js +++ /dev/null @@ -1 +0,0 @@ -export const furrynetwork = ["24 24",""] \ No newline at end of file diff --git a/js/brand/galactic-republic.js b/js/brand/galactic-republic.js deleted file mode 100644 index aae6bc649..000000000 --- a/js/brand/galactic-republic.js +++ /dev/null @@ -1 +0,0 @@ -export const galacticRepublic = ["496 512",""] \ No newline at end of file diff --git a/js/brand/galactic-senate.js b/js/brand/galactic-senate.js deleted file mode 100644 index c754e5624..000000000 --- a/js/brand/galactic-senate.js +++ /dev/null @@ -1 +0,0 @@ -export const galacticSenate = ["512 512",""] \ No newline at end of file diff --git a/js/brand/garmin.d.ts b/js/brand/garmin.d.ts new file mode 100644 index 000000000..a7182b341 --- /dev/null +++ b/js/brand/garmin.d.ts @@ -0,0 +1 @@ +export declare const garmin: string[]; \ No newline at end of file diff --git a/js/brand/garmin.js b/js/brand/garmin.js index 7229bfd11..9d8ec8e58 100644 --- a/js/brand/garmin.js +++ b/js/brand/garmin.js @@ -1 +1 @@ -export const garmin = ["24 24",""] \ No newline at end of file +export const garmin = ["32 32","garmin"] \ No newline at end of file diff --git a/js/brand/gatsby.d.ts b/js/brand/gatsby.d.ts new file mode 100644 index 000000000..13cb73c7b --- /dev/null +++ b/js/brand/gatsby.d.ts @@ -0,0 +1 @@ +export declare const gatsby: string[]; \ No newline at end of file diff --git a/js/brand/gatsby.js b/js/brand/gatsby.js index 0f849b681..81cb2b830 100644 --- a/js/brand/gatsby.js +++ b/js/brand/gatsby.js @@ -1 +1 @@ -export const gatsby = ["24 24",""] \ No newline at end of file +export const gatsby = ["32 32","gatsby"] \ No newline at end of file diff --git a/js/brand/gauges.d.ts b/js/brand/gauges.d.ts new file mode 100644 index 000000000..e60c2be5f --- /dev/null +++ b/js/brand/gauges.d.ts @@ -0,0 +1 @@ +export declare const gauges: string[]; \ No newline at end of file diff --git a/js/brand/gauges.js b/js/brand/gauges.js index 910c1d9b7..3213c36e7 100644 --- a/js/brand/gauges.js +++ b/js/brand/gauges.js @@ -1 +1 @@ -export const gauges = ["24 24",""] \ No newline at end of file +export const gauges = ["32 32","gauges"] \ No newline at end of file diff --git a/js/brand/genius.d.ts b/js/brand/genius.d.ts new file mode 100644 index 000000000..caa592a39 --- /dev/null +++ b/js/brand/genius.d.ts @@ -0,0 +1 @@ +export declare const genius: string[]; \ No newline at end of file diff --git a/js/brand/genius.js b/js/brand/genius.js index 9c71eab3b..da98cda53 100644 --- a/js/brand/genius.js +++ b/js/brand/genius.js @@ -1 +1 @@ -export const genius = ["24 24",""] \ No newline at end of file +export const genius = ["32 32","genius"] \ No newline at end of file diff --git a/js/brand/gentoo.d.ts b/js/brand/gentoo.d.ts new file mode 100644 index 000000000..824ffa9d0 --- /dev/null +++ b/js/brand/gentoo.d.ts @@ -0,0 +1 @@ +export declare const gentoo: string[]; \ No newline at end of file diff --git a/js/brand/gentoo.js b/js/brand/gentoo.js index 13400a927..4a00f234c 100644 --- a/js/brand/gentoo.js +++ b/js/brand/gentoo.js @@ -1 +1 @@ -export const gentoo = ["24 24",""] \ No newline at end of file +export const gentoo = ["32 32","gentoo"] \ No newline at end of file diff --git a/js/brand/geocaching.d.ts b/js/brand/geocaching.d.ts new file mode 100644 index 000000000..059892fd0 --- /dev/null +++ b/js/brand/geocaching.d.ts @@ -0,0 +1 @@ +export declare const geocaching: string[]; \ No newline at end of file diff --git a/js/brand/geocaching.js b/js/brand/geocaching.js index 42290d18e..b32a40e42 100644 --- a/js/brand/geocaching.js +++ b/js/brand/geocaching.js @@ -1 +1 @@ -export const geocaching = ["24 24",""] \ No newline at end of file +export const geocaching = ["32 32","geocaching"] \ No newline at end of file diff --git a/js/brand/gerrit.d.ts b/js/brand/gerrit.d.ts new file mode 100644 index 000000000..60d88dff8 --- /dev/null +++ b/js/brand/gerrit.d.ts @@ -0,0 +1 @@ +export declare const gerrit: string[]; \ No newline at end of file diff --git a/js/brand/gerrit.js b/js/brand/gerrit.js index cc5279576..fe5513923 100644 --- a/js/brand/gerrit.js +++ b/js/brand/gerrit.js @@ -1 +1 @@ -export const gerrit = ["24 24",""] \ No newline at end of file +export const gerrit = ["32 32","gerrit"] \ No newline at end of file diff --git a/js/brand/get-pocket.js b/js/brand/get-pocket.js deleted file mode 100644 index e43a64c10..000000000 --- a/js/brand/get-pocket.js +++ /dev/null @@ -1 +0,0 @@ -export const getPocket = ["448 512",""] \ No newline at end of file diff --git a/js/brand/gg-circle.js b/js/brand/gg-circle.js deleted file mode 100644 index 971a99cd6..000000000 --- a/js/brand/gg-circle.js +++ /dev/null @@ -1 +0,0 @@ -export const ggCircle = ["512 512",""] \ No newline at end of file diff --git a/js/brand/gg.d.ts b/js/brand/gg.d.ts new file mode 100644 index 000000000..3f4f725bd --- /dev/null +++ b/js/brand/gg.d.ts @@ -0,0 +1 @@ +export declare const gg: string[]; \ No newline at end of file diff --git a/js/brand/gg.js b/js/brand/gg.js index c98319c60..b19a1c417 100644 --- a/js/brand/gg.js +++ b/js/brand/gg.js @@ -1 +1 @@ -export const gg = ["512 512",""] \ No newline at end of file +export const gg = ["32 32","gg"] \ No newline at end of file diff --git a/js/brand/ghost.d.ts b/js/brand/ghost.d.ts new file mode 100644 index 000000000..04512b897 --- /dev/null +++ b/js/brand/ghost.d.ts @@ -0,0 +1 @@ +export declare const ghost: string[]; \ No newline at end of file diff --git a/js/brand/ghost.js b/js/brand/ghost.js index 175f52f58..6d03f87b7 100644 --- a/js/brand/ghost.js +++ b/js/brand/ghost.js @@ -1 +1 @@ -export const ghost = ["24 24",""] \ No newline at end of file +export const ghost = ["32 32","ghost"] \ No newline at end of file diff --git a/js/brand/gimp.d.ts b/js/brand/gimp.d.ts new file mode 100644 index 000000000..9202d7dee --- /dev/null +++ b/js/brand/gimp.d.ts @@ -0,0 +1 @@ +export declare const gimp: string[]; \ No newline at end of file diff --git a/js/brand/gimp.js b/js/brand/gimp.js index 2610857f3..efb69c0ce 100644 --- a/js/brand/gimp.js +++ b/js/brand/gimp.js @@ -1 +1 @@ -export const gimp = ["24 24",""] \ No newline at end of file +export const gimp = ["32 32","gimp"] \ No newline at end of file diff --git a/js/brand/git.d.ts b/js/brand/git.d.ts new file mode 100644 index 000000000..93472e6ab --- /dev/null +++ b/js/brand/git.d.ts @@ -0,0 +1 @@ +export declare const git: string[]; \ No newline at end of file diff --git a/js/brand/git.js b/js/brand/git.js index 9613c4bcf..5145da2fa 100644 --- a/js/brand/git.js +++ b/js/brand/git.js @@ -1 +1 @@ -export const git = ["24 24",""] \ No newline at end of file +export const git = ["32 32","git"] \ No newline at end of file diff --git a/js/brand/gitea.d.ts b/js/brand/gitea.d.ts new file mode 100644 index 000000000..e7a2380fe --- /dev/null +++ b/js/brand/gitea.d.ts @@ -0,0 +1 @@ +export declare const gitea: string[]; \ No newline at end of file diff --git a/js/brand/gitea.js b/js/brand/gitea.js index 8c3955124..65af1d958 100644 --- a/js/brand/gitea.js +++ b/js/brand/gitea.js @@ -1 +1 @@ -export const gitea = ["24 24",""] \ No newline at end of file +export const gitea = ["32 32","gitea"] \ No newline at end of file diff --git a/js/brand/github-alt.js b/js/brand/github-alt.js deleted file mode 100644 index 43d4a1495..000000000 --- a/js/brand/github-alt.js +++ /dev/null @@ -1 +0,0 @@ -export const githubAlt = ["480 512",""] \ No newline at end of file diff --git a/js/brand/github.d.ts b/js/brand/github.d.ts new file mode 100644 index 000000000..80a3ce2ba --- /dev/null +++ b/js/brand/github.d.ts @@ -0,0 +1 @@ +export declare const github: string[]; \ No newline at end of file diff --git a/js/brand/github.js b/js/brand/github.js index bd828bdb9..f900cdc9c 100644 --- a/js/brand/github.js +++ b/js/brand/github.js @@ -1 +1 @@ -export const github = ["24 24",""] \ No newline at end of file +export const github = ["32 32","github"] \ No newline at end of file diff --git a/js/brand/gitkraken.d.ts b/js/brand/gitkraken.d.ts new file mode 100644 index 000000000..3dec3120c --- /dev/null +++ b/js/brand/gitkraken.d.ts @@ -0,0 +1 @@ +export declare const gitkraken: string[]; \ No newline at end of file diff --git a/js/brand/gitkraken.js b/js/brand/gitkraken.js index bf0690435..0110384d9 100644 --- a/js/brand/gitkraken.js +++ b/js/brand/gitkraken.js @@ -1 +1 @@ -export const gitkraken = ["592 512",""] \ No newline at end of file +export const gitkraken = ["32 32","gitkraken"] \ No newline at end of file diff --git a/js/brand/gitlab.d.ts b/js/brand/gitlab.d.ts new file mode 100644 index 000000000..891a1cd12 --- /dev/null +++ b/js/brand/gitlab.d.ts @@ -0,0 +1 @@ +export declare const gitlab: string[]; \ No newline at end of file diff --git a/js/brand/gitlab.js b/js/brand/gitlab.js index 5c746167a..823190375 100644 --- a/js/brand/gitlab.js +++ b/js/brand/gitlab.js @@ -1 +1 @@ -export const gitlab = ["24 24",""] \ No newline at end of file +export const gitlab = ["32 32","gitlab"] \ No newline at end of file diff --git a/js/brand/gitpod.d.ts b/js/brand/gitpod.d.ts new file mode 100644 index 000000000..561325353 --- /dev/null +++ b/js/brand/gitpod.d.ts @@ -0,0 +1 @@ +export declare const gitpod: string[]; \ No newline at end of file diff --git a/js/brand/gitpod.js b/js/brand/gitpod.js index e96ef766c..560d79423 100644 --- a/js/brand/gitpod.js +++ b/js/brand/gitpod.js @@ -1 +1 @@ -export const gitpod = ["24 24",""] \ No newline at end of file +export const gitpod = ["32 32","gitpod"] \ No newline at end of file diff --git a/js/brand/gitter.d.ts b/js/brand/gitter.d.ts new file mode 100644 index 000000000..1af41cfa2 --- /dev/null +++ b/js/brand/gitter.d.ts @@ -0,0 +1 @@ +export declare const gitter: string[]; \ No newline at end of file diff --git a/js/brand/gitter.js b/js/brand/gitter.js index 7be62060d..7eb0ea2de 100644 --- a/js/brand/gitter.js +++ b/js/brand/gitter.js @@ -1 +1 @@ -export const gitter = ["24 24",""] \ No newline at end of file +export const gitter = ["32 32","gitter"] \ No newline at end of file diff --git a/js/brand/glassdoor.d.ts b/js/brand/glassdoor.d.ts new file mode 100644 index 000000000..d4e45d5c2 --- /dev/null +++ b/js/brand/glassdoor.d.ts @@ -0,0 +1 @@ +export declare const glassdoor: string[]; \ No newline at end of file diff --git a/js/brand/glassdoor.js b/js/brand/glassdoor.js index 306396706..7bb092935 100644 --- a/js/brand/glassdoor.js +++ b/js/brand/glassdoor.js @@ -1 +1 @@ -export const glassdoor = ["24 24",""] \ No newline at end of file +export const glassdoor = ["32 32","glassdoor"] \ No newline at end of file diff --git a/js/brand/glide-g.js b/js/brand/glide-g.js deleted file mode 100644 index b2908f87d..000000000 --- a/js/brand/glide-g.js +++ /dev/null @@ -1 +0,0 @@ -export const glideG = ["448 512",""] \ No newline at end of file diff --git a/js/brand/glide.js b/js/brand/glide.js deleted file mode 100644 index e0ee7ee83..000000000 --- a/js/brand/glide.js +++ /dev/null @@ -1 +0,0 @@ -export const glide = ["448 512",""] \ No newline at end of file diff --git a/js/brand/glitch.d.ts b/js/brand/glitch.d.ts new file mode 100644 index 000000000..00e0d7490 --- /dev/null +++ b/js/brand/glitch.d.ts @@ -0,0 +1 @@ +export declare const glitch: string[]; \ No newline at end of file diff --git a/js/brand/glitch.js b/js/brand/glitch.js index 46f2b24c0..1f20056c7 100644 --- a/js/brand/glitch.js +++ b/js/brand/glitch.js @@ -1 +1 @@ -export const glitch = ["24 24",""] \ No newline at end of file +export const glitch = ["32 32","glitch"] \ No newline at end of file diff --git a/js/brand/gmail.d.ts b/js/brand/gmail.d.ts new file mode 100644 index 000000000..41ef665e3 --- /dev/null +++ b/js/brand/gmail.d.ts @@ -0,0 +1 @@ +export declare const gmail: string[]; \ No newline at end of file diff --git a/js/brand/gmail.js b/js/brand/gmail.js index f1b82c28a..da677ebd5 100644 --- a/js/brand/gmail.js +++ b/js/brand/gmail.js @@ -1 +1 @@ -export const gmail = ["24 24",""] \ No newline at end of file +export const gmail = ["32 32","gmail"] \ No newline at end of file diff --git a/js/brand/gnu-privacy-guard.d.ts b/js/brand/gnu-privacy-guard.d.ts new file mode 100644 index 000000000..4b17f1b81 --- /dev/null +++ b/js/brand/gnu-privacy-guard.d.ts @@ -0,0 +1 @@ +export declare const gnuPrivacyGuard: string[]; \ No newline at end of file diff --git a/js/brand/gnu-privacy-guard.js b/js/brand/gnu-privacy-guard.js new file mode 100644 index 000000000..707d873b4 --- /dev/null +++ b/js/brand/gnu-privacy-guard.js @@ -0,0 +1 @@ +export const gnuPrivacyGuard = ["32 32","gnu-privacy-guard"] \ No newline at end of file diff --git a/js/brand/gnu-social.d.ts b/js/brand/gnu-social.d.ts new file mode 100644 index 000000000..55dd14cdd --- /dev/null +++ b/js/brand/gnu-social.d.ts @@ -0,0 +1 @@ +export declare const gnuSocial: string[]; \ No newline at end of file diff --git a/js/brand/gnu-social.js b/js/brand/gnu-social.js new file mode 100644 index 000000000..d4b44b4ba --- /dev/null +++ b/js/brand/gnu-social.js @@ -0,0 +1 @@ +export const gnuSocial = ["32 32","gnu-social"] \ No newline at end of file diff --git a/js/brand/gnu.d.ts b/js/brand/gnu.d.ts new file mode 100644 index 000000000..b0418fc00 --- /dev/null +++ b/js/brand/gnu.d.ts @@ -0,0 +1 @@ +export declare const gnu: string[]; \ No newline at end of file diff --git a/js/brand/gnu.js b/js/brand/gnu.js index dcb64a311..4189214f1 100644 --- a/js/brand/gnu.js +++ b/js/brand/gnu.js @@ -1 +1 @@ -export const gnu = ["24 24",""] \ No newline at end of file +export const gnu = ["32 32","gnu"] \ No newline at end of file diff --git a/js/brand/gnuprivacyguard.js b/js/brand/gnuprivacyguard.js deleted file mode 100644 index 90fa0027c..000000000 --- a/js/brand/gnuprivacyguard.js +++ /dev/null @@ -1 +0,0 @@ -export const gnuprivacyguard = ["24 24",""] \ No newline at end of file diff --git a/js/brand/gnusocial.js b/js/brand/gnusocial.js deleted file mode 100644 index b35803035..000000000 --- a/js/brand/gnusocial.js +++ /dev/null @@ -1 +0,0 @@ -export const gnusocial = ["24 24",""] \ No newline at end of file diff --git a/js/brand/go.d.ts b/js/brand/go.d.ts new file mode 100644 index 000000000..7e2622949 --- /dev/null +++ b/js/brand/go.d.ts @@ -0,0 +1 @@ +export declare const go: string[]; \ No newline at end of file diff --git a/js/brand/go.js b/js/brand/go.js index ae695fb28..e226ff9d5 100644 --- a/js/brand/go.js +++ b/js/brand/go.js @@ -1 +1 @@ -export const go = ["24 24",""] \ No newline at end of file +export const go = ["32 32","go"] \ No newline at end of file diff --git a/js/brand/godot-engine.d.ts b/js/brand/godot-engine.d.ts new file mode 100644 index 000000000..f312043ea --- /dev/null +++ b/js/brand/godot-engine.d.ts @@ -0,0 +1 @@ +export declare const godotEngine: string[]; \ No newline at end of file diff --git a/js/brand/godot-engine.js b/js/brand/godot-engine.js new file mode 100644 index 000000000..2c3570faf --- /dev/null +++ b/js/brand/godot-engine.js @@ -0,0 +1 @@ +export const godotEngine = ["32 32","godot-engine"] \ No newline at end of file diff --git a/js/brand/godotengine.js b/js/brand/godotengine.js deleted file mode 100644 index 6d66d2e07..000000000 --- a/js/brand/godotengine.js +++ /dev/null @@ -1 +0,0 @@ -export const godotengine = ["24 24",""] \ No newline at end of file diff --git a/js/brand/gofore.js b/js/brand/gofore.js deleted file mode 100644 index ac153cee0..000000000 --- a/js/brand/gofore.js +++ /dev/null @@ -1 +0,0 @@ -export const gofore = ["400 512",""] \ No newline at end of file diff --git a/js/brand/gog-com.d.ts b/js/brand/gog-com.d.ts new file mode 100644 index 000000000..039a01bd8 --- /dev/null +++ b/js/brand/gog-com.d.ts @@ -0,0 +1 @@ +export declare const gogCom: string[]; \ No newline at end of file diff --git a/js/brand/gog-com.js b/js/brand/gog-com.js index 29e4b9968..6add9a3d4 100644 --- a/js/brand/gog-com.js +++ b/js/brand/gog-com.js @@ -1 +1 @@ -export const gogCom = ["24 24",""] \ No newline at end of file +export const gogCom = ["32 32","gog-com"] \ No newline at end of file diff --git a/js/brand/goldenline.d.ts b/js/brand/goldenline.d.ts new file mode 100644 index 000000000..6e62c891d --- /dev/null +++ b/js/brand/goldenline.d.ts @@ -0,0 +1 @@ +export declare const goldenline: string[]; \ No newline at end of file diff --git a/js/brand/goldenline.js b/js/brand/goldenline.js index b1fd5a78d..ada10a99d 100644 --- a/js/brand/goldenline.js +++ b/js/brand/goldenline.js @@ -1 +1 @@ -export const goldenline = ["24 24",""] \ No newline at end of file +export const goldenline = ["32 32","goldenline"] \ No newline at end of file diff --git a/js/brand/goodreads-g.js b/js/brand/goodreads-g.js deleted file mode 100644 index bde2030e6..000000000 --- a/js/brand/goodreads-g.js +++ /dev/null @@ -1 +0,0 @@ -export const goodreadsG = ["384 512",""] \ No newline at end of file diff --git a/js/brand/goodreads.d.ts b/js/brand/goodreads.d.ts new file mode 100644 index 000000000..759d1aefb --- /dev/null +++ b/js/brand/goodreads.d.ts @@ -0,0 +1 @@ +export declare const goodreads: string[]; \ No newline at end of file diff --git a/js/brand/goodreads.js b/js/brand/goodreads.js index a544ec2f0..be9ddfb1e 100644 --- a/js/brand/goodreads.js +++ b/js/brand/goodreads.js @@ -1 +1 @@ -export const goodreads = ["24 24",""] \ No newline at end of file +export const goodreads = ["32 32","goodreads"] \ No newline at end of file diff --git a/js/brand/google-ads.d.ts b/js/brand/google-ads.d.ts new file mode 100644 index 000000000..1f19c0a47 --- /dev/null +++ b/js/brand/google-ads.d.ts @@ -0,0 +1 @@ +export declare const googleAds: string[]; \ No newline at end of file diff --git a/js/brand/google-ads.js b/js/brand/google-ads.js index cf0daecac..830422b16 100644 --- a/js/brand/google-ads.js +++ b/js/brand/google-ads.js @@ -1 +1 @@ -export const googleAds = ["24 24",""] \ No newline at end of file +export const googleAds = ["32 32","google-ads"] \ No newline at end of file diff --git a/js/brand/google-allo.d.ts b/js/brand/google-allo.d.ts new file mode 100644 index 000000000..7a101c115 --- /dev/null +++ b/js/brand/google-allo.d.ts @@ -0,0 +1 @@ +export declare const googleAllo: string[]; \ No newline at end of file diff --git a/js/brand/google-allo.js b/js/brand/google-allo.js index 29ec8f9da..c5b4d218e 100644 --- a/js/brand/google-allo.js +++ b/js/brand/google-allo.js @@ -1 +1 @@ -export const googleAllo = ["24 24",""] \ No newline at end of file +export const googleAllo = ["32 32","google-allo"] \ No newline at end of file diff --git a/js/brand/google-analytics.d.ts b/js/brand/google-analytics.d.ts new file mode 100644 index 000000000..5d35bd578 --- /dev/null +++ b/js/brand/google-analytics.d.ts @@ -0,0 +1 @@ +export declare const googleAnalytics: string[]; \ No newline at end of file diff --git a/js/brand/google-analytics.js b/js/brand/google-analytics.js index c63d403ad..e3b9a2d33 100644 --- a/js/brand/google-analytics.js +++ b/js/brand/google-analytics.js @@ -1 +1 @@ -export const googleAnalytics = ["24 24",""] \ No newline at end of file +export const googleAnalytics = ["32 32","google-analytics"] \ No newline at end of file diff --git a/js/brand/google-chrome.d.ts b/js/brand/google-chrome.d.ts new file mode 100644 index 000000000..5298d3cb9 --- /dev/null +++ b/js/brand/google-chrome.d.ts @@ -0,0 +1 @@ +export declare const googleChrome: string[]; \ No newline at end of file diff --git a/js/brand/google-chrome.js b/js/brand/google-chrome.js new file mode 100644 index 000000000..f96f8e43c --- /dev/null +++ b/js/brand/google-chrome.js @@ -0,0 +1 @@ +export const googleChrome = ["32 32","google-chrome"] \ No newline at end of file diff --git a/js/brand/google-cloud.d.ts b/js/brand/google-cloud.d.ts new file mode 100644 index 000000000..42866a70c --- /dev/null +++ b/js/brand/google-cloud.d.ts @@ -0,0 +1 @@ +export declare const googleCloud: string[]; \ No newline at end of file diff --git a/js/brand/google-cloud.js b/js/brand/google-cloud.js index 186e184d1..bafe2c018 100644 --- a/js/brand/google-cloud.js +++ b/js/brand/google-cloud.js @@ -1 +1 @@ -export const googleCloud = ["24 24",""] \ No newline at end of file +export const googleCloud = ["32 32","google-cloud"] \ No newline at end of file diff --git a/js/brand/google-drive.js b/js/brand/google-drive.js deleted file mode 100644 index 4f9de322f..000000000 --- a/js/brand/google-drive.js +++ /dev/null @@ -1 +0,0 @@ -export const googleDrive = ["24 24",""] \ No newline at end of file diff --git a/js/brand/google-hangouts.js b/js/brand/google-hangouts.js deleted file mode 100644 index d61797e9d..000000000 --- a/js/brand/google-hangouts.js +++ /dev/null @@ -1 +0,0 @@ -export const googleHangouts = ["24 24",""] \ No newline at end of file diff --git a/js/brand/google-hangoutschat.js b/js/brand/google-hangoutschat.js deleted file mode 100644 index 6a8a03ca9..000000000 --- a/js/brand/google-hangoutschat.js +++ /dev/null @@ -1 +0,0 @@ -export const googleHangoutschat = ["24 24",""] \ No newline at end of file diff --git a/js/brand/google-keep.d.ts b/js/brand/google-keep.d.ts new file mode 100644 index 000000000..54d2e122d --- /dev/null +++ b/js/brand/google-keep.d.ts @@ -0,0 +1 @@ +export declare const googleKeep: string[]; \ No newline at end of file diff --git a/js/brand/google-keep.js b/js/brand/google-keep.js index f1ec0895c..1a6759aec 100644 --- a/js/brand/google-keep.js +++ b/js/brand/google-keep.js @@ -1 +1 @@ -export const googleKeep = ["24 24",""] \ No newline at end of file +export const googleKeep = ["32 32","google-keep"] \ No newline at end of file diff --git a/js/brand/google-pay.d.ts b/js/brand/google-pay.d.ts new file mode 100644 index 000000000..64e0112c4 --- /dev/null +++ b/js/brand/google-pay.d.ts @@ -0,0 +1 @@ +export declare const googlePay: string[]; \ No newline at end of file diff --git a/js/brand/google-pay.js b/js/brand/google-pay.js index f80847be2..82f0f609e 100644 --- a/js/brand/google-pay.js +++ b/js/brand/google-pay.js @@ -1 +1 @@ -export const googlePay = ["24 24",""] \ No newline at end of file +export const googlePay = ["32 32","google-pay"] \ No newline at end of file diff --git a/js/brand/google-play.d.ts b/js/brand/google-play.d.ts new file mode 100644 index 000000000..e751e53c2 --- /dev/null +++ b/js/brand/google-play.d.ts @@ -0,0 +1 @@ +export declare const googlePlay: string[]; \ No newline at end of file diff --git a/js/brand/google-play.js b/js/brand/google-play.js index f02a7a94f..5e6bbc272 100644 --- a/js/brand/google-play.js +++ b/js/brand/google-play.js @@ -1 +1 @@ -export const googlePlay = ["24 24",""] \ No newline at end of file +export const googlePlay = ["32 32","google-play"] \ No newline at end of file diff --git a/js/brand/google-podcasts.d.ts b/js/brand/google-podcasts.d.ts new file mode 100644 index 000000000..4910640b1 --- /dev/null +++ b/js/brand/google-podcasts.d.ts @@ -0,0 +1 @@ +export declare const googlePodcasts: string[]; \ No newline at end of file diff --git a/js/brand/google-podcasts.js b/js/brand/google-podcasts.js index d21dac4fc..7427f21f0 100644 --- a/js/brand/google-podcasts.js +++ b/js/brand/google-podcasts.js @@ -1 +1 @@ -export const googlePodcasts = ["24 24",""] \ No newline at end of file +export const googlePodcasts = ["32 32","google-podcasts"] \ No newline at end of file diff --git a/js/brand/google-scholar.js b/js/brand/google-scholar.js deleted file mode 100644 index c06ca9271..000000000 --- a/js/brand/google-scholar.js +++ /dev/null @@ -1 +0,0 @@ -export const googleScholar = ["24 24",""] \ No newline at end of file diff --git a/js/brand/google-wallet.js b/js/brand/google-wallet.js deleted file mode 100644 index d780a490b..000000000 --- a/js/brand/google-wallet.js +++ /dev/null @@ -1 +0,0 @@ -export const googleWallet = ["448 512",""] \ No newline at end of file diff --git a/js/brand/google.d.ts b/js/brand/google.d.ts new file mode 100644 index 000000000..e585be8c3 --- /dev/null +++ b/js/brand/google.d.ts @@ -0,0 +1 @@ +export declare const google: string[]; \ No newline at end of file diff --git a/js/brand/google.js b/js/brand/google.js index 65424575f..440300d06 100644 --- a/js/brand/google.js +++ b/js/brand/google.js @@ -1 +1 @@ -export const google = ["24 24",""] \ No newline at end of file +export const google = ["32 32","google"] \ No newline at end of file diff --git a/js/brand/googles-cholar.d.ts b/js/brand/googles-cholar.d.ts new file mode 100644 index 000000000..738d770a6 --- /dev/null +++ b/js/brand/googles-cholar.d.ts @@ -0,0 +1 @@ +export declare const googlesCholar: string[]; \ No newline at end of file diff --git a/js/brand/googles-cholar.js b/js/brand/googles-cholar.js new file mode 100644 index 000000000..a8ca3a880 --- /dev/null +++ b/js/brand/googles-cholar.js @@ -0,0 +1 @@ +export const googlesCholar = ["32 32","googles-cholar"] \ No newline at end of file diff --git a/js/brand/gov-uk.d.ts b/js/brand/gov-uk.d.ts new file mode 100644 index 000000000..eb326fcf0 --- /dev/null +++ b/js/brand/gov-uk.d.ts @@ -0,0 +1 @@ +export declare const govUk: string[]; \ No newline at end of file diff --git a/js/brand/gov-uk.js b/js/brand/gov-uk.js index e57eb8b40..69f97c288 100644 --- a/js/brand/gov-uk.js +++ b/js/brand/gov-uk.js @@ -1 +1 @@ -export const govUk = ["24 24",""] \ No newline at end of file +export const govUk = ["32 32","gov-uk"] \ No newline at end of file diff --git a/js/brand/gradle.d.ts b/js/brand/gradle.d.ts new file mode 100644 index 000000000..6fb1c0eec --- /dev/null +++ b/js/brand/gradle.d.ts @@ -0,0 +1 @@ +export declare const gradle: string[]; \ No newline at end of file diff --git a/js/brand/gradle.js b/js/brand/gradle.js index 2a4540457..04a44120d 100644 --- a/js/brand/gradle.js +++ b/js/brand/gradle.js @@ -1 +1 @@ -export const gradle = ["24 24",""] \ No newline at end of file +export const gradle = ["32 32","gradle"] \ No newline at end of file diff --git a/js/brand/grafana.d.ts b/js/brand/grafana.d.ts new file mode 100644 index 000000000..14b64dc18 --- /dev/null +++ b/js/brand/grafana.d.ts @@ -0,0 +1 @@ +export declare const grafana: string[]; \ No newline at end of file diff --git a/js/brand/grafana.js b/js/brand/grafana.js index fadf8e012..790abce8c 100644 --- a/js/brand/grafana.js +++ b/js/brand/grafana.js @@ -1 +1 @@ -export const grafana = ["24 24",""] \ No newline at end of file +export const grafana = ["32 32","grafana"] \ No newline at end of file diff --git a/js/brand/graphcool.d.ts b/js/brand/graphcool.d.ts new file mode 100644 index 000000000..b2e85ed1f --- /dev/null +++ b/js/brand/graphcool.d.ts @@ -0,0 +1 @@ +export declare const graphcool: string[]; \ No newline at end of file diff --git a/js/brand/graphcool.js b/js/brand/graphcool.js index c91c1ab57..f9a70225d 100644 --- a/js/brand/graphcool.js +++ b/js/brand/graphcool.js @@ -1 +1 @@ -export const graphcool = ["24 24",""] \ No newline at end of file +export const graphcool = ["32 32","graphcool"] \ No newline at end of file diff --git a/js/brand/graphql.d.ts b/js/brand/graphql.d.ts new file mode 100644 index 000000000..953cd00fd --- /dev/null +++ b/js/brand/graphql.d.ts @@ -0,0 +1 @@ +export declare const graphql: string[]; \ No newline at end of file diff --git a/js/brand/graphql.js b/js/brand/graphql.js index 17dc83b42..bc5089fda 100644 --- a/js/brand/graphql.js +++ b/js/brand/graphql.js @@ -1 +1 @@ -export const graphql = ["24 24",""] \ No newline at end of file +export const graphql = ["32 32","graphql"] \ No newline at end of file diff --git a/js/brand/gratipay.js b/js/brand/gratipay.js deleted file mode 100644 index 5560a708e..000000000 --- a/js/brand/gratipay.js +++ /dev/null @@ -1 +0,0 @@ -export const gratipay = ["496 512",""] \ No newline at end of file diff --git a/js/brand/grav.d.ts b/js/brand/grav.d.ts new file mode 100644 index 000000000..7fcc2de1f --- /dev/null +++ b/js/brand/grav.d.ts @@ -0,0 +1 @@ +export declare const grav: string[]; \ No newline at end of file diff --git a/js/brand/grav.js b/js/brand/grav.js index 32ea46951..7827b1148 100644 --- a/js/brand/grav.js +++ b/js/brand/grav.js @@ -1 +1 @@ -export const grav = ["24 24",""] \ No newline at end of file +export const grav = ["32 32","grav"] \ No newline at end of file diff --git a/js/brand/gravatar.d.ts b/js/brand/gravatar.d.ts new file mode 100644 index 000000000..425803ba5 --- /dev/null +++ b/js/brand/gravatar.d.ts @@ -0,0 +1 @@ +export declare const gravatar: string[]; \ No newline at end of file diff --git a/js/brand/gravatar.js b/js/brand/gravatar.js index 211e2708b..9cb2064e1 100644 --- a/js/brand/gravatar.js +++ b/js/brand/gravatar.js @@ -1 +1 @@ -export const gravatar = ["24 24",""] \ No newline at end of file +export const gravatar = ["32 32","gravatar"] \ No newline at end of file diff --git a/js/brand/greenkeeper.d.ts b/js/brand/greenkeeper.d.ts new file mode 100644 index 000000000..5785e9564 --- /dev/null +++ b/js/brand/greenkeeper.d.ts @@ -0,0 +1 @@ +export declare const greenkeeper: string[]; \ No newline at end of file diff --git a/js/brand/greenkeeper.js b/js/brand/greenkeeper.js index ecb26db93..bf7f2844d 100644 --- a/js/brand/greenkeeper.js +++ b/js/brand/greenkeeper.js @@ -1 +1 @@ -export const greenkeeper = ["24 24",""] \ No newline at end of file +export const greenkeeper = ["32 32","greenkeeper"] \ No newline at end of file diff --git a/js/brand/greensock.d.ts b/js/brand/greensock.d.ts new file mode 100644 index 000000000..5cf4951d3 --- /dev/null +++ b/js/brand/greensock.d.ts @@ -0,0 +1 @@ +export declare const greensock: string[]; \ No newline at end of file diff --git a/js/brand/greensock.js b/js/brand/greensock.js index 3014379c2..18404aa22 100644 --- a/js/brand/greensock.js +++ b/js/brand/greensock.js @@ -1 +1 @@ -export const greensock = ["24 24",""] \ No newline at end of file +export const greensock = ["32 32","greensock"] \ No newline at end of file diff --git a/js/brand/gripfire.js b/js/brand/gripfire.js deleted file mode 100644 index 8ab22272d..000000000 --- a/js/brand/gripfire.js +++ /dev/null @@ -1 +0,0 @@ -export const gripfire = ["384 512",""] \ No newline at end of file diff --git a/js/brand/groovy.d.ts b/js/brand/groovy.d.ts new file mode 100644 index 000000000..7d490fc09 --- /dev/null +++ b/js/brand/groovy.d.ts @@ -0,0 +1 @@ +export declare const groovy: string[]; \ No newline at end of file diff --git a/js/brand/groovy.js b/js/brand/groovy.js index f6411bf7c..aecdc0f32 100644 --- a/js/brand/groovy.js +++ b/js/brand/groovy.js @@ -1 +1 @@ -export const groovy = ["24 24",""] \ No newline at end of file +export const groovy = ["32 32","groovy"] \ No newline at end of file diff --git a/js/brand/groupon.d.ts b/js/brand/groupon.d.ts new file mode 100644 index 000000000..cd65f1de7 --- /dev/null +++ b/js/brand/groupon.d.ts @@ -0,0 +1 @@ +export declare const groupon: string[]; \ No newline at end of file diff --git a/js/brand/groupon.js b/js/brand/groupon.js index de39f0ad9..cda60259e 100644 --- a/js/brand/groupon.js +++ b/js/brand/groupon.js @@ -1 +1 @@ -export const groupon = ["24 24",""] \ No newline at end of file +export const groupon = ["32 32","groupon"] \ No newline at end of file diff --git a/js/brand/grunt.d.ts b/js/brand/grunt.d.ts new file mode 100644 index 000000000..bf0ba199c --- /dev/null +++ b/js/brand/grunt.d.ts @@ -0,0 +1 @@ +export declare const grunt: string[]; \ No newline at end of file diff --git a/js/brand/grunt.js b/js/brand/grunt.js index 8377f3f34..a9a8f0c4a 100644 --- a/js/brand/grunt.js +++ b/js/brand/grunt.js @@ -1 +1 @@ -export const grunt = ["384 512",""] \ No newline at end of file +export const grunt = ["32 32","grunt"] \ No newline at end of file diff --git a/js/brand/gulp.d.ts b/js/brand/gulp.d.ts new file mode 100644 index 000000000..d95121567 --- /dev/null +++ b/js/brand/gulp.d.ts @@ -0,0 +1 @@ +export declare const gulp: string[]; \ No newline at end of file diff --git a/js/brand/gulp.js b/js/brand/gulp.js index 72389e190..0220087c8 100644 --- a/js/brand/gulp.js +++ b/js/brand/gulp.js @@ -1 +1 @@ -export const gulp = ["24 24",""] \ No newline at end of file +export const gulp = ["32 32","gulp"] \ No newline at end of file diff --git a/js/brand/gumroad.d.ts b/js/brand/gumroad.d.ts new file mode 100644 index 000000000..eb0e4f72d --- /dev/null +++ b/js/brand/gumroad.d.ts @@ -0,0 +1 @@ +export declare const gumroad: string[]; \ No newline at end of file diff --git a/js/brand/gumroad.js b/js/brand/gumroad.js index 7d240b5f3..974daf988 100644 --- a/js/brand/gumroad.js +++ b/js/brand/gumroad.js @@ -1 +1 @@ -export const gumroad = ["24 24",""] \ No newline at end of file +export const gumroad = ["32 32","gumroad"] \ No newline at end of file diff --git a/js/brand/gumtree.d.ts b/js/brand/gumtree.d.ts new file mode 100644 index 000000000..c655ca144 --- /dev/null +++ b/js/brand/gumtree.d.ts @@ -0,0 +1 @@ +export declare const gumtree: string[]; \ No newline at end of file diff --git a/js/brand/gumtree.js b/js/brand/gumtree.js index 861d5d366..08222f3cc 100644 --- a/js/brand/gumtree.js +++ b/js/brand/gumtree.js @@ -1 +1 @@ -export const gumtree = ["24 24",""] \ No newline at end of file +export const gumtree = ["32 32","gumtree"] \ No newline at end of file diff --git a/js/brand/habr.d.ts b/js/brand/habr.d.ts new file mode 100644 index 000000000..1192e48a9 --- /dev/null +++ b/js/brand/habr.d.ts @@ -0,0 +1 @@ +export declare const habr: string[]; \ No newline at end of file diff --git a/js/brand/habr.js b/js/brand/habr.js index 43b8a4ce9..b5991f9e8 100644 --- a/js/brand/habr.js +++ b/js/brand/habr.js @@ -1 +1 @@ -export const habr = ["24 24",""] \ No newline at end of file +export const habr = ["32 32","habr"] \ No newline at end of file diff --git a/js/brand/hackaday.d.ts b/js/brand/hackaday.d.ts new file mode 100644 index 000000000..7741a0cc0 --- /dev/null +++ b/js/brand/hackaday.d.ts @@ -0,0 +1 @@ +export declare const hackaday: string[]; \ No newline at end of file diff --git a/js/brand/hackaday.js b/js/brand/hackaday.js index 0b048c0d6..a9ea79c7a 100644 --- a/js/brand/hackaday.js +++ b/js/brand/hackaday.js @@ -1 +1 @@ -export const hackaday = ["24 24",""] \ No newline at end of file +export const hackaday = ["32 32","hackaday"] \ No newline at end of file diff --git a/js/brand/hacker-news.js b/js/brand/hacker-news.js deleted file mode 100644 index 4a36314d0..000000000 --- a/js/brand/hacker-news.js +++ /dev/null @@ -1 +0,0 @@ -export const hackerNews = ["448 512",""] \ No newline at end of file diff --git a/js/brand/hackerearth.d.ts b/js/brand/hackerearth.d.ts new file mode 100644 index 000000000..7d479eba8 --- /dev/null +++ b/js/brand/hackerearth.d.ts @@ -0,0 +1 @@ +export declare const hackerearth: string[]; \ No newline at end of file diff --git a/js/brand/hackerearth.js b/js/brand/hackerearth.js index 51ecce6bb..68a2f07f3 100644 --- a/js/brand/hackerearth.js +++ b/js/brand/hackerearth.js @@ -1 +1 @@ -export const hackerearth = ["24 24",""] \ No newline at end of file +export const hackerearth = ["32 32","hackerearth"] \ No newline at end of file diff --git a/js/brand/hackerone.d.ts b/js/brand/hackerone.d.ts new file mode 100644 index 000000000..7506bc63a --- /dev/null +++ b/js/brand/hackerone.d.ts @@ -0,0 +1 @@ +export declare const hackerone: string[]; \ No newline at end of file diff --git a/js/brand/hackerone.js b/js/brand/hackerone.js index 51f981cf1..7ea648ca1 100644 --- a/js/brand/hackerone.js +++ b/js/brand/hackerone.js @@ -1 +1 @@ -export const hackerone = ["24 24",""] \ No newline at end of file +export const hackerone = ["32 32","hackerone"] \ No newline at end of file diff --git a/js/brand/hackerrank.d.ts b/js/brand/hackerrank.d.ts new file mode 100644 index 000000000..7b90de7e4 --- /dev/null +++ b/js/brand/hackerrank.d.ts @@ -0,0 +1 @@ +export declare const hackerrank: string[]; \ No newline at end of file diff --git a/js/brand/hackerrank.js b/js/brand/hackerrank.js index e2939b893..368428dcb 100644 --- a/js/brand/hackerrank.js +++ b/js/brand/hackerrank.js @@ -1 +1 @@ -export const hackerrank = ["24 24",""] \ No newline at end of file +export const hackerrank = ["32 32","hackerrank"] \ No newline at end of file diff --git a/js/brand/hackhands.d.ts b/js/brand/hackhands.d.ts new file mode 100644 index 000000000..a31eb3881 --- /dev/null +++ b/js/brand/hackhands.d.ts @@ -0,0 +1 @@ +export declare const hackhands: string[]; \ No newline at end of file diff --git a/js/brand/hackhands.js b/js/brand/hackhands.js index e13d300c4..364167eff 100644 --- a/js/brand/hackhands.js +++ b/js/brand/hackhands.js @@ -1 +1 @@ -export const hackhands = ["24 24",""] \ No newline at end of file +export const hackhands = ["32 32","hackhands"] \ No newline at end of file diff --git a/js/brand/hackster.d.ts b/js/brand/hackster.d.ts new file mode 100644 index 000000000..d069e601a --- /dev/null +++ b/js/brand/hackster.d.ts @@ -0,0 +1 @@ +export declare const hackster: string[]; \ No newline at end of file diff --git a/js/brand/hackster.js b/js/brand/hackster.js index dbbfeb1d4..0828a7daf 100644 --- a/js/brand/hackster.js +++ b/js/brand/hackster.js @@ -1 +1 @@ -export const hackster = ["24 24",""] \ No newline at end of file +export const hackster = ["32 32","hackster"] \ No newline at end of file diff --git a/js/brand/happycow.d.ts b/js/brand/happycow.d.ts new file mode 100644 index 000000000..c3ea83e44 --- /dev/null +++ b/js/brand/happycow.d.ts @@ -0,0 +1 @@ +export declare const happycow: string[]; \ No newline at end of file diff --git a/js/brand/happycow.js b/js/brand/happycow.js index 9807fa42c..23b1fb674 100644 --- a/js/brand/happycow.js +++ b/js/brand/happycow.js @@ -1 +1 @@ -export const happycow = ["24 24",""] \ No newline at end of file +export const happycow = ["32 32","happycow"] \ No newline at end of file diff --git a/js/brand/hashnode.d.ts b/js/brand/hashnode.d.ts new file mode 100644 index 000000000..703b30274 --- /dev/null +++ b/js/brand/hashnode.d.ts @@ -0,0 +1 @@ +export declare const hashnode: string[]; \ No newline at end of file diff --git a/js/brand/hashnode.js b/js/brand/hashnode.js index 59c8b03eb..a532b9929 100644 --- a/js/brand/hashnode.js +++ b/js/brand/hashnode.js @@ -1 +1 @@ -export const hashnode = ["24 24",""] \ No newline at end of file +export const hashnode = ["32 32","hashnode"] \ No newline at end of file diff --git a/js/brand/haskell.d.ts b/js/brand/haskell.d.ts new file mode 100644 index 000000000..24ec32547 --- /dev/null +++ b/js/brand/haskell.d.ts @@ -0,0 +1 @@ +export declare const haskell: string[]; \ No newline at end of file diff --git a/js/brand/haskell.js b/js/brand/haskell.js index 8c86e6725..a781db1fe 100644 --- a/js/brand/haskell.js +++ b/js/brand/haskell.js @@ -1 +1 @@ -export const haskell = ["24 24",""] \ No newline at end of file +export const haskell = ["32 32","haskell"] \ No newline at end of file diff --git a/js/brand/hatena-bookmark.d.ts b/js/brand/hatena-bookmark.d.ts new file mode 100644 index 000000000..bd24c4c01 --- /dev/null +++ b/js/brand/hatena-bookmark.d.ts @@ -0,0 +1 @@ +export declare const hatenaBookmark: string[]; \ No newline at end of file diff --git a/js/brand/hatena-bookmark.js b/js/brand/hatena-bookmark.js new file mode 100644 index 000000000..4d71c0ce6 --- /dev/null +++ b/js/brand/hatena-bookmark.js @@ -0,0 +1 @@ +export const hatenaBookmark = ["32 32","hatena-bookmark"] \ No newline at end of file diff --git a/js/brand/hatenabookmark.js b/js/brand/hatenabookmark.js deleted file mode 100644 index b0562c3e0..000000000 --- a/js/brand/hatenabookmark.js +++ /dev/null @@ -1 +0,0 @@ -export const hatenabookmark = ["24 24",""] \ No newline at end of file diff --git a/js/brand/haxe.d.ts b/js/brand/haxe.d.ts new file mode 100644 index 000000000..70e61faea --- /dev/null +++ b/js/brand/haxe.d.ts @@ -0,0 +1 @@ +export declare const haxe: string[]; \ No newline at end of file diff --git a/js/brand/haxe.js b/js/brand/haxe.js index a484fbff2..c8f6c76f8 100644 --- a/js/brand/haxe.js +++ b/js/brand/haxe.js @@ -1 +1 @@ -export const haxe = ["24 24",""] \ No newline at end of file +export const haxe = ["32 32","haxe"] \ No newline at end of file diff --git a/js/brand/helm.d.ts b/js/brand/helm.d.ts new file mode 100644 index 000000000..ccafb988a --- /dev/null +++ b/js/brand/helm.d.ts @@ -0,0 +1 @@ +export declare const helm: string[]; \ No newline at end of file diff --git a/js/brand/helm.js b/js/brand/helm.js index b617765ed..e7941bd4b 100644 --- a/js/brand/helm.js +++ b/js/brand/helm.js @@ -1 +1 @@ -export const helm = ["24 24",""] \ No newline at end of file +export const helm = ["32 32","helm"] \ No newline at end of file diff --git a/js/brand/here.d.ts b/js/brand/here.d.ts new file mode 100644 index 000000000..55d1a8ec6 --- /dev/null +++ b/js/brand/here.d.ts @@ -0,0 +1 @@ +export declare const here: string[]; \ No newline at end of file diff --git a/js/brand/here.js b/js/brand/here.js index 6bd44619d..e041960cc 100644 --- a/js/brand/here.js +++ b/js/brand/here.js @@ -1 +1 @@ -export const here = ["24 24",""] \ No newline at end of file +export const here = ["32 32","here"] \ No newline at end of file diff --git a/js/brand/heroku.d.ts b/js/brand/heroku.d.ts new file mode 100644 index 000000000..108ce0ae3 --- /dev/null +++ b/js/brand/heroku.d.ts @@ -0,0 +1 @@ +export declare const heroku: string[]; \ No newline at end of file diff --git a/js/brand/heroku.js b/js/brand/heroku.js index 95e30b607..c8f815893 100644 --- a/js/brand/heroku.js +++ b/js/brand/heroku.js @@ -1 +1 @@ -export const heroku = ["24 24",""] \ No newline at end of file +export const heroku = ["32 32","heroku"] \ No newline at end of file diff --git a/js/brand/hexo.d.ts b/js/brand/hexo.d.ts new file mode 100644 index 000000000..1419a4320 --- /dev/null +++ b/js/brand/hexo.d.ts @@ -0,0 +1 @@ +export declare const hexo: string[]; \ No newline at end of file diff --git a/js/brand/hexo.js b/js/brand/hexo.js index 228d7a1f1..06b9ea632 100644 --- a/js/brand/hexo.js +++ b/js/brand/hexo.js @@ -1 +1 @@ -export const hexo = ["24 24",""] \ No newline at end of file +export const hexo = ["32 32","hexo"] \ No newline at end of file diff --git a/js/brand/highly.d.ts b/js/brand/highly.d.ts new file mode 100644 index 000000000..17c5dfcc4 --- /dev/null +++ b/js/brand/highly.d.ts @@ -0,0 +1 @@ +export declare const highly: string[]; \ No newline at end of file diff --git a/js/brand/highly.js b/js/brand/highly.js index 4dcf35a15..729a3bb96 100644 --- a/js/brand/highly.js +++ b/js/brand/highly.js @@ -1 +1 @@ -export const highly = ["24 24",""] \ No newline at end of file +export const highly = ["32 32","highly"] \ No newline at end of file diff --git a/js/brand/hipchat.d.ts b/js/brand/hipchat.d.ts new file mode 100644 index 000000000..3559f90fe --- /dev/null +++ b/js/brand/hipchat.d.ts @@ -0,0 +1 @@ +export declare const hipchat: string[]; \ No newline at end of file diff --git a/js/brand/hipchat.js b/js/brand/hipchat.js index a75b43c71..f3bc2bd5a 100644 --- a/js/brand/hipchat.js +++ b/js/brand/hipchat.js @@ -1 +1 @@ -export const hipchat = ["24 24",""] \ No newline at end of file +export const hipchat = ["32 32","hipchat"] \ No newline at end of file diff --git a/js/brand/hips.js b/js/brand/hips.js deleted file mode 100644 index c7f961b3c..000000000 --- a/js/brand/hips.js +++ /dev/null @@ -1 +0,0 @@ -export const hips = ["640 512",""] \ No newline at end of file diff --git a/js/brand/hire-a-helper.js b/js/brand/hire-a-helper.js deleted file mode 100644 index 18a83f7a0..000000000 --- a/js/brand/hire-a-helper.js +++ /dev/null @@ -1 +0,0 @@ -export const hireAHelper = ["512 512",""] \ No newline at end of file diff --git a/js/brand/hitachi.d.ts b/js/brand/hitachi.d.ts new file mode 100644 index 000000000..a3fd47382 --- /dev/null +++ b/js/brand/hitachi.d.ts @@ -0,0 +1 @@ +export declare const hitachi: string[]; \ No newline at end of file diff --git a/js/brand/hitachi.js b/js/brand/hitachi.js index 2b66e4817..febe99c48 100644 --- a/js/brand/hitachi.js +++ b/js/brand/hitachi.js @@ -1 +1 @@ -export const hitachi = ["24 24",""] \ No newline at end of file +export const hitachi = ["32 32","hitachi"] \ No newline at end of file diff --git a/js/brand/hockeyapp.d.ts b/js/brand/hockeyapp.d.ts new file mode 100644 index 000000000..c492c29dc --- /dev/null +++ b/js/brand/hockeyapp.d.ts @@ -0,0 +1 @@ +export declare const hockeyapp: string[]; \ No newline at end of file diff --git a/js/brand/hockeyapp.js b/js/brand/hockeyapp.js index 39fea3dd7..132b2d716 100644 --- a/js/brand/hockeyapp.js +++ b/js/brand/hockeyapp.js @@ -1 +1 @@ -export const hockeyapp = ["24 24",""] \ No newline at end of file +export const hockeyapp = ["32 32","hockeyapp"] \ No newline at end of file diff --git a/js/brand/homify.d.ts b/js/brand/homify.d.ts new file mode 100644 index 000000000..68612b46b --- /dev/null +++ b/js/brand/homify.d.ts @@ -0,0 +1 @@ +export declare const homify: string[]; \ No newline at end of file diff --git a/js/brand/homify.js b/js/brand/homify.js index db16a4d97..d8ea28944 100644 --- a/js/brand/homify.js +++ b/js/brand/homify.js @@ -1 +1 @@ -export const homify = ["24 24",""] \ No newline at end of file +export const homify = ["32 32","homify"] \ No newline at end of file diff --git a/js/brand/hooli.js b/js/brand/hooli.js deleted file mode 100644 index cb56f517f..000000000 --- a/js/brand/hooli.js +++ /dev/null @@ -1 +0,0 @@ -export const hooli = ["640 512",""] \ No newline at end of file diff --git a/js/brand/hootsuite.d.ts b/js/brand/hootsuite.d.ts new file mode 100644 index 000000000..f81d2517f --- /dev/null +++ b/js/brand/hootsuite.d.ts @@ -0,0 +1 @@ +export declare const hootsuite: string[]; \ No newline at end of file diff --git a/js/brand/hootsuite.js b/js/brand/hootsuite.js index 13adf25de..7eeeeb860 100644 --- a/js/brand/hootsuite.js +++ b/js/brand/hootsuite.js @@ -1 +1 @@ -export const hootsuite = ["24 24",""] \ No newline at end of file +export const hootsuite = ["32 32","hootsuite"] \ No newline at end of file diff --git a/js/brand/hornbill.js b/js/brand/hornbill.js deleted file mode 100644 index b1e703a8f..000000000 --- a/js/brand/hornbill.js +++ /dev/null @@ -1 +0,0 @@ -export const hornbill = ["512 512",""] \ No newline at end of file diff --git a/js/brand/hotjar.d.ts b/js/brand/hotjar.d.ts new file mode 100644 index 000000000..502aadc3a --- /dev/null +++ b/js/brand/hotjar.d.ts @@ -0,0 +1 @@ +export declare const hotjar: string[]; \ No newline at end of file diff --git a/js/brand/hotjar.js b/js/brand/hotjar.js index 8387d2a7d..b0c9679ba 100644 --- a/js/brand/hotjar.js +++ b/js/brand/hotjar.js @@ -1 +1 @@ -export const hotjar = ["448 512",""] \ No newline at end of file +export const hotjar = ["32 32","hotjar"] \ No newline at end of file diff --git a/js/brand/houzz.d.ts b/js/brand/houzz.d.ts new file mode 100644 index 000000000..2bdadf1d7 --- /dev/null +++ b/js/brand/houzz.d.ts @@ -0,0 +1 @@ +export declare const houzz: string[]; \ No newline at end of file diff --git a/js/brand/houzz.js b/js/brand/houzz.js index 14b26efcd..8d13280a3 100644 --- a/js/brand/houzz.js +++ b/js/brand/houzz.js @@ -1 +1 @@ -export const houzz = ["24 24",""] \ No newline at end of file +export const houzz = ["32 32","houzz"] \ No newline at end of file diff --git a/js/brand/hp.d.ts b/js/brand/hp.d.ts new file mode 100644 index 000000000..a1d9621b6 --- /dev/null +++ b/js/brand/hp.d.ts @@ -0,0 +1 @@ +export declare const hp: string[]; \ No newline at end of file diff --git a/js/brand/hp.js b/js/brand/hp.js index 849d77c1e..09ea109a0 100644 --- a/js/brand/hp.js +++ b/js/brand/hp.js @@ -1 +1 @@ -export const hp = ["24 24",""] \ No newline at end of file +export const hp = ["32 32","hp"] \ No newline at end of file diff --git a/js/brand/html5-shield.d.ts b/js/brand/html5-shield.d.ts new file mode 100644 index 000000000..7267f2ebd --- /dev/null +++ b/js/brand/html5-shield.d.ts @@ -0,0 +1 @@ +export declare const html5Shield: string[]; \ No newline at end of file diff --git a/js/brand/html5-shield.js b/js/brand/html5-shield.js new file mode 100644 index 000000000..71721cca8 --- /dev/null +++ b/js/brand/html5-shield.js @@ -0,0 +1 @@ +export const html5Shield = ["32 32","html5-shield"] \ No newline at end of file diff --git a/js/brand/html5.d.ts b/js/brand/html5.d.ts new file mode 100644 index 000000000..ead30b721 --- /dev/null +++ b/js/brand/html5.d.ts @@ -0,0 +1 @@ +export declare const html5: string[]; \ No newline at end of file diff --git a/js/brand/html5.js b/js/brand/html5.js index 68cd0fd28..12577f308 100644 --- a/js/brand/html5.js +++ b/js/brand/html5.js @@ -1 +1 @@ -export const html5 = ["24 24",""] \ No newline at end of file +export const html5 = ["32 32","html5"] \ No newline at end of file diff --git a/js/brand/htmlacademy.d.ts b/js/brand/htmlacademy.d.ts new file mode 100644 index 000000000..17dd0f113 --- /dev/null +++ b/js/brand/htmlacademy.d.ts @@ -0,0 +1 @@ +export declare const htmlacademy: string[]; \ No newline at end of file diff --git a/js/brand/htmlacademy.js b/js/brand/htmlacademy.js index 08b4928a0..0bdbd5459 100644 --- a/js/brand/htmlacademy.js +++ b/js/brand/htmlacademy.js @@ -1 +1 @@ -export const htmlacademy = ["24 24",""] \ No newline at end of file +export const htmlacademy = ["32 32","htmlacademy"] \ No newline at end of file diff --git a/js/brand/huawei.d.ts b/js/brand/huawei.d.ts new file mode 100644 index 000000000..10c1f89dd --- /dev/null +++ b/js/brand/huawei.d.ts @@ -0,0 +1 @@ +export declare const huawei: string[]; \ No newline at end of file diff --git a/js/brand/huawei.js b/js/brand/huawei.js index cbfbd0821..dd810a756 100644 --- a/js/brand/huawei.js +++ b/js/brand/huawei.js @@ -1 +1 @@ -export const huawei = ["24 24",""] \ No newline at end of file +export const huawei = ["32 32","huawei"] \ No newline at end of file diff --git a/js/brand/hubspot.d.ts b/js/brand/hubspot.d.ts new file mode 100644 index 000000000..1e70ba2db --- /dev/null +++ b/js/brand/hubspot.d.ts @@ -0,0 +1 @@ +export declare const hubspot: string[]; \ No newline at end of file diff --git a/js/brand/hubspot.js b/js/brand/hubspot.js index 388aea146..76a55a1ae 100644 --- a/js/brand/hubspot.js +++ b/js/brand/hubspot.js @@ -1 +1 @@ -export const hubspot = ["24 24",""] \ No newline at end of file +export const hubspot = ["32 32","hubspot"] \ No newline at end of file diff --git a/js/brand/hulu.d.ts b/js/brand/hulu.d.ts new file mode 100644 index 000000000..cc51d6c59 --- /dev/null +++ b/js/brand/hulu.d.ts @@ -0,0 +1 @@ +export declare const hulu: string[]; \ No newline at end of file diff --git a/js/brand/hulu.js b/js/brand/hulu.js index 821aad792..7d73022aa 100644 --- a/js/brand/hulu.js +++ b/js/brand/hulu.js @@ -1 +1 @@ -export const hulu = ["24 24",""] \ No newline at end of file +export const hulu = ["32 32","hulu"] \ No newline at end of file diff --git a/js/brand/humble-bundle.d.ts b/js/brand/humble-bundle.d.ts new file mode 100644 index 000000000..75d9bc11a --- /dev/null +++ b/js/brand/humble-bundle.d.ts @@ -0,0 +1 @@ +export declare const humbleBundle: string[]; \ No newline at end of file diff --git a/js/brand/humble-bundle.js b/js/brand/humble-bundle.js new file mode 100644 index 000000000..8aca4bb6e --- /dev/null +++ b/js/brand/humble-bundle.js @@ -0,0 +1 @@ +export const humbleBundle = ["32 32","humble-bundle"] \ No newline at end of file diff --git a/js/brand/humblebundle.js b/js/brand/humblebundle.js deleted file mode 100644 index 47e7c0a06..000000000 --- a/js/brand/humblebundle.js +++ /dev/null @@ -1 +0,0 @@ -export const humblebundle = ["24 24",""] \ No newline at end of file diff --git a/js/brand/hurriyetemlak.js b/js/brand/hurriyetemlak.js deleted file mode 100644 index 04f40ca50..000000000 --- a/js/brand/hurriyetemlak.js +++ /dev/null @@ -1 +0,0 @@ -export const hurriyetemlak = ["24 24",""] \ No newline at end of file diff --git a/js/brand/iata.d.ts b/js/brand/iata.d.ts new file mode 100644 index 000000000..6f0c3eee7 --- /dev/null +++ b/js/brand/iata.d.ts @@ -0,0 +1 @@ +export declare const iata: string[]; \ No newline at end of file diff --git a/js/brand/iata.js b/js/brand/iata.js index 448f17f1d..e28b9e6c4 100644 --- a/js/brand/iata.js +++ b/js/brand/iata.js @@ -1 +1 @@ -export const iata = ["24 24",""] \ No newline at end of file +export const iata = ["32 32","iata"] \ No newline at end of file diff --git a/js/brand/ibm.d.ts b/js/brand/ibm.d.ts new file mode 100644 index 000000000..3cd23908a --- /dev/null +++ b/js/brand/ibm.d.ts @@ -0,0 +1 @@ +export declare const ibm: string[]; \ No newline at end of file diff --git a/js/brand/ibm.js b/js/brand/ibm.js index 8cb1298c1..26111e633 100644 --- a/js/brand/ibm.js +++ b/js/brand/ibm.js @@ -1 +1 @@ -export const ibm = ["24 24",""] \ No newline at end of file +export const ibm = ["32 32","ibm"] \ No newline at end of file diff --git a/js/brand/icloud.d.ts b/js/brand/icloud.d.ts new file mode 100644 index 000000000..06013fc8f --- /dev/null +++ b/js/brand/icloud.d.ts @@ -0,0 +1 @@ +export declare const icloud: string[]; \ No newline at end of file diff --git a/js/brand/icloud.js b/js/brand/icloud.js index eaf835878..75ed8bfb3 100644 --- a/js/brand/icloud.js +++ b/js/brand/icloud.js @@ -1 +1 @@ -export const icloud = ["24 24",""] \ No newline at end of file +export const icloud = ["32 32","icloud"] \ No newline at end of file diff --git a/js/brand/iconjar.d.ts b/js/brand/iconjar.d.ts new file mode 100644 index 000000000..a6eb6d1af --- /dev/null +++ b/js/brand/iconjar.d.ts @@ -0,0 +1 @@ +export declare const iconjar: string[]; \ No newline at end of file diff --git a/js/brand/iconjar.js b/js/brand/iconjar.js index 3cc2b3249..2e5cf06bf 100644 --- a/js/brand/iconjar.js +++ b/js/brand/iconjar.js @@ -1 +1 @@ -export const iconjar = ["24 24",""] \ No newline at end of file +export const iconjar = ["32 32","iconjar"] \ No newline at end of file diff --git a/js/brand/icq.d.ts b/js/brand/icq.d.ts new file mode 100644 index 000000000..0e7a00bf1 --- /dev/null +++ b/js/brand/icq.d.ts @@ -0,0 +1 @@ +export declare const icq: string[]; \ No newline at end of file diff --git a/js/brand/icq.js b/js/brand/icq.js index 650cadfa0..e025b5243 100644 --- a/js/brand/icq.js +++ b/js/brand/icq.js @@ -1 +1 @@ -export const icq = ["24 24",""] \ No newline at end of file +export const icq = ["32 32","icq"] \ No newline at end of file diff --git a/js/brand/ideal.d.ts b/js/brand/ideal.d.ts new file mode 100644 index 000000000..f46740265 --- /dev/null +++ b/js/brand/ideal.d.ts @@ -0,0 +1 @@ +export declare const ideal: string[]; \ No newline at end of file diff --git a/js/brand/ideal.js b/js/brand/ideal.js index b9d74a43d..c106a7c79 100644 --- a/js/brand/ideal.js +++ b/js/brand/ideal.js @@ -1 +1 @@ -export const ideal = ["24 24",""] \ No newline at end of file +export const ideal = ["32 32","ideal"] \ No newline at end of file diff --git a/js/brand/ifixit.d.ts b/js/brand/ifixit.d.ts new file mode 100644 index 000000000..ffafc1e61 --- /dev/null +++ b/js/brand/ifixit.d.ts @@ -0,0 +1 @@ +export declare const ifixit: string[]; \ No newline at end of file diff --git a/js/brand/ifixit.js b/js/brand/ifixit.js index be21099a8..69823f65d 100644 --- a/js/brand/ifixit.js +++ b/js/brand/ifixit.js @@ -1 +1 @@ -export const ifixit = ["24 24",""] \ No newline at end of file +export const ifixit = ["32 32","ifixit"] \ No newline at end of file diff --git a/js/brand/imdb.d.ts b/js/brand/imdb.d.ts new file mode 100644 index 000000000..df7f2c4a4 --- /dev/null +++ b/js/brand/imdb.d.ts @@ -0,0 +1 @@ +export declare const imdb: string[]; \ No newline at end of file diff --git a/js/brand/imdb.js b/js/brand/imdb.js index c78b3f562..48e7e4f0b 100644 --- a/js/brand/imdb.js +++ b/js/brand/imdb.js @@ -1 +1 @@ -export const imdb = ["24 24",""] \ No newline at end of file +export const imdb = ["32 32","imdb"] \ No newline at end of file diff --git a/js/brand/indeed.d.ts b/js/brand/indeed.d.ts new file mode 100644 index 000000000..d41b0fddb --- /dev/null +++ b/js/brand/indeed.d.ts @@ -0,0 +1 @@ +export declare const indeed: string[]; \ No newline at end of file diff --git a/js/brand/indeed.js b/js/brand/indeed.js index 6ebad0e84..1ef26a8e4 100644 --- a/js/brand/indeed.js +++ b/js/brand/indeed.js @@ -1 +1 @@ -export const indeed = ["24 24",""] \ No newline at end of file +export const indeed = ["32 32","indeed"] \ No newline at end of file diff --git a/js/brand/index.d.ts b/js/brand/index.d.ts index 2215ef542..bdcd4146c 100644 --- a/js/brand/index.d.ts +++ b/js/brand/index.d.ts @@ -1,56 +1,882 @@ -export declare const n500px: string[]; +export declare const brandSet: { + "n500px5": string[]; + "aboutMe": string[]; + "n500px": string[]; + "abstract": string[]; + "acm": string[]; + "addthis": string[]; + "adobeAcrobatReader": string[]; + "adguard": string[]; + "adobeAudition": string[]; + "adobeAftereFfects": string[]; + "adobeCreativeCloud": string[]; + "adobeDreamweaver": string[]; + "adobeIndesign": string[]; + "adobeIllustrator": string[]; + "adobeLightroomClassic": string[]; + "adobeLightroom": string[]; + "adobePremiere": string[]; + "adobePhotoshop": string[]; + "adobeTypekit": string[]; + "adobeXd": string[]; + "adobe": string[]; + "airbnb": string[]; + "algolia": string[]; + "alipay": string[]; + "allocine": string[]; + "amazonAws": string[]; + "amazonPay": string[]; + "amd": string[]; + "amazon": string[]; + "americanExpress": string[]; + "anaconda": string[]; + "analogue": string[]; + "androidAlt": string[]; + "android": string[]; + "angellist": string[]; + "angularUniversal": string[]; + "ansible": string[]; + "angular": string[]; + "apacheAirflow": string[]; + "apacheSpark": string[]; + "appStoreIos": string[]; + "apache": string[]; + "appleMusic": string[]; + "appStore": string[]; + "applePay": string[]; + "applePodcasts": string[]; + "appveyor": string[]; + "apple": string[]; + "aral": string[]; + "archLinux": string[]; + "archiveOfOurOwn": string[]; + "arduino": string[]; + "artstation": string[]; + "arxiv": string[]; + "asana": string[]; + "atAndT": string[]; + "atom": string[]; + "audible": string[]; + "atlassian": string[]; + "auth0": string[]; + "automatic": string[]; + "aurelia": string[]; + "autotask": string[]; + "aventrix": string[]; + "azureArtifacts": string[]; + "azureDevops": string[]; + "azurePipelines": string[]; + "baidu": string[]; + "bamboo": string[]; + "bandcamp": string[]; + "bancontact": string[]; + "bathasu": string[]; + "basecamp": string[]; + "bigCartel": string[]; + "behance": string[]; + "bing": string[]; + "bit": string[]; + "bitbucket": string[]; + "bitcoin": string[]; + "bitdefender": string[]; + "bitly": string[]; + "blackberry": string[]; + "bloggerB": string[]; + "blender": string[]; + "blogger": string[]; + "bluetoothB": string[]; + "bluetooth": string[]; + "boeing": string[]; + "boost": string[]; + "bootstrap": string[]; + "bower": string[]; + "brandAi": string[]; + "brave": string[]; + "btc": string[]; + "buddy": string[]; + "buyMeACoffee": string[]; + "buffer": string[]; + "buysellads": string[]; + "buzzfeed": string[]; + "cakephp": string[]; + "c": string[]; + "campaignMonitor": string[]; + "cashapp": string[]; + "canva": string[]; + "cassandra": string[]; + "castro": string[]; + "ccAmazonPay": string[]; + "ccApplePay": string[]; + "ccDinersClub": string[]; + "ccAmex": string[]; + "ccDiscover": string[]; + "ccJcb": string[]; + "ccPaypal": string[]; + "ccMastercard": string[]; + "ccStripe": string[]; + "ccVisa": string[]; + "cevo": string[]; + "centos": string[]; + "chase": string[]; + "chef": string[]; + "chromecast": string[]; + "circle": string[]; + "circleci": string[]; + "civicrm": string[]; + "cisco": string[]; + "cirrusci": string[]; + "clockify": string[]; + "cloudflare": string[]; + "clojure": string[]; + "cloudbees": string[]; + "coOp": string[]; + "codacy": string[]; + "cmake": string[]; + "codeClimate": string[]; + "codecademy": string[]; + "codecov": string[]; + "codeigniter": string[]; + "codepen": string[]; + "coderwall": string[]; + "codesandbox": string[]; + "codeship": string[]; + "codio": string[]; + "coffeescript": string[]; + "commonWorkflowLanguage": string[]; + "condaForge": string[]; + "conekta": string[]; + "confluence": string[]; + "coreui": string[]; + "coursera": string[]; + "coreuiC": string[]; + "coveralls": string[]; + "cplusplus": string[]; + "creativeCommonsBy": string[]; + "cpanel": string[]; + "creativeCommonsNcEu": string[]; + "creativeCommonsNcJp": string[]; + "creativeCommonsNc": string[]; + "creativeCommonsNd": string[]; + "creativeCommonsPdAlt": string[]; + "creativeCommonsPd": string[]; + "creativeCommonsRemix": string[]; + "creativeCommonsSa": string[]; + "creativeCommonsSamplingPlus": string[]; + "creativeCommonsSampling": string[]; + "creativeCommonsShare": string[]; + "creativeCommonsZero": string[]; + "creativeCommons": string[]; + "crunchyroll": string[]; + "crunchbase": string[]; + "css3Shiled": string[]; + "css3": string[]; + "d3Js": string[]; + "csswizardry": string[]; + "dailymotion": string[]; + "dashlane": string[]; + "dazn": string[]; + "dblp": string[]; + "debian": string[]; + "deepin": string[]; + "deezer": string[]; + "delicious": string[]; + "dell": string[]; + "designerNews": string[]; + "dependabot": string[]; + "devTo": string[]; + "deviantart": string[]; + "devrant": string[]; + "diaspora": string[]; + "digitalOcean": string[]; + "discord": string[]; + "digg": string[]; + "discourse": string[]; + "discover": string[]; + "disqus": string[]; + "disroot": string[]; + "docker": string[]; + "django": string[]; + "docusign": string[]; + "dotNet": string[]; + "dribbble": string[]; + "drone": string[]; + "draugiemLv": string[]; + "dropbox": string[]; + "drupal": string[]; + "duckduckgo": string[]; + "dtube": string[]; + "ebay": string[]; + "dynatrace": string[]; + "eclipseide": string[]; + "elasticSearch": string[]; + "elasticCloud": string[]; + "elementary": string[]; + "elasticStack": string[]; + "elastic": string[]; + "electron": string[]; + "eleventy": string[]; + "ello": string[]; + "emlakjet": string[]; + "empirekred": string[]; + "envato": string[]; + "epson": string[]; + "esea": string[]; + "eslint": string[]; + "ethereum": string[]; + "etsy": string[]; + "eventStore": string[]; + "eventbrite": string[]; + "evernote": string[]; + "everplaces": string[]; + "evry": string[]; + "expertsExchange": string[]; + "exercism": string[]; + "eyeem": string[]; + "expo": string[]; + "facebookF": string[]; + "fSecure": string[]; + "facebook": string[]; + "faceit": string[]; + "fandango": string[]; + "favro": string[]; + "feathub": string[]; + "fedora": string[]; + "fedex": string[]; + "feedly": string[]; + "fidoAlliance": string[]; + "figma": string[]; + "filezilla": string[]; + "firebase": string[]; + "fitbit": string[]; + "flickr": string[]; + "flattr": string[]; + "fnac": string[]; + "flipboard": string[]; + "foursquare": string[]; + "flutter": string[]; + "freebsd": string[]; + "framer": string[]; + "freecodecamp": string[]; + "furAffinity": string[]; + "furryNetwork": string[]; + "garmin": string[]; + "gatsby": string[]; + "gauges": string[]; + "genius": string[]; + "gentoo": string[]; + "geocaching": string[]; + "gg": string[]; + "ghost": string[]; + "gimp": string[]; + "git": string[]; + "gitea": string[]; + "github": string[]; + "gitkraken": string[]; + "gitlab": string[]; + "gitpod": string[]; + "gitter": string[]; + "glassdoor": string[]; + "gmail": string[]; + "gnuPrivacyGuard": string[]; + "glitch": string[]; + "gnuSocial": string[]; + "go": string[]; + "gogCom": string[]; + "goldenline": string[]; + "godotEngine": string[]; + "goodreads": string[]; + "googleAds": string[]; + "googleAnalytics": string[]; + "googleChrome": string[]; + "googleAllo": string[]; + "googleCloud": string[]; + "googleKeep": string[]; + "googlePay": string[]; + "googlePlay": string[]; + "govUk": string[]; + "google": string[]; + "gradle": string[]; + "googlesCholar": string[]; + "googlePodcasts": string[]; + "grafana": string[]; + "graphql": string[]; + "grav": string[]; + "graphcool": string[]; + "greenkeeper": string[]; + "gravatar": string[]; + "groupon": string[]; + "groovy": string[]; + "grunt": string[]; + "gulp": string[]; + "gumtree": string[]; + "gumroad": string[]; + "habr": string[]; + "hackerearth": string[]; + "hackerone": string[]; + "hackaday": string[]; + "hackerrank": string[]; + "hackhands": string[]; + "hackster": string[]; + "happycow": string[]; + "hashnode": string[]; + "haskell": string[]; + "hatenaBookmark": string[]; + "haxe": string[]; + "heroku": string[]; + "here": string[]; + "helm": string[]; + "hexo": string[]; + "highly": string[]; + "hipchat": string[]; + "hitachi": string[]; + "hockeyapp": string[]; + "homify": string[]; + "hotjar": string[]; + "hootsuite": string[]; + "houzz": string[]; + "hp": string[]; + "html5Shield": string[]; + "html5": string[]; + "htmlacademy": string[]; + "huawei": string[]; + "hubspot": string[]; + "hulu": string[]; + "humbleBundle": string[]; + "iata": string[]; + "ibm": string[]; + "icloud": string[]; + "ideal": string[]; + "ifixit": string[]; + "icq": string[]; + "imdb": string[]; + "iconjar": string[]; + "inkscape": string[]; + "indeed": string[]; + "instacart": string[]; + "instagram": string[]; + "instapaper": string[]; + "intellijidea": string[]; + "intel": string[]; + "intercom": string[]; + "ionic": string[]; + "invision": string[]; + "internetExplorer": string[]; + "issuu": string[]; + "jabber": string[]; + "itchIo": string[]; + "javascript": string[]; + "java": string[]; + "jekyll": string[]; + "jenkins": string[]; + "jest": string[]; + "jet": string[]; + "jetbrains": string[]; + "jira": string[]; + "joomla": string[]; + "js": string[]; + "jquery": string[]; + "jsfiddle": string[]; + "jsdelivr": string[]; + "justgiving": string[]; + "json": string[]; + "jupyter": string[]; + "kaggle": string[]; + "kaspersky": string[]; + "kaios": string[]; + "kentico": string[]; + "keras": string[]; + "keybase": string[]; + "keycdn": string[]; + "khanAcademy": string[]; + "kibana": string[]; + "kickstarter": string[]; + "kik": string[]; + "klout": string[]; + "kirby": string[]; + "kodi": string[]; + "koFi": string[]; + "koding": string[]; + "known": string[]; + "kotlin": string[]; + "krita": string[]; + "lanyrd": string[]; + "kubernetes": string[]; + "laravelHorizon": string[]; + "laravelNova": string[]; + "lastFm": string[]; + "laravel": string[]; + "latex": string[]; + "launchpad": string[]; + "leetcode": string[]; + "lenovo": string[]; + "less": string[]; + "letsEncrypt": string[]; + "lgtm": string[]; + "letterboxd": string[]; + "liberapay": string[]; + "librarything": string[]; + "libreoffice": string[]; + "line": string[]; + "linkedinIn": string[]; + "linkedin": string[]; + "linuxFoundation": string[]; + "linuxMint": string[]; + "linux": string[]; + "livejournal": string[]; + "livestream": string[]; + "lua": string[]; + "lumen": string[]; + "logstash": string[]; + "lyft": string[]; + "macys": string[]; + "magento": string[]; + "magisk": string[]; + "mailRu": string[]; + "makerbot": string[]; + "mailchimp": string[]; + "markdown": string[]; + "manjaro": string[]; + "marketo": string[]; + "mastercard": string[]; + "mastodon": string[]; + "materialDesign": string[]; + "matrix": string[]; + "mathworks": string[]; + "matternet": string[]; + "maxcdn": string[]; + "mcafee": string[]; + "mattermost": string[]; + "mediafire": string[]; + "mediumM": string[]; + "mediaTemple": string[]; + "meetup": string[]; + "medium": string[]; + "mega": string[]; + "messenger": string[]; + "mendeley": string[]; + "microBlog": string[]; + "meteor": string[]; + "microgenetics": string[]; + "microsoftEdge": string[]; + "microsoft": string[]; + "minetest": string[]; + "minutemailer": string[]; + "mix": string[]; + "mixcloud": string[]; + "mojang": string[]; + "monero": string[]; + "mixer": string[]; + "monkeytie": string[]; + "mongodb": string[]; + "monogram": string[]; + "monzo": string[]; + "moo": string[]; + "mozillaFirefox": string[]; + "mozilla": string[]; + "musescore": string[]; + "mxlinux": string[]; + "myspace": string[]; + "nativescript": string[]; + "nec": string[]; + "neo4j": string[]; + "mysql": string[]; + "netlify": string[]; + "nextJs": string[]; + "nextcloud": string[]; + "netflix": string[]; + "nextdoor": string[]; + "nginx": string[]; + "nim": string[]; + "nintendoGamecube": string[]; + "nintendoSwitch": string[]; + "nintendo": string[]; + "nintendo3ds": string[]; + "nodemon": string[]; + "nodeRed": string[]; + "nodeJs": string[]; + "nokia": string[]; + "notion": string[]; + "npm": string[]; + "nucleo": string[]; + "nvidia": string[]; + "nuget": string[]; + "nuxtJs": string[]; + "ocaml": string[]; + "octave": string[]; + "oculus": string[]; + "octopusDeploy": string[]; + "odnoklassniki": string[]; + "openCollective": string[]; + "openAccess": string[]; + "openId": string[]; + "openSourceInitiative": string[]; + "openstreetmap": string[]; + "openvpn": string[]; + "opensuse": string[]; + "opera": string[]; + "opsgenie": string[]; + "oracle": string[]; + "orcid": string[]; + "origin": string[]; + "osmc": string[]; + "osi": string[]; + "overcast": string[]; + "ovh": string[]; + "palantir": string[]; + "pagekit": string[]; + "overleaf": string[]; + "pandora": string[]; + "pantheon": string[]; + "paypal": string[]; + "php": string[]; + "patreon": string[]; + "periscope": string[]; + "pinboard": string[]; + "picartoTv": string[]; + "pingdom": string[]; + "pingup": string[]; + "pinterestP": string[]; + "pinterest": string[]; + "pivotaltracker": string[]; + "plangrid": string[]; + "playerMe": string[]; + "playerfm": string[]; + "playstation": string[]; + "playstation3": string[]; + "playstation4": string[]; + "plesk": string[]; + "plex": string[]; + "plurk": string[]; + "pluralsight": string[]; + "pocket": string[]; + "postman": string[]; + "postwoman": string[]; + "postgresql": string[]; + "prismic": string[]; + "powershell": string[]; + "prettier": string[]; + "probot": string[]; + "productHunt": string[]; + "processwire": string[]; + "protonmail": string[]; + "protoIo": string[]; + "proxmox": string[]; + "pypi": string[]; + "pytorch": string[]; + "python": string[]; + "qiita": string[]; + "qgis": string[]; + "qq": string[]; + "qualcomm": string[]; + "quantcast": string[]; + "quantopian": string[]; + "quarkus": string[]; + "qwiklabs": string[]; + "qzone": string[]; + "quora": string[]; + "r": string[]; + "radiopublic": string[]; + "rails": string[]; + "raspberryPi": string[]; + "readTheDocs": string[]; + "react": string[]; + "readme": string[]; + "realm": string[]; + "redbubble": string[]; + "reason": string[]; + "redditAlt": string[]; + "redhat": string[]; + "reddit": string[]; + "redis": string[]; + "riot": string[]; + "redux": string[]; + "reverbnation": string[]; + "renren": string[]; + "riseup": string[]; + "ripple": string[]; + "rollupJs": string[]; + "roots": string[]; + "rss": string[]; + "rstudio": string[]; + "roundcube": string[]; + "ruby": string[]; + "rubygems": string[]; + "runkeeper": string[]; + "safari": string[]; + "rust": string[]; + "sahibinden": string[]; + "salesforce": string[]; + "saltstack": string[]; + "samsungPay": string[]; + "sap": string[]; + "samsung": string[]; + "sassAlt": string[]; + "sass": string[]; + "scala": string[]; + "saucelabs": string[]; + "scribd": string[]; + "scaleway": string[]; + "scrutinizerci": string[]; + "seagate": string[]; + "sega": string[]; + "sellfy": string[]; + "semaphoreci": string[]; + "sentry": string[]; + "sensu": string[]; + "serverFault": string[]; + "shazam": string[]; + "shopify": string[]; + "shell": string[]; + "showpad": string[]; + "signal": string[]; + "sinaWeibo": string[]; + "siemens": string[]; + "sitepoint": string[]; + "sketch": string[]; + "skillshare": string[]; + "skyliner": string[]; + "skype": string[]; + "slack": string[]; + "slashdot": string[]; + "slickpic": string[]; + "slides": string[]; + "slideshare": string[]; + "smashingmagazine": string[]; + "snapchat": string[]; + "snapcraft": string[]; + "snyk": string[]; + "society6": string[]; + "socketIo": string[]; + "sogou": string[]; + "songkick": string[]; + "solus": string[]; + "sourceforge": string[]; + "sourcegraph": string[]; + "soundcloud": string[]; + "sonos": string[]; + "spacemacs": string[]; + "spacex": string[]; + "sparkfun": string[]; + "sparkpost": string[]; + "spdx": string[]; + "spectrum": string[]; + "spotify": string[]; + "spreaker": string[]; + "speakerDeck": string[]; + "spring": string[]; + "spotlight": string[]; + "sprint": string[]; + "stackexchange": string[]; + "stackoverflow": string[]; + "stackbit": string[]; + "squarespace": string[]; + "stadia": string[]; + "stackshare": string[]; + "stackpath": string[]; + "statamic": string[]; + "staticman": string[]; + "statuspage": string[]; + "steam": string[]; + "steem": string[]; + "steemit": string[]; + "stitcher": string[]; + "storify": string[]; + "strapi": string[]; + "storybook": string[]; + "strava": string[]; + "stripe": string[]; + "stubhub": string[]; + "stripeS": string[]; + "stumbleupon": string[]; + "styleshare": string[]; + "stylus": string[]; + "sublimeText": string[]; + "subversion": string[]; + "superuser": string[]; + "svelte": string[]; + "svg": string[]; + "swagger": string[]; + "swarm": string[]; + "swift": string[]; + "symantec": string[]; + "symfony": string[]; + "synology": string[]; + "tMobile": string[]; + "tableau": string[]; + "tails": string[]; + "tapas": string[]; + "teamviewer": string[]; + "ted": string[]; + "teespring": string[]; + "telegramPlane": string[]; + "telegram": string[]; + "tencentQq": string[]; + "tensorflow": string[]; + "terraform": string[]; + "tencentWeibo": string[]; + "tesla": string[]; + "theMighty": string[]; + "tidal": string[]; + "theMovieDatabase": string[]; + "tinder": string[]; + "tiktok": string[]; + "todoist": string[]; + "toggl": string[]; + "topcoder": string[]; + "tor": string[]; + "toptal": string[]; + "trainerroad": string[]; + "toshiba": string[]; + "trakt": string[]; + "treehouse": string[]; + "trello": string[]; + "tripadvisor": string[]; + "tumblr": string[]; + "trulia": string[]; + "twilio": string[]; + "twitch": string[]; + "twitter": string[]; + "twoo": string[]; + "typescript": string[]; + "uber": string[]; + "typo3": string[]; + "ublockOrigin": string[]; + "ubisoft": string[]; + "ubuntu": string[]; + "udacity": string[]; + "udemy": string[]; + "uikit": string[]; + "unrealEngine": string[]; + "unity": string[]; + "umbraco": string[]; + "unsplash": string[]; + "untappd": string[]; + "upwork": string[]; + "usb": string[]; + "v8": string[]; + "vagrant": string[]; + "verizon": string[]; + "venmo": string[]; + "viber": string[]; + "vim": string[]; + "viadeo": string[]; + "vimeoV": string[]; + "vimeo": string[]; + "vine": string[]; + "virb": string[]; + "visa": string[]; + "visualStudioCode": string[]; + "visualStudio": string[]; + "vk": string[]; + "vlc": string[]; + "vsco": string[]; + "vueJs": string[]; + "weasyl": string[]; + "wattpad": string[]; + "webpack": string[]; + "webcomponentsOrg": string[]; + "webstorm": string[]; + "wechat": string[]; + "whatsapp": string[]; + "wii": string[]; + "whenIWork": string[]; + "wikipedia": string[]; + "wiiu": string[]; + "windows": string[]; + "wire": string[]; + "wireguard": string[]; + "wix": string[]; + "wolframLanguage": string[]; + "wolframMathematica": string[]; + "wolfram": string[]; + "wordpress": string[]; + "wpengine": string[]; + "xPack": string[]; + "xbox": string[]; + "xcode": string[]; + "xero": string[]; + "xiaomi": string[]; + "xing": string[]; + "xrp": string[]; + "xsplit": string[]; + "yCombinator": string[]; + "yahoo": string[]; + "yammer": string[]; + "yandex": string[]; + "yarn": string[]; + "yelp": string[]; + "youtube": string[]; + "zalando": string[]; + "zapier": string[]; + "zeit": string[]; + "zendesk": string[]; + "zerply": string[]; + "zillow": string[]; + "zingat": string[]; + "zoom": string[]; + "zorin": string[]; + "zulip": string[]; + "deno": string[]; + "epicGames": string[]; + "flask": string[]; + "gerrit": string[]; + "greensock": string[]; + "travisci": string[]; + "apacheFlink": string[]; + "babel": string[]; + "codewars": string[]; + "gnu": string[]; + "composer": string[]; + "elsevier": string[]; +} +export declare const n500px5: string[]; export declare const aboutMe: string[]; +export declare const n500px: string[]; export declare const abstract: string[]; -export declare const accusoft: string[]; export declare const acm: string[]; -export declare const acquisitionsIncorporated: string[]; export declare const addthis: string[]; -export declare const adguard: string[]; -export declare const adn: string[]; export declare const adobeAcrobatReader: string[]; -export declare const adobeAfterEffects: string[]; +export declare const adguard: string[]; export declare const adobeAudition: string[]; +export declare const adobeAftereFfects: string[]; export declare const adobeCreativeCloud: string[]; export declare const adobeDreamweaver: string[]; -export declare const adobeIllustrator: string[]; export declare const adobeIndesign: string[]; -export declare const adobeLightroomcc: string[]; -export declare const adobeLightroomclassic: string[]; -export declare const adobePhotoshop: string[]; +export declare const adobeIllustrator: string[]; +export declare const adobeLightroomClassic: string[]; +export declare const adobeLightroom: string[]; export declare const adobePremiere: string[]; +export declare const adobePhotoshop: string[]; export declare const adobeTypekit: string[]; export declare const adobeXd: string[]; export declare const adobe: string[]; -export declare const adversal: string[]; -export declare const affiliatetheme: string[]; export declare const airbnb: string[]; export declare const algolia: string[]; export declare const alipay: string[]; export declare const allocine: string[]; export declare const amazonAws: string[]; export declare const amazonPay: string[]; -export declare const amazon: string[]; export declare const amd: string[]; +export declare const amazon: string[]; export declare const americanExpress: string[]; -export declare const amilia: string[]; export declare const anaconda: string[]; export declare const analogue: string[]; export declare const androidAlt: string[]; export declare const android: string[]; export declare const angellist: string[]; -export declare const angrycreative: string[]; export declare const angularUniversal: string[]; -export declare const angular: string[]; export declare const ansible: string[]; +export declare const angular: string[]; export declare const apacheAirflow: string[]; -export declare const apacheFlink: string[]; export declare const apacheSpark: string[]; +export declare const appStoreIos: string[]; export declare const apache: string[]; +export declare const appleMusic: string[]; export declare const appStore: string[]; -export declare const apper: string[]; export declare const applePay: string[]; -export declare const apple: string[]; +export declare const applePodcasts: string[]; export declare const appveyor: string[]; +export declare const apple: string[]; export declare const aral: string[]; export declare const archLinux: string[]; export declare const archiveOfOurOwn: string[]; @@ -58,44 +884,34 @@ export declare const arduino: string[]; export declare const artstation: string[]; export declare const arxiv: string[]; export declare const asana: string[]; -export declare const asymmetrik: string[]; export declare const atAndT: string[]; -export declare const atlassian: string[]; export declare const atom: string[]; export declare const audible: string[]; -export declare const aurelia: string[]; +export declare const atlassian: string[]; export declare const auth0: string[]; export declare const automatic: string[]; -export declare const autoprefixer: string[]; +export declare const aurelia: string[]; export declare const autotask: string[]; export declare const aventrix: string[]; -export declare const avianex: string[]; -export declare const aviato: string[]; -export declare const aws: string[]; export declare const azureArtifacts: string[]; export declare const azureDevops: string[]; export declare const azurePipelines: string[]; -export declare const babel: string[]; export declare const baidu: string[]; export declare const bamboo: string[]; -export declare const bancontact: string[]; export declare const bandcamp: string[]; -export declare const basecamp: string[]; +export declare const bancontact: string[]; export declare const bathasu: string[]; -export declare const battleNet: string[]; -export declare const beats: string[]; -export declare const behance: string[]; +export declare const basecamp: string[]; export declare const bigCartel: string[]; -export declare const bimobject: string[]; +export declare const behance: string[]; export declare const bing: string[]; export declare const bit: string[]; export declare const bitbucket: string[]; export declare const bitcoin: string[]; export declare const bitdefender: string[]; export declare const bitly: string[]; -export declare const bity: string[]; -export declare const blackTie: string[]; export declare const blackberry: string[]; +export declare const bloggerB: string[]; export declare const blender: string[]; export declare const blogger: string[]; export declare const bluetoothB: string[]; @@ -105,1092 +921,68 @@ export declare const boost: string[]; export declare const bootstrap: string[]; export declare const bower: string[]; export declare const brandAi: string[]; -export declare const brandSet: { - "500px": string[]; - "aboutMe": string[]; - "abstract": string[]; - "accusoft": string[]; - "acquisitionsIncorporated": string[]; - "acm": string[]; - "addthis": string[]; - "adguard": string[]; - "adn": string[]; - "adobeAcrobatReader": string[]; - "adobeAfterEffects": string[]; - "adobeCreativeCloud": string[]; - "adobeDreamweaver": string[]; - "adobeAudition": string[]; - "adobeLightroomcc": string[]; - "adobeLightroomclassic": string[]; - "adobeIllustrator": string[]; - "adobePhotoshop": string[]; - "adobeIndesign": string[]; - "adobePremiere": string[]; - "adobeXd": string[]; - "adobeTypekit": string[]; - "adobe": string[]; - "adversal": string[]; - "airbnb": string[]; - "algolia": string[]; - "alipay": string[]; - "affiliatetheme": string[]; - "amazonAws": string[]; - "allocine": string[]; - "amazonPay": string[]; - "amazon": string[]; - "amd": string[]; - "americanExpress": string[]; - "amilia": string[]; - "anaconda": string[]; - "androidAlt": string[]; - "analogue": string[]; - "angellist": string[]; - "android": string[]; - "angularUniversal": string[]; - "angrycreative": string[]; - "ansible": string[]; - "angular": string[]; - "apacheAirflow": string[]; - "apache": string[]; - "apacheSpark": string[]; - "apper": string[]; - "appStore": string[]; - "apple": string[]; - "applePay": string[]; - "appveyor": string[]; - "aral": string[]; - "archiveOfOurOwn": string[]; - "archLinux": string[]; - "asana": string[]; - "arxiv": string[]; - "artstation": string[]; - "arduino": string[]; - "asymmetrik": string[]; - "atAndT": string[]; - "atlassian": string[]; - "atom": string[]; - "audible": string[]; - "auth0": string[]; - "aurelia": string[]; - "automatic": string[]; - "autoprefixer": string[]; - "autotask": string[]; - "aviato": string[]; - "aventrix": string[]; - "aws": string[]; - "avianex": string[]; - "azureArtifacts": string[]; - "azureDevops": string[]; - "azurePipelines": string[]; - "baidu": string[]; - "bamboo": string[]; - "bandcamp": string[]; - "bancontact": string[]; - "basecamp": string[]; - "battleNet": string[]; - "bathasu": string[]; - "beats": string[]; - "bigCartel": string[]; - "behance": string[]; - "bimobject": string[]; - "bing": string[]; - "bitbucket": string[]; - "bit": string[]; - "bitdefender": string[]; - "bitcoin": string[]; - "bity": string[]; - "blackTie": string[]; - "blackberry": string[]; - "bitly": string[]; - "blogger": string[]; - "blender": string[]; - "bluetoothB": string[]; - "bluetooth": string[]; - "bootstrap": string[]; - "bower": string[]; - "boost": string[]; - "boeing": string[]; - "brandAi": string[]; - "brave": string[]; - "buddy": string[]; - "btc": string[]; - "buymeacoffee": string[]; - "buffer": string[]; - "buzzfeed": string[]; - "buromobelexperte": string[]; - "buysellads": string[]; - "cakephp": string[]; - "c": string[]; - "campaignMonitor": string[]; - "canadianMapleLeaf": string[]; - "cashapp": string[]; - "ccAmazonPay": string[]; - "canva": string[]; - "castorama": string[]; - "cassandra": string[]; - "castro": string[]; - "ccApplePay": string[]; - "ccJcb": string[]; - "ccDinersClub": string[]; - "ccAmex": string[]; - "ccMastercard": string[]; - "ccDiscover": string[]; - "ccStripe": string[]; - "ccVisa": string[]; - "ccPaypal": string[]; - "centos": string[]; - "cevo": string[]; - "chase": string[]; - "centercode": string[]; - "chrome": string[]; - "chef": string[]; - "circleCi": string[]; - "chromecast": string[]; - "clockify": string[]; - "civicrm": string[]; - "cirrusci": string[]; - "clojure": string[]; - "cloudscale": string[]; - "cloudbees": string[]; - "cloudflare": string[]; - "cisco": string[]; - "cloudsmith": string[]; - "cloudversify": string[]; - "circle": string[]; - "cmake": string[]; - "codacy": string[]; - "coOp": string[]; - "codecademy": string[]; - "codeclimate": string[]; - "codefactor": string[]; - "codecov": string[]; - "codeforces": string[]; - "codeigniter": string[]; - "codesandbox": string[]; - "codepen": string[]; - "codeship": string[]; - "coderwall": string[]; - "codiepie": string[]; - "codio": string[]; - "coffeescript": string[]; - "commonworkflowlanguage": string[]; - "compropago": string[]; - "conekta": string[]; - "condaForge": string[]; - "connectdevelop": string[]; - "confluence": string[]; - "cpanel": string[]; - "contao": string[]; - "coveralls": string[]; - "coursera": string[]; - "cplusplus": string[]; - "creativeCommonsBy": string[]; - "creativeCommonsNcEu": string[]; - "creativeCommonsNcJp": string[]; - "creativeCommonsNc": string[]; - "creativeCommonsPdAlt": string[]; - "creativeCommonsNd": string[]; - "creativeCommonsPd": string[]; - "creativeCommonsSa": string[]; - "creativeCommonsSamplingPlus": string[]; - "creativeCommonsRemix": string[]; - "creativeCommonsShare": string[]; - "creativeCommonsSampling": string[]; - "crunchbase": string[]; - "creativeCommonsZero": string[]; - "criticalRole": string[]; - "creativeCommons": string[]; - "crunchyroll": string[]; - "css3Alt": string[]; - "css3": string[]; - "csswizardry": string[]; - "dAndDBeyond": string[]; - "cuttlefish": string[]; - "d3DotJs": string[]; - "dAndD": string[]; - "dailymotion": string[]; - "dashcube": string[]; - "dblp": string[]; - "dassaultsystemes": string[]; - "dazn": string[]; - "debian": string[]; - "dashlane": string[]; - "deepin": string[]; - "delicious": string[]; - "dell": string[]; - "deno": string[]; - "deezer": string[]; - "deploydog": string[]; - "dependabot": string[]; - "designernews": string[]; - "deskpro": string[]; - "devTo": string[]; - "devrant": string[]; - "dhl": string[]; - "deviantart": string[]; - "diaspora": string[]; - "digg": string[]; - "digitalocean": string[]; - "digitalOcean": string[]; - "discourse": string[]; - "discord": string[]; - "discover": string[]; - "disqus": string[]; - "disroot": string[]; - "django": string[]; - "docker": string[]; - "dochub": string[]; - "docusign": string[]; - "dotNet": string[]; - "draft2digital": string[]; - "draugiemDotLv": string[]; - "drone": string[]; - "dribbble": string[]; - "drupal": string[]; - "dropbox": string[]; - "duckduckgo": string[]; - "dtube": string[]; - "dyalog": string[]; - "dynatrace": string[]; - "earlybirds": string[]; - "ebay": string[]; - "edge": string[]; - "eclipseide": string[]; - "elastic": string[]; - "elasticcloud": string[]; - "elasticsearch": string[]; - "electron": string[]; - "elasticstack": string[]; - "elementor": string[]; - "elementary": string[]; - "eleventy": string[]; - "ello": string[]; - "ember": string[]; - "emlakjet": string[]; - "empire": string[]; - "envira": string[]; - "envato": string[]; - "epson": string[]; - "esea": string[]; - "erlang": string[]; - "eslint": string[]; - "empirekred": string[]; - "ethereum": string[]; - "eventbrite": string[]; - "etsy": string[]; - "evernote": string[]; - "eventstore": string[]; - "exercism": string[]; - "everplaces": string[]; - "evry": string[]; - "expeditedssl": string[]; - "expo": string[]; - "expertsexchange": string[]; - "eyeem": string[]; - "fSecure": string[]; - "facebook": string[]; - "facebookMessenger": string[]; - "facebookF": string[]; - "fandango": string[]; - "feathub": string[]; - "faceit": string[]; - "fantasyFlightGames": string[]; - "favro": string[]; - "fedex": string[]; - "feedly": string[]; - "figma": string[]; - "fedora": string[]; - "filezilla": string[]; - "fidoalliance": string[]; - "firebase": string[]; - "firstOrderAlt": string[]; - "firstdraft": string[]; - "firstOrder": string[]; - "firefox": string[]; - "fitbit": string[]; - "flattr": string[]; - "flickr": string[]; - "flipboard": string[]; - "flutter": string[]; - "fontAwesomeAlt": string[]; - "fly": string[]; - "forumbee": string[]; - "fnac": string[]; - "freeCodeCamp": string[]; - "freebsd": string[]; - "framer": string[]; - "freecodecamp": string[]; - "fulcrum": string[]; - "furaffinity": string[]; - "furrynetwork": string[]; - "galacticRepublic": string[]; - "galacticSenate": string[]; - "garmin": string[]; - "gatsby": string[]; - "genius": string[]; - "gauges": string[]; - "getPocket": string[]; - "geocaching": string[]; - "gg": string[]; - "gentoo": string[]; - "ggCircle": string[]; - "gimp": string[]; - "ghost": string[]; - "github": string[]; - "git": string[]; - "githubAlt": string[]; - "gitkraken": string[]; - "gitea": string[]; - "gitlab": string[]; - "gitpod": string[]; - "gitter": string[]; - "glassdoor": string[]; - "glide": string[]; - "gmail": string[]; - "glideG": string[]; - "gnusocial": string[]; - "glitch": string[]; - "gnuprivacyguard": string[]; - "go": string[]; - "godotengine": string[]; - "gofore": string[]; - "gogCom": string[]; - "goodreadsG": string[]; - "goldenline": string[]; - "googleAllo": string[]; - "goodreads": string[]; - "googleAds": string[]; - "googleAnalytics": string[]; - "googleDrive": string[]; - "googleHangouts": string[]; - "googlePay": string[]; - "googlePodcasts": string[]; - "googleHangoutschat": string[]; - "googleCloud": string[]; - "googleKeep": string[]; - "googleScholar": string[]; - "googlePlay": string[]; - "googleWallet": string[]; - "google": string[]; - "govUk": string[]; - "gradle": string[]; - "graphcool": string[]; - "grafana": string[]; - "graphql": string[]; - "grav": string[]; - "gravatar": string[]; - "greenkeeper": string[]; - "gratipay": string[]; - "groupon": string[]; - "gripfire": string[]; - "groovy": string[]; - "grunt": string[]; - "gulp": string[]; - "gumtree": string[]; - "gumroad": string[]; - "hackaday": string[]; - "habr": string[]; - "hackerone": string[]; - "hackerrank": string[]; - "hackster": string[]; - "hackhands": string[]; - "hashnode": string[]; - "hackerearth": string[]; - "hatenabookmark": string[]; - "happycow": string[]; - "haskell": string[]; - "haxe": string[]; - "hackerNews": string[]; - "here": string[]; - "heroku": string[]; - "helm": string[]; - "highly": string[]; - "hexo": string[]; - "hireAHelper": string[]; - "hockeyapp": string[]; - "hipchat": string[]; - "hips": string[]; - "hitachi": string[]; - "homify": string[]; - "hooli": string[]; - "hornbill": string[]; - "hotjar": string[]; - "hootsuite": string[]; - "houzz": string[]; - "hp": string[]; - "htmlacademy": string[]; - "huawei": string[]; - "html5": string[]; - "hubspot": string[]; - "humblebundle": string[]; - "hulu": string[]; - "hurriyetemlak": string[]; - "ibm": string[]; - "iata": string[]; - "icloud": string[]; - "iconjar": string[]; - "icq": string[]; - "ifixit": string[]; - "ideal": string[]; - "indeed": string[]; - "imdb": string[]; - "instacart": string[]; - "inkscape": string[]; - "instagram": string[]; - "instapaper": string[]; - "intel": string[]; - "intellijidea": string[]; - "internetExplorer": string[]; - "intercom": string[]; - "invision": string[]; - "ionic": string[]; - "issuu": string[]; - "internetexplorer": string[]; - "ioxhost": string[]; - "itunesNote": string[]; - "jabber": string[]; - "itchDotIo": string[]; - "itchIo": string[]; - "itunes": string[]; - "java": string[]; - "javascript": string[]; - "jekyll": string[]; - "jenkins": string[]; - "jetbrains": string[]; - "jediOrder": string[]; - "jest": string[]; - "joget": string[]; - "jira": string[]; - "jet": string[]; - "joomla": string[]; - "jquery": string[]; - "jsdelivr": string[]; - "json": string[]; - "justgiving": string[]; - "jupyter": string[]; - "kaios": string[]; - "kaggle": string[]; - "kaspersky": string[]; - "jsfiddle": string[]; - "keras": string[]; - "kentico": string[]; - "keybase": string[]; - "keycdn": string[]; - "khanacademy": string[]; - "kibana": string[]; - "kirby": string[]; - "klout": string[]; - "kik": string[]; - "koFi": string[]; - "kodi": string[]; - "known": string[]; - "koding": string[]; - "kickstarter": string[]; - "kotlin": string[]; - "korvue": string[]; - "kubernetes": string[]; - "lanyrd": string[]; - "laravel": string[]; - "krita": string[]; - "lastDotFm": string[]; - "laravelhorizon": string[]; - "lastfm": string[]; - "laravelnova": string[]; - "leetcode": string[]; - "latex": string[]; - "leanpub": string[]; - "launchpad": string[]; - "lenovo": string[]; - "less": string[]; - "letsencrypt": string[]; - "letterboxd": string[]; - "librarything": string[]; - "lgtm": string[]; - "liberapay": string[]; - "libreoffice": string[]; - "line": string[]; - "linkedin": string[]; - "linode": string[]; - "linewebtoon": string[]; - "livejournal": string[]; - "linuxfoundation": string[]; - "linux": string[]; - "livestream": string[]; - "lumen": string[]; - "lua": string[]; - "lyft": string[]; - "linuxmint": string[]; - "macys": string[]; - "magento": string[]; - "magisk": string[]; - "mailDotRu": string[]; - "logstash": string[]; - "mailchimp": string[]; - "makerbot": string[]; - "markdown": string[]; - "mandalorian": string[]; - "marketo": string[]; - "manjaro": string[]; - "mastercard": string[]; - "mastodon": string[]; - "materialdesign": string[]; - "mathworks": string[]; - "mattermost": string[]; - "matrix": string[]; - "maxcdn": string[]; - "medapps": string[]; - "matternet": string[]; - "mcafee": string[]; - "mediafire": string[]; - "meetup": string[]; - "mediatemple": string[]; - "medium": string[]; - "mega": string[]; - "medrt": string[]; - "mendeley": string[]; - "microgenetics": string[]; - "megaport": string[]; - "messenger": string[]; - "microDotBlog": string[]; - "meteor": string[]; - "minetest": string[]; - "microsoft": string[]; - "microsoftEdge": string[]; - "minutemailer": string[]; - "mixcloud": string[]; - "mixer": string[]; - "mix": string[]; - "modx": string[]; - "mizuni": string[]; - "mojang": string[]; - "monero": string[]; - "monogram": string[]; - "mongodb": string[]; - "monkeytie": string[]; - "mozilla": string[]; - "monzo": string[]; - "moo": string[]; - "mxlinux": string[]; - "mozillaFirefox": string[]; - "musescore": string[]; - "myspace": string[]; - "nativescript": string[]; - "mysql": string[]; - "napster": string[]; - "neo4j": string[]; - "netflix": string[]; - "neos": string[]; - "nec": string[]; - "netlify": string[]; - "nextJs": string[]; - "nginx": string[]; - "nextcloud": string[]; - "nim": string[]; - "nintendo3ds": string[]; - "nimblr": string[]; - "nextdoor": string[]; - "nodeJs": string[]; - "nintendoSwitch": string[]; - "nintendoGamecube": string[]; - "nintendo": string[]; - "nodeRed": string[]; - "node": string[]; - "nodemon": string[]; - "npm": string[]; - "nokia": string[]; - "notion": string[]; - "ns8": string[]; - "nucleo": string[]; - "nuget": string[]; - "nuxtDotJs": string[]; - "nutritionix": string[]; - "ocaml": string[]; - "nvidia": string[]; - "octave": string[]; - "octopusdeploy": string[]; - "odnoklassniki": string[]; - "oculus": string[]; - "opencart": string[]; - "openaccess": string[]; - "openid": string[]; - "openstreetmap": string[]; - "opencollective": string[]; - "openvpn": string[]; - "opensourceinitiative": string[]; - "opensuse": string[]; - "opera": string[]; - "optinMonster": string[]; - "opsgenie": string[]; - "orcid": string[]; - "oracle": string[]; - "osi": string[]; - "osmc": string[]; - "overcast": string[]; - "origin": string[]; - "overleaf": string[]; - "ovh": string[]; - "pagelines": string[]; - "page4": string[]; - "palantir": string[]; - "pagekit": string[]; - "pandora": string[]; - "paloaltosoftware": string[]; - "palfed": string[]; - "pantheon": string[]; - "pennyArcade": string[]; - "patreon": string[]; - "periscope": string[]; - "paypal": string[]; - "phoenixFramework": string[]; - "phabricator": string[]; - "php": string[]; - "phoenixSquadron": string[]; - "piedPiperAlt": string[]; - "picartoDotTv": string[]; - "piedPiperHat": string[]; - "piedPiperPp": string[]; - "pingdom": string[]; - "piedPiper": string[]; - "pinterest": string[]; - "pinboard": string[]; - "pinterestP": string[]; - "pingup": string[]; - "playerDotMe": string[]; - "pivotaltracker": string[]; - "playstation3": string[]; - "plangrid": string[]; - "playerfm": string[]; - "plex": string[]; - "playstation": string[]; - "plurk": string[]; - "playstation4": string[]; - "plesk": string[]; - "pluralsight": string[]; - "pocket": string[]; - "postman": string[]; - "postgresql": string[]; - "powershell": string[]; - "probot": string[]; - "prettier": string[]; - "producthunt": string[]; - "processwire": string[]; - "protonmail": string[]; - "prismic": string[]; - "protoDotIo": string[]; - "python": string[]; - "postwoman": string[]; - "pushed": string[]; - "proxmox": string[]; - "pypi": string[]; - "qgis": string[]; - "qiita": string[]; - "qq": string[]; - "pytorch": string[]; - "qualcomm": string[]; - "quantcast": string[]; - "quantopian": string[]; - "quarkus": string[]; - "quinscape": string[]; - "qwiklabs": string[]; - "quora": string[]; - "qzone": string[]; - "rProject": string[]; - "r": string[]; - "rails": string[]; - "radiopublic": string[]; - "raspberrypi": string[]; - "ravelry": string[]; - "react": string[]; - "readme": string[]; - "readthedocs": string[]; - "reacteurope": string[]; - "reason": string[]; - "realm": string[]; - "redRiver": string[]; - "rebel": string[]; - "redbubble": string[]; - "redditAlien": string[]; - "reddit": string[]; - "redhat": string[]; - "redis": string[]; - "renren": string[]; - "redux": string[]; - "researchgate": string[]; - "replyd": string[]; - "resolving": string[]; - "reverbnation": string[]; - "rev": string[]; - "riot": string[]; - "riseup": string[]; - "rockrms": string[]; - "ripple": string[]; - "rollupJs": string[]; - "roundcube": string[]; - "roots": string[]; - "rocketchat": string[]; - "rss": string[]; - "rstudio": string[]; - "ruby": string[]; - "rubygems": string[]; - "runkeeper": string[]; - "rust": string[]; - "safari": string[]; - "sahibinden": string[]; - "saltstack": string[]; - "salesforce": string[]; - "samsung": string[]; - "samsungPay": string[]; - "sap": string[]; - "sass": string[]; - "scala": string[]; - "saucelabs": string[]; - "schlix": string[]; - "scaleway": string[]; - "scrutinizerci": string[]; - "scribd": string[]; - "searchengin": string[]; - "seagate": string[]; - "sellfy": string[]; - "sega": string[]; - "sellsy": string[]; - "sellcast": string[]; - "semaphoreci": string[]; - "sensu": string[]; - "sentry": string[]; - "serverfault": string[]; - "shopify": string[]; - "servicestack": string[]; - "shazam": string[]; - "shopware": string[]; - "shell": string[]; - "shirtsinbulk": string[]; - "showpad": string[]; - "siemens": string[]; - "simpleicons": string[]; - "signal": string[]; - "simplybuilt": string[]; - "sistrix": string[]; - "sketch": string[]; - "sitepoint": string[]; - "sith": string[]; - "sinaweibo": string[]; - "skillshare": string[]; - "skyliner": string[]; - "skyatlas": string[]; - "skype": string[]; - "slashdot": string[]; - "slack": string[]; - "slackHash": string[]; - "smashingmagazine": string[]; - "slickpic": string[]; - "slides": string[]; - "slideshare": string[]; - "snapchatGhost": string[]; - "snapcraft": string[]; - "snapchat": string[]; - "socketDotIo": string[]; - "snyk": string[]; - "sogou": string[]; - "songkick": string[]; - "society6": string[]; - "sonos": string[]; - "solus": string[]; - "sourcegraph": string[]; - "spacex": string[]; - "spacemacs": string[]; - "soundcloud": string[]; - "sparkfun": string[]; - "sourceforge": string[]; - "sparkpost": string[]; - "speakerDeck": string[]; - "speakap": string[]; - "sourcetree": string[]; - "spdx": string[]; - "spectrum": string[]; - "speakerdeck": string[]; - "spring": string[]; - "spotify": string[]; - "spreaker": string[]; - "spotlight": string[]; - "sprint": string[]; - "squarespace": string[]; - "stackbit": string[]; - "stackOverflow": string[]; - "stackexchange": string[]; - "stackExchange": string[]; - "stackoverflow": string[]; - "stackpath": string[]; - "stackshare": string[]; - "statamic": string[]; - "staticman": string[]; - "stadia": string[]; - "steamSymbol": string[]; - "statuspage": string[]; - "steem": string[]; - "staylinked": string[]; - "steam": string[]; - "stickerMule": string[]; - "stitcher": string[]; - "steemit": string[]; - "storify": string[]; - "storybook": string[]; - "strava": string[]; - "strapi": string[]; - "stubhub": string[]; - "studiovinari": string[]; - "stripe": string[]; - "stumbleuponCircle": string[]; - "stumbleupon": string[]; - "styleshare": string[]; - "sublimetext": string[]; - "stylus": string[]; - "subversion": string[]; - "superpowers": string[]; - "superuser": string[]; - "supple": string[]; - "suse": string[]; - "svg": string[]; - "swagger": string[]; - "svelte": string[]; - "swarm": string[]; - "swift": string[]; - "symfony": string[]; - "symantec": string[]; - "synology": string[]; - "tMobile": string[]; - "tails": string[]; - "tapas": string[]; - "teamviewer": string[]; - "tableau": string[]; - "teamspeak": string[]; - "teespring": string[]; - "tencentWeibo": string[]; - "telegram": string[]; - "tencentweibo": string[]; - "ted": string[]; - "tencentqq": string[]; - "tesla": string[]; - "terraform": string[]; - "tensorflow": string[]; - "theRedYeti": string[]; - "themeco": string[]; - "tidal": string[]; - "themeisle": string[]; - "themighty": string[]; - "thinkPeaks": string[]; - "tiktok": string[]; - "themoviedatabase": string[]; - "todoist": string[]; - "tinder": string[]; - "toptal": string[]; - "toggl": string[]; - "toshiba": string[]; - "topcoder": string[]; - "trakt": string[]; - "tor": string[]; - "tradeFederation": string[]; - "trainerroad": string[]; - "travisci": string[]; - "treehouse": string[]; - "trulia": string[]; - "tripadvisor": string[]; - "trello": string[]; - "tumblr": string[]; - "twilio": string[]; - "turkishairlines": string[]; - "twitch": string[]; - "twoo": string[]; - "typescript": string[]; - "twitter": string[]; - "typo3": string[]; - "uber": string[]; - "ubisoft": string[]; - "ubuntu": string[]; - "ublockorigin": string[]; - "udacity": string[]; - "uikit": string[]; - "umbraco": string[]; - "unity": string[]; - "unrealengine": string[]; - "udemy": string[]; - "ups": string[]; - "uniregistry": string[]; - "unsplash": string[]; - "upwork": string[]; - "usps": string[]; - "ussunnah": string[]; - "untappd": string[]; - "usb": string[]; - "verizon": string[]; - "venmo": string[]; - "vagrant": string[]; - "viacoin": string[]; - "vaadin": string[]; - "viadeo": string[]; - "viber": string[]; - "v8": string[]; - "vim": string[]; - "vimeo": string[]; - "vine": string[]; - "visa": string[]; - "virb": string[]; - "visualstudiocode": string[]; - "visualstudio": string[]; - "vlc": string[]; - "vk": string[]; - "vsco": string[]; - "vnv": string[]; - "vueJs": string[]; - "vuejs": string[]; - "wattpad": string[]; - "waze": string[]; - "weasyl": string[]; - "webcomponentsDotOrg": string[]; - "webstorm": string[]; - "webpack": string[]; - "weixin": string[]; - "weebly": string[]; - "weibo": string[]; - "wechat": string[]; - "whatsapp": string[]; - "wheniwork": string[]; - "whmcs": string[]; - "wii": string[]; - "wiiu": string[]; - "wikipedia": string[]; - "wire": string[]; - "windows": string[]; - "wix": string[]; - "wireguard": string[]; - "wolfPackBattalion": string[]; - "wizardsOfTheCoast": string[]; - "wolframLanguage": string[]; - "wolframMathematica": string[]; - "wordpress": string[]; - "wolfram": string[]; - "wpengine": string[]; - "wpbeginner": string[]; - "wpforms": string[]; - "wpexplorer": string[]; - "xbox": string[]; - "wpressr": string[]; - "xPack": string[]; - "xero": string[]; - "xcode": string[]; - "xing": string[]; - "xiaomi": string[]; - "xrp": string[]; - "xsplit": string[]; - "yamahaCorporation": string[]; - "yahoo": string[]; - "yamahaMotorCorporation": string[]; - "yandex": string[]; - "yammer": string[]; - "yandexInternational": string[]; - "yarn": string[]; - "ycombinator": string[]; - "yelp": string[]; - "zalando": string[]; - "yoast": string[]; - "zeit": string[]; - "zapier": string[]; - "youtube": string[]; - "zendesk": string[]; - "zerply": string[]; - "zillow": string[]; - "zhihu": string[]; - "zingat": string[]; - "zoom": string[]; - "zorin": string[]; - "zulip": string[]; - "apacheFlink": string[]; - "codewars": string[]; - "epicgames": string[]; - "flask": string[]; - "gerrit": string[]; - "gnu": string[]; - "greensock": string[]; - "oldRepublic": string[]; - "babel": string[]; - "composer": string[]; - "elsevier": string[]; -}; export declare const brave: string[]; export declare const btc: string[]; export declare const buddy: string[]; +export declare const buyMeACoffee: string[]; export declare const buffer: string[]; -export declare const buromobelexperte: string[]; -export declare const buymeacoffee: string[]; export declare const buysellads: string[]; export declare const buzzfeed: string[]; -export declare const c: string[]; export declare const cakephp: string[]; +export declare const c: string[]; export declare const campaignMonitor: string[]; -export declare const canadianMapleLeaf: string[]; -export declare const canva: string[]; export declare const cashapp: string[]; +export declare const canva: string[]; export declare const cassandra: string[]; -export declare const castorama: string[]; export declare const castro: string[]; export declare const ccAmazonPay: string[]; -export declare const ccAmex: string[]; export declare const ccApplePay: string[]; export declare const ccDinersClub: string[]; +export declare const ccAmex: string[]; export declare const ccDiscover: string[]; export declare const ccJcb: string[]; -export declare const ccMastercard: string[]; export declare const ccPaypal: string[]; +export declare const ccMastercard: string[]; export declare const ccStripe: string[]; export declare const ccVisa: string[]; -export declare const centercode: string[]; -export declare const centos: string[]; export declare const cevo: string[]; +export declare const centos: string[]; export declare const chase: string[]; export declare const chef: string[]; -export declare const chrome: string[]; export declare const chromecast: string[]; -export declare const circleCi: string[]; export declare const circle: string[]; -export declare const cirrusci: string[]; -export declare const cisco: string[]; +export declare const circleci: string[]; export declare const civicrm: string[]; +export declare const cisco: string[]; +export declare const cirrusci: string[]; export declare const clockify: string[]; +export declare const cloudflare: string[]; export declare const clojure: string[]; export declare const cloudbees: string[]; -export declare const cloudflare: string[]; -export declare const cloudscale: string[]; -export declare const cloudsmith: string[]; -export declare const cloudversify: string[]; -export declare const cmake: string[]; export declare const coOp: string[]; export declare const codacy: string[]; +export declare const cmake: string[]; +export declare const codeClimate: string[]; export declare const codecademy: string[]; -export declare const codeclimate: string[]; export declare const codecov: string[]; -export declare const codefactor: string[]; -export declare const codeforces: string[]; export declare const codeigniter: string[]; export declare const codepen: string[]; export declare const coderwall: string[]; export declare const codesandbox: string[]; export declare const codeship: string[]; -export declare const codewars: string[]; -export declare const codiepie: string[]; export declare const codio: string[]; export declare const coffeescript: string[]; -export declare const commonworkflowlanguage: string[]; -export declare const composer: string[]; -export declare const compropago: string[]; +export declare const commonWorkflowLanguage: string[]; export declare const condaForge: string[]; export declare const conekta: string[]; export declare const confluence: string[]; -export declare const connectdevelop: string[]; -export declare const contao: string[]; +export declare const coreui: string[]; export declare const coursera: string[]; +export declare const coreuiC: string[]; export declare const coveralls: string[]; -export declare const cpanel: string[]; export declare const cplusplus: string[]; export declare const creativeCommonsBy: string[]; +export declare const cpanel: string[]; export declare const creativeCommonsNcEu: string[]; export declare const creativeCommonsNcJp: string[]; export declare const creativeCommonsNc: string[]; @@ -1204,20 +996,14 @@ export declare const creativeCommonsSampling: string[]; export declare const creativeCommonsShare: string[]; export declare const creativeCommonsZero: string[]; export declare const creativeCommons: string[]; -export declare const criticalRole: string[]; -export declare const crunchbase: string[]; export declare const crunchyroll: string[]; -export declare const css3Alt: string[]; +export declare const crunchbase: string[]; +export declare const css3Shiled: string[]; export declare const css3: string[]; +export declare const d3Js: string[]; export declare const csswizardry: string[]; -export declare const cuttlefish: string[]; -export declare const dAndDBeyond: string[]; -export declare const dAndD: string[]; -export declare const d3DotJs: string[]; export declare const dailymotion: string[]; -export declare const dashcube: string[]; export declare const dashlane: string[]; -export declare const dassaultsystemes: string[]; export declare const dazn: string[]; export declare const dblp: string[]; export declare const debian: string[]; @@ -1225,1355 +1011,281 @@ export declare const deepin: string[]; export declare const deezer: string[]; export declare const delicious: string[]; export declare const dell: string[]; -export declare const deno: string[]; +export declare const designerNews: string[]; export declare const dependabot: string[]; -export declare const deploydog: string[]; -export declare const designernews: string[]; -export declare const deskpro: string[]; export declare const devTo: string[]; export declare const deviantart: string[]; export declare const devrant: string[]; -export declare const dhl: string[]; export declare const diaspora: string[]; -export declare const digg: string[]; export declare const digitalOcean: string[]; -export declare const digitalocean: string[]; export declare const discord: string[]; +export declare const digg: string[]; export declare const discourse: string[]; export declare const discover: string[]; export declare const disqus: string[]; export declare const disroot: string[]; -export declare const django: string[]; -export declare const dochub: string[]; export declare const docker: string[]; +export declare const django: string[]; export declare const docusign: string[]; export declare const dotNet: string[]; -export declare const draft2digital: string[]; -export declare const draugiemDotLv: string[]; export declare const dribbble: string[]; export declare const drone: string[]; +export declare const draugiemLv: string[]; export declare const dropbox: string[]; export declare const drupal: string[]; -export declare const dtube: string[]; export declare const duckduckgo: string[]; -export declare const dyalog: string[]; -export declare const dynatrace: string[]; -export declare const earlybirds: string[]; +export declare const dtube: string[]; export declare const ebay: string[]; +export declare const dynatrace: string[]; export declare const eclipseide: string[]; -export declare const edge: string[]; -export declare const elastic: string[]; -export declare const elasticcloud: string[]; -export declare const elasticsearch: string[]; -export declare const elasticstack: string[]; -export declare const electron: string[]; +export declare const elasticSearch: string[]; +export declare const elasticCloud: string[]; export declare const elementary: string[]; -export declare const elementor: string[]; +export declare const elasticStack: string[]; +export declare const elastic: string[]; +export declare const electron: string[]; export declare const eleventy: string[]; export declare const ello: string[]; -export declare const elsevier: string[]; -export declare const ember: string[]; export declare const emlakjet: string[]; -export declare const empire: string[]; export declare const empirekred: string[]; export declare const envato: string[]; -export declare const envira: string[]; -export declare const epicgames: string[]; export declare const epson: string[]; -export declare const erlang: string[]; export declare const esea: string[]; export declare const eslint: string[]; export declare const ethereum: string[]; export declare const etsy: string[]; +export declare const eventStore: string[]; export declare const eventbrite: string[]; -export declare const eventstore: string[]; export declare const evernote: string[]; export declare const everplaces: string[]; export declare const evry: string[]; +export declare const expertsExchange: string[]; export declare const exercism: string[]; -export declare const expeditedssl: string[]; -export declare const expertsexchange: string[]; -export declare const expo: string[]; export declare const eyeem: string[]; -export declare const fSecure: string[]; +export declare const expo: string[]; export declare const facebookF: string[]; -export declare const facebookMessenger: string[]; +export declare const fSecure: string[]; export declare const facebook: string[]; export declare const faceit: string[]; export declare const fandango: string[]; -export declare const fantasyFlightGames: string[]; export declare const favro: string[]; export declare const feathub: string[]; -export declare const fedex: string[]; export declare const fedora: string[]; +export declare const fedex: string[]; export declare const feedly: string[]; -export declare const fidoalliance: string[]; +export declare const fidoAlliance: string[]; export declare const figma: string[]; export declare const filezilla: string[]; export declare const firebase: string[]; -export declare const firefox: string[]; -export declare const firstOrderAlt: string[]; -export declare const firstOrder: string[]; -export declare const firstdraft: string[]; export declare const fitbit: string[]; -export declare const flask: string[]; -export declare const flattr: string[]; export declare const flickr: string[]; -export declare const flipboard: string[]; -export declare const flutter: string[]; -export declare const fly: string[]; +export declare const flattr: string[]; export declare const fnac: string[]; -export declare const fontAwesomeAlt: string[]; -export declare const forumbee: string[]; -export declare const framer: string[]; -export declare const freeCodeCamp: string[]; +export declare const flipboard: string[]; +export declare const foursquare: string[]; +export declare const flutter: string[]; export declare const freebsd: string[]; +export declare const framer: string[]; export declare const freecodecamp: string[]; -export declare const fulcrum: string[]; -export declare const furaffinity: string[]; -export declare const furrynetwork: string[]; -export declare const galacticRepublic: string[]; -export declare const galacticSenate: string[]; +export declare const furAffinity: string[]; +export declare const furryNetwork: string[]; export declare const garmin: string[]; export declare const gatsby: string[]; export declare const gauges: string[]; export declare const genius: string[]; export declare const gentoo: string[]; export declare const geocaching: string[]; -export declare const gerrit: string[]; -export declare const getPocket: string[]; -export declare const ggCircle: string[]; export declare const gg: string[]; export declare const ghost: string[]; export declare const gimp: string[]; export declare const git: string[]; export declare const gitea: string[]; -export declare const githubAlt: string[]; export declare const github: string[]; export declare const gitkraken: string[]; export declare const gitlab: string[]; export declare const gitpod: string[]; export declare const gitter: string[]; export declare const glassdoor: string[]; -export declare const glideG: string[]; -export declare const glide: string[]; -export declare const glitch: string[]; export declare const gmail: string[]; -export declare const gnu: string[]; -export declare const gnuprivacyguard: string[]; -export declare const gnusocial: string[]; +export declare const gnuPrivacyGuard: string[]; +export declare const glitch: string[]; +export declare const gnuSocial: string[]; export declare const go: string[]; -export declare const godotengine: string[]; -export declare const gofore: string[]; export declare const gogCom: string[]; export declare const goldenline: string[]; -export declare const goodreadsG: string[]; +export declare const godotEngine: string[]; export declare const goodreads: string[]; export declare const googleAds: string[]; -export declare const googleAllo: string[]; export declare const googleAnalytics: string[]; +export declare const googleChrome: string[]; +export declare const googleAllo: string[]; export declare const googleCloud: string[]; -export declare const googleDrive: string[]; -export declare const googleHangouts: string[]; -export declare const googleHangoutschat: string[]; export declare const googleKeep: string[]; export declare const googlePay: string[]; export declare const googlePlay: string[]; -export declare const googlePodcasts: string[]; -export declare const googleScholar: string[]; -export declare const googleWallet: string[]; -export declare const google: string[]; export declare const govUk: string[]; +export declare const google: string[]; export declare const gradle: string[]; +export declare const googlesCholar: string[]; +export declare const googlePodcasts: string[]; export declare const grafana: string[]; -export declare const graphcool: string[]; export declare const graphql: string[]; -export declare const gratipay: string[]; export declare const grav: string[]; -export declare const gravatar: string[]; +export declare const graphcool: string[]; export declare const greenkeeper: string[]; -export declare const greensock: string[]; -export declare const gripfire: string[]; -export declare const groovy: string[]; +export declare const gravatar: string[]; export declare const groupon: string[]; +export declare const groovy: string[]; export declare const grunt: string[]; export declare const gulp: string[]; -export declare const gumroad: string[]; export declare const gumtree: string[]; +export declare const gumroad: string[]; export declare const habr: string[]; -export declare const hackaday: string[]; -export declare const hackerNews: string[]; export declare const hackerearth: string[]; export declare const hackerone: string[]; +export declare const hackaday: string[]; export declare const hackerrank: string[]; export declare const hackhands: string[]; export declare const hackster: string[]; export declare const happycow: string[]; export declare const hashnode: string[]; export declare const haskell: string[]; -export declare const hatenabookmark: string[]; +export declare const hatenaBookmark: string[]; export declare const haxe: string[]; -export declare const helm: string[]; -export declare const here: string[]; export declare const heroku: string[]; +export declare const here: string[]; +export declare const helm: string[]; export declare const hexo: string[]; export declare const highly: string[]; export declare const hipchat: string[]; -export declare const hips: string[]; -export declare const hireAHelper: string[]; export declare const hitachi: string[]; export declare const hockeyapp: string[]; export declare const homify: string[]; -export declare const hooli: string[]; -export declare const hootsuite: string[]; -export declare const hornbill: string[]; export declare const hotjar: string[]; +export declare const hootsuite: string[]; export declare const houzz: string[]; export declare const hp: string[]; +export declare const html5Shield: string[]; export declare const html5: string[]; export declare const htmlacademy: string[]; export declare const huawei: string[]; export declare const hubspot: string[]; export declare const hulu: string[]; -export declare const humblebundle: string[]; -export declare const hurriyetemlak: string[]; +export declare const humbleBundle: string[]; export declare const iata: string[]; export declare const ibm: string[]; export declare const icloud: string[]; -export declare const iconSet: { - "500px": string[]; - "aboutMe": string[]; - "acm": string[]; - "adn": string[]; - "abstract": string[]; - "accusoft": string[]; - "adguard": string[]; - "acquisitionsIncorporated": string[]; - "addthis": string[]; - "adobeCreativeCloud": string[]; - "adobeAfterEffects": string[]; - "adobeAcrobatReader": string[]; - "adobeDreamweaver": string[]; - "adobeAudition": string[]; - "adobeIllustrator": string[]; - "adobeLightroomcc": string[]; - "adobeLightroomclassic": string[]; - "adobePremiere": string[]; - "adobePhotoshop": string[]; - "adobeIndesign": string[]; - "adobeXd": string[]; - "adversal": string[]; - "adobeTypekit": string[]; - "adobe": string[]; - "affiliatetheme": string[]; - "airbnb": string[]; - "alipay": string[]; - "algolia": string[]; - "allocine": string[]; - "amazonAws": string[]; - "amazonPay": string[]; - "amd": string[]; - "americanExpress": string[]; - "amilia": string[]; - "amazon": string[]; - "anaconda": string[]; - "androidAlt": string[]; - "analogue": string[]; - "angularUniversal": string[]; - "android": string[]; - "angrycreative": string[]; - "angellist": string[]; - "angular": string[]; - "ansible": string[]; - "apacheAirflow": string[]; - "apacheSpark": string[]; - "appStore": string[]; - "apache": string[]; - "apple": string[]; - "apper": string[]; - "applePay": string[]; - "archLinux": string[]; - "appveyor": string[]; - "arduino": string[]; - "aral": string[]; - "archiveOfOurOwn": string[]; - "arxiv": string[]; - "artstation": string[]; - "asymmetrik": string[]; - "asana": string[]; - "atAndT": string[]; - "audible": string[]; - "atlassian": string[]; - "atom": string[]; - "auth0": string[]; - "aurelia": string[]; - "autotask": string[]; - "automatic": string[]; - "autoprefixer": string[]; - "avianex": string[]; - "aventrix": string[]; - "aviato": string[]; - "aws": string[]; - "azureArtifacts": string[]; - "azureDevops": string[]; - "bamboo": string[]; - "azurePipelines": string[]; - "bancontact": string[]; - "beats": string[]; - "battleNet": string[]; - "baidu": string[]; - "basecamp": string[]; - "behance": string[]; - "bit": string[]; - "bandcamp": string[]; - "bathasu": string[]; - "bigCartel": string[]; - "bing": string[]; - "bimobject": string[]; - "bitcoin": string[]; - "bitbucket": string[]; - "bitly": string[]; - "bitdefender": string[]; - "blackTie": string[]; - "blackberry": string[]; - "bity": string[]; - "blogger": string[]; - "bluetoothB": string[]; - "blender": string[]; - "boeing": string[]; - "bluetooth": string[]; - "boost": string[]; - "bootstrap": string[]; - "bower": string[]; - "brandAi": string[]; - "btc": string[]; - "buddy": string[]; - "buffer": string[]; - "brave": string[]; - "buymeacoffee": string[]; - "buysellads": string[]; - "c": string[]; - "buromobelexperte": string[]; - "buzzfeed": string[]; - "campaignMonitor": string[]; - "cakephp": string[]; - "canadianMapleLeaf": string[]; - "cashapp": string[]; - "canva": string[]; - "castro": string[]; - "ccAmazonPay": string[]; - "castorama": string[]; - "cassandra": string[]; - "ccAmex": string[]; - "ccApplePay": string[]; - "ccDiscover": string[]; - "ccDinersClub": string[]; - "ccJcb": string[]; - "ccPaypal": string[]; - "ccStripe": string[]; - "centercode": string[]; - "ccMastercard": string[]; - "ccVisa": string[]; - "cevo": string[]; - "chrome": string[]; - "centos": string[]; - "chef": string[]; - "chromecast": string[]; - "circleCi": string[]; - "cirrusci": string[]; - "chase": string[]; - "circle": string[]; - "civicrm": string[]; - "cisco": string[]; - "clockify": string[]; - "clojure": string[]; - "cloudbees": string[]; - "cloudscale": string[]; - "cloudversify": string[]; - "cloudsmith": string[]; - "cmake": string[]; - "cloudflare": string[]; - "coOp": string[]; - "codecademy": string[]; - "codeclimate": string[]; - "codacy": string[]; - "codecov": string[]; - "codefactor": string[]; - "codeforces": string[]; - "coderwall": string[]; - "codeigniter": string[]; - "codepen": string[]; - "codesandbox": string[]; - "codio": string[]; - "codeship": string[]; - "codiepie": string[]; - "coffeescript": string[]; - "commonworkflowlanguage": string[]; - "compropago": string[]; - "condaForge": string[]; - "confluence": string[]; - "coursera": string[]; - "conekta": string[]; - "coveralls": string[]; - "contao": string[]; - "connectdevelop": string[]; - "cpanel": string[]; - "cplusplus": string[]; - "creativeCommonsBy": string[]; - "creativeCommonsNcEu": string[]; - "creativeCommonsNcJp": string[]; - "creativeCommonsNc": string[]; - "creativeCommonsPdAlt": string[]; - "creativeCommonsNd": string[]; - "creativeCommonsSamplingPlus": string[]; - "creativeCommonsSa": string[]; - "creativeCommonsRemix": string[]; - "creativeCommonsPd": string[]; - "creativeCommonsShare": string[]; - "creativeCommonsSampling": string[]; - "creativeCommonsZero": string[]; - "crunchbase": string[]; - "criticalRole": string[]; - "creativeCommons": string[]; - "crunchyroll": string[]; - "css3Alt": string[]; - "css3": string[]; - "csswizardry": string[]; - "d3DotJs": string[]; - "dAndD": string[]; - "cuttlefish": string[]; - "dAndDBeyond": string[]; - "dailymotion": string[]; - "dashcube": string[]; - "dazn": string[]; - "dashlane": string[]; - "dassaultsystemes": string[]; - "debian": string[]; - "deezer": string[]; - "dblp": string[]; - "deepin": string[]; - "delicious": string[]; - "dell": string[]; - "deploydog": string[]; - "dependabot": string[]; - "deno": string[]; - "deskpro": string[]; - "designernews": string[]; - "deviantart": string[]; - "devrant": string[]; - "devTo": string[]; - "dhl": string[]; - "digg": string[]; - "digitalocean": string[]; - "diaspora": string[]; - "digitalOcean": string[]; - "discord": string[]; - "discourse": string[]; - "discover": string[]; - "disqus": string[]; - "django": string[]; - "disroot": string[]; - "docusign": string[]; - "dochub": string[]; - "docker": string[]; - "dotNet": string[]; - "draugiemDotLv": string[]; - "draft2digital": string[]; - "drone": string[]; - "dribbble": string[]; - "dropbox": string[]; - "drupal": string[]; - "dyalog": string[]; - "dynatrace": string[]; - "duckduckgo": string[]; - "earlybirds": string[]; - "dtube": string[]; - "ebay": string[]; - "elastic": string[]; - "eclipseide": string[]; - "edge": string[]; - "electron": string[]; - "elasticsearch": string[]; - "elementary": string[]; - "elasticstack": string[]; - "elasticcloud": string[]; - "elementor": string[]; - "eleventy": string[]; - "ello": string[]; - "ember": string[]; - "empirekred": string[]; - "emlakjet": string[]; - "empire": string[]; - "envato": string[]; - "epson": string[]; - "envira": string[]; - "erlang": string[]; - "esea": string[]; - "eslint": string[]; - "eventstore": string[]; - "ethereum": string[]; - "evernote": string[]; - "evry": string[]; - "etsy": string[]; - "everplaces": string[]; - "eventbrite": string[]; - "exercism": string[]; - "expeditedssl": string[]; - "eyeem": string[]; - "expertsexchange": string[]; - "fSecure": string[]; - "expo": string[]; - "facebookF": string[]; - "facebook": string[]; - "facebookMessenger": string[]; - "faceit": string[]; - "fandango": string[]; - "fedex": string[]; - "favro": string[]; - "fantasyFlightGames": string[]; - "fedora": string[]; - "fidoalliance": string[]; - "feathub": string[]; - "feedly": string[]; - "figma": string[]; - "firebase": string[]; - "filezilla": string[]; - "firefox": string[]; - "firstOrderAlt": string[]; - "firstOrder": string[]; - "fitbit": string[]; - "flattr": string[]; - "firstdraft": string[]; - "flipboard": string[]; - "flutter": string[]; - "flickr": string[]; - "fly": string[]; - "fnac": string[]; - "forumbee": string[]; - "framer": string[]; - "fontAwesomeAlt": string[]; - "freeCodeCamp": string[]; - "freebsd": string[]; - "fulcrum": string[]; - "furaffinity": string[]; - "freecodecamp": string[]; - "furrynetwork": string[]; - "galacticRepublic": string[]; - "garmin": string[]; - "gatsby": string[]; - "galacticSenate": string[]; - "gauges": string[]; - "gentoo": string[]; - "genius": string[]; - "geocaching": string[]; - "getPocket": string[]; - "ggCircle": string[]; - "git": string[]; - "ghost": string[]; - "gg": string[]; - "gimp": string[]; - "gitea": string[]; - "github": string[]; - "githubAlt": string[]; - "gitkraken": string[]; - "gitpod": string[]; - "gitter": string[]; - "gitlab": string[]; - "glassdoor": string[]; - "glideG": string[]; - "glide": string[]; - "gmail": string[]; - "glitch": string[]; - "gnuprivacyguard": string[]; - "gnusocial": string[]; - "go": string[]; - "gofore": string[]; - "godotengine": string[]; - "goldenline": string[]; - "goodreads": string[]; - "goodreadsG": string[]; - "gogCom": string[]; - "googleAllo": string[]; - "googleCloud": string[]; - "googleAnalytics": string[]; - "googleDrive": string[]; - "googleAds": string[]; - "googleHangouts": string[]; - "googleKeep": string[]; - "googlePlay": string[]; - "googlePodcasts": string[]; - "googleHangoutschat": string[]; - "googlePay": string[]; - "google": string[]; - "googleScholar": string[]; - "googleWallet": string[]; - "gradle": string[]; - "govUk": string[]; - "gratipay": string[]; - "grafana": string[]; - "graphql": string[]; - "graphcool": string[]; - "grav": string[]; - "gravatar": string[]; - "greenkeeper": string[]; - "gripfire": string[]; - "groovy": string[]; - "gulp": string[]; - "gumroad": string[]; - "grunt": string[]; - "groupon": string[]; - "habr": string[]; - "gumtree": string[]; - "hackaday": string[]; - "hackerNews": string[]; - "hackerearth": string[]; - "hackster": string[]; - "hackerone": string[]; - "hackerrank": string[]; - "happycow": string[]; - "hashnode": string[]; - "hatenabookmark": string[]; - "hackhands": string[]; - "haskell": string[]; - "haxe": string[]; - "heroku": string[]; - "hexo": string[]; - "here": string[]; - "helm": string[]; - "highly": string[]; - "hitachi": string[]; - "hipchat": string[]; - "hockeyapp": string[]; - "hips": string[]; - "hireAHelper": string[]; - "hooli": string[]; - "homify": string[]; - "hornbill": string[]; - "hootsuite": string[]; - "hotjar": string[]; - "houzz": string[]; - "hp": string[]; - "html5": string[]; - "htmlacademy": string[]; - "huawei": string[]; - "ibm": string[]; - "hulu": string[]; - "hubspot": string[]; - "iata": string[]; - "humblebundle": string[]; - "hurriyetemlak": string[]; - "icloud": string[]; - "iconjar": string[]; - "ifixit": string[]; - "ideal": string[]; - "imdb": string[]; - "icq": string[]; - "inkscape": string[]; - "indeed": string[]; - "intel": string[]; - "instacart": string[]; - "instagram": string[]; - "instapaper": string[]; - "intercom": string[]; - "intellijidea": string[]; - "internetExplorer": string[]; - "internetexplorer": string[]; - "ionic": string[]; - "issuu": string[]; - "invision": string[]; - "itchDotIo": string[]; - "ioxhost": string[]; - "itchIo": string[]; - "java": string[]; - "itunes": string[]; - "itunesNote": string[]; - "jabber": string[]; - "jediOrder": string[]; - "javascript": string[]; - "jekyll": string[]; - "jenkins": string[]; - "jest": string[]; - "jetbrains": string[]; - "joget": string[]; - "jira": string[]; - "jet": string[]; - "joomla": string[]; - "jquery": string[]; - "jsdelivr": string[]; - "jsfiddle": string[]; - "justgiving": string[]; - "jupyter": string[]; - "json": string[]; - "kaggle": string[]; - "kaspersky": string[]; - "kaios": string[]; - "kentico": string[]; - "keybase": string[]; - "keras": string[]; - "keycdn": string[]; - "kibana": string[]; - "khanacademy": string[]; - "kickstarter": string[]; - "kik": string[]; - "kirby": string[]; - "klout": string[]; - "known": string[]; - "korvue": string[]; - "kodi": string[]; - "koFi": string[]; - "koding": string[]; - "kotlin": string[]; - "lanyrd": string[]; - "krita": string[]; - "kubernetes": string[]; - "laravel": string[]; - "laravelhorizon": string[]; - "laravelnova": string[]; - "lastfm": string[]; - "latex": string[]; - "lastDotFm": string[]; - "leanpub": string[]; - "launchpad": string[]; - "leetcode": string[]; - "less": string[]; - "lgtm": string[]; - "letsencrypt": string[]; - "letterboxd": string[]; - "lenovo": string[]; - "liberapay": string[]; - "line": string[]; - "libreoffice": string[]; - "linkedin": string[]; - "linux": string[]; - "librarything": string[]; - "linewebtoon": string[]; - "linode": string[]; - "linuxfoundation": string[]; - "linuxmint": string[]; - "livejournal": string[]; - "livestream": string[]; - "lua": string[]; - "lumen": string[]; - "logstash": string[]; - "lyft": string[]; - "macys": string[]; - "magento": string[]; - "mailDotRu": string[]; - "mailchimp": string[]; - "magisk": string[]; - "makerbot": string[]; - "mandalorian": string[]; - "mastercard": string[]; - "markdown": string[]; - "manjaro": string[]; - "marketo": string[]; - "mastodon": string[]; - "materialdesign": string[]; - "mathworks": string[]; - "matternet": string[]; - "maxcdn": string[]; - "medapps": string[]; - "matrix": string[]; - "mattermost": string[]; - "mediafire": string[]; - "mcafee": string[]; - "mediatemple": string[]; - "meetup": string[]; - "medrt": string[]; - "medium": string[]; - "megaport": string[]; - "messenger": string[]; - "mega": string[]; - "mendeley": string[]; - "meteor": string[]; - "microDotBlog": string[]; - "microgenetics": string[]; - "microsoftEdge": string[]; - "microsoft": string[]; - "minetest": string[]; - "mixer": string[]; - "mix": string[]; - "mixcloud": string[]; - "minutemailer": string[]; - "modx": string[]; - "mizuni": string[]; - "mojang": string[]; - "monero": string[]; - "mongodb": string[]; - "monkeytie": string[]; - "moo": string[]; - "monzo": string[]; - "monogram": string[]; - "mozillaFirefox": string[]; - "mozilla": string[]; - "myspace": string[]; - "musescore": string[]; - "mxlinux": string[]; - "mysql": string[]; - "nativescript": string[]; - "nec": string[]; - "napster": string[]; - "neo4j": string[]; - "neos": string[]; - "netflix": string[]; - "nextJs": string[]; - "netlify": string[]; - "nextcloud": string[]; - "nextdoor": string[]; - "nim": string[]; - "nimblr": string[]; - "nginx": string[]; - "nintendoGamecube": string[]; - "nintendo3ds": string[]; - "nodeJs": string[]; - "nintendoSwitch": string[]; - "nintendo": string[]; - "nodeRed": string[]; - "npm": string[]; - "nokia": string[]; - "node": string[]; - "nodemon": string[]; - "notion": string[]; - "ns8": string[]; - "nucleo": string[]; - "nuget": string[]; - "nuxtDotJs": string[]; - "nutritionix": string[]; - "octave": string[]; - "nvidia": string[]; - "oculus": string[]; - "octopusdeploy": string[]; - "ocaml": string[]; - "opencollective": string[]; - "odnoklassniki": string[]; - "openaccess": string[]; - "opencart": string[]; - "openid": string[]; - "opensourceinitiative": string[]; - "openvpn": string[]; - "opensuse": string[]; - "opsgenie": string[]; - "optinMonster": string[]; - "openstreetmap": string[]; - "opera": string[]; - "oracle": string[]; - "osi": string[]; - "osmc": string[]; - "origin": string[]; - "orcid": string[]; - "overcast": string[]; - "ovh": string[]; - "page4": string[]; - "overleaf": string[]; - "pagekit": string[]; - "paloaltosoftware": string[]; - "palantir": string[]; - "pagelines": string[]; - "palfed": string[]; - "pantheon": string[]; - "pandora": string[]; - "patreon": string[]; - "pennyArcade": string[]; - "periscope": string[]; - "paypal": string[]; - "phoenixSquadron": string[]; - "phabricator": string[]; - "phoenixFramework": string[]; - "php": string[]; - "picartoDotTv": string[]; - "piedPiperHat": string[]; - "piedPiper": string[]; - "piedPiperAlt": string[]; - "pinboard": string[]; - "piedPiperPp": string[]; - "pingup": string[]; - "pingdom": string[]; - "pinterestP": string[]; - "pinterest": string[]; - "playstation": string[]; - "pivotaltracker": string[]; - "playstation3": string[]; - "plangrid": string[]; - "playerDotMe": string[]; - "plesk": string[]; - "playerfm": string[]; - "pluralsight": string[]; - "playstation4": string[]; - "plex": string[]; - "pocket": string[]; - "plurk": string[]; - "postwoman": string[]; - "postgresql": string[]; - "powershell": string[]; - "prismic": string[]; - "prettier": string[]; - "postman": string[]; - "probot": string[]; - "producthunt": string[]; - "protoDotIo": string[]; - "protonmail": string[]; - "processwire": string[]; - "python": string[]; - "pushed": string[]; - "pypi": string[]; - "proxmox": string[]; - "pytorch": string[]; - "qiita": string[]; - "quantcast": string[]; - "qualcomm": string[]; - "qgis": string[]; - "quarkus": string[]; - "qq": string[]; - "quora": string[]; - "quinscape": string[]; - "quantopian": string[]; - "qwiklabs": string[]; - "rProject": string[]; - "rails": string[]; - "qzone": string[]; - "radiopublic": string[]; - "r": string[]; - "raspberrypi": string[]; - "reacteurope": string[]; - "ravelry": string[]; - "react": string[]; - "realm": string[]; - "reason": string[]; - "readme": string[]; - "readthedocs": string[]; - "rebel": string[]; - "redRiver": string[]; - "redditAlien": string[]; - "reddit": string[]; - "redhat": string[]; - "redbubble": string[]; - "replyd": string[]; - "renren": string[]; - "redis": string[]; - "redux": string[]; - "researchgate": string[]; - "resolving": string[]; - "rev": string[]; - "reverbnation": string[]; - "riot": string[]; - "ripple": string[]; - "rocketchat": string[]; - "rockrms": string[]; - "riseup": string[]; - "rollupJs": string[]; - "roots": string[]; - "roundcube": string[]; - "rstudio": string[]; - "rss": string[]; - "ruby": string[]; - "runkeeper": string[]; - "rubygems": string[]; - "rust": string[]; - "salesforce": string[]; - "sahibinden": string[]; - "saltstack": string[]; - "samsungPay": string[]; - "samsung": string[]; - "safari": string[]; - "sass": string[]; - "sap": string[]; - "scala": string[]; - "saucelabs": string[]; - "scaleway": string[]; - "scribd": string[]; - "scrutinizerci": string[]; - "schlix": string[]; - "sega": string[]; - "seagate": string[]; - "searchengin": string[]; - "semaphoreci": string[]; - "sellcast": string[]; - "sellfy": string[]; - "sensu": string[]; - "servicestack": string[]; - "sellsy": string[]; - "serverfault": string[]; - "sentry": string[]; - "shazam": string[]; - "shell": string[]; - "showpad": string[]; - "shirtsinbulk": string[]; - "shopify": string[]; - "simpleicons": string[]; - "shopware": string[]; - "siemens": string[]; - "signal": string[]; - "simplybuilt": string[]; - "sistrix": string[]; - "sitepoint": string[]; - "sinaweibo": string[]; - "sith": string[]; - "sketch": string[]; - "skyatlas": string[]; - "skillshare": string[]; - "skyliner": string[]; - "skype": string[]; - "slides": string[]; - "slickpic": string[]; - "slack": string[]; - "slackHash": string[]; - "slashdot": string[]; - "smashingmagazine": string[]; - "slideshare": string[]; - "snapchatGhost": string[]; - "snapchat": string[]; - "snapcraft": string[]; - "snyk": string[]; - "society6": string[]; - "sogou": string[]; - "socketDotIo": string[]; - "sonos": string[]; - "solus": string[]; - "sourceforge": string[]; - "songkick": string[]; - "soundcloud": string[]; - "sourcegraph": string[]; - "sourcetree": string[]; - "spacex": string[]; - "spacemacs": string[]; - "sparkfun": string[]; - "speakap": string[]; - "speakerdeck": string[]; - "sparkpost": string[]; - "speakerDeck": string[]; - "spdx": string[]; - "spectrum": string[]; - "spreaker": string[]; - "spotify": string[]; - "spotlight": string[]; - "spring": string[]; - "sprint": string[]; - "squarespace": string[]; - "stackExchange": string[]; - "stackOverflow": string[]; - "stackoverflow": string[]; - "stackbit": string[]; - "stackexchange": string[]; - "stadia": string[]; - "stackshare": string[]; - "stackpath": string[]; - "statamic": string[]; - "statuspage": string[]; - "steam": string[]; - "staticman": string[]; - "steem": string[]; - "staylinked": string[]; - "steamSymbol": string[]; - "stitcher": string[]; - "stickerMule": string[]; - "steemit": string[]; - "storify": string[]; - "storybook": string[]; - "stripe": string[]; - "strapi": string[]; - "studiovinari": string[]; - "strava": string[]; - "stubhub": string[]; - "stumbleuponCircle": string[]; - "stumbleupon": string[]; - "styleshare": string[]; - "stylus": string[]; - "superpowers": string[]; - "supple": string[]; - "sublimetext": string[]; - "superuser": string[]; - "subversion": string[]; - "svelte": string[]; - "suse": string[]; - "svg": string[]; - "swagger": string[]; - "swift": string[]; - "swarm": string[]; - "symantec": string[]; - "symfony": string[]; - "tableau": string[]; - "synology": string[]; - "tMobile": string[]; - "tails": string[]; - "tapas": string[]; - "ted": string[]; - "teamviewer": string[]; - "teamspeak": string[]; - "teespring": string[]; - "tencentqq": string[]; - "telegram": string[]; - "tencentweibo": string[]; - "tencentWeibo": string[]; - "tensorflow": string[]; - "terraform": string[]; - "themeco": string[]; - "tesla": string[]; - "theRedYeti": string[]; - "themoviedatabase": string[]; - "themighty": string[]; - "tidal": string[]; - "themeisle": string[]; - "tiktok": string[]; - "thinkPeaks": string[]; - "todoist": string[]; - "topcoder": string[]; - "toggl": string[]; - "toptal": string[]; - "tinder": string[]; - "tor": string[]; - "toshiba": string[]; - "travisci": string[]; - "trakt": string[]; - "trello": string[]; - "trainerroad": string[]; - "tripadvisor": string[]; - "trulia": string[]; - "tradeFederation": string[]; - "tumblr": string[]; - "treehouse": string[]; - "turkishairlines": string[]; - "twitch": string[]; - "twilio": string[]; - "typescript": string[]; - "twitter": string[]; - "twoo": string[]; - "typo3": string[]; - "ubisoft": string[]; - "uber": string[]; - "ubuntu": string[]; - "ublockorigin": string[]; - "udacity": string[]; - "uikit": string[]; - "umbraco": string[]; - "uniregistry": string[]; - "udemy": string[]; - "untappd": string[]; - "unity": string[]; - "unrealengine": string[]; - "unsplash": string[]; - "ups": string[]; - "upwork": string[]; - "ussunnah": string[]; - "usb": string[]; - "usps": string[]; - "vagrant": string[]; - "vaadin": string[]; - "v8": string[]; - "venmo": string[]; - "verizon": string[]; - "viacoin": string[]; - "viber": string[]; - "vim": string[]; - "viadeo": string[]; - "vine": string[]; - "vimeo": string[]; - "virb": string[]; - "visa": string[]; - "visualstudio": string[]; - "vk": string[]; - "visualstudiocode": string[]; - "vnv": string[]; - "vlc": string[]; - "vueJs": string[]; - "vsco": string[]; - "vuejs": string[]; - "wattpad": string[]; - "waze": string[]; - "webcomponentsDotOrg": string[]; - "webstorm": string[]; - "weasyl": string[]; - "weibo": string[]; - "wechat": string[]; - "webpack": string[]; - "weebly": string[]; - "weixin": string[]; - "whatsapp": string[]; - "wheniwork": string[]; - "wii": string[]; - "whmcs": string[]; - "wikipedia": string[]; - "wiiu": string[]; - "wireguard": string[]; - "wire": string[]; - "wolframLanguage": string[]; - "windows": string[]; - "wix": string[]; - "wolfPackBattalion": string[]; - "wolfram": string[]; - "wordpress": string[]; - "wolframMathematica": string[]; - "wpexplorer": string[]; - "wpengine": string[]; - "wizardsOfTheCoast": string[]; - "wpbeginner": string[]; - "wpforms": string[]; - "wpressr": string[]; - "xero": string[]; - "xPack": string[]; - "xbox": string[]; - "xcode": string[]; - "xrp": string[]; - "xiaomi": string[]; - "xing": string[]; - "yahoo": string[]; - "xsplit": string[]; - "yamahaMotorCorporation": string[]; - "yammer": string[]; - "yamahaCorporation": string[]; - "yarn": string[]; - "yandexInternational": string[]; - "ycombinator": string[]; - "yoast": string[]; - "yelp": string[]; - "yandex": string[]; - "youtube": string[]; - "zalando": string[]; - "zeit": string[]; - "zapier": string[]; - "zendesk": string[]; - "zerply": string[]; - "zhihu": string[]; - "zulip": string[]; - "zoom": string[]; - "zillow": string[]; - "zingat": string[]; - "zorin": string[]; - "apacheFlink": string[]; - "codewars": string[]; - "epicgames": string[]; - "flask": string[]; - "gerrit": string[]; - "gnu": string[]; - "greensock": string[]; - "oldRepublic": string[]; - "babel": string[]; - "composer": string[]; - "elsevier": string[]; -}; -export declare const iconjar: string[]; -export declare const icq: string[]; export declare const ideal: string[]; export declare const ifixit: string[]; +export declare const icq: string[]; export declare const imdb: string[]; -export declare const indeed: string[]; +export declare const iconjar: string[]; export declare const inkscape: string[]; +export declare const indeed: string[]; export declare const instacart: string[]; export declare const instagram: string[]; export declare const instapaper: string[]; -export declare const intel: string[]; export declare const intellijidea: string[]; +export declare const intel: string[]; export declare const intercom: string[]; -export declare const internetExplorer: string[]; -export declare const internetexplorer: string[]; -export declare const invision: string[]; export declare const ionic: string[]; -export declare const ioxhost: string[]; +export declare const invision: string[]; +export declare const internetExplorer: string[]; export declare const issuu: string[]; -export declare const itchDotIo: string[]; -export declare const itchIo: string[]; -export declare const itunesNote: string[]; -export declare const itunes: string[]; export declare const jabber: string[]; -export declare const java: string[]; +export declare const itchIo: string[]; export declare const javascript: string[]; -export declare const jediOrder: string[]; +export declare const java: string[]; export declare const jekyll: string[]; export declare const jenkins: string[]; export declare const jest: string[]; export declare const jet: string[]; export declare const jetbrains: string[]; export declare const jira: string[]; -export declare const joget: string[]; export declare const joomla: string[]; +export declare const js: string[]; export declare const jquery: string[]; -export declare const jsdelivr: string[]; export declare const jsfiddle: string[]; +export declare const jsdelivr: string[]; +export declare const justgiving: string[]; export declare const json: string[]; export declare const jupyter: string[]; -export declare const justgiving: string[]; export declare const kaggle: string[]; -export declare const kaios: string[]; export declare const kaspersky: string[]; +export declare const kaios: string[]; export declare const kentico: string[]; export declare const keras: string[]; export declare const keybase: string[]; export declare const keycdn: string[]; -export declare const khanacademy: string[]; +export declare const khanAcademy: string[]; export declare const kibana: string[]; export declare const kickstarter: string[]; export declare const kik: string[]; -export declare const kirby: string[]; export declare const klout: string[]; -export declare const known: string[]; -export declare const koFi: string[]; +export declare const kirby: string[]; export declare const kodi: string[]; +export declare const koFi: string[]; export declare const koding: string[]; -export declare const korvue: string[]; +export declare const known: string[]; export declare const kotlin: string[]; export declare const krita: string[]; -export declare const kubernetes: string[]; export declare const lanyrd: string[]; +export declare const kubernetes: string[]; +export declare const laravelHorizon: string[]; +export declare const laravelNova: string[]; +export declare const lastFm: string[]; export declare const laravel: string[]; -export declare const laravelhorizon: string[]; -export declare const laravelnova: string[]; -export declare const lastDotFm: string[]; -export declare const lastfm: string[]; export declare const latex: string[]; export declare const launchpad: string[]; -export declare const leanpub: string[]; export declare const leetcode: string[]; export declare const lenovo: string[]; export declare const less: string[]; -export declare const letsencrypt: string[]; -export declare const letterboxd: string[]; +export declare const letsEncrypt: string[]; export declare const lgtm: string[]; +export declare const letterboxd: string[]; export declare const liberapay: string[]; export declare const librarything: string[]; export declare const libreoffice: string[]; export declare const line: string[]; -export declare const linewebtoon: string[]; +export declare const linkedinIn: string[]; export declare const linkedin: string[]; -export declare const linode: string[]; +export declare const linuxFoundation: string[]; +export declare const linuxMint: string[]; export declare const linux: string[]; -export declare const linuxfoundation: string[]; -export declare const linuxmint: string[]; export declare const livejournal: string[]; export declare const livestream: string[]; -export declare const logstash: string[]; export declare const lua: string[]; export declare const lumen: string[]; +export declare const logstash: string[]; export declare const lyft: string[]; export declare const macys: string[]; export declare const magento: string[]; export declare const magisk: string[]; -export declare const mailDotRu: string[]; -export declare const mailchimp: string[]; +export declare const mailRu: string[]; export declare const makerbot: string[]; -export declare const mandalorian: string[]; -export declare const manjaro: string[]; +export declare const mailchimp: string[]; export declare const markdown: string[]; +export declare const manjaro: string[]; export declare const marketo: string[]; export declare const mastercard: string[]; export declare const mastodon: string[]; -export declare const materialdesign: string[]; -export declare const mathworks: string[]; +export declare const materialDesign: string[]; export declare const matrix: string[]; -export declare const mattermost: string[]; +export declare const mathworks: string[]; export declare const matternet: string[]; export declare const maxcdn: string[]; export declare const mcafee: string[]; -export declare const medapps: string[]; +export declare const mattermost: string[]; export declare const mediafire: string[]; -export declare const mediatemple: string[]; -export declare const medium: string[]; -export declare const medrt: string[]; +export declare const mediumM: string[]; +export declare const mediaTemple: string[]; export declare const meetup: string[]; +export declare const medium: string[]; export declare const mega: string[]; -export declare const megaport: string[]; -export declare const mendeley: string[]; export declare const messenger: string[]; +export declare const mendeley: string[]; +export declare const microBlog: string[]; export declare const meteor: string[]; -export declare const microDotBlog: string[]; export declare const microgenetics: string[]; export declare const microsoftEdge: string[]; export declare const microsoft: string[]; @@ -2581,13 +1293,11 @@ export declare const minetest: string[]; export declare const minutemailer: string[]; export declare const mix: string[]; export declare const mixcloud: string[]; -export declare const mixer: string[]; -export declare const mizuni: string[]; -export declare const modx: string[]; export declare const mojang: string[]; export declare const monero: string[]; -export declare const mongodb: string[]; +export declare const mixer: string[]; export declare const monkeytie: string[]; +export declare const mongodb: string[]; export declare const monogram: string[]; export declare const monzo: string[]; export declare const moo: string[]; @@ -2596,282 +1306,223 @@ export declare const mozilla: string[]; export declare const musescore: string[]; export declare const mxlinux: string[]; export declare const myspace: string[]; -export declare const mysql: string[]; -export declare const napster: string[]; export declare const nativescript: string[]; export declare const nec: string[]; export declare const neo4j: string[]; -export declare const neos: string[]; -export declare const netflix: string[]; +export declare const mysql: string[]; export declare const netlify: string[]; export declare const nextJs: string[]; export declare const nextcloud: string[]; +export declare const netflix: string[]; export declare const nextdoor: string[]; export declare const nginx: string[]; export declare const nim: string[]; -export declare const nimblr: string[]; -export declare const nintendo3ds: string[]; export declare const nintendoGamecube: string[]; export declare const nintendoSwitch: string[]; export declare const nintendo: string[]; -export declare const nodeJs: string[]; -export declare const nodeRed: string[]; -export declare const node: string[]; +export declare const nintendo3ds: string[]; export declare const nodemon: string[]; +export declare const nodeRed: string[]; +export declare const nodeJs: string[]; export declare const nokia: string[]; export declare const notion: string[]; export declare const npm: string[]; -export declare const ns8: string[]; export declare const nucleo: string[]; -export declare const nuget: string[]; -export declare const nutritionix: string[]; -export declare const nuxtDotJs: string[]; export declare const nvidia: string[]; +export declare const nuget: string[]; +export declare const nuxtJs: string[]; export declare const ocaml: string[]; export declare const octave: string[]; -export declare const octopusdeploy: string[]; export declare const oculus: string[]; +export declare const octopusDeploy: string[]; export declare const odnoklassniki: string[]; -export declare const oldRepublic: string[]; -export declare const openaccess: string[]; -export declare const opencart: string[]; -export declare const opencollective: string[]; -export declare const openid: string[]; -export declare const opensourceinitiative: string[]; +export declare const openCollective: string[]; +export declare const openAccess: string[]; +export declare const openId: string[]; +export declare const openSourceInitiative: string[]; export declare const openstreetmap: string[]; -export declare const opensuse: string[]; export declare const openvpn: string[]; +export declare const opensuse: string[]; export declare const opera: string[]; export declare const opsgenie: string[]; -export declare const optinMonster: string[]; export declare const oracle: string[]; export declare const orcid: string[]; export declare const origin: string[]; -export declare const osi: string[]; export declare const osmc: string[]; +export declare const osi: string[]; export declare const overcast: string[]; -export declare const overleaf: string[]; export declare const ovh: string[]; -export declare const page4: string[]; -export declare const pagekit: string[]; -export declare const pagelines: string[]; export declare const palantir: string[]; -export declare const palfed: string[]; -export declare const paloaltosoftware: string[]; +export declare const pagekit: string[]; +export declare const overleaf: string[]; export declare const pandora: string[]; export declare const pantheon: string[]; -export declare const patreon: string[]; export declare const paypal: string[]; -export declare const pennyArcade: string[]; -export declare const periscope: string[]; -export declare const phabricator: string[]; -export declare const phoenixFramework: string[]; -export declare const phoenixSquadron: string[]; export declare const php: string[]; -export declare const picartoDotTv: string[]; -export declare const piedPiperAlt: string[]; -export declare const piedPiperHat: string[]; -export declare const piedPiperPp: string[]; -export declare const piedPiper: string[]; +export declare const patreon: string[]; +export declare const periscope: string[]; export declare const pinboard: string[]; +export declare const picartoTv: string[]; export declare const pingdom: string[]; export declare const pingup: string[]; export declare const pinterestP: string[]; export declare const pinterest: string[]; export declare const pivotaltracker: string[]; export declare const plangrid: string[]; -export declare const playerDotMe: string[]; +export declare const playerMe: string[]; export declare const playerfm: string[]; export declare const playstation: string[]; export declare const playstation3: string[]; export declare const playstation4: string[]; export declare const plesk: string[]; export declare const plex: string[]; -export declare const pluralsight: string[]; export declare const plurk: string[]; +export declare const pluralsight: string[]; export declare const pocket: string[]; -export declare const postgresql: string[]; export declare const postman: string[]; export declare const postwoman: string[]; +export declare const postgresql: string[]; +export declare const prismic: string[]; export declare const powershell: string[]; export declare const prettier: string[]; -export declare const prismic: string[]; export declare const probot: string[]; +export declare const productHunt: string[]; export declare const processwire: string[]; -export declare const producthunt: string[]; -export declare const protoDotIo: string[]; export declare const protonmail: string[]; +export declare const protoIo: string[]; export declare const proxmox: string[]; -export declare const pushed: string[]; export declare const pypi: string[]; -export declare const python: string[]; export declare const pytorch: string[]; -export declare const qgis: string[]; +export declare const python: string[]; export declare const qiita: string[]; +export declare const qgis: string[]; export declare const qq: string[]; export declare const qualcomm: string[]; export declare const quantcast: string[]; export declare const quantopian: string[]; export declare const quarkus: string[]; -export declare const quinscape: string[]; -export declare const quora: string[]; export declare const qwiklabs: string[]; export declare const qzone: string[]; -export declare const rProject: string[]; +export declare const quora: string[]; export declare const r: string[]; export declare const radiopublic: string[]; export declare const rails: string[]; -export declare const raspberrypi: string[]; -export declare const ravelry: string[]; +export declare const raspberryPi: string[]; +export declare const readTheDocs: string[]; export declare const react: string[]; -export declare const reacteurope: string[]; export declare const readme: string[]; -export declare const readthedocs: string[]; export declare const realm: string[]; -export declare const reason: string[]; -export declare const rebel: string[]; -export declare const redRiver: string[]; export declare const redbubble: string[]; -export declare const redditAlien: string[]; -export declare const reddit: string[]; +export declare const reason: string[]; +export declare const redditAlt: string[]; export declare const redhat: string[]; +export declare const reddit: string[]; export declare const redis: string[]; -export declare const redux: string[]; -export declare const renren: string[]; -export declare const replyd: string[]; -export declare const researchgate: string[]; -export declare const resolving: string[]; -export declare const rev: string[]; -export declare const reverbnation: string[]; export declare const riot: string[]; -export declare const ripple: string[]; +export declare const redux: string[]; +export declare const reverbnation: string[]; +export declare const renren: string[]; export declare const riseup: string[]; -export declare const rocketchat: string[]; -export declare const rockrms: string[]; +export declare const ripple: string[]; export declare const rollupJs: string[]; export declare const roots: string[]; -export declare const roundcube: string[]; export declare const rss: string[]; export declare const rstudio: string[]; +export declare const roundcube: string[]; export declare const ruby: string[]; export declare const rubygems: string[]; export declare const runkeeper: string[]; -export declare const rust: string[]; export declare const safari: string[]; +export declare const rust: string[]; export declare const sahibinden: string[]; export declare const salesforce: string[]; export declare const saltstack: string[]; export declare const samsungPay: string[]; -export declare const samsung: string[]; export declare const sap: string[]; +export declare const samsung: string[]; +export declare const sassAlt: string[]; export declare const sass: string[]; -export declare const saucelabs: string[]; export declare const scala: string[]; -export declare const scaleway: string[]; -export declare const schlix: string[]; +export declare const saucelabs: string[]; export declare const scribd: string[]; +export declare const scaleway: string[]; export declare const scrutinizerci: string[]; export declare const seagate: string[]; -export declare const searchengin: string[]; export declare const sega: string[]; -export declare const sellcast: string[]; export declare const sellfy: string[]; -export declare const sellsy: string[]; export declare const semaphoreci: string[]; -export declare const sensu: string[]; export declare const sentry: string[]; -export declare const serverfault: string[]; -export declare const servicestack: string[]; +export declare const sensu: string[]; +export declare const serverFault: string[]; export declare const shazam: string[]; -export declare const shell: string[]; -export declare const shirtsinbulk: string[]; export declare const shopify: string[]; -export declare const shopware: string[]; +export declare const shell: string[]; export declare const showpad: string[]; -export declare const siemens: string[]; export declare const signal: string[]; -export declare const simpleicons: string[]; -export declare const simplybuilt: string[]; -export declare const sinaweibo: string[]; -export declare const sistrix: string[]; +export declare const sinaWeibo: string[]; +export declare const siemens: string[]; export declare const sitepoint: string[]; -export declare const sith: string[]; export declare const sketch: string[]; export declare const skillshare: string[]; -export declare const skyatlas: string[]; export declare const skyliner: string[]; export declare const skype: string[]; -export declare const slackHash: string[]; export declare const slack: string[]; export declare const slashdot: string[]; export declare const slickpic: string[]; export declare const slides: string[]; export declare const slideshare: string[]; export declare const smashingmagazine: string[]; -export declare const snapchatGhost: string[]; export declare const snapchat: string[]; export declare const snapcraft: string[]; export declare const snyk: string[]; export declare const society6: string[]; -export declare const socketDotIo: string[]; +export declare const socketIo: string[]; export declare const sogou: string[]; -export declare const solus: string[]; export declare const songkick: string[]; -export declare const sonos: string[]; -export declare const soundcloud: string[]; +export declare const solus: string[]; export declare const sourceforge: string[]; export declare const sourcegraph: string[]; -export declare const sourcetree: string[]; +export declare const soundcloud: string[]; +export declare const sonos: string[]; export declare const spacemacs: string[]; export declare const spacex: string[]; export declare const sparkfun: string[]; export declare const sparkpost: string[]; export declare const spdx: string[]; -export declare const speakap: string[]; -export declare const speakerDeck: string[]; -export declare const speakerdeck: string[]; export declare const spectrum: string[]; export declare const spotify: string[]; -export declare const spotlight: string[]; export declare const spreaker: string[]; +export declare const speakerDeck: string[]; export declare const spring: string[]; +export declare const spotlight: string[]; export declare const sprint: string[]; -export declare const squarespace: string[]; -export declare const stackExchange: string[]; -export declare const stackOverflow: string[]; -export declare const stackbit: string[]; export declare const stackexchange: string[]; export declare const stackoverflow: string[]; -export declare const stackpath: string[]; -export declare const stackshare: string[]; +export declare const stackbit: string[]; +export declare const squarespace: string[]; export declare const stadia: string[]; +export declare const stackshare: string[]; +export declare const stackpath: string[]; export declare const statamic: string[]; export declare const staticman: string[]; export declare const statuspage: string[]; -export declare const staylinked: string[]; -export declare const steamSymbol: string[]; export declare const steam: string[]; export declare const steem: string[]; export declare const steemit: string[]; -export declare const stickerMule: string[]; export declare const stitcher: string[]; export declare const storify: string[]; -export declare const storybook: string[]; export declare const strapi: string[]; +export declare const storybook: string[]; export declare const strava: string[]; export declare const stripe: string[]; export declare const stubhub: string[]; -export declare const studiovinari: string[]; -export declare const stumbleuponCircle: string[]; +export declare const stripeS: string[]; export declare const stumbleupon: string[]; export declare const styleshare: string[]; export declare const stylus: string[]; -export declare const sublimetext: string[]; +export declare const sublimeText: string[]; export declare const subversion: string[]; -export declare const superpowers: string[]; export declare const superuser: string[]; -export declare const supple: string[]; -export declare const suse: string[]; export declare const svelte: string[]; export declare const svg: string[]; export declare const swagger: string[]; @@ -2884,118 +1535,92 @@ export declare const tMobile: string[]; export declare const tableau: string[]; export declare const tails: string[]; export declare const tapas: string[]; -export declare const teamspeak: string[]; export declare const teamviewer: string[]; export declare const ted: string[]; export declare const teespring: string[]; +export declare const telegramPlane: string[]; export declare const telegram: string[]; -export declare const tencentWeibo: string[]; -export declare const tencentqq: string[]; -export declare const tencentweibo: string[]; +export declare const tencentQq: string[]; export declare const tensorflow: string[]; export declare const terraform: string[]; +export declare const tencentWeibo: string[]; export declare const tesla: string[]; -export declare const theRedYeti: string[]; -export declare const themeco: string[]; -export declare const themeisle: string[]; -export declare const themighty: string[]; -export declare const themoviedatabase: string[]; -export declare const thinkPeaks: string[]; +export declare const theMighty: string[]; export declare const tidal: string[]; -export declare const tiktok: string[]; +export declare const theMovieDatabase: string[]; export declare const tinder: string[]; +export declare const tiktok: string[]; export declare const todoist: string[]; export declare const toggl: string[]; export declare const topcoder: string[]; -export declare const toptal: string[]; export declare const tor: string[]; -export declare const toshiba: string[]; -export declare const tradeFederation: string[]; +export declare const toptal: string[]; export declare const trainerroad: string[]; +export declare const toshiba: string[]; export declare const trakt: string[]; -export declare const travisci: string[]; export declare const treehouse: string[]; export declare const trello: string[]; export declare const tripadvisor: string[]; -export declare const trulia: string[]; export declare const tumblr: string[]; -export declare const turkishairlines: string[]; +export declare const trulia: string[]; export declare const twilio: string[]; export declare const twitch: string[]; export declare const twitter: string[]; export declare const twoo: string[]; export declare const typescript: string[]; -export declare const typo3: string[]; export declare const uber: string[]; +export declare const typo3: string[]; +export declare const ublockOrigin: string[]; export declare const ubisoft: string[]; -export declare const ublockorigin: string[]; export declare const ubuntu: string[]; export declare const udacity: string[]; export declare const udemy: string[]; export declare const uikit: string[]; -export declare const umbraco: string[]; -export declare const uniregistry: string[]; +export declare const unrealEngine: string[]; export declare const unity: string[]; -export declare const unrealengine: string[]; +export declare const umbraco: string[]; export declare const unsplash: string[]; export declare const untappd: string[]; -export declare const ups: string[]; export declare const upwork: string[]; export declare const usb: string[]; -export declare const usps: string[]; -export declare const ussunnah: string[]; export declare const v8: string[]; -export declare const vaadin: string[]; export declare const vagrant: string[]; -export declare const venmo: string[]; export declare const verizon: string[]; -export declare const viacoin: string[]; -export declare const viadeo: string[]; +export declare const venmo: string[]; export declare const viber: string[]; export declare const vim: string[]; +export declare const viadeo: string[]; +export declare const vimeoV: string[]; export declare const vimeo: string[]; export declare const vine: string[]; export declare const virb: string[]; export declare const visa: string[]; -export declare const visualstudio: string[]; -export declare const visualstudiocode: string[]; +export declare const visualStudioCode: string[]; +export declare const visualStudio: string[]; export declare const vk: string[]; export declare const vlc: string[]; -export declare const vnv: string[]; export declare const vsco: string[]; export declare const vueJs: string[]; -export declare const vuejs: string[]; -export declare const wattpad: string[]; -export declare const waze: string[]; export declare const weasyl: string[]; -export declare const webcomponentsDotOrg: string[]; +export declare const wattpad: string[]; export declare const webpack: string[]; +export declare const webcomponentsOrg: string[]; export declare const webstorm: string[]; export declare const wechat: string[]; -export declare const weebly: string[]; -export declare const weibo: string[]; -export declare const weixin: string[]; export declare const whatsapp: string[]; -export declare const wheniwork: string[]; -export declare const whmcs: string[]; export declare const wii: string[]; -export declare const wiiu: string[]; +export declare const whenIWork: string[]; export declare const wikipedia: string[]; +export declare const wiiu: string[]; export declare const windows: string[]; export declare const wire: string[]; export declare const wireguard: string[]; export declare const wix: string[]; -export declare const wizardsOfTheCoast: string[]; -export declare const wolfPackBattalion: string[]; export declare const wolframLanguage: string[]; export declare const wolframMathematica: string[]; export declare const wolfram: string[]; export declare const wordpress: string[]; -export declare const wpbeginner: string[]; export declare const wpengine: string[]; -export declare const wpexplorer: string[]; -export declare const wpforms: string[]; -export declare const wpressr: string[]; export declare const xPack: string[]; export declare const xbox: string[]; export declare const xcode: string[]; @@ -3004,25 +1629,32 @@ export declare const xiaomi: string[]; export declare const xing: string[]; export declare const xrp: string[]; export declare const xsplit: string[]; +export declare const yCombinator: string[]; export declare const yahoo: string[]; -export declare const yamahaCorporation: string[]; -export declare const yamahaMotorCorporation: string[]; export declare const yammer: string[]; -export declare const yandexInternational: string[]; export declare const yandex: string[]; export declare const yarn: string[]; -export declare const ycombinator: string[]; export declare const yelp: string[]; -export declare const yoast: string[]; export declare const youtube: string[]; export declare const zalando: string[]; export declare const zapier: string[]; export declare const zeit: string[]; export declare const zendesk: string[]; export declare const zerply: string[]; -export declare const zhihu: string[]; export declare const zillow: string[]; export declare const zingat: string[]; export declare const zoom: string[]; export declare const zorin: string[]; export declare const zulip: string[]; +export declare const deno: string[]; +export declare const epicGames: string[]; +export declare const flask: string[]; +export declare const gerrit: string[]; +export declare const greensock: string[]; +export declare const travisci: string[]; +export declare const apacheFlink: string[]; +export declare const babel: string[]; +export declare const codewars: string[]; +export declare const gnu: string[]; +export declare const composer: string[]; +export declare const elsevier: string[]; \ No newline at end of file diff --git a/js/brand/index.js b/js/brand/index.js index 523e2acbb..07a28f277 100644 --- a/js/brand/index.js +++ b/js/brand/index.js @@ -1,2019 +1,1661 @@ import { brandSet } from './brand-set.js' export { brandSet } -import { n500px } from './500px.js' +import { n500px5 } from './500px-5.js' import { aboutMe } from './about-me.js' +import { n500px } from './500px.js' import { abstract } from './abstract.js' -import { addthis } from './addthis.js' -import { accusoft } from './accusoft.js' import { acm } from './acm.js' -import { adguard } from './adguard.js' -import { adn } from './adn.js' -import { adobeAfterEffects } from './adobe-after-effects.js' -import { adobeAudition } from './adobe-audition.js' -import { acquisitionsIncorporated } from './acquisitions-incorporated.js' -import { adobeDreamweaver } from './adobe-dreamweaver.js' +import { addthis } from './addthis.js' import { adobeAcrobatReader } from './adobe-acrobat-reader.js' -import { adobeIllustrator } from './adobe-illustrator.js' +import { adguard } from './adguard.js' +import { adobeAudition } from './adobe-audition.js' +import { adobeAftereFfects } from './adobe-aftere-ffects.js' import { adobeCreativeCloud } from './adobe-creative-cloud.js' -import { adobeLightroomcc } from './adobe-lightroomcc.js' -import { adobeLightroomclassic } from './adobe-lightroomclassic.js' +import { adobeDreamweaver } from './adobe-dreamweaver.js' import { adobeIndesign } from './adobe-indesign.js' +import { adobeIllustrator } from './adobe-illustrator.js' +import { adobeLightroomClassic } from './adobe-lightroom-classic.js' +import { adobeLightroom } from './adobe-lightroom.js' import { adobePremiere } from './adobe-premiere.js' +import { adobePhotoshop } from './adobe-photoshop.js' import { adobeTypekit } from './adobe-typekit.js' import { adobeXd } from './adobe-xd.js' -import { airbnb } from './airbnb.js' import { adobe } from './adobe.js' -import { adobePhotoshop } from './adobe-photoshop.js' -import { adversal } from './adversal.js' +import { airbnb } from './airbnb.js' import { algolia } from './algolia.js' import { alipay } from './alipay.js' -import { affiliatetheme } from './affiliatetheme.js' import { allocine } from './allocine.js' import { amazonAws } from './amazon-aws.js' import { amazonPay } from './amazon-pay.js' -import { americanExpress } from './american-express.js' import { amd } from './amd.js' import { amazon } from './amazon.js' +import { americanExpress } from './american-express.js' import { anaconda } from './anaconda.js' -import { android } from './android.js' import { analogue } from './analogue.js' -import { amilia } from './amilia.js' -import { angrycreative } from './angrycreative.js' import { androidAlt } from './android-alt.js' +import { android } from './android.js' import { angellist } from './angellist.js' -import { angular } from './angular.js' import { angularUniversal } from './angular-universal.js' -import { apacheAirflow } from './apache-airflow.js' import { ansible } from './ansible.js' +import { angular } from './angular.js' +import { apacheAirflow } from './apache-airflow.js' import { apacheSpark } from './apache-spark.js' +import { appStoreIos } from './app-store-ios.js' +import { apache } from './apache.js' +import { appleMusic } from './apple-music.js' import { appStore } from './app-store.js' import { applePay } from './apple-pay.js' -import { apache } from './apache.js' -import { apper } from './apper.js' -import { aral } from './aral.js' -import { apple } from './apple.js' +import { applePodcasts } from './apple-podcasts.js' import { appveyor } from './appveyor.js' -import { arduino } from './arduino.js' +import { apple } from './apple.js' +import { aral } from './aral.js' import { archLinux } from './arch-linux.js' -import { arxiv } from './arxiv.js' import { archiveOfOurOwn } from './archive-of-our-own.js' +import { arduino } from './arduino.js' import { artstation } from './artstation.js' -import { atAndT } from './at-and-t.js' -import { atlassian } from './atlassian.js' -import { atom } from './atom.js' +import { arxiv } from './arxiv.js' import { asana } from './asana.js' -import { aurelia } from './aurelia.js' +import { atAndT } from './at-and-t.js' +import { atom } from './atom.js' import { audible } from './audible.js' -import { asymmetrik } from './asymmetrik.js' +import { atlassian } from './atlassian.js' import { auth0 } from './auth0.js' +import { automatic } from './automatic.js' +import { aurelia } from './aurelia.js' import { autotask } from './autotask.js' import { aventrix } from './aventrix.js' -import { automatic } from './automatic.js' -import { avianex } from './avianex.js' -import { autoprefixer } from './autoprefixer.js' import { azureArtifacts } from './azure-artifacts.js' import { azureDevops } from './azure-devops.js' -import { aviato } from './aviato.js' -import { aws } from './aws.js' import { azurePipelines } from './azure-pipelines.js' -import { bancontact } from './bancontact.js' import { baidu } from './baidu.js' import { bamboo } from './bamboo.js' import { bandcamp } from './bandcamp.js' -import { battleNet } from './battle-net.js' -import { basecamp } from './basecamp.js' +import { bancontact } from './bancontact.js' import { bathasu } from './bathasu.js' -import { behance } from './behance.js' -import { bimobject } from './bimobject.js' -import { beats } from './beats.js' +import { basecamp } from './basecamp.js' import { bigCartel } from './big-cartel.js' +import { behance } from './behance.js' +import { bing } from './bing.js' import { bit } from './bit.js' import { bitbucket } from './bitbucket.js' -import { bing } from './bing.js' import { bitcoin } from './bitcoin.js' import { bitdefender } from './bitdefender.js' -import { blackTie } from './black-tie.js' -import { bity } from './bity.js' import { bitly } from './bitly.js' +import { blackberry } from './blackberry.js' +import { bloggerB } from './blogger-b.js' import { blender } from './blender.js' import { blogger } from './blogger.js' import { bluetoothB } from './bluetooth-b.js' -import { blackberry } from './blackberry.js' import { bluetooth } from './bluetooth.js' -import { boost } from './boost.js' import { boeing } from './boeing.js' -import { brandAi } from './brand-ai.js' +import { boost } from './boost.js' +import { bootstrap } from './bootstrap.js' import { bower } from './bower.js' +import { brandAi } from './brand-ai.js' +import { brave } from './brave.js' import { btc } from './btc.js' import { buddy } from './buddy.js' -import { bootstrap } from './bootstrap.js' -import { buromobelexperte } from './buromobelexperte.js' -import { brave } from './brave.js' -import { buymeacoffee } from './buymeacoffee.js' +import { buyMeACoffee } from './buy-me-a-coffee.js' import { buffer } from './buffer.js' import { buysellads } from './buysellads.js' -import { c } from './c.js' -import { campaignMonitor } from './campaign-monitor.js' import { buzzfeed } from './buzzfeed.js' import { cakephp } from './cakephp.js' +import { c } from './c.js' +import { campaignMonitor } from './campaign-monitor.js' import { cashapp } from './cashapp.js' -import { canadianMapleLeaf } from './canadian-maple-leaf.js' import { canva } from './canva.js' import { cassandra } from './cassandra.js' import { castro } from './castro.js' -import { castorama } from './castorama.js' -import { ccAmex } from './cc-amex.js' import { ccAmazonPay } from './cc-amazon-pay.js' -import { ccDinersClub } from './cc-diners-club.js' -import { ccDiscover } from './cc-discover.js' import { ccApplePay } from './cc-apple-pay.js' -import { ccPaypal } from './cc-paypal.js' +import { ccDinersClub } from './cc-diners-club.js' +import { ccAmex } from './cc-amex.js' +import { ccDiscover } from './cc-discover.js' import { ccJcb } from './cc-jcb.js' +import { ccPaypal } from './cc-paypal.js' +import { ccMastercard } from './cc-mastercard.js' import { ccStripe } from './cc-stripe.js' import { ccVisa } from './cc-visa.js' -import { ccMastercard } from './cc-mastercard.js' -import { centercode } from './centercode.js' -import { centos } from './centos.js' import { cevo } from './cevo.js' -import { chef } from './chef.js' +import { centos } from './centos.js' import { chase } from './chase.js' +import { chef } from './chef.js' import { chromecast } from './chromecast.js' -import { circleCi } from './circle-ci.js' -import { cisco } from './cisco.js' -import { chrome } from './chrome.js' import { circle } from './circle.js' -import { cirrusci } from './cirrusci.js' +import { circleci } from './circleci.js' import { civicrm } from './civicrm.js' -import { cloudbees } from './cloudbees.js' +import { cisco } from './cisco.js' +import { cirrusci } from './cirrusci.js' import { clockify } from './clockify.js' import { cloudflare } from './cloudflare.js' import { clojure } from './clojure.js' -import { cloudscale } from './cloudscale.js' -import { cloudversify } from './cloudversify.js' +import { cloudbees } from './cloudbees.js' +import { coOp } from './co-op.js' import { codacy } from './codacy.js' -import { cloudsmith } from './cloudsmith.js' +import { cmake } from './cmake.js' +import { codeClimate } from './code-climate.js' import { codecademy } from './codecademy.js' import { codecov } from './codecov.js' -import { coOp } from './co-op.js' -import { cmake } from './cmake.js' -import { codeclimate } from './codeclimate.js' -import { codefactor } from './codefactor.js' import { codeigniter } from './codeigniter.js' -import { codeforces } from './codeforces.js' import { codepen } from './codepen.js' import { coderwall } from './coderwall.js' -import { codio } from './codio.js' import { codesandbox } from './codesandbox.js' -import { codiepie } from './codiepie.js' import { codeship } from './codeship.js' -import { commonworkflowlanguage } from './commonworkflowlanguage.js' +import { codio } from './codio.js' import { coffeescript } from './coffeescript.js' +import { commonWorkflowLanguage } from './common-workflow-language.js' import { condaForge } from './conda-forge.js' -import { confluence } from './confluence.js' import { conekta } from './conekta.js' -import { compropago } from './compropago.js' -import { connectdevelop } from './connectdevelop.js' -import { coveralls } from './coveralls.js' -import { cpanel } from './cpanel.js' +import { confluence } from './confluence.js' +import { coreui } from './coreui.js' import { coursera } from './coursera.js' -import { contao } from './contao.js' +import { coreuiC } from './coreui-c.js' +import { coveralls } from './coveralls.js' import { cplusplus } from './cplusplus.js' import { creativeCommonsBy } from './creative-commons-by.js' +import { cpanel } from './cpanel.js' import { creativeCommonsNcEu } from './creative-commons-nc-eu.js' import { creativeCommonsNcJp } from './creative-commons-nc-jp.js' -import { creativeCommonsPd } from './creative-commons-pd.js' -import { creativeCommonsNd } from './creative-commons-nd.js' -import { creativeCommonsSamplingPlus } from './creative-commons-sampling-plus.js' import { creativeCommonsNc } from './creative-commons-nc.js' +import { creativeCommonsNd } from './creative-commons-nd.js' import { creativeCommonsPdAlt } from './creative-commons-pd-alt.js' -import { creativeCommonsZero } from './creative-commons-zero.js' +import { creativeCommonsPd } from './creative-commons-pd.js' import { creativeCommonsRemix } from './creative-commons-remix.js' -import { creativeCommonsShare } from './creative-commons-share.js' -import { creativeCommonsSampling } from './creative-commons-sampling.js' import { creativeCommonsSa } from './creative-commons-sa.js' -import { crunchyroll } from './crunchyroll.js' +import { creativeCommonsSamplingPlus } from './creative-commons-sampling-plus.js' +import { creativeCommonsSampling } from './creative-commons-sampling.js' +import { creativeCommonsShare } from './creative-commons-share.js' +import { creativeCommonsZero } from './creative-commons-zero.js' import { creativeCommons } from './creative-commons.js' -import { criticalRole } from './critical-role.js' -import { css3Alt } from './css3-alt.js' -import { css3 } from './css3.js' +import { crunchyroll } from './crunchyroll.js' import { crunchbase } from './crunchbase.js' +import { css3Shiled } from './css3-shiled.js' +import { css3 } from './css3.js' +import { d3Js } from './d3-js.js' import { csswizardry } from './csswizardry.js' -import { cuttlefish } from './cuttlefish.js' import { dailymotion } from './dailymotion.js' -import { dAndD } from './d-and-d.js' -import { dAndDBeyond } from './d-and-d-beyond.js' -import { dashcube } from './dashcube.js' -import { dblp } from './dblp.js' -import { d3DotJs } from './d3-dot-js.js' import { dashlane } from './dashlane.js' -import { debian } from './debian.js' import { dazn } from './dazn.js' +import { dblp } from './dblp.js' +import { debian } from './debian.js' import { deepin } from './deepin.js' -import { delicious } from './delicious.js' import { deezer } from './deezer.js' -import { deskpro } from './deskpro.js' -import { dassaultsystemes } from './dassaultsystemes.js' +import { delicious } from './delicious.js' import { dell } from './dell.js' +import { designerNews } from './designer-news.js' import { dependabot } from './dependabot.js' -import { designernews } from './designernews.js' -import { deviantart } from './deviantart.js' -import { deno } from './deno.js' import { devTo } from './dev-to.js' -import { deploydog } from './deploydog.js' +import { deviantart } from './deviantart.js' import { devrant } from './devrant.js' import { diaspora } from './diaspora.js' -import { dhl } from './dhl.js' -import { digg } from './digg.js' -import { digitalocean } from './digitalocean.js' import { digitalOcean } from './digital-ocean.js' import { discord } from './discord.js' -import { disroot } from './disroot.js' +import { digg } from './digg.js' +import { discourse } from './discourse.js' import { discover } from './discover.js' import { disqus } from './disqus.js' -import { discourse } from './discourse.js' -import { dochub } from './dochub.js' +import { disroot } from './disroot.js' import { docker } from './docker.js' +import { django } from './django.js' import { docusign } from './docusign.js' import { dotNet } from './dot-net.js' -import { django } from './django.js' -import { draft2digital } from './draft2digital.js' -import { draugiemDotLv } from './draugiem-dot-lv.js' import { dribbble } from './dribbble.js' -import { dropbox } from './dropbox.js' import { drone } from './drone.js' -import { dyalog } from './dyalog.js' +import { draugiemLv } from './draugiem-lv.js' +import { dropbox } from './dropbox.js' import { drupal } from './drupal.js' -import { dtube } from './dtube.js' -import { earlybirds } from './earlybirds.js' import { duckduckgo } from './duckduckgo.js' -import { dynatrace } from './dynatrace.js' +import { dtube } from './dtube.js' import { ebay } from './ebay.js' -import { elasticcloud } from './elasticcloud.js' -import { edge } from './edge.js' +import { dynatrace } from './dynatrace.js' import { eclipseide } from './eclipseide.js' -import { elastic } from './elastic.js' -import { elasticstack } from './elasticstack.js' -import { elementor } from './elementor.js' -import { electron } from './electron.js' -import { elasticsearch } from './elasticsearch.js' +import { elasticSearch } from './elastic-search.js' +import { elasticCloud } from './elastic-cloud.js' import { elementary } from './elementary.js' +import { elasticStack } from './elastic-stack.js' +import { elastic } from './elastic.js' +import { electron } from './electron.js' import { eleventy } from './eleventy.js' import { ello } from './ello.js' -import { ember } from './ember.js' import { emlakjet } from './emlakjet.js' -import { envato } from './envato.js' -import { empire } from './empire.js' import { empirekred } from './empirekred.js' +import { envato } from './envato.js' import { epson } from './epson.js' -import { erlang } from './erlang.js' -import { envira } from './envira.js' import { esea } from './esea.js' -import { ethereum } from './ethereum.js' import { eslint } from './eslint.js' -import { eventbrite } from './eventbrite.js' -import { everplaces } from './everplaces.js' -import { evernote } from './evernote.js' +import { ethereum } from './ethereum.js' import { etsy } from './etsy.js' -import { eventstore } from './eventstore.js' -import { expertsexchange } from './expertsexchange.js' -import { exercism } from './exercism.js' +import { eventStore } from './event-store.js' +import { eventbrite } from './eventbrite.js' +import { evernote } from './evernote.js' +import { everplaces } from './everplaces.js' import { evry } from './evry.js' -import { expeditedssl } from './expeditedssl.js' -import { expo } from './expo.js' +import { expertsExchange } from './experts-exchange.js' +import { exercism } from './exercism.js' import { eyeem } from './eyeem.js' -import { fSecure } from './f-secure.js' +import { expo } from './expo.js' import { facebookF } from './facebook-f.js' -import { fandango } from './fandango.js' -import { facebookMessenger } from './facebook-messenger.js' -import { fantasyFlightGames } from './fantasy-flight-games.js' -import { favro } from './favro.js' +import { fSecure } from './f-secure.js' import { facebook } from './facebook.js' -import { fedex } from './fedex.js' import { faceit } from './faceit.js' -import { fedora } from './fedora.js' +import { fandango } from './fandango.js' +import { favro } from './favro.js' import { feathub } from './feathub.js' +import { fedora } from './fedora.js' +import { fedex } from './fedex.js' import { feedly } from './feedly.js' -import { fidoalliance } from './fidoalliance.js' -import { filezilla } from './filezilla.js' +import { fidoAlliance } from './fido-alliance.js' import { figma } from './figma.js' -import { firefox } from './firefox.js' -import { firstOrderAlt } from './first-order-alt.js' -import { firstOrder } from './first-order.js' +import { filezilla } from './filezilla.js' import { firebase } from './firebase.js' import { fitbit } from './fitbit.js' -import { firstdraft } from './firstdraft.js' -import { flipboard } from './flipboard.js' import { flickr } from './flickr.js' import { flattr } from './flattr.js' -import { flutter } from './flutter.js' -import { fly } from './fly.js' -import { fontAwesomeAlt } from './font-awesome-alt.js' -import { forumbee } from './forumbee.js' import { fnac } from './fnac.js' +import { flipboard } from './flipboard.js' +import { foursquare } from './foursquare.js' +import { flutter } from './flutter.js' import { freebsd } from './freebsd.js' import { framer } from './framer.js' import { freecodecamp } from './freecodecamp.js' -import { furrynetwork } from './furrynetwork.js' -import { freeCodeCamp } from './free-code-camp.js' -import { fulcrum } from './fulcrum.js' -import { galacticRepublic } from './galactic-republic.js' -import { furaffinity } from './furaffinity.js' -import { galacticSenate } from './galactic-senate.js' -import { gauges } from './gauges.js' -import { gatsby } from './gatsby.js' +import { furAffinity } from './fur-affinity.js' +import { furryNetwork } from './furry-network.js' import { garmin } from './garmin.js' -import { gentoo } from './gentoo.js' +import { gatsby } from './gatsby.js' +import { gauges } from './gauges.js' import { genius } from './genius.js' -import { getPocket } from './get-pocket.js' +import { gentoo } from './gentoo.js' import { geocaching } from './geocaching.js' -import { ggCircle } from './gg-circle.js' -import { ghost } from './ghost.js' -import { gitea } from './gitea.js' import { gg } from './gg.js' -import { githubAlt } from './github-alt.js' +import { ghost } from './ghost.js' import { gimp } from './gimp.js' -import { gitlab } from './gitlab.js' import { git } from './git.js' +import { gitea } from './gitea.js' +import { github } from './github.js' import { gitkraken } from './gitkraken.js' +import { gitlab } from './gitlab.js' import { gitpod } from './gitpod.js' import { gitter } from './gitter.js' -import { glideG } from './glide-g.js' import { glassdoor } from './glassdoor.js' -import { glitch } from './glitch.js' -import { github } from './github.js' import { gmail } from './gmail.js' -import { glide } from './glide.js' -import { godotengine } from './godotengine.js' -import { gnusocial } from './gnusocial.js' -import { gnuprivacyguard } from './gnuprivacyguard.js' -import { gofore } from './gofore.js' -import { gogCom } from './gog-com.js' +import { gnuPrivacyGuard } from './gnu-privacy-guard.js' +import { glitch } from './glitch.js' +import { gnuSocial } from './gnu-social.js' import { go } from './go.js' +import { gogCom } from './gog-com.js' import { goldenline } from './goldenline.js' +import { godotEngine } from './godot-engine.js' import { goodreads } from './goodreads.js' import { googleAds } from './google-ads.js' -import { googleAllo } from './google-allo.js' -import { goodreadsG } from './goodreads-g.js' -import { googleCloud } from './google-cloud.js' import { googleAnalytics } from './google-analytics.js' -import { googleHangouts } from './google-hangouts.js' -import { googleDrive } from './google-drive.js' +import { googleChrome } from './google-chrome.js' +import { googleAllo } from './google-allo.js' +import { googleCloud } from './google-cloud.js' import { googleKeep } from './google-keep.js' import { googlePay } from './google-pay.js' -import { googlePodcasts } from './google-podcasts.js' import { googlePlay } from './google-play.js' -import { googleHangoutschat } from './google-hangoutschat.js' -import { googleWallet } from './google-wallet.js' -import { google } from './google.js' -import { googleScholar } from './google-scholar.js' -import { gradle } from './gradle.js' import { govUk } from './gov-uk.js' -import { graphcool } from './graphcool.js' +import { google } from './google.js' +import { gradle } from './gradle.js' +import { googlesCholar } from './googles-cholar.js' +import { googlePodcasts } from './google-podcasts.js' +import { grafana } from './grafana.js' import { graphql } from './graphql.js' import { grav } from './grav.js' -import { grafana } from './grafana.js' -import { gratipay } from './gratipay.js' +import { graphcool } from './graphcool.js' import { greenkeeper } from './greenkeeper.js' -import { groovy } from './groovy.js' -import { gripfire } from './gripfire.js' -import { groupon } from './groupon.js' -import { grunt } from './grunt.js' import { gravatar } from './gravatar.js' +import { groupon } from './groupon.js' +import { groovy } from './groovy.js' +import { grunt } from './grunt.js' import { gulp } from './gulp.js' +import { gumtree } from './gumtree.js' import { gumroad } from './gumroad.js' import { habr } from './habr.js' -import { gumtree } from './gumtree.js' -import { hackerNews } from './hacker-news.js' -import { hackaday } from './hackaday.js' -import { hackhands } from './hackhands.js' import { hackerearth } from './hackerearth.js' +import { hackerone } from './hackerone.js' +import { hackaday } from './hackaday.js' import { hackerrank } from './hackerrank.js' -import { happycow } from './happycow.js' +import { hackhands } from './hackhands.js' import { hackster } from './hackster.js' +import { happycow } from './happycow.js' import { hashnode } from './hashnode.js' import { haskell } from './haskell.js' -import { hackerone } from './hackerone.js' +import { hatenaBookmark } from './hatena-bookmark.js' import { haxe } from './haxe.js' -import { helm } from './helm.js' -import { here } from './here.js' -import { hexo } from './hexo.js' -import { hatenabookmark } from './hatenabookmark.js' import { heroku } from './heroku.js' -import { hipchat } from './hipchat.js' -import { hireAHelper } from './hire-a-helper.js' -import { hitachi } from './hitachi.js' +import { here } from './here.js' +import { helm } from './helm.js' +import { hexo } from './hexo.js' import { highly } from './highly.js' -import { hips } from './hips.js' -import { homify } from './homify.js' +import { hipchat } from './hipchat.js' +import { hitachi } from './hitachi.js' import { hockeyapp } from './hockeyapp.js' -import { hooli } from './hooli.js' -import { hootsuite } from './hootsuite.js' -import { hornbill } from './hornbill.js' +import { homify } from './homify.js' import { hotjar } from './hotjar.js' -import { html5 } from './html5.js' -import { hp } from './hp.js' +import { hootsuite } from './hootsuite.js' import { houzz } from './houzz.js' -import { huawei } from './huawei.js' +import { hp } from './hp.js' +import { html5Shield } from './html5-shield.js' +import { html5 } from './html5.js' import { htmlacademy } from './htmlacademy.js' -import { iata } from './iata.js' +import { huawei } from './huawei.js' import { hubspot } from './hubspot.js' import { hulu } from './hulu.js' -import { humblebundle } from './humblebundle.js' -import { icloud } from './icloud.js' -import { hurriyetemlak } from './hurriyetemlak.js' +import { humbleBundle } from './humble-bundle.js' +import { iata } from './iata.js' import { ibm } from './ibm.js' +import { icloud } from './icloud.js' +import { ideal } from './ideal.js' +import { ifixit } from './ifixit.js' import { icq } from './icq.js' import { imdb } from './imdb.js' -import { ifixit } from './ifixit.js' -import { indeed } from './indeed.js' -import { ideal } from './ideal.js' import { iconjar } from './iconjar.js' +import { inkscape } from './inkscape.js' +import { indeed } from './indeed.js' import { instacart } from './instacart.js' import { instagram } from './instagram.js' -import { inkscape } from './inkscape.js' import { instapaper } from './instapaper.js' -import { intel } from './intel.js' import { intellijidea } from './intellijidea.js' +import { intel } from './intel.js' import { intercom } from './intercom.js' -import { internetexplorer } from './internetexplorer.js' -import { internetExplorer } from './internet-explorer.js' -import { invision } from './invision.js' import { ionic } from './ionic.js' -import { itchDotIo } from './itch-dot-io.js' -import { itchIo } from './itch-io.js' -import { ioxhost } from './ioxhost.js' -import { itunes } from './itunes.js' +import { invision } from './invision.js' +import { internetExplorer } from './internet-explorer.js' import { issuu } from './issuu.js' import { jabber } from './jabber.js' +import { itchIo } from './itch-io.js' import { javascript } from './javascript.js' -import { itunesNote } from './itunes-note.js' -import { jediOrder } from './jedi-order.js' import { java } from './java.js' +import { jekyll } from './jekyll.js' import { jenkins } from './jenkins.js' import { jest } from './jest.js' -import { jekyll } from './jekyll.js' import { jet } from './jet.js' -import { joget } from './joget.js' import { jetbrains } from './jetbrains.js' import { jira } from './jira.js' import { joomla } from './joomla.js' +import { js } from './js.js' import { jquery } from './jquery.js' import { jsfiddle } from './jsfiddle.js' import { jsdelivr } from './jsdelivr.js' +import { justgiving } from './justgiving.js' import { json } from './json.js' import { jupyter } from './jupyter.js' -import { justgiving } from './justgiving.js' -import { kaspersky } from './kaspersky.js' import { kaggle } from './kaggle.js' +import { kaspersky } from './kaspersky.js' import { kaios } from './kaios.js' import { kentico } from './kentico.js' import { keras } from './keras.js' -import { kibana } from './kibana.js' import { keybase } from './keybase.js' import { keycdn } from './keycdn.js' -import { kik } from './kik.js' -import { khanacademy } from './khanacademy.js' -import { known } from './known.js' +import { khanAcademy } from './khan-academy.js' +import { kibana } from './kibana.js' import { kickstarter } from './kickstarter.js' +import { kik } from './kik.js' +import { klout } from './klout.js' import { kirby } from './kirby.js' import { kodi } from './kodi.js' -import { koding } from './koding.js' -import { korvue } from './korvue.js' -import { klout } from './klout.js' import { koFi } from './ko-fi.js' -import { kubernetes } from './kubernetes.js' +import { koding } from './koding.js' +import { known } from './known.js' import { kotlin } from './kotlin.js' -import { lanyrd } from './lanyrd.js' import { krita } from './krita.js' -import { laravelhorizon } from './laravelhorizon.js' -import { laravelnova } from './laravelnova.js' -import { lastfm } from './lastfm.js' +import { lanyrd } from './lanyrd.js' +import { kubernetes } from './kubernetes.js' +import { laravelHorizon } from './laravel-horizon.js' +import { laravelNova } from './laravel-nova.js' +import { lastFm } from './last-fm.js' import { laravel } from './laravel.js' -import { lastDotFm } from './last-dot-fm.js' +import { latex } from './latex.js' import { launchpad } from './launchpad.js' import { leetcode } from './leetcode.js' -import { less } from './less.js' -import { latex } from './latex.js' -import { leanpub } from './leanpub.js' -import { letterboxd } from './letterboxd.js' import { lenovo } from './lenovo.js' +import { less } from './less.js' +import { letsEncrypt } from './lets-encrypt.js' import { lgtm } from './lgtm.js' -import { letsencrypt } from './letsencrypt.js' +import { letterboxd } from './letterboxd.js' import { liberapay } from './liberapay.js' import { librarything } from './librarything.js' import { libreoffice } from './libreoffice.js' import { line } from './line.js' -import { linewebtoon } from './linewebtoon.js' +import { linkedinIn } from './linkedin-in.js' import { linkedin } from './linkedin.js' +import { linuxFoundation } from './linux-foundation.js' +import { linuxMint } from './linux-mint.js' import { linux } from './linux.js' -import { linuxfoundation } from './linuxfoundation.js' -import { linuxmint } from './linuxmint.js' -import { linode } from './linode.js' import { livejournal } from './livejournal.js' import { livestream } from './livestream.js' +import { lua } from './lua.js' +import { lumen } from './lumen.js' import { logstash } from './logstash.js' import { lyft } from './lyft.js' -import { lua } from './lua.js' import { macys } from './macys.js' -import { magisk } from './magisk.js' import { magento } from './magento.js' -import { lumen } from './lumen.js' -import { mailDotRu } from './mail-dot-ru.js' -import { mandalorian } from './mandalorian.js' -import { manjaro } from './manjaro.js' +import { magisk } from './magisk.js' +import { mailRu } from './mail-ru.js' import { makerbot } from './makerbot.js' import { mailchimp } from './mailchimp.js' -import { mastercard } from './mastercard.js' import { markdown } from './markdown.js' -import { mastodon } from './mastodon.js' +import { manjaro } from './manjaro.js' import { marketo } from './marketo.js' -import { materialdesign } from './materialdesign.js' -import { mathworks } from './mathworks.js' -import { mattermost } from './mattermost.js' -import { matternet } from './matternet.js' +import { mastercard } from './mastercard.js' +import { mastodon } from './mastodon.js' +import { materialDesign } from './material-design.js' import { matrix } from './matrix.js' +import { mathworks } from './mathworks.js' +import { matternet } from './matternet.js' import { maxcdn } from './maxcdn.js' -import { medium } from './medium.js' -import { mediatemple } from './mediatemple.js' -import { medapps } from './medapps.js' import { mcafee } from './mcafee.js' +import { mattermost } from './mattermost.js' import { mediafire } from './mediafire.js' -import { mega } from './mega.js' -import { medrt } from './medrt.js' +import { mediumM } from './medium-m.js' +import { mediaTemple } from './media-temple.js' import { meetup } from './meetup.js' -import { mendeley } from './mendeley.js' +import { medium } from './medium.js' +import { mega } from './mega.js' import { messenger } from './messenger.js' +import { mendeley } from './mendeley.js' +import { microBlog } from './micro-blog.js' import { meteor } from './meteor.js' +import { microgenetics } from './microgenetics.js' import { microsoftEdge } from './microsoft-edge.js' import { microsoft } from './microsoft.js' -import { megaport } from './megaport.js' import { minetest } from './minetest.js' -import { microgenetics } from './microgenetics.js' -import { mix } from './mix.js' -import { microDotBlog } from './micro-dot-blog.js' import { minutemailer } from './minutemailer.js' -import { modx } from './modx.js' +import { mix } from './mix.js' import { mixcloud } from './mixcloud.js' -import { mizuni } from './mizuni.js' import { mojang } from './mojang.js' -import { mixer } from './mixer.js' -import { mongodb } from './mongodb.js' import { monero } from './monero.js' +import { mixer } from './mixer.js' import { monkeytie } from './monkeytie.js' +import { mongodb } from './mongodb.js' +import { monogram } from './monogram.js' +import { monzo } from './monzo.js' import { moo } from './moo.js' import { mozillaFirefox } from './mozilla-firefox.js' -import { monzo } from './monzo.js' -import { mxlinux } from './mxlinux.js' -import { monogram } from './monogram.js' -import { myspace } from './myspace.js' -import { musescore } from './musescore.js' -import { mysql } from './mysql.js' import { mozilla } from './mozilla.js' -import { napster } from './napster.js' +import { musescore } from './musescore.js' +import { mxlinux } from './mxlinux.js' +import { myspace } from './myspace.js' import { nativescript } from './nativescript.js' -import { neo4j } from './neo4j.js' -import { neos } from './neos.js' -import { netflix } from './netflix.js' import { nec } from './nec.js' +import { neo4j } from './neo4j.js' +import { mysql } from './mysql.js' +import { netlify } from './netlify.js' import { nextJs } from './next-js.js' import { nextcloud } from './nextcloud.js' -import { netlify } from './netlify.js' +import { netflix } from './netflix.js' import { nextdoor } from './nextdoor.js' import { nginx } from './nginx.js' -import { nimblr } from './nimblr.js' import { nim } from './nim.js' -import { nintendo } from './nintendo.js' -import { nintendoSwitch } from './nintendo-switch.js' -import { nintendo3ds } from './nintendo-3ds.js' -import { node } from './node.js' -import { nodeJs } from './node-js.js' import { nintendoGamecube } from './nintendo-gamecube.js' -import { nokia } from './nokia.js' -import { nodeRed } from './node-red.js' -import { npm } from './npm.js' +import { nintendoSwitch } from './nintendo-switch.js' +import { nintendo } from './nintendo.js' +import { nintendo3ds } from './nintendo-3ds.js' import { nodemon } from './nodemon.js' +import { nodeRed } from './node-red.js' +import { nodeJs } from './node-js.js' +import { nokia } from './nokia.js' import { notion } from './notion.js' -import { nuget } from './nuget.js' -import { ns8 } from './ns8.js' +import { npm } from './npm.js' import { nucleo } from './nucleo.js' -import { nutritionix } from './nutritionix.js' -import { nuxtDotJs } from './nuxt-dot-js.js' -import { ocaml } from './ocaml.js' -import { odnoklassniki } from './odnoklassniki.js' import { nvidia } from './nvidia.js' -import { octopusdeploy } from './octopusdeploy.js' -import { oculus } from './oculus.js' +import { nuget } from './nuget.js' +import { nuxtJs } from './nuxt-js.js' +import { ocaml } from './ocaml.js' import { octave } from './octave.js' -import { openaccess } from './openaccess.js' -import { opencart } from './opencart.js' -import { opensourceinitiative } from './opensourceinitiative.js' -import { opencollective } from './opencollective.js' -import { openid } from './openid.js' +import { oculus } from './oculus.js' +import { octopusDeploy } from './octopus-deploy.js' +import { odnoklassniki } from './odnoklassniki.js' +import { openCollective } from './open-collective.js' +import { openAccess } from './open-access.js' +import { openId } from './open-id.js' +import { openSourceInitiative } from './open-source-initiative.js' import { openstreetmap } from './openstreetmap.js' -import { opensuse } from './opensuse.js' import { openvpn } from './openvpn.js' -import { opsgenie } from './opsgenie.js' +import { opensuse } from './opensuse.js' import { opera } from './opera.js' -import { optinMonster } from './optin-monster.js' +import { opsgenie } from './opsgenie.js' +import { oracle } from './oracle.js' import { orcid } from './orcid.js' import { origin } from './origin.js' +import { osmc } from './osmc.js' import { osi } from './osi.js' import { overcast } from './overcast.js' -import { overleaf } from './overleaf.js' -import { oracle } from './oracle.js' -import { osmc } from './osmc.js' -import { page4 } from './page4.js' -import { pagekit } from './pagekit.js' import { ovh } from './ovh.js' import { palantir } from './palantir.js' -import { palfed } from './palfed.js' +import { pagekit } from './pagekit.js' +import { overleaf } from './overleaf.js' import { pandora } from './pandora.js' -import { pagelines } from './pagelines.js' -import { paloaltosoftware } from './paloaltosoftware.js' -import { patreon } from './patreon.js' -import { pennyArcade } from './penny-arcade.js' -import { phabricator } from './phabricator.js' -import { paypal } from './paypal.js' import { pantheon } from './pantheon.js' -import { periscope } from './periscope.js' +import { paypal } from './paypal.js' import { php } from './php.js' -import { picartoDotTv } from './picarto-dot-tv.js' -import { phoenixSquadron } from './phoenix-squadron.js' -import { phoenixFramework } from './phoenix-framework.js' -import { piedPiperPp } from './pied-piper-pp.js' +import { patreon } from './patreon.js' +import { periscope } from './periscope.js' import { pinboard } from './pinboard.js' -import { piedPiperHat } from './pied-piper-hat.js' +import { picartoTv } from './picarto-tv.js' import { pingdom } from './pingdom.js' -import { piedPiperAlt } from './pied-piper-alt.js' -import { piedPiper } from './pied-piper.js' -import { plangrid } from './plangrid.js' -import { pinterestP } from './pinterest-p.js' import { pingup } from './pingup.js' +import { pinterestP } from './pinterest-p.js' import { pinterest } from './pinterest.js' import { pivotaltracker } from './pivotaltracker.js' -import { playstation } from './playstation.js' -import { playerDotMe } from './player-dot-me.js' +import { plangrid } from './plangrid.js' +import { playerMe } from './player-me.js' import { playerfm } from './playerfm.js' +import { playstation } from './playstation.js' +import { playstation3 } from './playstation3.js' import { playstation4 } from './playstation4.js' -import { pluralsight } from './pluralsight.js' import { plesk } from './plesk.js' import { plex } from './plex.js' -import { playstation3 } from './playstation3.js' import { plurk } from './plurk.js' -import { postwoman } from './postwoman.js' +import { pluralsight } from './pluralsight.js' import { pocket } from './pocket.js' +import { postman } from './postman.js' +import { postwoman } from './postwoman.js' import { postgresql } from './postgresql.js' +import { prismic } from './prismic.js' import { powershell } from './powershell.js' import { prettier } from './prettier.js' -import { postman } from './postman.js' -import { processwire } from './processwire.js' import { probot } from './probot.js' -import { producthunt } from './producthunt.js' -import { pushed } from './pushed.js' -import { protoDotIo } from './proto-dot-io.js' -import { pypi } from './pypi.js' -import { prismic } from './prismic.js' +import { productHunt } from './product-hunt.js' +import { processwire } from './processwire.js' import { protonmail } from './protonmail.js' +import { protoIo } from './proto-io.js' import { proxmox } from './proxmox.js' -import { python } from './python.js' -import { qgis } from './qgis.js' -import { qiita } from './qiita.js' +import { pypi } from './pypi.js' import { pytorch } from './pytorch.js' -import { quantopian } from './quantopian.js' +import { python } from './python.js' +import { qiita } from './qiita.js' +import { qgis } from './qgis.js' import { qq } from './qq.js' -import { quantcast } from './quantcast.js' import { qualcomm } from './qualcomm.js' -import { quora } from './quora.js' -import { quinscape } from './quinscape.js' -import { qwiklabs } from './qwiklabs.js' +import { quantcast } from './quantcast.js' +import { quantopian } from './quantopian.js' import { quarkus } from './quarkus.js' -import { rProject } from './r-project.js' -import { r } from './r.js' +import { qwiklabs } from './qwiklabs.js' import { qzone } from './qzone.js' +import { quora } from './quora.js' +import { r } from './r.js' import { radiopublic } from './radiopublic.js' -import { raspberrypi } from './raspberrypi.js' import { rails } from './rails.js' -import { reacteurope } from './reacteurope.js' -import { ravelry } from './ravelry.js' +import { raspberryPi } from './raspberry-pi.js' +import { readTheDocs } from './read-the-docs.js' import { react } from './react.js' import { readme } from './readme.js' -import { readthedocs } from './readthedocs.js' -import { rebel } from './rebel.js' import { realm } from './realm.js' -import { reason } from './reason.js' -import { redRiver } from './red-river.js' -import { redhat } from './redhat.js' import { redbubble } from './redbubble.js' -import { redditAlien } from './reddit-alien.js' +import { reason } from './reason.js' +import { redditAlt } from './reddit-alt.js' +import { redhat } from './redhat.js' import { reddit } from './reddit.js' -import { redux } from './redux.js' -import { renren } from './renren.js' -import { researchgate } from './researchgate.js' -import { replyd } from './replyd.js' import { redis } from './redis.js' import { riot } from './riot.js' -import { rev } from './rev.js' -import { resolving } from './resolving.js' -import { ripple } from './ripple.js' +import { redux } from './redux.js' import { reverbnation } from './reverbnation.js' -import { rocketchat } from './rocketchat.js' -import { rockrms } from './rockrms.js' -import { roundcube } from './roundcube.js' +import { renren } from './renren.js' import { riseup } from './riseup.js' -import { roots } from './roots.js' +import { ripple } from './ripple.js' import { rollupJs } from './rollup-js.js' +import { roots } from './roots.js' import { rss } from './rss.js' import { rstudio } from './rstudio.js' +import { roundcube } from './roundcube.js' import { ruby } from './ruby.js' -import { runkeeper } from './runkeeper.js' -import { sahibinden } from './sahibinden.js' import { rubygems } from './rubygems.js' -import { rust } from './rust.js' -import { saltstack } from './saltstack.js' +import { runkeeper } from './runkeeper.js' import { safari } from './safari.js' +import { rust } from './rust.js' +import { sahibinden } from './sahibinden.js' import { salesforce } from './salesforce.js' +import { saltstack } from './saltstack.js' import { samsungPay } from './samsung-pay.js' -import { samsung } from './samsung.js' -import { sass } from './sass.js' import { sap } from './sap.js' +import { samsung } from './samsung.js' +import { sassAlt } from './sass-alt.js' +import { sass } from './sass.js' import { scala } from './scala.js' import { saucelabs } from './saucelabs.js' -import { scaleway } from './scaleway.js' -import { seagate } from './seagate.js' -import { scrutinizerci } from './scrutinizerci.js' -import { schlix } from './schlix.js' import { scribd } from './scribd.js' -import { searchengin } from './searchengin.js' +import { scaleway } from './scaleway.js' +import { scrutinizerci } from './scrutinizerci.js' +import { seagate } from './seagate.js' import { sega } from './sega.js' -import { semaphoreci } from './semaphoreci.js' -import { sellsy } from './sellsy.js' -import { sensu } from './sensu.js' import { sellfy } from './sellfy.js' -import { servicestack } from './servicestack.js' -import { sellcast } from './sellcast.js' +import { semaphoreci } from './semaphoreci.js' import { sentry } from './sentry.js' -import { serverfault } from './serverfault.js' -import { shell } from './shell.js' +import { sensu } from './sensu.js' +import { serverFault } from './server-fault.js' import { shazam } from './shazam.js' -import { shopware } from './shopware.js' -import { shirtsinbulk } from './shirtsinbulk.js' -import { showpad } from './showpad.js' -import { simpleicons } from './simpleicons.js' import { shopify } from './shopify.js' -import { sitepoint } from './sitepoint.js' -import { simplybuilt } from './simplybuilt.js' -import { siemens } from './siemens.js' -import { sistrix } from './sistrix.js' -import { sith } from './sith.js' +import { shell } from './shell.js' +import { showpad } from './showpad.js' import { signal } from './signal.js' -import { sinaweibo } from './sinaweibo.js' +import { sinaWeibo } from './sina-weibo.js' +import { siemens } from './siemens.js' +import { sitepoint } from './sitepoint.js' import { sketch } from './sketch.js' import { skillshare } from './skillshare.js' -import { slackHash } from './slack-hash.js' -import { skyatlas } from './skyatlas.js' -import { slashdot } from './slashdot.js' -import { slideshare } from './slideshare.js' +import { skyliner } from './skyliner.js' import { skype } from './skype.js' import { slack } from './slack.js' -import { skyliner } from './skyliner.js' +import { slashdot } from './slashdot.js' import { slickpic } from './slickpic.js' -import { smashingmagazine } from './smashingmagazine.js' -import { snapchatGhost } from './snapchat-ghost.js' import { slides } from './slides.js' +import { slideshare } from './slideshare.js' +import { smashingmagazine } from './smashingmagazine.js' import { snapchat } from './snapchat.js' import { snapcraft } from './snapcraft.js' -import { sogou } from './sogou.js' -import { society6 } from './society6.js' import { snyk } from './snyk.js' +import { society6 } from './society6.js' +import { socketIo } from './socket-io.js' +import { sogou } from './sogou.js' import { songkick } from './songkick.js' import { solus } from './solus.js' -import { socketDotIo } from './socket-dot-io.js' -import { sonos } from './sonos.js' import { sourceforge } from './sourceforge.js' import { sourcegraph } from './sourcegraph.js' -import { sourcetree } from './sourcetree.js' import { soundcloud } from './soundcloud.js' -import { spacex } from './spacex.js' -import { sparkpost } from './sparkpost.js' +import { sonos } from './sonos.js' import { spacemacs } from './spacemacs.js' +import { spacex } from './spacex.js' import { sparkfun } from './sparkfun.js' +import { sparkpost } from './sparkpost.js' import { spdx } from './spdx.js' -import { speakerDeck } from './speaker-deck.js' import { spectrum } from './spectrum.js' -import { speakap } from './speakap.js' -import { spotlight } from './spotlight.js' -import { speakerdeck } from './speakerdeck.js' import { spotify } from './spotify.js' -import { spring } from './spring.js' import { spreaker } from './spreaker.js' +import { speakerDeck } from './speaker-deck.js' +import { spring } from './spring.js' +import { spotlight } from './spotlight.js' import { sprint } from './sprint.js' -import { squarespace } from './squarespace.js' -import { stackOverflow } from './stack-overflow.js' import { stackexchange } from './stackexchange.js' import { stackoverflow } from './stackoverflow.js' -import { stackExchange } from './stack-exchange.js' import { stackbit } from './stackbit.js' +import { squarespace } from './squarespace.js' +import { stadia } from './stadia.js' +import { stackshare } from './stackshare.js' import { stackpath } from './stackpath.js' import { statamic } from './statamic.js' -import { stackshare } from './stackshare.js' -import { stadia } from './stadia.js' import { staticman } from './staticman.js' import { statuspage } from './statuspage.js' import { steam } from './steam.js' -import { staylinked } from './staylinked.js' -import { steamSymbol } from './steam-symbol.js' import { steem } from './steem.js' import { steemit } from './steemit.js' -import { storybook } from './storybook.js' import { stitcher } from './stitcher.js' -import { stickerMule } from './sticker-mule.js' import { storify } from './storify.js' import { strapi } from './strapi.js' +import { storybook } from './storybook.js' import { strava } from './strava.js' import { stripe } from './stripe.js' import { stubhub } from './stubhub.js' -import { studiovinari } from './studiovinari.js' +import { stripeS } from './stripe-s.js' import { stumbleupon } from './stumbleupon.js' -import { stumbleuponCircle } from './stumbleupon-circle.js' import { styleshare } from './styleshare.js' -import { sublimetext } from './sublimetext.js' import { stylus } from './stylus.js' -import { superpowers } from './superpowers.js' +import { sublimeText } from './sublime-text.js' import { subversion } from './subversion.js' import { superuser } from './superuser.js' -import { supple } from './supple.js' -import { suse } from './suse.js' import { svelte } from './svelte.js' import { svg } from './svg.js' import { swagger } from './swagger.js' import { swarm } from './swarm.js' -import { symfony } from './symfony.js' import { swift } from './swift.js' import { symantec } from './symantec.js' -import { tableau } from './tableau.js' +import { symfony } from './symfony.js' import { synology } from './synology.js' -import { tapas } from './tapas.js' -import { teamspeak } from './teamspeak.js' import { tMobile } from './t-mobile.js' -import { teamviewer } from './teamviewer.js' +import { tableau } from './tableau.js' import { tails } from './tails.js' -import { teespring } from './teespring.js' +import { tapas } from './tapas.js' +import { teamviewer } from './teamviewer.js' import { ted } from './ted.js' -import { tencentqq } from './tencentqq.js' -import { tencentWeibo } from './tencent-weibo.js' +import { teespring } from './teespring.js' +import { telegramPlane } from './telegram-plane.js' import { telegram } from './telegram.js' -import { terraform } from './terraform.js' +import { tencentQq } from './tencent-qq.js' import { tensorflow } from './tensorflow.js' -import { tencentweibo } from './tencentweibo.js' -import { theRedYeti } from './the-red-yeti.js' +import { terraform } from './terraform.js' +import { tencentWeibo } from './tencent-weibo.js' import { tesla } from './tesla.js' -import { themeisle } from './themeisle.js' -import { themighty } from './themighty.js' -import { themeco } from './themeco.js' -import { thinkPeaks } from './think-peaks.js' +import { theMighty } from './the-mighty.js' import { tidal } from './tidal.js' -import { tiktok } from './tiktok.js' +import { theMovieDatabase } from './the-movie-database.js' import { tinder } from './tinder.js' -import { themoviedatabase } from './themoviedatabase.js' +import { tiktok } from './tiktok.js' import { todoist } from './todoist.js' import { toggl } from './toggl.js' -import { toptal } from './toptal.js' import { topcoder } from './topcoder.js' import { tor } from './tor.js' -import { tradeFederation } from './trade-federation.js' +import { toptal } from './toptal.js' import { trainerroad } from './trainerroad.js' import { toshiba } from './toshiba.js' -import { treehouse } from './treehouse.js' import { trakt } from './trakt.js' -import { travisci } from './travisci.js' -import { tripadvisor } from './tripadvisor.js' +import { treehouse } from './treehouse.js' import { trello } from './trello.js' -import { turkishairlines } from './turkishairlines.js' -import { twilio } from './twilio.js' -import { trulia } from './trulia.js' -import { twitch } from './twitch.js' -import { typescript } from './typescript.js' -import { twitter } from './twitter.js' +import { tripadvisor } from './tripadvisor.js' import { tumblr } from './tumblr.js' -import { typo3 } from './typo3.js' +import { trulia } from './trulia.js' +import { twilio } from './twilio.js' +import { twitch } from './twitch.js' +import { twitter } from './twitter.js' import { twoo } from './twoo.js' -import { ublockorigin } from './ublockorigin.js' -import { ubisoft } from './ubisoft.js' +import { typescript } from './typescript.js' import { uber } from './uber.js' +import { typo3 } from './typo3.js' +import { ublockOrigin } from './ublock-origin.js' +import { ubisoft } from './ubisoft.js' import { ubuntu } from './ubuntu.js' -import { uikit } from './uikit.js' -import { udemy } from './udemy.js' -import { umbraco } from './umbraco.js' import { udacity } from './udacity.js' -import { uniregistry } from './uniregistry.js' -import { untappd } from './untappd.js' -import { unsplash } from './unsplash.js' +import { udemy } from './udemy.js' +import { uikit } from './uikit.js' +import { unrealEngine } from './unreal-engine.js' import { unity } from './unity.js' -import { unrealengine } from './unrealengine.js' -import { usb } from './usb.js' +import { umbraco } from './umbraco.js' +import { unsplash } from './unsplash.js' +import { untappd } from './untappd.js' import { upwork } from './upwork.js' -import { usps } from './usps.js' -import { ups } from './ups.js' +import { usb } from './usb.js' import { v8 } from './v8.js' import { vagrant } from './vagrant.js' -import { ussunnah } from './ussunnah.js' import { verizon } from './verizon.js' -import { vaadin } from './vaadin.js' -import { viacoin } from './viacoin.js' import { venmo } from './venmo.js' -import { viadeo } from './viadeo.js' -import { vim } from './vim.js' import { viber } from './viber.js' +import { vim } from './vim.js' +import { viadeo } from './viadeo.js' +import { vimeoV } from './vimeo-v.js' import { vimeo } from './vimeo.js' -import { visa } from './visa.js' import { vine } from './vine.js' -import { visualstudio } from './visualstudio.js' import { virb } from './virb.js' +import { visa } from './visa.js' +import { visualStudioCode } from './visual-studio-code.js' +import { visualStudio } from './visual-studio.js' import { vk } from './vk.js' -import { visualstudiocode } from './visualstudiocode.js' import { vlc } from './vlc.js' -import { vnv } from './vnv.js' import { vsco } from './vsco.js' import { vueJs } from './vue-js.js' -import { vuejs } from './vuejs.js' import { weasyl } from './weasyl.js' import { wattpad } from './wattpad.js' -import { waze } from './waze.js' -import { webstorm } from './webstorm.js' import { webpack } from './webpack.js' +import { webcomponentsOrg } from './webcomponents-org.js' +import { webstorm } from './webstorm.js' import { wechat } from './wechat.js' -import { weebly } from './weebly.js' -import { weibo } from './weibo.js' -import { webcomponentsDotOrg } from './webcomponents-dot-org.js' -import { wheniwork } from './wheniwork.js' -import { weixin } from './weixin.js' -import { whmcs } from './whmcs.js' import { whatsapp } from './whatsapp.js' import { wii } from './wii.js' +import { whenIWork } from './when-i-work.js' import { wikipedia } from './wikipedia.js' import { wiiu } from './wiiu.js' -import { wire } from './wire.js' -import { wix } from './wix.js' -import { wireguard } from './wireguard.js' import { windows } from './windows.js' -import { wizardsOfTheCoast } from './wizards-of-the-coast.js' -import { wolframMathematica } from './wolfram-mathematica.js' -import { wolfPackBattalion } from './wolf-pack-battalion.js' +import { wire } from './wire.js' +import { wireguard } from './wireguard.js' +import { wix } from './wix.js' import { wolframLanguage } from './wolfram-language.js' -import { wordpress } from './wordpress.js' +import { wolframMathematica } from './wolfram-mathematica.js' import { wolfram } from './wolfram.js' -import { wpbeginner } from './wpbeginner.js' -import { wpforms } from './wpforms.js' -import { wpexplorer } from './wpexplorer.js' +import { wordpress } from './wordpress.js' import { wpengine } from './wpengine.js' -import { wpressr } from './wpressr.js' import { xPack } from './x-pack.js' -import { xero } from './xero.js' -import { xcode } from './xcode.js' -import { xiaomi } from './xiaomi.js' import { xbox } from './xbox.js' -import { xrp } from './xrp.js' +import { xcode } from './xcode.js' +import { xero } from './xero.js' +import { xiaomi } from './xiaomi.js' import { xing } from './xing.js' +import { xrp } from './xrp.js' import { xsplit } from './xsplit.js' -import { yamahaCorporation } from './yamaha-corporation.js' -import { yamahaMotorCorporation } from './yamaha-motor-corporation.js' -import { yammer } from './yammer.js' +import { yCombinator } from './y-combinator.js' import { yahoo } from './yahoo.js' -import { ycombinator } from './ycombinator.js' +import { yammer } from './yammer.js' import { yandex } from './yandex.js' -import { yandexInternational } from './yandex-international.js' -import { yelp } from './yelp.js' -import { yoast } from './yoast.js' -import { zalando } from './zalando.js' import { yarn } from './yarn.js' -import { zapier } from './zapier.js' +import { yelp } from './yelp.js' import { youtube } from './youtube.js' +import { zalando } from './zalando.js' +import { zapier } from './zapier.js' import { zeit } from './zeit.js' import { zendesk } from './zendesk.js' -import { zhihu } from './zhihu.js' -import { zingat } from './zingat.js' import { zerply } from './zerply.js' +import { zillow } from './zillow.js' +import { zingat } from './zingat.js' import { zoom } from './zoom.js' import { zorin } from './zorin.js' -import { zillow } from './zillow.js' import { zulip } from './zulip.js' -import { apacheFlink } from './apache-flink.js' -import { codewars } from './codewars.js' -import { epicgames } from './epicgames.js' +import { deno } from './deno.js' +import { epicGames } from './epic-games.js' import { flask } from './flask.js' import { gerrit } from './gerrit.js' -import { gnu } from './gnu.js' import { greensock } from './greensock.js' -import { oldRepublic } from './old-republic.js' +import { travisci } from './travisci.js' +import { apacheFlink } from './apache-flink.js' import { babel } from './babel.js' +import { codewars } from './codewars.js' +import { gnu } from './gnu.js' import { composer } from './composer.js' import { elsevier } from './elsevier.js' -export { n500px } +export { n500px5 } export { aboutMe } +export { n500px } export { abstract } -export { addthis } -export { accusoft } export { acm } -export { adguard } -export { adn } -export { adobeAfterEffects } -export { adobeAudition } -export { acquisitionsIncorporated } -export { adobeDreamweaver } +export { addthis } export { adobeAcrobatReader } -export { adobeIllustrator } +export { adguard } +export { adobeAudition } +export { adobeAftereFfects } export { adobeCreativeCloud } -export { adobeLightroomcc } -export { adobeLightroomclassic } +export { adobeDreamweaver } export { adobeIndesign } +export { adobeIllustrator } +export { adobeLightroomClassic } +export { adobeLightroom } export { adobePremiere } +export { adobePhotoshop } export { adobeTypekit } export { adobeXd } -export { airbnb } export { adobe } -export { adobePhotoshop } -export { adversal } +export { airbnb } export { algolia } export { alipay } -export { affiliatetheme } export { allocine } export { amazonAws } export { amazonPay } -export { americanExpress } export { amd } export { amazon } +export { americanExpress } export { anaconda } -export { android } export { analogue } -export { amilia } -export { angrycreative } export { androidAlt } +export { android } export { angellist } -export { angular } export { angularUniversal } -export { apacheAirflow } export { ansible } +export { angular } +export { apacheAirflow } export { apacheSpark } +export { appStoreIos } +export { apache } +export { appleMusic } export { appStore } export { applePay } -export { apache } -export { apper } -export { aral } -export { apple } +export { applePodcasts } export { appveyor } -export { arduino } +export { apple } +export { aral } export { archLinux } -export { arxiv } export { archiveOfOurOwn } +export { arduino } export { artstation } -export { atAndT } -export { atlassian } -export { atom } +export { arxiv } export { asana } -export { aurelia } +export { atAndT } +export { atom } export { audible } -export { asymmetrik } +export { atlassian } export { auth0 } +export { automatic } +export { aurelia } export { autotask } export { aventrix } -export { automatic } -export { avianex } -export { autoprefixer } export { azureArtifacts } export { azureDevops } -export { aviato } -export { aws } export { azurePipelines } -export { bancontact } export { baidu } export { bamboo } export { bandcamp } -export { battleNet } -export { basecamp } +export { bancontact } export { bathasu } -export { behance } -export { bimobject } -export { beats } +export { basecamp } export { bigCartel } +export { behance } +export { bing } export { bit } export { bitbucket } -export { bing } export { bitcoin } export { bitdefender } -export { blackTie } -export { bity } export { bitly } +export { blackberry } +export { bloggerB } export { blender } export { blogger } export { bluetoothB } -export { blackberry } export { bluetooth } -export { boost } export { boeing } -export { brandAi } +export { boost } +export { bootstrap } export { bower } +export { brandAi } +export { brave } export { btc } export { buddy } -export { bootstrap } -export { buromobelexperte } -export { brave } -export { buymeacoffee } +export { buyMeACoffee } export { buffer } export { buysellads } -export { c } -export { campaignMonitor } export { buzzfeed } export { cakephp } +export { c } +export { campaignMonitor } export { cashapp } -export { canadianMapleLeaf } export { canva } export { cassandra } export { castro } -export { castorama } -export { ccAmex } export { ccAmazonPay } -export { ccDinersClub } -export { ccDiscover } export { ccApplePay } -export { ccPaypal } +export { ccDinersClub } +export { ccAmex } +export { ccDiscover } export { ccJcb } +export { ccPaypal } +export { ccMastercard } export { ccStripe } export { ccVisa } -export { ccMastercard } -export { centercode } -export { centos } export { cevo } -export { chef } +export { centos } export { chase } +export { chef } export { chromecast } -export { circleCi } -export { cisco } -export { chrome } export { circle } -export { cirrusci } +export { circleci } export { civicrm } -export { cloudbees } +export { cisco } +export { cirrusci } export { clockify } export { cloudflare } export { clojure } -export { cloudscale } -export { cloudversify } +export { cloudbees } +export { coOp } export { codacy } -export { cloudsmith } +export { cmake } +export { codeClimate } export { codecademy } export { codecov } -export { coOp } -export { cmake } -export { codeclimate } -export { codefactor } export { codeigniter } -export { codeforces } export { codepen } export { coderwall } -export { codio } export { codesandbox } -export { codiepie } export { codeship } -export { commonworkflowlanguage } +export { codio } export { coffeescript } +export { commonWorkflowLanguage } export { condaForge } -export { confluence } export { conekta } -export { compropago } -export { connectdevelop } -export { coveralls } -export { cpanel } +export { confluence } +export { coreui } export { coursera } -export { contao } +export { coreuiC } +export { coveralls } export { cplusplus } export { creativeCommonsBy } +export { cpanel } export { creativeCommonsNcEu } export { creativeCommonsNcJp } -export { creativeCommonsPd } -export { creativeCommonsNd } -export { creativeCommonsSamplingPlus } export { creativeCommonsNc } +export { creativeCommonsNd } export { creativeCommonsPdAlt } -export { creativeCommonsZero } +export { creativeCommonsPd } export { creativeCommonsRemix } -export { creativeCommonsShare } -export { creativeCommonsSampling } export { creativeCommonsSa } -export { crunchyroll } +export { creativeCommonsSamplingPlus } +export { creativeCommonsSampling } +export { creativeCommonsShare } +export { creativeCommonsZero } export { creativeCommons } -export { criticalRole } -export { css3Alt } -export { css3 } +export { crunchyroll } export { crunchbase } +export { css3Shiled } +export { css3 } +export { d3Js } export { csswizardry } -export { cuttlefish } export { dailymotion } -export { dAndD } -export { dAndDBeyond } -export { dashcube } -export { dblp } -export { d3DotJs } export { dashlane } -export { debian } export { dazn } +export { dblp } +export { debian } export { deepin } -export { delicious } export { deezer } -export { deskpro } -export { dassaultsystemes } +export { delicious } export { dell } +export { designerNews } export { dependabot } -export { designernews } -export { deviantart } -export { deno } export { devTo } -export { deploydog } +export { deviantart } export { devrant } export { diaspora } -export { dhl } -export { digg } -export { digitalocean } export { digitalOcean } export { discord } -export { disroot } +export { digg } +export { discourse } export { discover } export { disqus } -export { discourse } -export { dochub } +export { disroot } export { docker } +export { django } export { docusign } export { dotNet } -export { django } -export { draft2digital } -export { draugiemDotLv } export { dribbble } -export { dropbox } export { drone } -export { dyalog } +export { draugiemLv } +export { dropbox } export { drupal } -export { dtube } -export { earlybirds } export { duckduckgo } -export { dynatrace } +export { dtube } export { ebay } -export { elasticcloud } -export { edge } +export { dynatrace } export { eclipseide } -export { elastic } -export { elasticstack } -export { elementor } -export { electron } -export { elasticsearch } +export { elasticSearch } +export { elasticCloud } export { elementary } +export { elasticStack } +export { elastic } +export { electron } export { eleventy } export { ello } -export { ember } export { emlakjet } -export { envato } -export { empire } export { empirekred } +export { envato } export { epson } -export { erlang } -export { envira } export { esea } -export { ethereum } export { eslint } -export { eventbrite } -export { everplaces } -export { evernote } +export { ethereum } export { etsy } -export { eventstore } -export { expertsexchange } -export { exercism } +export { eventStore } +export { eventbrite } +export { evernote } +export { everplaces } export { evry } -export { expeditedssl } -export { expo } +export { expertsExchange } +export { exercism } export { eyeem } -export { fSecure } +export { expo } export { facebookF } -export { fandango } -export { facebookMessenger } -export { fantasyFlightGames } -export { favro } +export { fSecure } export { facebook } -export { fedex } export { faceit } -export { fedora } +export { fandango } +export { favro } export { feathub } +export { fedora } +export { fedex } export { feedly } -export { fidoalliance } -export { filezilla } +export { fidoAlliance } export { figma } -export { firefox } -export { firstOrderAlt } -export { firstOrder } +export { filezilla } export { firebase } export { fitbit } -export { firstdraft } -export { flipboard } export { flickr } export { flattr } -export { flutter } -export { fly } -export { fontAwesomeAlt } -export { forumbee } export { fnac } +export { flipboard } +export { foursquare } +export { flutter } export { freebsd } export { framer } export { freecodecamp } -export { furrynetwork } -export { freeCodeCamp } -export { fulcrum } -export { galacticRepublic } -export { furaffinity } -export { galacticSenate } -export { gauges } -export { gatsby } +export { furAffinity } +export { furryNetwork } export { garmin } -export { gentoo } +export { gatsby } +export { gauges } export { genius } -export { getPocket } +export { gentoo } export { geocaching } -export { ggCircle } -export { ghost } -export { gitea } export { gg } -export { githubAlt } +export { ghost } export { gimp } -export { gitlab } export { git } +export { gitea } +export { github } export { gitkraken } +export { gitlab } export { gitpod } export { gitter } -export { glideG } export { glassdoor } -export { glitch } -export { github } export { gmail } -export { glide } -export { godotengine } -export { gnusocial } -export { gnuprivacyguard } -export { gofore } -export { gogCom } +export { gnuPrivacyGuard } +export { glitch } +export { gnuSocial } export { go } +export { gogCom } export { goldenline } +export { godotEngine } export { goodreads } export { googleAds } -export { googleAllo } -export { goodreadsG } -export { googleCloud } export { googleAnalytics } -export { googleHangouts } -export { googleDrive } +export { googleChrome } +export { googleAllo } +export { googleCloud } export { googleKeep } export { googlePay } -export { googlePodcasts } export { googlePlay } -export { googleHangoutschat } -export { googleWallet } -export { google } -export { googleScholar } -export { gradle } export { govUk } -export { graphcool } +export { google } +export { gradle } +export { googlesCholar } +export { googlePodcasts } +export { grafana } export { graphql } export { grav } -export { grafana } -export { gratipay } +export { graphcool } export { greenkeeper } -export { groovy } -export { gripfire } -export { groupon } -export { grunt } export { gravatar } +export { groupon } +export { groovy } +export { grunt } export { gulp } +export { gumtree } export { gumroad } export { habr } -export { gumtree } -export { hackerNews } -export { hackaday } -export { hackhands } export { hackerearth } +export { hackerone } +export { hackaday } export { hackerrank } -export { happycow } +export { hackhands } export { hackster } +export { happycow } export { hashnode } export { haskell } -export { hackerone } +export { hatenaBookmark } export { haxe } -export { helm } -export { here } -export { hexo } -export { hatenabookmark } export { heroku } -export { hipchat } -export { hireAHelper } -export { hitachi } +export { here } +export { helm } +export { hexo } export { highly } -export { hips } -export { homify } +export { hipchat } +export { hitachi } export { hockeyapp } -export { hooli } -export { hootsuite } -export { hornbill } +export { homify } export { hotjar } -export { html5 } -export { hp } +export { hootsuite } export { houzz } -export { huawei } +export { hp } +export { html5Shield } +export { html5 } export { htmlacademy } -export { iata } +export { huawei } export { hubspot } export { hulu } -export { humblebundle } -export { icloud } -export { hurriyetemlak } +export { humbleBundle } +export { iata } export { ibm } +export { icloud } +export { ideal } +export { ifixit } export { icq } export { imdb } -export { ifixit } -export { indeed } -export { ideal } export { iconjar } +export { inkscape } +export { indeed } export { instacart } export { instagram } -export { inkscape } export { instapaper } -export { intel } export { intellijidea } +export { intel } export { intercom } -export { internetexplorer } -export { internetExplorer } -export { invision } export { ionic } -export { itchDotIo } -export { itchIo } -export { ioxhost } -export { itunes } +export { invision } +export { internetExplorer } export { issuu } export { jabber } +export { itchIo } export { javascript } -export { itunesNote } -export { jediOrder } export { java } +export { jekyll } export { jenkins } export { jest } -export { jekyll } export { jet } -export { joget } export { jetbrains } export { jira } export { joomla } +export { js } export { jquery } export { jsfiddle } export { jsdelivr } +export { justgiving } export { json } export { jupyter } -export { justgiving } -export { kaspersky } export { kaggle } +export { kaspersky } export { kaios } export { kentico } export { keras } -export { kibana } export { keybase } export { keycdn } -export { kik } -export { khanacademy } -export { known } +export { khanAcademy } +export { kibana } export { kickstarter } +export { kik } +export { klout } export { kirby } export { kodi } -export { koding } -export { korvue } -export { klout } export { koFi } -export { kubernetes } +export { koding } +export { known } export { kotlin } -export { lanyrd } export { krita } -export { laravelhorizon } -export { laravelnova } -export { lastfm } +export { lanyrd } +export { kubernetes } +export { laravelHorizon } +export { laravelNova } +export { lastFm } export { laravel } -export { lastDotFm } +export { latex } export { launchpad } export { leetcode } -export { less } -export { latex } -export { leanpub } -export { letterboxd } export { lenovo } +export { less } +export { letsEncrypt } export { lgtm } -export { letsencrypt } +export { letterboxd } export { liberapay } export { librarything } export { libreoffice } export { line } -export { linewebtoon } +export { linkedinIn } export { linkedin } +export { linuxFoundation } +export { linuxMint } export { linux } -export { linuxfoundation } -export { linuxmint } -export { linode } export { livejournal } export { livestream } +export { lua } +export { lumen } export { logstash } export { lyft } -export { lua } export { macys } -export { magisk } export { magento } -export { lumen } -export { mailDotRu } -export { mandalorian } -export { manjaro } +export { magisk } +export { mailRu } export { makerbot } export { mailchimp } -export { mastercard } export { markdown } -export { mastodon } +export { manjaro } export { marketo } -export { materialdesign } -export { mathworks } -export { mattermost } -export { matternet } +export { mastercard } +export { mastodon } +export { materialDesign } export { matrix } +export { mathworks } +export { matternet } export { maxcdn } -export { medium } -export { mediatemple } -export { medapps } export { mcafee } +export { mattermost } export { mediafire } -export { mega } -export { medrt } +export { mediumM } +export { mediaTemple } export { meetup } -export { mendeley } +export { medium } +export { mega } export { messenger } +export { mendeley } +export { microBlog } export { meteor } +export { microgenetics } export { microsoftEdge } export { microsoft } -export { megaport } export { minetest } -export { microgenetics } -export { mix } -export { microDotBlog } export { minutemailer } -export { modx } +export { mix } export { mixcloud } -export { mizuni } export { mojang } -export { mixer } -export { mongodb } export { monero } +export { mixer } export { monkeytie } +export { mongodb } +export { monogram } +export { monzo } export { moo } export { mozillaFirefox } -export { monzo } -export { mxlinux } -export { monogram } -export { myspace } -export { musescore } -export { mysql } export { mozilla } -export { napster } +export { musescore } +export { mxlinux } +export { myspace } export { nativescript } -export { neo4j } -export { neos } -export { netflix } export { nec } +export { neo4j } +export { mysql } +export { netlify } export { nextJs } export { nextcloud } -export { netlify } +export { netflix } export { nextdoor } export { nginx } -export { nimblr } export { nim } -export { nintendo } -export { nintendoSwitch } -export { nintendo3ds } -export { node } -export { nodeJs } export { nintendoGamecube } -export { nokia } -export { nodeRed } -export { npm } +export { nintendoSwitch } +export { nintendo } +export { nintendo3ds } export { nodemon } +export { nodeRed } +export { nodeJs } +export { nokia } export { notion } -export { nuget } -export { ns8 } +export { npm } export { nucleo } -export { nutritionix } -export { nuxtDotJs } -export { ocaml } -export { odnoklassniki } export { nvidia } -export { octopusdeploy } -export { oculus } +export { nuget } +export { nuxtJs } +export { ocaml } export { octave } -export { openaccess } -export { opencart } -export { opensourceinitiative } -export { opencollective } -export { openid } +export { oculus } +export { octopusDeploy } +export { odnoklassniki } +export { openCollective } +export { openAccess } +export { openId } +export { openSourceInitiative } export { openstreetmap } -export { opensuse } export { openvpn } -export { opsgenie } +export { opensuse } export { opera } -export { optinMonster } +export { opsgenie } +export { oracle } export { orcid } export { origin } +export { osmc } export { osi } export { overcast } -export { overleaf } -export { oracle } -export { osmc } -export { page4 } -export { pagekit } export { ovh } export { palantir } -export { palfed } +export { pagekit } +export { overleaf } export { pandora } -export { pagelines } -export { paloaltosoftware } -export { patreon } -export { pennyArcade } -export { phabricator } -export { paypal } export { pantheon } -export { periscope } +export { paypal } export { php } -export { picartoDotTv } -export { phoenixSquadron } -export { phoenixFramework } -export { piedPiperPp } +export { patreon } +export { periscope } export { pinboard } -export { piedPiperHat } +export { picartoTv } export { pingdom } -export { piedPiperAlt } -export { piedPiper } -export { plangrid } -export { pinterestP } export { pingup } +export { pinterestP } export { pinterest } export { pivotaltracker } -export { playstation } -export { playerDotMe } +export { plangrid } +export { playerMe } export { playerfm } +export { playstation } +export { playstation3 } export { playstation4 } -export { pluralsight } export { plesk } export { plex } -export { playstation3 } export { plurk } -export { postwoman } +export { pluralsight } export { pocket } +export { postman } +export { postwoman } export { postgresql } +export { prismic } export { powershell } export { prettier } -export { postman } -export { processwire } export { probot } -export { producthunt } -export { pushed } -export { protoDotIo } -export { pypi } -export { prismic } +export { productHunt } +export { processwire } export { protonmail } +export { protoIo } export { proxmox } -export { python } -export { qgis } -export { qiita } +export { pypi } export { pytorch } -export { quantopian } +export { python } +export { qiita } +export { qgis } export { qq } -export { quantcast } export { qualcomm } -export { quora } -export { quinscape } -export { qwiklabs } +export { quantcast } +export { quantopian } export { quarkus } -export { rProject } -export { r } +export { qwiklabs } export { qzone } +export { quora } +export { r } export { radiopublic } -export { raspberrypi } export { rails } -export { reacteurope } -export { ravelry } +export { raspberryPi } +export { readTheDocs } export { react } export { readme } -export { readthedocs } -export { rebel } export { realm } -export { reason } -export { redRiver } -export { redhat } export { redbubble } -export { redditAlien } +export { reason } +export { redditAlt } +export { redhat } export { reddit } -export { redux } -export { renren } -export { researchgate } -export { replyd } export { redis } export { riot } -export { rev } -export { resolving } -export { ripple } +export { redux } export { reverbnation } -export { rocketchat } -export { rockrms } -export { roundcube } +export { renren } export { riseup } -export { roots } +export { ripple } export { rollupJs } +export { roots } export { rss } export { rstudio } +export { roundcube } export { ruby } -export { runkeeper } -export { sahibinden } export { rubygems } -export { rust } -export { saltstack } +export { runkeeper } export { safari } +export { rust } +export { sahibinden } export { salesforce } +export { saltstack } export { samsungPay } -export { samsung } -export { sass } export { sap } +export { samsung } +export { sassAlt } +export { sass } export { scala } export { saucelabs } -export { scaleway } -export { seagate } -export { scrutinizerci } -export { schlix } export { scribd } -export { searchengin } +export { scaleway } +export { scrutinizerci } +export { seagate } export { sega } -export { semaphoreci } -export { sellsy } -export { sensu } export { sellfy } -export { servicestack } -export { sellcast } +export { semaphoreci } export { sentry } -export { serverfault } -export { shell } +export { sensu } +export { serverFault } export { shazam } -export { shopware } -export { shirtsinbulk } -export { showpad } -export { simpleicons } export { shopify } -export { sitepoint } -export { simplybuilt } -export { siemens } -export { sistrix } -export { sith } +export { shell } +export { showpad } export { signal } -export { sinaweibo } +export { sinaWeibo } +export { siemens } +export { sitepoint } export { sketch } export { skillshare } -export { slackHash } -export { skyatlas } -export { slashdot } -export { slideshare } +export { skyliner } export { skype } export { slack } -export { skyliner } +export { slashdot } export { slickpic } -export { smashingmagazine } -export { snapchatGhost } export { slides } +export { slideshare } +export { smashingmagazine } export { snapchat } export { snapcraft } -export { sogou } -export { society6 } export { snyk } +export { society6 } +export { socketIo } +export { sogou } export { songkick } export { solus } -export { socketDotIo } -export { sonos } export { sourceforge } export { sourcegraph } -export { sourcetree } export { soundcloud } -export { spacex } -export { sparkpost } +export { sonos } export { spacemacs } +export { spacex } export { sparkfun } +export { sparkpost } export { spdx } -export { speakerDeck } export { spectrum } -export { speakap } -export { spotlight } -export { speakerdeck } export { spotify } -export { spring } export { spreaker } +export { speakerDeck } +export { spring } +export { spotlight } export { sprint } -export { squarespace } -export { stackOverflow } export { stackexchange } export { stackoverflow } -export { stackExchange } export { stackbit } +export { squarespace } +export { stadia } +export { stackshare } export { stackpath } export { statamic } -export { stackshare } -export { stadia } export { staticman } export { statuspage } export { steam } -export { staylinked } -export { steamSymbol } export { steem } export { steemit } -export { storybook } export { stitcher } -export { stickerMule } export { storify } export { strapi } +export { storybook } export { strava } export { stripe } export { stubhub } -export { studiovinari } +export { stripeS } export { stumbleupon } -export { stumbleuponCircle } export { styleshare } -export { sublimetext } export { stylus } -export { superpowers } +export { sublimeText } export { subversion } export { superuser } -export { supple } -export { suse } export { svelte } export { svg } export { swagger } export { swarm } -export { symfony } export { swift } export { symantec } -export { tableau } +export { symfony } export { synology } -export { tapas } -export { teamspeak } export { tMobile } -export { teamviewer } +export { tableau } export { tails } -export { teespring } +export { tapas } +export { teamviewer } export { ted } -export { tencentqq } -export { tencentWeibo } +export { teespring } +export { telegramPlane } export { telegram } -export { terraform } +export { tencentQq } export { tensorflow } -export { tencentweibo } -export { theRedYeti } +export { terraform } +export { tencentWeibo } export { tesla } -export { themeisle } -export { themighty } -export { themeco } -export { thinkPeaks } +export { theMighty } export { tidal } -export { tiktok } +export { theMovieDatabase } export { tinder } -export { themoviedatabase } +export { tiktok } export { todoist } export { toggl } -export { toptal } export { topcoder } export { tor } -export { tradeFederation } +export { toptal } export { trainerroad } export { toshiba } -export { treehouse } export { trakt } -export { travisci } -export { tripadvisor } +export { treehouse } export { trello } -export { turkishairlines } -export { twilio } -export { trulia } -export { twitch } -export { typescript } -export { twitter } +export { tripadvisor } export { tumblr } -export { typo3 } +export { trulia } +export { twilio } +export { twitch } +export { twitter } export { twoo } -export { ublockorigin } -export { ubisoft } +export { typescript } export { uber } +export { typo3 } +export { ublockOrigin } +export { ubisoft } export { ubuntu } -export { uikit } -export { udemy } -export { umbraco } export { udacity } -export { uniregistry } -export { untappd } -export { unsplash } +export { udemy } +export { uikit } +export { unrealEngine } export { unity } -export { unrealengine } -export { usb } +export { umbraco } +export { unsplash } +export { untappd } export { upwork } -export { usps } -export { ups } +export { usb } export { v8 } export { vagrant } -export { ussunnah } export { verizon } -export { vaadin } -export { viacoin } export { venmo } -export { viadeo } -export { vim } export { viber } +export { vim } +export { viadeo } +export { vimeoV } export { vimeo } -export { visa } export { vine } -export { visualstudio } export { virb } +export { visa } +export { visualStudioCode } +export { visualStudio } export { vk } -export { visualstudiocode } export { vlc } -export { vnv } export { vsco } export { vueJs } -export { vuejs } export { weasyl } export { wattpad } -export { waze } -export { webstorm } export { webpack } +export { webcomponentsOrg } +export { webstorm } export { wechat } -export { weebly } -export { weibo } -export { webcomponentsDotOrg } -export { wheniwork } -export { weixin } -export { whmcs } export { whatsapp } export { wii } +export { whenIWork } export { wikipedia } export { wiiu } -export { wire } -export { wix } -export { wireguard } export { windows } -export { wizardsOfTheCoast } -export { wolframMathematica } -export { wolfPackBattalion } +export { wire } +export { wireguard } +export { wix } export { wolframLanguage } -export { wordpress } +export { wolframMathematica } export { wolfram } -export { wpbeginner } -export { wpforms } -export { wpexplorer } +export { wordpress } export { wpengine } -export { wpressr } export { xPack } -export { xero } -export { xcode } -export { xiaomi } export { xbox } -export { xrp } +export { xcode } +export { xero } +export { xiaomi } export { xing } +export { xrp } export { xsplit } -export { yamahaCorporation } -export { yamahaMotorCorporation } -export { yammer } +export { yCombinator } export { yahoo } -export { ycombinator } +export { yammer } export { yandex } -export { yandexInternational } -export { yelp } -export { yoast } -export { zalando } export { yarn } -export { zapier } +export { yelp } export { youtube } +export { zalando } +export { zapier } export { zeit } export { zendesk } -export { zhihu } -export { zingat } export { zerply } +export { zillow } +export { zingat } export { zoom } export { zorin } -export { zillow } export { zulip } -export { apacheFlink } -export { codewars } -export { epicgames } +export { deno } +export { epicGames } export { flask } export { gerrit } -export { gnu } export { greensock } -export { oldRepublic } +export { travisci } +export { apacheFlink } export { babel } +export { codewars } +export { gnu } export { composer } export { elsevier } \ No newline at end of file diff --git a/js/brand/inkscape.d.ts b/js/brand/inkscape.d.ts new file mode 100644 index 000000000..e98ac0f6e --- /dev/null +++ b/js/brand/inkscape.d.ts @@ -0,0 +1 @@ +export declare const inkscape: string[]; \ No newline at end of file diff --git a/js/brand/inkscape.js b/js/brand/inkscape.js index 5b0b39a06..8368e218a 100644 --- a/js/brand/inkscape.js +++ b/js/brand/inkscape.js @@ -1 +1 @@ -export const inkscape = ["24 24",""] \ No newline at end of file +export const inkscape = ["32 32","inkscape"] \ No newline at end of file diff --git a/js/brand/instacart.d.ts b/js/brand/instacart.d.ts new file mode 100644 index 000000000..032bb6c55 --- /dev/null +++ b/js/brand/instacart.d.ts @@ -0,0 +1 @@ +export declare const instacart: string[]; \ No newline at end of file diff --git a/js/brand/instacart.js b/js/brand/instacart.js index 024ccbdf6..8d5063223 100644 --- a/js/brand/instacart.js +++ b/js/brand/instacart.js @@ -1 +1 @@ -export const instacart = ["24 24",""] \ No newline at end of file +export const instacart = ["32 32","instacart"] \ No newline at end of file diff --git a/js/brand/instagram.d.ts b/js/brand/instagram.d.ts new file mode 100644 index 000000000..e3d9441c8 --- /dev/null +++ b/js/brand/instagram.d.ts @@ -0,0 +1 @@ +export declare const instagram: string[]; \ No newline at end of file diff --git a/js/brand/instagram.js b/js/brand/instagram.js index b73c19c4d..5d4f9a044 100644 --- a/js/brand/instagram.js +++ b/js/brand/instagram.js @@ -1 +1 @@ -export const instagram = ["24 24",""] \ No newline at end of file +export const instagram = ["32 32","instagram"] \ No newline at end of file diff --git a/js/brand/instapaper.d.ts b/js/brand/instapaper.d.ts new file mode 100644 index 000000000..19e2d5d43 --- /dev/null +++ b/js/brand/instapaper.d.ts @@ -0,0 +1 @@ +export declare const instapaper: string[]; \ No newline at end of file diff --git a/js/brand/instapaper.js b/js/brand/instapaper.js index 0d67c5839..3622c7d51 100644 --- a/js/brand/instapaper.js +++ b/js/brand/instapaper.js @@ -1 +1 @@ -export const instapaper = ["24 24",""] \ No newline at end of file +export const instapaper = ["32 32","instapaper"] \ No newline at end of file diff --git a/js/brand/intel.d.ts b/js/brand/intel.d.ts new file mode 100644 index 000000000..e517d0d67 --- /dev/null +++ b/js/brand/intel.d.ts @@ -0,0 +1 @@ +export declare const intel: string[]; \ No newline at end of file diff --git a/js/brand/intel.js b/js/brand/intel.js index db281d2ae..a73fe981e 100644 --- a/js/brand/intel.js +++ b/js/brand/intel.js @@ -1 +1 @@ -export const intel = ["24 24",""] \ No newline at end of file +export const intel = ["32 32","intel"] \ No newline at end of file diff --git a/js/brand/intellijidea.d.ts b/js/brand/intellijidea.d.ts new file mode 100644 index 000000000..ccf7d5db4 --- /dev/null +++ b/js/brand/intellijidea.d.ts @@ -0,0 +1 @@ +export declare const intellijidea: string[]; \ No newline at end of file diff --git a/js/brand/intellijidea.js b/js/brand/intellijidea.js index 96de44d6f..51e575aec 100644 --- a/js/brand/intellijidea.js +++ b/js/brand/intellijidea.js @@ -1 +1 @@ -export const intellijidea = ["24 24",""] \ No newline at end of file +export const intellijidea = ["32 32","intellijidea"] \ No newline at end of file diff --git a/js/brand/intercom.d.ts b/js/brand/intercom.d.ts new file mode 100644 index 000000000..e4e91249f --- /dev/null +++ b/js/brand/intercom.d.ts @@ -0,0 +1 @@ +export declare const intercom: string[]; \ No newline at end of file diff --git a/js/brand/intercom.js b/js/brand/intercom.js index aa72048c8..e095c6bf4 100644 --- a/js/brand/intercom.js +++ b/js/brand/intercom.js @@ -1 +1 @@ -export const intercom = ["24 24",""] \ No newline at end of file +export const intercom = ["32 32","intercom"] \ No newline at end of file diff --git a/js/brand/internet-explorer.d.ts b/js/brand/internet-explorer.d.ts new file mode 100644 index 000000000..7744f47ff --- /dev/null +++ b/js/brand/internet-explorer.d.ts @@ -0,0 +1 @@ +export declare const internetExplorer: string[]; \ No newline at end of file diff --git a/js/brand/internet-explorer.js b/js/brand/internet-explorer.js index 94a0bdc0e..f34f1fff5 100644 --- a/js/brand/internet-explorer.js +++ b/js/brand/internet-explorer.js @@ -1 +1 @@ -export const internetExplorer = ["512 512",""] \ No newline at end of file +export const internetExplorer = ["32 32","internet-explorer"] \ No newline at end of file diff --git a/js/brand/internetexplorer.js b/js/brand/internetexplorer.js deleted file mode 100644 index c5f480a5b..000000000 --- a/js/brand/internetexplorer.js +++ /dev/null @@ -1 +0,0 @@ -export const internetexplorer = ["24 24",""] \ No newline at end of file diff --git a/js/brand/invision.d.ts b/js/brand/invision.d.ts new file mode 100644 index 000000000..c9203c184 --- /dev/null +++ b/js/brand/invision.d.ts @@ -0,0 +1 @@ +export declare const invision: string[]; \ No newline at end of file diff --git a/js/brand/invision.js b/js/brand/invision.js index 1cca5855f..fe65fbe86 100644 --- a/js/brand/invision.js +++ b/js/brand/invision.js @@ -1 +1 @@ -export const invision = ["24 24",""] \ No newline at end of file +export const invision = ["32 32","invision"] \ No newline at end of file diff --git a/js/brand/ionic.d.ts b/js/brand/ionic.d.ts new file mode 100644 index 000000000..f0fb6ba04 --- /dev/null +++ b/js/brand/ionic.d.ts @@ -0,0 +1 @@ +export declare const ionic: string[]; \ No newline at end of file diff --git a/js/brand/ionic.js b/js/brand/ionic.js index 111a82565..b817e5b2b 100644 --- a/js/brand/ionic.js +++ b/js/brand/ionic.js @@ -1 +1 @@ -export const ionic = ["24 24",""] \ No newline at end of file +export const ionic = ["32 32","ionic"] \ No newline at end of file diff --git a/js/brand/ioxhost.js b/js/brand/ioxhost.js deleted file mode 100644 index 84ae2f296..000000000 --- a/js/brand/ioxhost.js +++ /dev/null @@ -1 +0,0 @@ -export const ioxhost = ["640 512",""] \ No newline at end of file diff --git a/js/brand/issuu.d.ts b/js/brand/issuu.d.ts new file mode 100644 index 000000000..3a56baaed --- /dev/null +++ b/js/brand/issuu.d.ts @@ -0,0 +1 @@ +export declare const issuu: string[]; \ No newline at end of file diff --git a/js/brand/issuu.js b/js/brand/issuu.js index f7b056294..04d77b558 100644 --- a/js/brand/issuu.js +++ b/js/brand/issuu.js @@ -1 +1 @@ -export const issuu = ["24 24",""] \ No newline at end of file +export const issuu = ["32 32","issuu"] \ No newline at end of file diff --git a/js/brand/itch-dot-io.js b/js/brand/itch-dot-io.js deleted file mode 100644 index fd251c4b7..000000000 --- a/js/brand/itch-dot-io.js +++ /dev/null @@ -1 +0,0 @@ -export const itchDotIo = ["24 24",""] \ No newline at end of file diff --git a/js/brand/itch-io.d.ts b/js/brand/itch-io.d.ts new file mode 100644 index 000000000..f4d715a25 --- /dev/null +++ b/js/brand/itch-io.d.ts @@ -0,0 +1 @@ +export declare const itchIo: string[]; \ No newline at end of file diff --git a/js/brand/itch-io.js b/js/brand/itch-io.js index 78661f19f..2dc1f8d50 100644 --- a/js/brand/itch-io.js +++ b/js/brand/itch-io.js @@ -1 +1 @@ -export const itchIo = ["512 512",""] \ No newline at end of file +export const itchIo = ["32 32","itch-io"] \ No newline at end of file diff --git a/js/brand/itunes-note.js b/js/brand/itunes-note.js deleted file mode 100644 index e41bb7a11..000000000 --- a/js/brand/itunes-note.js +++ /dev/null @@ -1 +0,0 @@ -export const itunesNote = ["384 512",""] \ No newline at end of file diff --git a/js/brand/itunes.js b/js/brand/itunes.js deleted file mode 100644 index 61faeeddb..000000000 --- a/js/brand/itunes.js +++ /dev/null @@ -1 +0,0 @@ -export const itunes = ["448 512",""] \ No newline at end of file diff --git a/js/brand/jabber.d.ts b/js/brand/jabber.d.ts new file mode 100644 index 000000000..baacf1bf9 --- /dev/null +++ b/js/brand/jabber.d.ts @@ -0,0 +1 @@ +export declare const jabber: string[]; \ No newline at end of file diff --git a/js/brand/jabber.js b/js/brand/jabber.js index c5609ae9b..5aa65625e 100644 --- a/js/brand/jabber.js +++ b/js/brand/jabber.js @@ -1 +1 @@ -export const jabber = ["24 24",""] \ No newline at end of file +export const jabber = ["32 32","jabber"] \ No newline at end of file diff --git a/js/brand/java.d.ts b/js/brand/java.d.ts new file mode 100644 index 000000000..ed359182e --- /dev/null +++ b/js/brand/java.d.ts @@ -0,0 +1 @@ +export declare const java: string[]; \ No newline at end of file diff --git a/js/brand/java.js b/js/brand/java.js index f736d4715..5a14b3345 100644 --- a/js/brand/java.js +++ b/js/brand/java.js @@ -1 +1 @@ -export const java = ["24 24",""] \ No newline at end of file +export const java = ["32 32","java"] \ No newline at end of file diff --git a/js/brand/javascript.d.ts b/js/brand/javascript.d.ts new file mode 100644 index 000000000..2ab7b1415 --- /dev/null +++ b/js/brand/javascript.d.ts @@ -0,0 +1 @@ +export declare const javascript: string[]; \ No newline at end of file diff --git a/js/brand/javascript.js b/js/brand/javascript.js index 3316df4f0..d9a7b5ab7 100644 --- a/js/brand/javascript.js +++ b/js/brand/javascript.js @@ -1 +1 @@ -export const javascript = ["24 24",""] \ No newline at end of file +export const javascript = ["32 32","javascript"] \ No newline at end of file diff --git a/js/brand/jedi-order.js b/js/brand/jedi-order.js deleted file mode 100644 index dfbbc493b..000000000 --- a/js/brand/jedi-order.js +++ /dev/null @@ -1 +0,0 @@ -export const jediOrder = ["448 512",""] \ No newline at end of file diff --git a/js/brand/jekyll.d.ts b/js/brand/jekyll.d.ts new file mode 100644 index 000000000..31898906e --- /dev/null +++ b/js/brand/jekyll.d.ts @@ -0,0 +1 @@ +export declare const jekyll: string[]; \ No newline at end of file diff --git a/js/brand/jekyll.js b/js/brand/jekyll.js index 7d5b73af2..fa6a6eb35 100644 --- a/js/brand/jekyll.js +++ b/js/brand/jekyll.js @@ -1 +1 @@ -export const jekyll = ["24 24",""] \ No newline at end of file +export const jekyll = ["32 32","jekyll"] \ No newline at end of file diff --git a/js/brand/jenkins.d.ts b/js/brand/jenkins.d.ts new file mode 100644 index 000000000..139a4f675 --- /dev/null +++ b/js/brand/jenkins.d.ts @@ -0,0 +1 @@ +export declare const jenkins: string[]; \ No newline at end of file diff --git a/js/brand/jenkins.js b/js/brand/jenkins.js index 077934fb6..48bc2fd1e 100644 --- a/js/brand/jenkins.js +++ b/js/brand/jenkins.js @@ -1 +1 @@ -export const jenkins = ["24 24",""] \ No newline at end of file +export const jenkins = ["32 32","jenkins"] \ No newline at end of file diff --git a/js/brand/jest.d.ts b/js/brand/jest.d.ts new file mode 100644 index 000000000..26d9b4fab --- /dev/null +++ b/js/brand/jest.d.ts @@ -0,0 +1 @@ +export declare const jest: string[]; \ No newline at end of file diff --git a/js/brand/jest.js b/js/brand/jest.js index 2697bc351..f3b2a8e92 100644 --- a/js/brand/jest.js +++ b/js/brand/jest.js @@ -1 +1 @@ -export const jest = ["24 24",""] \ No newline at end of file +export const jest = ["32 32","jest"] \ No newline at end of file diff --git a/js/brand/jet.d.ts b/js/brand/jet.d.ts new file mode 100644 index 000000000..8aaa7c0f0 --- /dev/null +++ b/js/brand/jet.d.ts @@ -0,0 +1 @@ +export declare const jet: string[]; \ No newline at end of file diff --git a/js/brand/jet.js b/js/brand/jet.js index ab9cb6b92..9da16ed7c 100644 --- a/js/brand/jet.js +++ b/js/brand/jet.js @@ -1 +1 @@ -export const jet = ["24 24",""] \ No newline at end of file +export const jet = ["32 32","jet"] \ No newline at end of file diff --git a/js/brand/jetbrains.d.ts b/js/brand/jetbrains.d.ts new file mode 100644 index 000000000..d6125b72f --- /dev/null +++ b/js/brand/jetbrains.d.ts @@ -0,0 +1 @@ +export declare const jetbrains: string[]; \ No newline at end of file diff --git a/js/brand/jetbrains.js b/js/brand/jetbrains.js index dd5a7c97c..6ce64bfa5 100644 --- a/js/brand/jetbrains.js +++ b/js/brand/jetbrains.js @@ -1 +1 @@ -export const jetbrains = ["24 24",""] \ No newline at end of file +export const jetbrains = ["32 32","jetbrains"] \ No newline at end of file diff --git a/js/brand/jira.d.ts b/js/brand/jira.d.ts new file mode 100644 index 000000000..6ca9545ac --- /dev/null +++ b/js/brand/jira.d.ts @@ -0,0 +1 @@ +export declare const jira: string[]; \ No newline at end of file diff --git a/js/brand/jira.js b/js/brand/jira.js index 2cbaf8230..834537968 100644 --- a/js/brand/jira.js +++ b/js/brand/jira.js @@ -1 +1 @@ -export const jira = ["24 24",""] \ No newline at end of file +export const jira = ["32 32","jira"] \ No newline at end of file diff --git a/js/brand/joget.js b/js/brand/joget.js deleted file mode 100644 index 2ada939fc..000000000 --- a/js/brand/joget.js +++ /dev/null @@ -1 +0,0 @@ -export const joget = ["496 512",""] \ No newline at end of file diff --git a/js/brand/joomla.d.ts b/js/brand/joomla.d.ts new file mode 100644 index 000000000..2fb0f34ae --- /dev/null +++ b/js/brand/joomla.d.ts @@ -0,0 +1 @@ +export declare const joomla: string[]; \ No newline at end of file diff --git a/js/brand/joomla.js b/js/brand/joomla.js index 241716b29..66d0bfea7 100644 --- a/js/brand/joomla.js +++ b/js/brand/joomla.js @@ -1 +1 @@ -export const joomla = ["24 24",""] \ No newline at end of file +export const joomla = ["32 32","joomla"] \ No newline at end of file diff --git a/js/brand/jquery.d.ts b/js/brand/jquery.d.ts new file mode 100644 index 000000000..12c56b420 --- /dev/null +++ b/js/brand/jquery.d.ts @@ -0,0 +1 @@ +export declare const jquery: string[]; \ No newline at end of file diff --git a/js/brand/jquery.js b/js/brand/jquery.js index 386ac067b..e496b7211 100644 --- a/js/brand/jquery.js +++ b/js/brand/jquery.js @@ -1 +1 @@ -export const jquery = ["24 24",""] \ No newline at end of file +export const jquery = ["32 32","jquery"] \ No newline at end of file diff --git a/js/brand/js.d.ts b/js/brand/js.d.ts new file mode 100644 index 000000000..162cb6620 --- /dev/null +++ b/js/brand/js.d.ts @@ -0,0 +1 @@ +export declare const js: string[]; \ No newline at end of file diff --git a/js/brand/js.js b/js/brand/js.js new file mode 100644 index 000000000..8355c5e55 --- /dev/null +++ b/js/brand/js.js @@ -0,0 +1 @@ +export const js = ["32 32","js"] \ No newline at end of file diff --git a/js/brand/jsdelivr.d.ts b/js/brand/jsdelivr.d.ts new file mode 100644 index 000000000..5f535f018 --- /dev/null +++ b/js/brand/jsdelivr.d.ts @@ -0,0 +1 @@ +export declare const jsdelivr: string[]; \ No newline at end of file diff --git a/js/brand/jsdelivr.js b/js/brand/jsdelivr.js index da5c9bb74..2ef7ff6d4 100644 --- a/js/brand/jsdelivr.js +++ b/js/brand/jsdelivr.js @@ -1 +1 @@ -export const jsdelivr = ["24 24",""] \ No newline at end of file +export const jsdelivr = ["32 32","jsdelivr"] \ No newline at end of file diff --git a/js/brand/jsfiddle.d.ts b/js/brand/jsfiddle.d.ts new file mode 100644 index 000000000..01209a0e4 --- /dev/null +++ b/js/brand/jsfiddle.d.ts @@ -0,0 +1 @@ +export declare const jsfiddle: string[]; \ No newline at end of file diff --git a/js/brand/jsfiddle.js b/js/brand/jsfiddle.js index e9675671d..37af042fd 100644 --- a/js/brand/jsfiddle.js +++ b/js/brand/jsfiddle.js @@ -1 +1 @@ -export const jsfiddle = ["24 24",""] \ No newline at end of file +export const jsfiddle = ["32 32","jsfiddle"] \ No newline at end of file diff --git a/js/brand/json.d.ts b/js/brand/json.d.ts new file mode 100644 index 000000000..bbb95cb28 --- /dev/null +++ b/js/brand/json.d.ts @@ -0,0 +1 @@ +export declare const json: string[]; \ No newline at end of file diff --git a/js/brand/json.js b/js/brand/json.js index 806eb074e..34d03f496 100644 --- a/js/brand/json.js +++ b/js/brand/json.js @@ -1 +1 @@ -export const json = ["24 24",""] \ No newline at end of file +export const json = ["32 32","json"] \ No newline at end of file diff --git a/js/brand/jupyter.d.ts b/js/brand/jupyter.d.ts new file mode 100644 index 000000000..3c212eb83 --- /dev/null +++ b/js/brand/jupyter.d.ts @@ -0,0 +1 @@ +export declare const jupyter: string[]; \ No newline at end of file diff --git a/js/brand/jupyter.js b/js/brand/jupyter.js index 83ac27b37..b1194d117 100644 --- a/js/brand/jupyter.js +++ b/js/brand/jupyter.js @@ -1 +1 @@ -export const jupyter = ["24 24",""] \ No newline at end of file +export const jupyter = ["32 32","jupyter"] \ No newline at end of file diff --git a/js/brand/justgiving.d.ts b/js/brand/justgiving.d.ts new file mode 100644 index 000000000..d63758e9b --- /dev/null +++ b/js/brand/justgiving.d.ts @@ -0,0 +1 @@ +export declare const justgiving: string[]; \ No newline at end of file diff --git a/js/brand/justgiving.js b/js/brand/justgiving.js index 2fad04288..f118bbadb 100644 --- a/js/brand/justgiving.js +++ b/js/brand/justgiving.js @@ -1 +1 @@ -export const justgiving = ["24 24",""] \ No newline at end of file +export const justgiving = ["32 32","justgiving"] \ No newline at end of file diff --git a/js/brand/kaggle.d.ts b/js/brand/kaggle.d.ts new file mode 100644 index 000000000..13bd71ed1 --- /dev/null +++ b/js/brand/kaggle.d.ts @@ -0,0 +1 @@ +export declare const kaggle: string[]; \ No newline at end of file diff --git a/js/brand/kaggle.js b/js/brand/kaggle.js index 4d1783d9a..1f83b8c6f 100644 --- a/js/brand/kaggle.js +++ b/js/brand/kaggle.js @@ -1 +1 @@ -export const kaggle = ["24 24",""] \ No newline at end of file +export const kaggle = ["32 32","kaggle"] \ No newline at end of file diff --git a/js/brand/kaios.d.ts b/js/brand/kaios.d.ts new file mode 100644 index 000000000..dd671c0e5 --- /dev/null +++ b/js/brand/kaios.d.ts @@ -0,0 +1 @@ +export declare const kaios: string[]; \ No newline at end of file diff --git a/js/brand/kaios.js b/js/brand/kaios.js index a9b6912d4..86a77e8e4 100644 --- a/js/brand/kaios.js +++ b/js/brand/kaios.js @@ -1 +1 @@ -export const kaios = ["24 24",""] \ No newline at end of file +export const kaios = ["32 32","kaios"] \ No newline at end of file diff --git a/js/brand/kaspersky.d.ts b/js/brand/kaspersky.d.ts new file mode 100644 index 000000000..489851b80 --- /dev/null +++ b/js/brand/kaspersky.d.ts @@ -0,0 +1 @@ +export declare const kaspersky: string[]; \ No newline at end of file diff --git a/js/brand/kaspersky.js b/js/brand/kaspersky.js index 21d4dbe8a..1d931e29c 100644 --- a/js/brand/kaspersky.js +++ b/js/brand/kaspersky.js @@ -1 +1 @@ -export const kaspersky = ["24 24",""] \ No newline at end of file +export const kaspersky = ["32 32","kaspersky"] \ No newline at end of file diff --git a/js/brand/kentico.d.ts b/js/brand/kentico.d.ts new file mode 100644 index 000000000..cbcd5f41f --- /dev/null +++ b/js/brand/kentico.d.ts @@ -0,0 +1 @@ +export declare const kentico: string[]; \ No newline at end of file diff --git a/js/brand/kentico.js b/js/brand/kentico.js index 00fd44f89..b76f49334 100644 --- a/js/brand/kentico.js +++ b/js/brand/kentico.js @@ -1 +1 @@ -export const kentico = ["24 24",""] \ No newline at end of file +export const kentico = ["32 32","kentico"] \ No newline at end of file diff --git a/js/brand/keras.d.ts b/js/brand/keras.d.ts new file mode 100644 index 000000000..382ffb542 --- /dev/null +++ b/js/brand/keras.d.ts @@ -0,0 +1 @@ +export declare const keras: string[]; \ No newline at end of file diff --git a/js/brand/keras.js b/js/brand/keras.js index c7b93c136..63a1d5fcc 100644 --- a/js/brand/keras.js +++ b/js/brand/keras.js @@ -1 +1 @@ -export const keras = ["24 24",""] \ No newline at end of file +export const keras = ["32 32","keras"] \ No newline at end of file diff --git a/js/brand/keybase.d.ts b/js/brand/keybase.d.ts new file mode 100644 index 000000000..43c14db49 --- /dev/null +++ b/js/brand/keybase.d.ts @@ -0,0 +1 @@ +export declare const keybase: string[]; \ No newline at end of file diff --git a/js/brand/keybase.js b/js/brand/keybase.js index c4d16ecc0..55636db74 100644 --- a/js/brand/keybase.js +++ b/js/brand/keybase.js @@ -1 +1 @@ -export const keybase = ["24 24",""] \ No newline at end of file +export const keybase = ["32 32","keybase"] \ No newline at end of file diff --git a/js/brand/keycdn.d.ts b/js/brand/keycdn.d.ts new file mode 100644 index 000000000..73b0650d8 --- /dev/null +++ b/js/brand/keycdn.d.ts @@ -0,0 +1 @@ +export declare const keycdn: string[]; \ No newline at end of file diff --git a/js/brand/keycdn.js b/js/brand/keycdn.js index 08663fca2..e6db7ab90 100644 --- a/js/brand/keycdn.js +++ b/js/brand/keycdn.js @@ -1 +1 @@ -export const keycdn = ["24 24",""] \ No newline at end of file +export const keycdn = ["32 32","keycdn"] \ No newline at end of file diff --git a/js/brand/khan-academy.d.ts b/js/brand/khan-academy.d.ts new file mode 100644 index 000000000..308ed10c6 --- /dev/null +++ b/js/brand/khan-academy.d.ts @@ -0,0 +1 @@ +export declare const khanAcademy: string[]; \ No newline at end of file diff --git a/js/brand/khan-academy.js b/js/brand/khan-academy.js new file mode 100644 index 000000000..d5cbbe491 --- /dev/null +++ b/js/brand/khan-academy.js @@ -0,0 +1 @@ +export const khanAcademy = ["32 32","khan-academy"] \ No newline at end of file diff --git a/js/brand/khanacademy.js b/js/brand/khanacademy.js deleted file mode 100644 index 65804b1ee..000000000 --- a/js/brand/khanacademy.js +++ /dev/null @@ -1 +0,0 @@ -export const khanacademy = ["24 24",""] \ No newline at end of file diff --git a/js/brand/kibana.d.ts b/js/brand/kibana.d.ts new file mode 100644 index 000000000..877385e3e --- /dev/null +++ b/js/brand/kibana.d.ts @@ -0,0 +1 @@ +export declare const kibana: string[]; \ No newline at end of file diff --git a/js/brand/kibana.js b/js/brand/kibana.js index 1f3a9e7f2..a768f5bba 100644 --- a/js/brand/kibana.js +++ b/js/brand/kibana.js @@ -1 +1 @@ -export const kibana = ["24 24",""] \ No newline at end of file +export const kibana = ["32 32","kibana"] \ No newline at end of file diff --git a/js/brand/kickstarter.d.ts b/js/brand/kickstarter.d.ts new file mode 100644 index 000000000..ace803884 --- /dev/null +++ b/js/brand/kickstarter.d.ts @@ -0,0 +1 @@ +export declare const kickstarter: string[]; \ No newline at end of file diff --git a/js/brand/kickstarter.js b/js/brand/kickstarter.js index 6aae97a52..8859721e1 100644 --- a/js/brand/kickstarter.js +++ b/js/brand/kickstarter.js @@ -1 +1 @@ -export const kickstarter = ["24 24",""] \ No newline at end of file +export const kickstarter = ["32 32","kickstarter"] \ No newline at end of file diff --git a/js/brand/kik.d.ts b/js/brand/kik.d.ts new file mode 100644 index 000000000..daac6a1d5 --- /dev/null +++ b/js/brand/kik.d.ts @@ -0,0 +1 @@ +export declare const kik: string[]; \ No newline at end of file diff --git a/js/brand/kik.js b/js/brand/kik.js index bc7026bd8..01b5870f4 100644 --- a/js/brand/kik.js +++ b/js/brand/kik.js @@ -1 +1 @@ -export const kik = ["24 24",""] \ No newline at end of file +export const kik = ["32 32","kik"] \ No newline at end of file diff --git a/js/brand/kirby.d.ts b/js/brand/kirby.d.ts new file mode 100644 index 000000000..5f550d1aa --- /dev/null +++ b/js/brand/kirby.d.ts @@ -0,0 +1 @@ +export declare const kirby: string[]; \ No newline at end of file diff --git a/js/brand/kirby.js b/js/brand/kirby.js index 9da4ffb51..8c36d29bf 100644 --- a/js/brand/kirby.js +++ b/js/brand/kirby.js @@ -1 +1 @@ -export const kirby = ["24 24",""] \ No newline at end of file +export const kirby = ["32 32","kirby"] \ No newline at end of file diff --git a/js/brand/klout.d.ts b/js/brand/klout.d.ts new file mode 100644 index 000000000..d3fb54fcb --- /dev/null +++ b/js/brand/klout.d.ts @@ -0,0 +1 @@ +export declare const klout: string[]; \ No newline at end of file diff --git a/js/brand/klout.js b/js/brand/klout.js index 82b8d0495..42d88fd06 100644 --- a/js/brand/klout.js +++ b/js/brand/klout.js @@ -1 +1 @@ -export const klout = ["24 24",""] \ No newline at end of file +export const klout = ["32 32","klout"] \ No newline at end of file diff --git a/js/brand/known.d.ts b/js/brand/known.d.ts new file mode 100644 index 000000000..9d49ad180 --- /dev/null +++ b/js/brand/known.d.ts @@ -0,0 +1 @@ +export declare const known: string[]; \ No newline at end of file diff --git a/js/brand/known.js b/js/brand/known.js index 86a0ef89a..37a6172ff 100644 --- a/js/brand/known.js +++ b/js/brand/known.js @@ -1 +1 @@ -export const known = ["24 24",""] \ No newline at end of file +export const known = ["32 32","known"] \ No newline at end of file diff --git a/js/brand/ko-fi.d.ts b/js/brand/ko-fi.d.ts new file mode 100644 index 000000000..597a18ed1 --- /dev/null +++ b/js/brand/ko-fi.d.ts @@ -0,0 +1 @@ +export declare const koFi: string[]; \ No newline at end of file diff --git a/js/brand/ko-fi.js b/js/brand/ko-fi.js index 82955486e..366021bb7 100644 --- a/js/brand/ko-fi.js +++ b/js/brand/ko-fi.js @@ -1 +1 @@ -export const koFi = ["24 24",""] \ No newline at end of file +export const koFi = ["32 32","ko-fi"] \ No newline at end of file diff --git a/js/brand/kodi.d.ts b/js/brand/kodi.d.ts new file mode 100644 index 000000000..097a0a1c1 --- /dev/null +++ b/js/brand/kodi.d.ts @@ -0,0 +1 @@ +export declare const kodi: string[]; \ No newline at end of file diff --git a/js/brand/kodi.js b/js/brand/kodi.js index d03405f9c..bf962105d 100644 --- a/js/brand/kodi.js +++ b/js/brand/kodi.js @@ -1 +1 @@ -export const kodi = ["24 24",""] \ No newline at end of file +export const kodi = ["32 32","kodi"] \ No newline at end of file diff --git a/js/brand/koding.d.ts b/js/brand/koding.d.ts new file mode 100644 index 000000000..6c16cee7e --- /dev/null +++ b/js/brand/koding.d.ts @@ -0,0 +1 @@ +export declare const koding: string[]; \ No newline at end of file diff --git a/js/brand/koding.js b/js/brand/koding.js index 28ace7175..4782a8a4f 100644 --- a/js/brand/koding.js +++ b/js/brand/koding.js @@ -1 +1 @@ -export const koding = ["24 24",""] \ No newline at end of file +export const koding = ["32 32","koding"] \ No newline at end of file diff --git a/js/brand/korvue.js b/js/brand/korvue.js deleted file mode 100644 index a8730a7e1..000000000 --- a/js/brand/korvue.js +++ /dev/null @@ -1 +0,0 @@ -export const korvue = ["446 512",""] \ No newline at end of file diff --git a/js/brand/kotlin.d.ts b/js/brand/kotlin.d.ts new file mode 100644 index 000000000..0d23a93f4 --- /dev/null +++ b/js/brand/kotlin.d.ts @@ -0,0 +1 @@ +export declare const kotlin: string[]; \ No newline at end of file diff --git a/js/brand/kotlin.js b/js/brand/kotlin.js index f7c57c04b..67c1158c7 100644 --- a/js/brand/kotlin.js +++ b/js/brand/kotlin.js @@ -1 +1 @@ -export const kotlin = ["24 24",""] \ No newline at end of file +export const kotlin = ["32 32","kotlin"] \ No newline at end of file diff --git a/js/brand/krita.d.ts b/js/brand/krita.d.ts new file mode 100644 index 000000000..cdfde7213 --- /dev/null +++ b/js/brand/krita.d.ts @@ -0,0 +1 @@ +export declare const krita: string[]; \ No newline at end of file diff --git a/js/brand/krita.js b/js/brand/krita.js index 4abdba4a6..d4ea54833 100644 --- a/js/brand/krita.js +++ b/js/brand/krita.js @@ -1 +1 @@ -export const krita = ["24 24",""] \ No newline at end of file +export const krita = ["32 32","krita"] \ No newline at end of file diff --git a/js/brand/kubernetes.d.ts b/js/brand/kubernetes.d.ts new file mode 100644 index 000000000..a1248e842 --- /dev/null +++ b/js/brand/kubernetes.d.ts @@ -0,0 +1 @@ +export declare const kubernetes: string[]; \ No newline at end of file diff --git a/js/brand/kubernetes.js b/js/brand/kubernetes.js index e646fb591..ac21b6f63 100644 --- a/js/brand/kubernetes.js +++ b/js/brand/kubernetes.js @@ -1 +1 @@ -export const kubernetes = ["24 24",""] \ No newline at end of file +export const kubernetes = ["32 32","kubernetes"] \ No newline at end of file diff --git a/js/brand/lanyrd.d.ts b/js/brand/lanyrd.d.ts new file mode 100644 index 000000000..425049a91 --- /dev/null +++ b/js/brand/lanyrd.d.ts @@ -0,0 +1 @@ +export declare const lanyrd: string[]; \ No newline at end of file diff --git a/js/brand/lanyrd.js b/js/brand/lanyrd.js index 3a457396a..1553c53e0 100644 --- a/js/brand/lanyrd.js +++ b/js/brand/lanyrd.js @@ -1 +1 @@ -export const lanyrd = ["24 24",""] \ No newline at end of file +export const lanyrd = ["32 32","lanyrd"] \ No newline at end of file diff --git a/js/brand/laravel-horizon.d.ts b/js/brand/laravel-horizon.d.ts new file mode 100644 index 000000000..6e7a3d0e1 --- /dev/null +++ b/js/brand/laravel-horizon.d.ts @@ -0,0 +1 @@ +export declare const laravelHorizon: string[]; \ No newline at end of file diff --git a/js/brand/laravel-horizon.js b/js/brand/laravel-horizon.js new file mode 100644 index 000000000..1194e776b --- /dev/null +++ b/js/brand/laravel-horizon.js @@ -0,0 +1 @@ +export const laravelHorizon = ["32 32","laravel-horizon"] \ No newline at end of file diff --git a/js/brand/laravel-nova.d.ts b/js/brand/laravel-nova.d.ts new file mode 100644 index 000000000..6e90f37a0 --- /dev/null +++ b/js/brand/laravel-nova.d.ts @@ -0,0 +1 @@ +export declare const laravelNova: string[]; \ No newline at end of file diff --git a/js/brand/laravel-nova.js b/js/brand/laravel-nova.js new file mode 100644 index 000000000..fed373e07 --- /dev/null +++ b/js/brand/laravel-nova.js @@ -0,0 +1 @@ +export const laravelNova = ["32 32","laravel-nova"] \ No newline at end of file diff --git a/js/brand/laravel.d.ts b/js/brand/laravel.d.ts new file mode 100644 index 000000000..e71ca9990 --- /dev/null +++ b/js/brand/laravel.d.ts @@ -0,0 +1 @@ +export declare const laravel: string[]; \ No newline at end of file diff --git a/js/brand/laravel.js b/js/brand/laravel.js index 124b3b637..ed99989fa 100644 --- a/js/brand/laravel.js +++ b/js/brand/laravel.js @@ -1 +1 @@ -export const laravel = ["24 24",""] \ No newline at end of file +export const laravel = ["32 32","laravel"] \ No newline at end of file diff --git a/js/brand/laravelhorizon.js b/js/brand/laravelhorizon.js deleted file mode 100644 index be6fb75ea..000000000 --- a/js/brand/laravelhorizon.js +++ /dev/null @@ -1 +0,0 @@ -export const laravelhorizon = ["24 24",""] \ No newline at end of file diff --git a/js/brand/laravelnova.js b/js/brand/laravelnova.js deleted file mode 100644 index 5fd9d0828..000000000 --- a/js/brand/laravelnova.js +++ /dev/null @@ -1 +0,0 @@ -export const laravelnova = ["24 24",""] \ No newline at end of file diff --git a/js/brand/last-dot-fm.js b/js/brand/last-dot-fm.js deleted file mode 100644 index f8aa56291..000000000 --- a/js/brand/last-dot-fm.js +++ /dev/null @@ -1 +0,0 @@ -export const lastDotFm = ["24 24",""] \ No newline at end of file diff --git a/js/brand/last-fm.d.ts b/js/brand/last-fm.d.ts new file mode 100644 index 000000000..a3fe8982e --- /dev/null +++ b/js/brand/last-fm.d.ts @@ -0,0 +1 @@ +export declare const lastFm: string[]; \ No newline at end of file diff --git a/js/brand/last-fm.js b/js/brand/last-fm.js new file mode 100644 index 000000000..5f03c2b47 --- /dev/null +++ b/js/brand/last-fm.js @@ -0,0 +1 @@ +export const lastFm = ["32 32","last-fm"] \ No newline at end of file diff --git a/js/brand/lastfm.js b/js/brand/lastfm.js deleted file mode 100644 index 6f47861f1..000000000 --- a/js/brand/lastfm.js +++ /dev/null @@ -1 +0,0 @@ -export const lastfm = ["512 512",""] \ No newline at end of file diff --git a/js/brand/latex.d.ts b/js/brand/latex.d.ts new file mode 100644 index 000000000..b6462f5ec --- /dev/null +++ b/js/brand/latex.d.ts @@ -0,0 +1 @@ +export declare const latex: string[]; \ No newline at end of file diff --git a/js/brand/latex.js b/js/brand/latex.js index 4fc2fff8b..41c567afc 100644 --- a/js/brand/latex.js +++ b/js/brand/latex.js @@ -1 +1 @@ -export const latex = ["24 24",""] \ No newline at end of file +export const latex = ["32 32","latex"] \ No newline at end of file diff --git a/js/brand/launchpad.d.ts b/js/brand/launchpad.d.ts new file mode 100644 index 000000000..b8fe8f759 --- /dev/null +++ b/js/brand/launchpad.d.ts @@ -0,0 +1 @@ +export declare const launchpad: string[]; \ No newline at end of file diff --git a/js/brand/launchpad.js b/js/brand/launchpad.js index 2387e6a04..a191f3b23 100644 --- a/js/brand/launchpad.js +++ b/js/brand/launchpad.js @@ -1 +1 @@ -export const launchpad = ["24 24",""] \ No newline at end of file +export const launchpad = ["32 32","launchpad"] \ No newline at end of file diff --git a/js/brand/leanpub.js b/js/brand/leanpub.js deleted file mode 100644 index 24721e2b4..000000000 --- a/js/brand/leanpub.js +++ /dev/null @@ -1 +0,0 @@ -export const leanpub = ["576 512",""] \ No newline at end of file diff --git a/js/brand/leetcode.d.ts b/js/brand/leetcode.d.ts new file mode 100644 index 000000000..ad57e9ae3 --- /dev/null +++ b/js/brand/leetcode.d.ts @@ -0,0 +1 @@ +export declare const leetcode: string[]; \ No newline at end of file diff --git a/js/brand/leetcode.js b/js/brand/leetcode.js index affbe9c3f..fd91353eb 100644 --- a/js/brand/leetcode.js +++ b/js/brand/leetcode.js @@ -1 +1 @@ -export const leetcode = ["24 24",""] \ No newline at end of file +export const leetcode = ["32 32","leetcode"] \ No newline at end of file diff --git a/js/brand/lenovo.d.ts b/js/brand/lenovo.d.ts new file mode 100644 index 000000000..0f42a2abd --- /dev/null +++ b/js/brand/lenovo.d.ts @@ -0,0 +1 @@ +export declare const lenovo: string[]; \ No newline at end of file diff --git a/js/brand/lenovo.js b/js/brand/lenovo.js index 77d58763c..0f5fc81d2 100644 --- a/js/brand/lenovo.js +++ b/js/brand/lenovo.js @@ -1 +1 @@ -export const lenovo = ["24 24",""] \ No newline at end of file +export const lenovo = ["32 32","lenovo"] \ No newline at end of file diff --git a/js/brand/less.d.ts b/js/brand/less.d.ts new file mode 100644 index 000000000..60bb6e83c --- /dev/null +++ b/js/brand/less.d.ts @@ -0,0 +1 @@ +export declare const less: string[]; \ No newline at end of file diff --git a/js/brand/less.js b/js/brand/less.js index 75a726e15..b9934553d 100644 --- a/js/brand/less.js +++ b/js/brand/less.js @@ -1 +1 @@ -export const less = ["640 512",""] \ No newline at end of file +export const less = ["32 32","less"] \ No newline at end of file diff --git a/js/brand/lets-encrypt.d.ts b/js/brand/lets-encrypt.d.ts new file mode 100644 index 000000000..a3317fdfc --- /dev/null +++ b/js/brand/lets-encrypt.d.ts @@ -0,0 +1 @@ +export declare const letsEncrypt: string[]; \ No newline at end of file diff --git a/js/brand/lets-encrypt.js b/js/brand/lets-encrypt.js new file mode 100644 index 000000000..0a3a9304c --- /dev/null +++ b/js/brand/lets-encrypt.js @@ -0,0 +1 @@ +export const letsEncrypt = ["32 32","lets-encrypt"] \ No newline at end of file diff --git a/js/brand/letsencrypt.js b/js/brand/letsencrypt.js deleted file mode 100644 index 1f897807d..000000000 --- a/js/brand/letsencrypt.js +++ /dev/null @@ -1 +0,0 @@ -export const letsencrypt = ["24 24",""] \ No newline at end of file diff --git a/js/brand/letterboxd.d.ts b/js/brand/letterboxd.d.ts new file mode 100644 index 000000000..2d9b7e3cd --- /dev/null +++ b/js/brand/letterboxd.d.ts @@ -0,0 +1 @@ +export declare const letterboxd: string[]; \ No newline at end of file diff --git a/js/brand/letterboxd.js b/js/brand/letterboxd.js index 12bca8e42..5d4af0103 100644 --- a/js/brand/letterboxd.js +++ b/js/brand/letterboxd.js @@ -1 +1 @@ -export const letterboxd = ["24 24",""] \ No newline at end of file +export const letterboxd = ["32 32","letterboxd"] \ No newline at end of file diff --git a/js/brand/lgtm.d.ts b/js/brand/lgtm.d.ts new file mode 100644 index 000000000..c3427ebae --- /dev/null +++ b/js/brand/lgtm.d.ts @@ -0,0 +1 @@ +export declare const lgtm: string[]; \ No newline at end of file diff --git a/js/brand/lgtm.js b/js/brand/lgtm.js index 630ae85c2..dcff7fba1 100644 --- a/js/brand/lgtm.js +++ b/js/brand/lgtm.js @@ -1 +1 @@ -export const lgtm = ["24 24",""] \ No newline at end of file +export const lgtm = ["32 32","lgtm"] \ No newline at end of file diff --git a/js/brand/liberapay.d.ts b/js/brand/liberapay.d.ts new file mode 100644 index 000000000..ccfbe3d09 --- /dev/null +++ b/js/brand/liberapay.d.ts @@ -0,0 +1 @@ +export declare const liberapay: string[]; \ No newline at end of file diff --git a/js/brand/liberapay.js b/js/brand/liberapay.js index 3388117b9..b6330a04d 100644 --- a/js/brand/liberapay.js +++ b/js/brand/liberapay.js @@ -1 +1 @@ -export const liberapay = ["24 24",""] \ No newline at end of file +export const liberapay = ["32 32","liberapay"] \ No newline at end of file diff --git a/js/brand/librarything.d.ts b/js/brand/librarything.d.ts new file mode 100644 index 000000000..c0b9d036a --- /dev/null +++ b/js/brand/librarything.d.ts @@ -0,0 +1 @@ +export declare const librarything: string[]; \ No newline at end of file diff --git a/js/brand/librarything.js b/js/brand/librarything.js index 0bb762aba..309d0ff85 100644 --- a/js/brand/librarything.js +++ b/js/brand/librarything.js @@ -1 +1 @@ -export const librarything = ["24 24",""] \ No newline at end of file +export const librarything = ["32 32","librarything"] \ No newline at end of file diff --git a/js/brand/libreoffice.d.ts b/js/brand/libreoffice.d.ts new file mode 100644 index 000000000..b7aa90230 --- /dev/null +++ b/js/brand/libreoffice.d.ts @@ -0,0 +1 @@ +export declare const libreoffice: string[]; \ No newline at end of file diff --git a/js/brand/libreoffice.js b/js/brand/libreoffice.js index 2586a103b..73a437258 100644 --- a/js/brand/libreoffice.js +++ b/js/brand/libreoffice.js @@ -1 +1 @@ -export const libreoffice = ["24 24",""] \ No newline at end of file +export const libreoffice = ["32 32","libreoffice"] \ No newline at end of file diff --git a/js/brand/line.d.ts b/js/brand/line.d.ts new file mode 100644 index 000000000..33b73eed5 --- /dev/null +++ b/js/brand/line.d.ts @@ -0,0 +1 @@ +export declare const line: string[]; \ No newline at end of file diff --git a/js/brand/line.js b/js/brand/line.js index 1f08185be..140042e31 100644 --- a/js/brand/line.js +++ b/js/brand/line.js @@ -1 +1 @@ -export const line = ["24 24",""] \ No newline at end of file +export const line = ["32 32","line"] \ No newline at end of file diff --git a/js/brand/linewebtoon.js b/js/brand/linewebtoon.js deleted file mode 100644 index 6a08fe2aa..000000000 --- a/js/brand/linewebtoon.js +++ /dev/null @@ -1 +0,0 @@ -export const linewebtoon = ["24 24",""] \ No newline at end of file diff --git a/js/brand/linkedin-in.d.ts b/js/brand/linkedin-in.d.ts new file mode 100644 index 000000000..54e1f87ac --- /dev/null +++ b/js/brand/linkedin-in.d.ts @@ -0,0 +1 @@ +export declare const linkedinIn: string[]; \ No newline at end of file diff --git a/js/brand/linkedin-in.js b/js/brand/linkedin-in.js new file mode 100644 index 000000000..3a9dbe304 --- /dev/null +++ b/js/brand/linkedin-in.js @@ -0,0 +1 @@ +export const linkedinIn = ["32 32","linkedin-in"] \ No newline at end of file diff --git a/js/brand/linkedin.d.ts b/js/brand/linkedin.d.ts new file mode 100644 index 000000000..7cc432945 --- /dev/null +++ b/js/brand/linkedin.d.ts @@ -0,0 +1 @@ +export declare const linkedin: string[]; \ No newline at end of file diff --git a/js/brand/linkedin.js b/js/brand/linkedin.js index 209a37ad7..e67758c88 100644 --- a/js/brand/linkedin.js +++ b/js/brand/linkedin.js @@ -1 +1 @@ -export const linkedin = ["24 24",""] \ No newline at end of file +export const linkedin = ["32 32","linkedin"] \ No newline at end of file diff --git a/js/brand/linode.js b/js/brand/linode.js deleted file mode 100644 index ee97d85ae..000000000 --- a/js/brand/linode.js +++ /dev/null @@ -1 +0,0 @@ -export const linode = ["448 512",""] \ No newline at end of file diff --git a/js/brand/linux-foundation.d.ts b/js/brand/linux-foundation.d.ts new file mode 100644 index 000000000..99815bcc1 --- /dev/null +++ b/js/brand/linux-foundation.d.ts @@ -0,0 +1 @@ +export declare const linuxFoundation: string[]; \ No newline at end of file diff --git a/js/brand/linux-foundation.js b/js/brand/linux-foundation.js new file mode 100644 index 000000000..a24a03d83 --- /dev/null +++ b/js/brand/linux-foundation.js @@ -0,0 +1 @@ +export const linuxFoundation = ["32 32","linux-foundation"] \ No newline at end of file diff --git a/js/brand/linux-mint.d.ts b/js/brand/linux-mint.d.ts new file mode 100644 index 000000000..e20cd7328 --- /dev/null +++ b/js/brand/linux-mint.d.ts @@ -0,0 +1 @@ +export declare const linuxMint: string[]; \ No newline at end of file diff --git a/js/brand/linux-mint.js b/js/brand/linux-mint.js new file mode 100644 index 000000000..51a8f6c55 --- /dev/null +++ b/js/brand/linux-mint.js @@ -0,0 +1 @@ +export const linuxMint = ["32 32","linux-mint"] \ No newline at end of file diff --git a/js/brand/linux.d.ts b/js/brand/linux.d.ts new file mode 100644 index 000000000..eaf8dc7e6 --- /dev/null +++ b/js/brand/linux.d.ts @@ -0,0 +1 @@ +export declare const linux: string[]; \ No newline at end of file diff --git a/js/brand/linux.js b/js/brand/linux.js index 2ec647fb9..8b35705a8 100644 --- a/js/brand/linux.js +++ b/js/brand/linux.js @@ -1 +1 @@ -export const linux = ["24 24",""] \ No newline at end of file +export const linux = ["32 32","linux"] \ No newline at end of file diff --git a/js/brand/linuxfoundation.js b/js/brand/linuxfoundation.js deleted file mode 100644 index 855888f99..000000000 --- a/js/brand/linuxfoundation.js +++ /dev/null @@ -1 +0,0 @@ -export const linuxfoundation = ["24 24",""] \ No newline at end of file diff --git a/js/brand/linuxmint.js b/js/brand/linuxmint.js deleted file mode 100644 index a3c2af032..000000000 --- a/js/brand/linuxmint.js +++ /dev/null @@ -1 +0,0 @@ -export const linuxmint = ["24 24",""] \ No newline at end of file diff --git a/js/brand/livejournal.d.ts b/js/brand/livejournal.d.ts new file mode 100644 index 000000000..ea6787d44 --- /dev/null +++ b/js/brand/livejournal.d.ts @@ -0,0 +1 @@ +export declare const livejournal: string[]; \ No newline at end of file diff --git a/js/brand/livejournal.js b/js/brand/livejournal.js index 3938ba1f6..7ecb57b4f 100644 --- a/js/brand/livejournal.js +++ b/js/brand/livejournal.js @@ -1 +1 @@ -export const livejournal = ["24 24",""] \ No newline at end of file +export const livejournal = ["32 32","livejournal"] \ No newline at end of file diff --git a/js/brand/livestream.d.ts b/js/brand/livestream.d.ts new file mode 100644 index 000000000..d37557b78 --- /dev/null +++ b/js/brand/livestream.d.ts @@ -0,0 +1 @@ +export declare const livestream: string[]; \ No newline at end of file diff --git a/js/brand/livestream.js b/js/brand/livestream.js index 62fe4356b..2c347b09a 100644 --- a/js/brand/livestream.js +++ b/js/brand/livestream.js @@ -1 +1 @@ -export const livestream = ["24 24",""] \ No newline at end of file +export const livestream = ["32 32","livestream"] \ No newline at end of file diff --git a/js/brand/logstash.d.ts b/js/brand/logstash.d.ts new file mode 100644 index 000000000..b1f0f3662 --- /dev/null +++ b/js/brand/logstash.d.ts @@ -0,0 +1 @@ +export declare const logstash: string[]; \ No newline at end of file diff --git a/js/brand/logstash.js b/js/brand/logstash.js index 3dc16c64f..c0d7ff800 100644 --- a/js/brand/logstash.js +++ b/js/brand/logstash.js @@ -1 +1 @@ -export const logstash = ["24 24",""] \ No newline at end of file +export const logstash = ["32 32","logstash"] \ No newline at end of file diff --git a/js/brand/lua.d.ts b/js/brand/lua.d.ts new file mode 100644 index 000000000..6aaab0949 --- /dev/null +++ b/js/brand/lua.d.ts @@ -0,0 +1 @@ +export declare const lua: string[]; \ No newline at end of file diff --git a/js/brand/lua.js b/js/brand/lua.js index 800b5219f..f159dc96d 100644 --- a/js/brand/lua.js +++ b/js/brand/lua.js @@ -1 +1 @@ -export const lua = ["24 24",""] \ No newline at end of file +export const lua = ["32 32","lua"] \ No newline at end of file diff --git a/js/brand/lumen.d.ts b/js/brand/lumen.d.ts new file mode 100644 index 000000000..f15b55b8a --- /dev/null +++ b/js/brand/lumen.d.ts @@ -0,0 +1 @@ +export declare const lumen: string[]; \ No newline at end of file diff --git a/js/brand/lumen.js b/js/brand/lumen.js index 36b9aad6b..462db2dfa 100644 --- a/js/brand/lumen.js +++ b/js/brand/lumen.js @@ -1 +1 @@ -export const lumen = ["24 24",""] \ No newline at end of file +export const lumen = ["32 32","lumen"] \ No newline at end of file diff --git a/js/brand/lyft.d.ts b/js/brand/lyft.d.ts new file mode 100644 index 000000000..cd4a76ed7 --- /dev/null +++ b/js/brand/lyft.d.ts @@ -0,0 +1 @@ +export declare const lyft: string[]; \ No newline at end of file diff --git a/js/brand/lyft.js b/js/brand/lyft.js index cd8fa1909..285805288 100644 --- a/js/brand/lyft.js +++ b/js/brand/lyft.js @@ -1 +1 @@ -export const lyft = ["24 24",""] \ No newline at end of file +export const lyft = ["32 32","lyft"] \ No newline at end of file diff --git a/js/brand/macys.d.ts b/js/brand/macys.d.ts new file mode 100644 index 000000000..376921d0b --- /dev/null +++ b/js/brand/macys.d.ts @@ -0,0 +1 @@ +export declare const macys: string[]; \ No newline at end of file diff --git a/js/brand/macys.js b/js/brand/macys.js index 5560f4f9f..0b4cf5ba4 100644 --- a/js/brand/macys.js +++ b/js/brand/macys.js @@ -1 +1 @@ -export const macys = ["24 24",""] \ No newline at end of file +export const macys = ["32 32","macys"] \ No newline at end of file diff --git a/js/brand/magento.d.ts b/js/brand/magento.d.ts new file mode 100644 index 000000000..9ea8f6624 --- /dev/null +++ b/js/brand/magento.d.ts @@ -0,0 +1 @@ +export declare const magento: string[]; \ No newline at end of file diff --git a/js/brand/magento.js b/js/brand/magento.js index ba04d14bf..1af0cf025 100644 --- a/js/brand/magento.js +++ b/js/brand/magento.js @@ -1 +1 @@ -export const magento = ["24 24",""] \ No newline at end of file +export const magento = ["32 32","magento"] \ No newline at end of file diff --git a/js/brand/magisk.d.ts b/js/brand/magisk.d.ts new file mode 100644 index 000000000..7724d2186 --- /dev/null +++ b/js/brand/magisk.d.ts @@ -0,0 +1 @@ +export declare const magisk: string[]; \ No newline at end of file diff --git a/js/brand/magisk.js b/js/brand/magisk.js index bbbead8b7..e2502414c 100644 --- a/js/brand/magisk.js +++ b/js/brand/magisk.js @@ -1 +1 @@ -export const magisk = ["24 24",""] \ No newline at end of file +export const magisk = ["32 32","magisk"] \ No newline at end of file diff --git a/js/brand/mail-dot-ru.js b/js/brand/mail-dot-ru.js deleted file mode 100644 index 7c28d2bde..000000000 --- a/js/brand/mail-dot-ru.js +++ /dev/null @@ -1 +0,0 @@ -export const mailDotRu = ["24 24",""] \ No newline at end of file diff --git a/js/brand/mail-ru.d.ts b/js/brand/mail-ru.d.ts new file mode 100644 index 000000000..832c5b99f --- /dev/null +++ b/js/brand/mail-ru.d.ts @@ -0,0 +1 @@ +export declare const mailRu: string[]; \ No newline at end of file diff --git a/js/brand/mail-ru.js b/js/brand/mail-ru.js new file mode 100644 index 000000000..df9796b35 --- /dev/null +++ b/js/brand/mail-ru.js @@ -0,0 +1 @@ +export const mailRu = ["32 32","mail-ru"] \ No newline at end of file diff --git a/js/brand/mailchimp.d.ts b/js/brand/mailchimp.d.ts new file mode 100644 index 000000000..dd6db9ecf --- /dev/null +++ b/js/brand/mailchimp.d.ts @@ -0,0 +1 @@ +export declare const mailchimp: string[]; \ No newline at end of file diff --git a/js/brand/mailchimp.js b/js/brand/mailchimp.js index 93cbb3c29..e08739364 100644 --- a/js/brand/mailchimp.js +++ b/js/brand/mailchimp.js @@ -1 +1 @@ -export const mailchimp = ["24 24",""] \ No newline at end of file +export const mailchimp = ["32 32","mailchimp"] \ No newline at end of file diff --git a/js/brand/makerbot.d.ts b/js/brand/makerbot.d.ts new file mode 100644 index 000000000..6f68d46ff --- /dev/null +++ b/js/brand/makerbot.d.ts @@ -0,0 +1 @@ +export declare const makerbot: string[]; \ No newline at end of file diff --git a/js/brand/makerbot.js b/js/brand/makerbot.js index 98bc118c2..4a412f2b8 100644 --- a/js/brand/makerbot.js +++ b/js/brand/makerbot.js @@ -1 +1 @@ -export const makerbot = ["24 24",""] \ No newline at end of file +export const makerbot = ["32 32","makerbot"] \ No newline at end of file diff --git a/js/brand/mandalorian.js b/js/brand/mandalorian.js deleted file mode 100644 index 8ac87ac55..000000000 --- a/js/brand/mandalorian.js +++ /dev/null @@ -1 +0,0 @@ -export const mandalorian = ["448 512",""] \ No newline at end of file diff --git a/js/brand/manjaro.d.ts b/js/brand/manjaro.d.ts new file mode 100644 index 000000000..fcaf1db3a --- /dev/null +++ b/js/brand/manjaro.d.ts @@ -0,0 +1 @@ +export declare const manjaro: string[]; \ No newline at end of file diff --git a/js/brand/manjaro.js b/js/brand/manjaro.js index f07d6595e..2723ebe4f 100644 --- a/js/brand/manjaro.js +++ b/js/brand/manjaro.js @@ -1 +1 @@ -export const manjaro = ["24 24",""] \ No newline at end of file +export const manjaro = ["32 32","manjaro"] \ No newline at end of file diff --git a/js/brand/markdown.d.ts b/js/brand/markdown.d.ts new file mode 100644 index 000000000..2c38363ff --- /dev/null +++ b/js/brand/markdown.d.ts @@ -0,0 +1 @@ +export declare const markdown: string[]; \ No newline at end of file diff --git a/js/brand/markdown.js b/js/brand/markdown.js index 04381ea8a..cd3b119fe 100644 --- a/js/brand/markdown.js +++ b/js/brand/markdown.js @@ -1 +1 @@ -export const markdown = ["24 24",""] \ No newline at end of file +export const markdown = ["32 32","markdown"] \ No newline at end of file diff --git a/js/brand/marketo.d.ts b/js/brand/marketo.d.ts new file mode 100644 index 000000000..0cb72e0b4 --- /dev/null +++ b/js/brand/marketo.d.ts @@ -0,0 +1 @@ +export declare const marketo: string[]; \ No newline at end of file diff --git a/js/brand/marketo.js b/js/brand/marketo.js index 33e5666fe..8c13d30f2 100644 --- a/js/brand/marketo.js +++ b/js/brand/marketo.js @@ -1 +1 @@ -export const marketo = ["24 24",""] \ No newline at end of file +export const marketo = ["32 32","marketo"] \ No newline at end of file diff --git a/js/brand/mastercard.d.ts b/js/brand/mastercard.d.ts new file mode 100644 index 000000000..74307f0f4 --- /dev/null +++ b/js/brand/mastercard.d.ts @@ -0,0 +1 @@ +export declare const mastercard: string[]; \ No newline at end of file diff --git a/js/brand/mastercard.js b/js/brand/mastercard.js index 9ccc09210..1d17d8057 100644 --- a/js/brand/mastercard.js +++ b/js/brand/mastercard.js @@ -1 +1 @@ -export const mastercard = ["24 24",""] \ No newline at end of file +export const mastercard = ["32 32","mastercard"] \ No newline at end of file diff --git a/js/brand/mastodon.d.ts b/js/brand/mastodon.d.ts new file mode 100644 index 000000000..2b7bd4840 --- /dev/null +++ b/js/brand/mastodon.d.ts @@ -0,0 +1 @@ +export declare const mastodon: string[]; \ No newline at end of file diff --git a/js/brand/mastodon.js b/js/brand/mastodon.js index 9c01585cd..c5bcac063 100644 --- a/js/brand/mastodon.js +++ b/js/brand/mastodon.js @@ -1 +1 @@ -export const mastodon = ["24 24",""] \ No newline at end of file +export const mastodon = ["32 32","mastodon"] \ No newline at end of file diff --git a/js/brand/material-design.d.ts b/js/brand/material-design.d.ts new file mode 100644 index 000000000..9c369df4d --- /dev/null +++ b/js/brand/material-design.d.ts @@ -0,0 +1 @@ +export declare const materialDesign: string[]; \ No newline at end of file diff --git a/js/brand/material-design.js b/js/brand/material-design.js new file mode 100644 index 000000000..cd5b33c92 --- /dev/null +++ b/js/brand/material-design.js @@ -0,0 +1 @@ +export const materialDesign = ["32 32","material-design"] \ No newline at end of file diff --git a/js/brand/materialdesign.js b/js/brand/materialdesign.js deleted file mode 100644 index f35c7d90a..000000000 --- a/js/brand/materialdesign.js +++ /dev/null @@ -1 +0,0 @@ -export const materialdesign = ["24 24",""] \ No newline at end of file diff --git a/js/brand/mathworks.d.ts b/js/brand/mathworks.d.ts new file mode 100644 index 000000000..583ba375c --- /dev/null +++ b/js/brand/mathworks.d.ts @@ -0,0 +1 @@ +export declare const mathworks: string[]; \ No newline at end of file diff --git a/js/brand/mathworks.js b/js/brand/mathworks.js index 0d1b5658f..6c23542f7 100644 --- a/js/brand/mathworks.js +++ b/js/brand/mathworks.js @@ -1 +1 @@ -export const mathworks = ["24 24",""] \ No newline at end of file +export const mathworks = ["32 32","mathworks"] \ No newline at end of file diff --git a/js/brand/matrix.d.ts b/js/brand/matrix.d.ts new file mode 100644 index 000000000..12a979270 --- /dev/null +++ b/js/brand/matrix.d.ts @@ -0,0 +1 @@ +export declare const matrix: string[]; \ No newline at end of file diff --git a/js/brand/matrix.js b/js/brand/matrix.js index 32f125fe8..518ff604b 100644 --- a/js/brand/matrix.js +++ b/js/brand/matrix.js @@ -1 +1 @@ -export const matrix = ["24 24",""] \ No newline at end of file +export const matrix = ["32 32","matrix"] \ No newline at end of file diff --git a/js/brand/mattermost.d.ts b/js/brand/mattermost.d.ts new file mode 100644 index 000000000..2302a2d8f --- /dev/null +++ b/js/brand/mattermost.d.ts @@ -0,0 +1 @@ +export declare const mattermost: string[]; \ No newline at end of file diff --git a/js/brand/mattermost.js b/js/brand/mattermost.js index 3e5d04856..115562ece 100644 --- a/js/brand/mattermost.js +++ b/js/brand/mattermost.js @@ -1 +1 @@ -export const mattermost = ["24 24",""] \ No newline at end of file +export const mattermost = ["32 32","mattermost"] \ No newline at end of file diff --git a/js/brand/matternet.d.ts b/js/brand/matternet.d.ts new file mode 100644 index 000000000..2553c4d6a --- /dev/null +++ b/js/brand/matternet.d.ts @@ -0,0 +1 @@ +export declare const matternet: string[]; \ No newline at end of file diff --git a/js/brand/matternet.js b/js/brand/matternet.js index 492f5a691..5030bded9 100644 --- a/js/brand/matternet.js +++ b/js/brand/matternet.js @@ -1 +1 @@ -export const matternet = ["24 24",""] \ No newline at end of file +export const matternet = ["32 32","matternet"] \ No newline at end of file diff --git a/js/brand/maxcdn.d.ts b/js/brand/maxcdn.d.ts new file mode 100644 index 000000000..9abf55ff5 --- /dev/null +++ b/js/brand/maxcdn.d.ts @@ -0,0 +1 @@ +export declare const maxcdn: string[]; \ No newline at end of file diff --git a/js/brand/maxcdn.js b/js/brand/maxcdn.js index 333d884a9..ef79e0783 100644 --- a/js/brand/maxcdn.js +++ b/js/brand/maxcdn.js @@ -1 +1 @@ -export const maxcdn = ["512 512",""] \ No newline at end of file +export const maxcdn = ["32 32","maxcdn"] \ No newline at end of file diff --git a/js/brand/mcafee.d.ts b/js/brand/mcafee.d.ts new file mode 100644 index 000000000..0f4e17b9c --- /dev/null +++ b/js/brand/mcafee.d.ts @@ -0,0 +1 @@ +export declare const mcafee: string[]; \ No newline at end of file diff --git a/js/brand/mcafee.js b/js/brand/mcafee.js index f672210ca..cef634e6e 100644 --- a/js/brand/mcafee.js +++ b/js/brand/mcafee.js @@ -1 +1 @@ -export const mcafee = ["24 24",""] \ No newline at end of file +export const mcafee = ["32 32","mcafee"] \ No newline at end of file diff --git a/js/brand/medapps.js b/js/brand/medapps.js deleted file mode 100644 index 03a8aaa22..000000000 --- a/js/brand/medapps.js +++ /dev/null @@ -1 +0,0 @@ -export const medapps = ["320 512",""] \ No newline at end of file diff --git a/js/brand/media-temple.d.ts b/js/brand/media-temple.d.ts new file mode 100644 index 000000000..d060639da --- /dev/null +++ b/js/brand/media-temple.d.ts @@ -0,0 +1 @@ +export declare const mediaTemple: string[]; \ No newline at end of file diff --git a/js/brand/media-temple.js b/js/brand/media-temple.js new file mode 100644 index 000000000..5c5cabb3f --- /dev/null +++ b/js/brand/media-temple.js @@ -0,0 +1 @@ +export const mediaTemple = ["32 32","media-temple"] \ No newline at end of file diff --git a/js/brand/mediafire.d.ts b/js/brand/mediafire.d.ts new file mode 100644 index 000000000..b06bbc8c4 --- /dev/null +++ b/js/brand/mediafire.d.ts @@ -0,0 +1 @@ +export declare const mediafire: string[]; \ No newline at end of file diff --git a/js/brand/mediafire.js b/js/brand/mediafire.js index 08ca78abc..985b0fa17 100644 --- a/js/brand/mediafire.js +++ b/js/brand/mediafire.js @@ -1 +1 @@ -export const mediafire = ["24 24",""] \ No newline at end of file +export const mediafire = ["32 32","mediafire"] \ No newline at end of file diff --git a/js/brand/mediatemple.js b/js/brand/mediatemple.js deleted file mode 100644 index cd698e452..000000000 --- a/js/brand/mediatemple.js +++ /dev/null @@ -1 +0,0 @@ -export const mediatemple = ["24 24",""] \ No newline at end of file diff --git a/js/brand/medium-m.d.ts b/js/brand/medium-m.d.ts new file mode 100644 index 000000000..eda2bf620 --- /dev/null +++ b/js/brand/medium-m.d.ts @@ -0,0 +1 @@ +export declare const mediumM: string[]; \ No newline at end of file diff --git a/js/brand/medium-m.js b/js/brand/medium-m.js new file mode 100644 index 000000000..b14416c7e --- /dev/null +++ b/js/brand/medium-m.js @@ -0,0 +1 @@ +export const mediumM = ["32 32","medium-m"] \ No newline at end of file diff --git a/js/brand/medium.d.ts b/js/brand/medium.d.ts new file mode 100644 index 000000000..2a339a105 --- /dev/null +++ b/js/brand/medium.d.ts @@ -0,0 +1 @@ +export declare const medium: string[]; \ No newline at end of file diff --git a/js/brand/medium.js b/js/brand/medium.js index 1a03414ac..d8afb9150 100644 --- a/js/brand/medium.js +++ b/js/brand/medium.js @@ -1 +1 @@ -export const medium = ["24 24",""] \ No newline at end of file +export const medium = ["32 32","medium"] \ No newline at end of file diff --git a/js/brand/medrt.js b/js/brand/medrt.js deleted file mode 100644 index 73e86bc04..000000000 --- a/js/brand/medrt.js +++ /dev/null @@ -1 +0,0 @@ -export const medrt = ["544 512",""] \ No newline at end of file diff --git a/js/brand/meetup.d.ts b/js/brand/meetup.d.ts new file mode 100644 index 000000000..eebd80e23 --- /dev/null +++ b/js/brand/meetup.d.ts @@ -0,0 +1 @@ +export declare const meetup: string[]; \ No newline at end of file diff --git a/js/brand/meetup.js b/js/brand/meetup.js index 9a4675b6d..129438b8c 100644 --- a/js/brand/meetup.js +++ b/js/brand/meetup.js @@ -1 +1 @@ -export const meetup = ["24 24",""] \ No newline at end of file +export const meetup = ["32 32","meetup"] \ No newline at end of file diff --git a/js/brand/mega.d.ts b/js/brand/mega.d.ts new file mode 100644 index 000000000..a7b7bc53e --- /dev/null +++ b/js/brand/mega.d.ts @@ -0,0 +1 @@ +export declare const mega: string[]; \ No newline at end of file diff --git a/js/brand/mega.js b/js/brand/mega.js index b99130618..be4c402fd 100644 --- a/js/brand/mega.js +++ b/js/brand/mega.js @@ -1 +1 @@ -export const mega = ["24 24",""] \ No newline at end of file +export const mega = ["32 32","mega"] \ No newline at end of file diff --git a/js/brand/megaport.js b/js/brand/megaport.js deleted file mode 100644 index 5bdbec409..000000000 --- a/js/brand/megaport.js +++ /dev/null @@ -1 +0,0 @@ -export const megaport = ["496 512",""] \ No newline at end of file diff --git a/js/brand/mendeley.d.ts b/js/brand/mendeley.d.ts new file mode 100644 index 000000000..2187a9784 --- /dev/null +++ b/js/brand/mendeley.d.ts @@ -0,0 +1 @@ +export declare const mendeley: string[]; \ No newline at end of file diff --git a/js/brand/mendeley.js b/js/brand/mendeley.js index e8de09bd3..e7cb04545 100644 --- a/js/brand/mendeley.js +++ b/js/brand/mendeley.js @@ -1 +1 @@ -export const mendeley = ["24 24",""] \ No newline at end of file +export const mendeley = ["32 32","mendeley"] \ No newline at end of file diff --git a/js/brand/messenger.d.ts b/js/brand/messenger.d.ts new file mode 100644 index 000000000..9fe5832bd --- /dev/null +++ b/js/brand/messenger.d.ts @@ -0,0 +1 @@ +export declare const messenger: string[]; \ No newline at end of file diff --git a/js/brand/messenger.js b/js/brand/messenger.js index 671051679..25dc4b04c 100644 --- a/js/brand/messenger.js +++ b/js/brand/messenger.js @@ -1 +1 @@ -export const messenger = ["24 24",""] \ No newline at end of file +export const messenger = ["32 32","messenger"] \ No newline at end of file diff --git a/js/brand/meteor.d.ts b/js/brand/meteor.d.ts new file mode 100644 index 000000000..96552505d --- /dev/null +++ b/js/brand/meteor.d.ts @@ -0,0 +1 @@ +export declare const meteor: string[]; \ No newline at end of file diff --git a/js/brand/meteor.js b/js/brand/meteor.js index 26b4d25ed..dbe0379f0 100644 --- a/js/brand/meteor.js +++ b/js/brand/meteor.js @@ -1 +1 @@ -export const meteor = ["24 24",""] \ No newline at end of file +export const meteor = ["32 32","meteor"] \ No newline at end of file diff --git a/js/brand/micro-blog.d.ts b/js/brand/micro-blog.d.ts new file mode 100644 index 000000000..6d0488ddf --- /dev/null +++ b/js/brand/micro-blog.d.ts @@ -0,0 +1 @@ +export declare const microBlog: string[]; \ No newline at end of file diff --git a/js/brand/micro-blog.js b/js/brand/micro-blog.js new file mode 100644 index 000000000..8251d53ae --- /dev/null +++ b/js/brand/micro-blog.js @@ -0,0 +1 @@ +export const microBlog = ["32 32","micro-blog"] \ No newline at end of file diff --git a/js/brand/micro-dot-blog.js b/js/brand/micro-dot-blog.js deleted file mode 100644 index 3c9a8ded8..000000000 --- a/js/brand/micro-dot-blog.js +++ /dev/null @@ -1 +0,0 @@ -export const microDotBlog = ["24 24",""] \ No newline at end of file diff --git a/js/brand/microgenetics.d.ts b/js/brand/microgenetics.d.ts new file mode 100644 index 000000000..0925d33af --- /dev/null +++ b/js/brand/microgenetics.d.ts @@ -0,0 +1 @@ +export declare const microgenetics: string[]; \ No newline at end of file diff --git a/js/brand/microgenetics.js b/js/brand/microgenetics.js index f8f579ec5..44a212c20 100644 --- a/js/brand/microgenetics.js +++ b/js/brand/microgenetics.js @@ -1 +1 @@ -export const microgenetics = ["24 24",""] \ No newline at end of file +export const microgenetics = ["32 32","microgenetics"] \ No newline at end of file diff --git a/js/brand/microsoft-edge.d.ts b/js/brand/microsoft-edge.d.ts new file mode 100644 index 000000000..0323b970e --- /dev/null +++ b/js/brand/microsoft-edge.d.ts @@ -0,0 +1 @@ +export declare const microsoftEdge: string[]; \ No newline at end of file diff --git a/js/brand/microsoft-edge.js b/js/brand/microsoft-edge.js index 84c14bfe4..ce96ba582 100644 --- a/js/brand/microsoft-edge.js +++ b/js/brand/microsoft-edge.js @@ -1 +1 @@ -export const microsoftEdge = ["24 24",""] \ No newline at end of file +export const microsoftEdge = ["32 32","microsoft-edge"] \ No newline at end of file diff --git a/js/brand/microsoft.d.ts b/js/brand/microsoft.d.ts new file mode 100644 index 000000000..a4500ac42 --- /dev/null +++ b/js/brand/microsoft.d.ts @@ -0,0 +1 @@ +export declare const microsoft: string[]; \ No newline at end of file diff --git a/js/brand/microsoft.js b/js/brand/microsoft.js index 377e118b5..a131ca360 100644 --- a/js/brand/microsoft.js +++ b/js/brand/microsoft.js @@ -1 +1 @@ -export const microsoft = ["24 24",""] \ No newline at end of file +export const microsoft = ["32 32","microsoft"] \ No newline at end of file diff --git a/js/brand/minetest.d.ts b/js/brand/minetest.d.ts new file mode 100644 index 000000000..d1003bacd --- /dev/null +++ b/js/brand/minetest.d.ts @@ -0,0 +1 @@ +export declare const minetest: string[]; \ No newline at end of file diff --git a/js/brand/minetest.js b/js/brand/minetest.js index 3959df11a..d5d998200 100644 --- a/js/brand/minetest.js +++ b/js/brand/minetest.js @@ -1 +1 @@ -export const minetest = ["24 24",""] \ No newline at end of file +export const minetest = ["32 32","minetest"] \ No newline at end of file diff --git a/js/brand/minutemailer.d.ts b/js/brand/minutemailer.d.ts new file mode 100644 index 000000000..88e33242d --- /dev/null +++ b/js/brand/minutemailer.d.ts @@ -0,0 +1 @@ +export declare const minutemailer: string[]; \ No newline at end of file diff --git a/js/brand/minutemailer.js b/js/brand/minutemailer.js index bc38403ce..602cc6c0a 100644 --- a/js/brand/minutemailer.js +++ b/js/brand/minutemailer.js @@ -1 +1 @@ -export const minutemailer = ["24 24",""] \ No newline at end of file +export const minutemailer = ["32 32","minutemailer"] \ No newline at end of file diff --git a/js/brand/mix.d.ts b/js/brand/mix.d.ts new file mode 100644 index 000000000..8f3c14bea --- /dev/null +++ b/js/brand/mix.d.ts @@ -0,0 +1 @@ +export declare const mix: string[]; \ No newline at end of file diff --git a/js/brand/mix.js b/js/brand/mix.js index f43616545..b5e1c4059 100644 --- a/js/brand/mix.js +++ b/js/brand/mix.js @@ -1 +1 @@ -export const mix = ["24 24",""] \ No newline at end of file +export const mix = ["32 32","mix"] \ No newline at end of file diff --git a/js/brand/mixcloud.d.ts b/js/brand/mixcloud.d.ts new file mode 100644 index 000000000..4aacd34c7 --- /dev/null +++ b/js/brand/mixcloud.d.ts @@ -0,0 +1 @@ +export declare const mixcloud: string[]; \ No newline at end of file diff --git a/js/brand/mixcloud.js b/js/brand/mixcloud.js index 6ea80b346..44823204c 100644 --- a/js/brand/mixcloud.js +++ b/js/brand/mixcloud.js @@ -1 +1 @@ -export const mixcloud = ["24 24",""] \ No newline at end of file +export const mixcloud = ["32 32","mixcloud"] \ No newline at end of file diff --git a/js/brand/mixer.d.ts b/js/brand/mixer.d.ts new file mode 100644 index 000000000..fec2fcf85 --- /dev/null +++ b/js/brand/mixer.d.ts @@ -0,0 +1 @@ +export declare const mixer: string[]; \ No newline at end of file diff --git a/js/brand/mixer.js b/js/brand/mixer.js index 349cf6d5c..924eb4c32 100644 --- a/js/brand/mixer.js +++ b/js/brand/mixer.js @@ -1 +1 @@ -export const mixer = ["24 24",""] \ No newline at end of file +export const mixer = ["32 32","mixer"] \ No newline at end of file diff --git a/js/brand/mizuni.js b/js/brand/mizuni.js deleted file mode 100644 index 7e62c94ba..000000000 --- a/js/brand/mizuni.js +++ /dev/null @@ -1 +0,0 @@ -export const mizuni = ["496 512",""] \ No newline at end of file diff --git a/js/brand/modx.js b/js/brand/modx.js deleted file mode 100644 index a324fc0b7..000000000 --- a/js/brand/modx.js +++ /dev/null @@ -1 +0,0 @@ -export const modx = ["448 512",""] \ No newline at end of file diff --git a/js/brand/mojang.d.ts b/js/brand/mojang.d.ts new file mode 100644 index 000000000..b7e1a8313 --- /dev/null +++ b/js/brand/mojang.d.ts @@ -0,0 +1 @@ +export declare const mojang: string[]; \ No newline at end of file diff --git a/js/brand/mojang.js b/js/brand/mojang.js index 091c1e275..4ff03660c 100644 --- a/js/brand/mojang.js +++ b/js/brand/mojang.js @@ -1 +1 @@ -export const mojang = ["24 24",""] \ No newline at end of file +export const mojang = ["32 32","mojang"] \ No newline at end of file diff --git a/js/brand/monero.d.ts b/js/brand/monero.d.ts new file mode 100644 index 000000000..d64de11db --- /dev/null +++ b/js/brand/monero.d.ts @@ -0,0 +1 @@ +export declare const monero: string[]; \ No newline at end of file diff --git a/js/brand/monero.js b/js/brand/monero.js index e9c46578c..e1f114843 100644 --- a/js/brand/monero.js +++ b/js/brand/monero.js @@ -1 +1 @@ -export const monero = ["24 24",""] \ No newline at end of file +export const monero = ["32 32","monero"] \ No newline at end of file diff --git a/js/brand/mongodb.d.ts b/js/brand/mongodb.d.ts new file mode 100644 index 000000000..c21eec8c8 --- /dev/null +++ b/js/brand/mongodb.d.ts @@ -0,0 +1 @@ +export declare const mongodb: string[]; \ No newline at end of file diff --git a/js/brand/mongodb.js b/js/brand/mongodb.js index 53d74f533..08c8347a1 100644 --- a/js/brand/mongodb.js +++ b/js/brand/mongodb.js @@ -1 +1 @@ -export const mongodb = ["24 24",""] \ No newline at end of file +export const mongodb = ["32 32","mongodb"] \ No newline at end of file diff --git a/js/brand/monkeytie.d.ts b/js/brand/monkeytie.d.ts new file mode 100644 index 000000000..7d22d75f0 --- /dev/null +++ b/js/brand/monkeytie.d.ts @@ -0,0 +1 @@ +export declare const monkeytie: string[]; \ No newline at end of file diff --git a/js/brand/monkeytie.js b/js/brand/monkeytie.js index 427e6e828..1a800a0f3 100644 --- a/js/brand/monkeytie.js +++ b/js/brand/monkeytie.js @@ -1 +1 @@ -export const monkeytie = ["24 24",""] \ No newline at end of file +export const monkeytie = ["32 32","monkeytie"] \ No newline at end of file diff --git a/js/brand/monogram.d.ts b/js/brand/monogram.d.ts new file mode 100644 index 000000000..2b851ad78 --- /dev/null +++ b/js/brand/monogram.d.ts @@ -0,0 +1 @@ +export declare const monogram: string[]; \ No newline at end of file diff --git a/js/brand/monogram.js b/js/brand/monogram.js index 409e28211..e2cc9b821 100644 --- a/js/brand/monogram.js +++ b/js/brand/monogram.js @@ -1 +1 @@ -export const monogram = ["24 24",""] \ No newline at end of file +export const monogram = ["32 32","monogram"] \ No newline at end of file diff --git a/js/brand/monzo.d.ts b/js/brand/monzo.d.ts new file mode 100644 index 000000000..aeea25544 --- /dev/null +++ b/js/brand/monzo.d.ts @@ -0,0 +1 @@ +export declare const monzo: string[]; \ No newline at end of file diff --git a/js/brand/monzo.js b/js/brand/monzo.js index 9b729c189..f01256b65 100644 --- a/js/brand/monzo.js +++ b/js/brand/monzo.js @@ -1 +1 @@ -export const monzo = ["24 24",""] \ No newline at end of file +export const monzo = ["32 32","monzo"] \ No newline at end of file diff --git a/js/brand/moo.d.ts b/js/brand/moo.d.ts new file mode 100644 index 000000000..cc64d173a --- /dev/null +++ b/js/brand/moo.d.ts @@ -0,0 +1 @@ +export declare const moo: string[]; \ No newline at end of file diff --git a/js/brand/moo.js b/js/brand/moo.js index 91f73ea17..7739ea1b2 100644 --- a/js/brand/moo.js +++ b/js/brand/moo.js @@ -1 +1 @@ -export const moo = ["24 24",""] \ No newline at end of file +export const moo = ["32 32","moo"] \ No newline at end of file diff --git a/js/brand/mozilla-firefox.d.ts b/js/brand/mozilla-firefox.d.ts new file mode 100644 index 000000000..a83bed1b2 --- /dev/null +++ b/js/brand/mozilla-firefox.d.ts @@ -0,0 +1 @@ +export declare const mozillaFirefox: string[]; \ No newline at end of file diff --git a/js/brand/mozilla-firefox.js b/js/brand/mozilla-firefox.js index cf11ca00c..acc2238f1 100644 --- a/js/brand/mozilla-firefox.js +++ b/js/brand/mozilla-firefox.js @@ -1 +1 @@ -export const mozillaFirefox = ["24 24",""] \ No newline at end of file +export const mozillaFirefox = ["32 32","mozilla-firefox"] \ No newline at end of file diff --git a/js/brand/mozilla.d.ts b/js/brand/mozilla.d.ts new file mode 100644 index 000000000..e164a450e --- /dev/null +++ b/js/brand/mozilla.d.ts @@ -0,0 +1 @@ +export declare const mozilla: string[]; \ No newline at end of file diff --git a/js/brand/mozilla.js b/js/brand/mozilla.js index d8551b66f..73e091251 100644 --- a/js/brand/mozilla.js +++ b/js/brand/mozilla.js @@ -1 +1 @@ -export const mozilla = ["24 24",""] \ No newline at end of file +export const mozilla = ["32 32","mozilla"] \ No newline at end of file diff --git a/js/brand/musescore.d.ts b/js/brand/musescore.d.ts new file mode 100644 index 000000000..324efe6d9 --- /dev/null +++ b/js/brand/musescore.d.ts @@ -0,0 +1 @@ +export declare const musescore: string[]; \ No newline at end of file diff --git a/js/brand/musescore.js b/js/brand/musescore.js index 98c800dbd..406a074ae 100644 --- a/js/brand/musescore.js +++ b/js/brand/musescore.js @@ -1 +1 @@ -export const musescore = ["24 24",""] \ No newline at end of file +export const musescore = ["32 32","musescore"] \ No newline at end of file diff --git a/js/brand/mxlinux.d.ts b/js/brand/mxlinux.d.ts new file mode 100644 index 000000000..f46a37827 --- /dev/null +++ b/js/brand/mxlinux.d.ts @@ -0,0 +1 @@ +export declare const mxlinux: string[]; \ No newline at end of file diff --git a/js/brand/mxlinux.js b/js/brand/mxlinux.js index 3637e0a89..f25edc6c6 100644 --- a/js/brand/mxlinux.js +++ b/js/brand/mxlinux.js @@ -1 +1 @@ -export const mxlinux = ["24 24",""] \ No newline at end of file +export const mxlinux = ["32 32","mxlinux"] \ No newline at end of file diff --git a/js/brand/myspace.d.ts b/js/brand/myspace.d.ts new file mode 100644 index 000000000..5933ee6e5 --- /dev/null +++ b/js/brand/myspace.d.ts @@ -0,0 +1 @@ +export declare const myspace: string[]; \ No newline at end of file diff --git a/js/brand/myspace.js b/js/brand/myspace.js index c46dac34f..df4f18d56 100644 --- a/js/brand/myspace.js +++ b/js/brand/myspace.js @@ -1 +1 @@ -export const myspace = ["24 24",""] \ No newline at end of file +export const myspace = ["32 32","myspace"] \ No newline at end of file diff --git a/js/brand/mysql.d.ts b/js/brand/mysql.d.ts new file mode 100644 index 000000000..98e25661c --- /dev/null +++ b/js/brand/mysql.d.ts @@ -0,0 +1 @@ +export declare const mysql: string[]; \ No newline at end of file diff --git a/js/brand/mysql.js b/js/brand/mysql.js index 077cfb75f..4e1102f1b 100644 --- a/js/brand/mysql.js +++ b/js/brand/mysql.js @@ -1 +1 @@ -export const mysql = ["24 24",""] \ No newline at end of file +export const mysql = ["32 32","mysql"] \ No newline at end of file diff --git a/js/brand/napster.js b/js/brand/napster.js deleted file mode 100644 index 9d18cf159..000000000 --- a/js/brand/napster.js +++ /dev/null @@ -1 +0,0 @@ -export const napster = ["496 512",""] \ No newline at end of file diff --git a/js/brand/nativescript.d.ts b/js/brand/nativescript.d.ts new file mode 100644 index 000000000..2257feb8a --- /dev/null +++ b/js/brand/nativescript.d.ts @@ -0,0 +1 @@ +export declare const nativescript: string[]; \ No newline at end of file diff --git a/js/brand/nativescript.js b/js/brand/nativescript.js index 7f4f4f46e..271e24c64 100644 --- a/js/brand/nativescript.js +++ b/js/brand/nativescript.js @@ -1 +1 @@ -export const nativescript = ["24 24",""] \ No newline at end of file +export const nativescript = ["32 32","nativescript"] \ No newline at end of file diff --git a/js/brand/nec.d.ts b/js/brand/nec.d.ts new file mode 100644 index 000000000..60b808d27 --- /dev/null +++ b/js/brand/nec.d.ts @@ -0,0 +1 @@ +export declare const nec: string[]; \ No newline at end of file diff --git a/js/brand/nec.js b/js/brand/nec.js index 8faae9ee4..6c66501f0 100644 --- a/js/brand/nec.js +++ b/js/brand/nec.js @@ -1 +1 @@ -export const nec = ["24 24",""] \ No newline at end of file +export const nec = ["32 32","nec"] \ No newline at end of file diff --git a/js/brand/neo4j.d.ts b/js/brand/neo4j.d.ts new file mode 100644 index 000000000..25c9421ce --- /dev/null +++ b/js/brand/neo4j.d.ts @@ -0,0 +1 @@ +export declare const neo4j: string[]; \ No newline at end of file diff --git a/js/brand/neo4j.js b/js/brand/neo4j.js index ffb1a07ed..2e6228bff 100644 --- a/js/brand/neo4j.js +++ b/js/brand/neo4j.js @@ -1 +1 @@ -export const neo4j = ["24 24",""] \ No newline at end of file +export const neo4j = ["32 32","neo4j"] \ No newline at end of file diff --git a/js/brand/neos.js b/js/brand/neos.js deleted file mode 100644 index 21c37d3fb..000000000 --- a/js/brand/neos.js +++ /dev/null @@ -1 +0,0 @@ -export const neos = ["512 512",""] \ No newline at end of file diff --git a/js/brand/netflix.d.ts b/js/brand/netflix.d.ts new file mode 100644 index 000000000..329f1395a --- /dev/null +++ b/js/brand/netflix.d.ts @@ -0,0 +1 @@ +export declare const netflix: string[]; \ No newline at end of file diff --git a/js/brand/netflix.js b/js/brand/netflix.js index 58d6ea810..e0eea1c41 100644 --- a/js/brand/netflix.js +++ b/js/brand/netflix.js @@ -1 +1 @@ -export const netflix = ["24 24",""] \ No newline at end of file +export const netflix = ["32 32","netflix"] \ No newline at end of file diff --git a/js/brand/netlify.d.ts b/js/brand/netlify.d.ts new file mode 100644 index 000000000..2a37d41f8 --- /dev/null +++ b/js/brand/netlify.d.ts @@ -0,0 +1 @@ +export declare const netlify: string[]; \ No newline at end of file diff --git a/js/brand/netlify.js b/js/brand/netlify.js index 7d8683f07..efcc1b5a9 100644 --- a/js/brand/netlify.js +++ b/js/brand/netlify.js @@ -1 +1 @@ -export const netlify = ["24 24",""] \ No newline at end of file +export const netlify = ["32 32","netlify"] \ No newline at end of file diff --git a/js/brand/next-js.d.ts b/js/brand/next-js.d.ts new file mode 100644 index 000000000..c728bdf6b --- /dev/null +++ b/js/brand/next-js.d.ts @@ -0,0 +1 @@ +export declare const nextJs: string[]; \ No newline at end of file diff --git a/js/brand/next-js.js b/js/brand/next-js.js index 68bfa059b..5f938d0eb 100644 --- a/js/brand/next-js.js +++ b/js/brand/next-js.js @@ -1 +1 @@ -export const nextJs = ["24 24",""] \ No newline at end of file +export const nextJs = ["32 32","next-js"] \ No newline at end of file diff --git a/js/brand/nextcloud.d.ts b/js/brand/nextcloud.d.ts new file mode 100644 index 000000000..87768add8 --- /dev/null +++ b/js/brand/nextcloud.d.ts @@ -0,0 +1 @@ +export declare const nextcloud: string[]; \ No newline at end of file diff --git a/js/brand/nextcloud.js b/js/brand/nextcloud.js index ad4efdf51..c0cc52572 100644 --- a/js/brand/nextcloud.js +++ b/js/brand/nextcloud.js @@ -1 +1 @@ -export const nextcloud = ["24 24",""] \ No newline at end of file +export const nextcloud = ["32 32","nextcloud"] \ No newline at end of file diff --git a/js/brand/nextdoor.d.ts b/js/brand/nextdoor.d.ts new file mode 100644 index 000000000..fe771bc4b --- /dev/null +++ b/js/brand/nextdoor.d.ts @@ -0,0 +1 @@ +export declare const nextdoor: string[]; \ No newline at end of file diff --git a/js/brand/nextdoor.js b/js/brand/nextdoor.js index be548b8f4..a7b1f033e 100644 --- a/js/brand/nextdoor.js +++ b/js/brand/nextdoor.js @@ -1 +1 @@ -export const nextdoor = ["24 24",""] \ No newline at end of file +export const nextdoor = ["32 32","nextdoor"] \ No newline at end of file diff --git a/js/brand/nginx.d.ts b/js/brand/nginx.d.ts new file mode 100644 index 000000000..6c8e3558d --- /dev/null +++ b/js/brand/nginx.d.ts @@ -0,0 +1 @@ +export declare const nginx: string[]; \ No newline at end of file diff --git a/js/brand/nginx.js b/js/brand/nginx.js index 1d706f2ef..c61abc651 100644 --- a/js/brand/nginx.js +++ b/js/brand/nginx.js @@ -1 +1 @@ -export const nginx = ["24 24",""] \ No newline at end of file +export const nginx = ["32 32","nginx"] \ No newline at end of file diff --git a/js/brand/nim.d.ts b/js/brand/nim.d.ts new file mode 100644 index 000000000..a7fcdcfde --- /dev/null +++ b/js/brand/nim.d.ts @@ -0,0 +1 @@ +export declare const nim: string[]; \ No newline at end of file diff --git a/js/brand/nim.js b/js/brand/nim.js index ddd0e6e4b..6fb20ae93 100644 --- a/js/brand/nim.js +++ b/js/brand/nim.js @@ -1 +1 @@ -export const nim = ["24 24",""] \ No newline at end of file +export const nim = ["32 32","nim"] \ No newline at end of file diff --git a/js/brand/nimblr.js b/js/brand/nimblr.js deleted file mode 100644 index 6f860e7bb..000000000 --- a/js/brand/nimblr.js +++ /dev/null @@ -1 +0,0 @@ -export const nimblr = ["384 512",""] \ No newline at end of file diff --git a/js/brand/nintendo-3ds.d.ts b/js/brand/nintendo-3ds.d.ts new file mode 100644 index 000000000..e20cc19db --- /dev/null +++ b/js/brand/nintendo-3ds.d.ts @@ -0,0 +1 @@ +export declare const nintendo3ds: string[]; \ No newline at end of file diff --git a/js/brand/nintendo-3ds.js b/js/brand/nintendo-3ds.js index 7ec7834a3..4234c2cf3 100644 --- a/js/brand/nintendo-3ds.js +++ b/js/brand/nintendo-3ds.js @@ -1 +1 @@ -export const nintendo3ds = ["24 24",""] \ No newline at end of file +export const nintendo3ds = ["32 32","nintendo-3ds"] \ No newline at end of file diff --git a/js/brand/nintendo-gamecube.d.ts b/js/brand/nintendo-gamecube.d.ts new file mode 100644 index 000000000..2f530d697 --- /dev/null +++ b/js/brand/nintendo-gamecube.d.ts @@ -0,0 +1 @@ +export declare const nintendoGamecube: string[]; \ No newline at end of file diff --git a/js/brand/nintendo-gamecube.js b/js/brand/nintendo-gamecube.js index 3c75f8c41..3e34461f5 100644 --- a/js/brand/nintendo-gamecube.js +++ b/js/brand/nintendo-gamecube.js @@ -1 +1 @@ -export const nintendoGamecube = ["24 24",""] \ No newline at end of file +export const nintendoGamecube = ["32 32","nintendo-gamecube"] \ No newline at end of file diff --git a/js/brand/nintendo-switch.d.ts b/js/brand/nintendo-switch.d.ts new file mode 100644 index 000000000..2f22e471e --- /dev/null +++ b/js/brand/nintendo-switch.d.ts @@ -0,0 +1 @@ +export declare const nintendoSwitch: string[]; \ No newline at end of file diff --git a/js/brand/nintendo-switch.js b/js/brand/nintendo-switch.js index 8a25d751d..86e78f2d3 100644 --- a/js/brand/nintendo-switch.js +++ b/js/brand/nintendo-switch.js @@ -1 +1 @@ -export const nintendoSwitch = ["24 24",""] \ No newline at end of file +export const nintendoSwitch = ["32 32","nintendo-switch"] \ No newline at end of file diff --git a/js/brand/nintendo.d.ts b/js/brand/nintendo.d.ts new file mode 100644 index 000000000..4e2c9104f --- /dev/null +++ b/js/brand/nintendo.d.ts @@ -0,0 +1 @@ +export declare const nintendo: string[]; \ No newline at end of file diff --git a/js/brand/nintendo.js b/js/brand/nintendo.js index 2f7c30d85..02edea76f 100644 --- a/js/brand/nintendo.js +++ b/js/brand/nintendo.js @@ -1 +1 @@ -export const nintendo = ["24 24",""] \ No newline at end of file +export const nintendo = ["32 32","nintendo"] \ No newline at end of file diff --git a/js/brand/node-js.d.ts b/js/brand/node-js.d.ts new file mode 100644 index 000000000..3ab76e038 --- /dev/null +++ b/js/brand/node-js.d.ts @@ -0,0 +1 @@ +export declare const nodeJs: string[]; \ No newline at end of file diff --git a/js/brand/node-js.js b/js/brand/node-js.js index 9533dd9db..bd2eed751 100644 --- a/js/brand/node-js.js +++ b/js/brand/node-js.js @@ -1 +1 @@ -export const nodeJs = ["24 24",""] \ No newline at end of file +export const nodeJs = ["32 32","node-js"] \ No newline at end of file diff --git a/js/brand/node-red.d.ts b/js/brand/node-red.d.ts new file mode 100644 index 000000000..6b12b8f81 --- /dev/null +++ b/js/brand/node-red.d.ts @@ -0,0 +1 @@ +export declare const nodeRed: string[]; \ No newline at end of file diff --git a/js/brand/node-red.js b/js/brand/node-red.js index e4d3864b0..0f94b26b5 100644 --- a/js/brand/node-red.js +++ b/js/brand/node-red.js @@ -1 +1 @@ -export const nodeRed = ["24 24",""] \ No newline at end of file +export const nodeRed = ["32 32","node-red"] \ No newline at end of file diff --git a/js/brand/node.js b/js/brand/node.js deleted file mode 100644 index 9ea9bb13a..000000000 --- a/js/brand/node.js +++ /dev/null @@ -1 +0,0 @@ -export const node = ["640 512",""] \ No newline at end of file diff --git a/js/brand/nodemon.d.ts b/js/brand/nodemon.d.ts new file mode 100644 index 000000000..b5f00f025 --- /dev/null +++ b/js/brand/nodemon.d.ts @@ -0,0 +1 @@ +export declare const nodemon: string[]; \ No newline at end of file diff --git a/js/brand/nodemon.js b/js/brand/nodemon.js index 4f40e7438..02a576a0a 100644 --- a/js/brand/nodemon.js +++ b/js/brand/nodemon.js @@ -1 +1 @@ -export const nodemon = ["24 24",""] \ No newline at end of file +export const nodemon = ["32 32","nodemon"] \ No newline at end of file diff --git a/js/brand/nokia.d.ts b/js/brand/nokia.d.ts new file mode 100644 index 000000000..1328c53ee --- /dev/null +++ b/js/brand/nokia.d.ts @@ -0,0 +1 @@ +export declare const nokia: string[]; \ No newline at end of file diff --git a/js/brand/nokia.js b/js/brand/nokia.js index 81bc2960d..51c90fd1d 100644 --- a/js/brand/nokia.js +++ b/js/brand/nokia.js @@ -1 +1 @@ -export const nokia = ["24 24",""] \ No newline at end of file +export const nokia = ["32 32","nokia"] \ No newline at end of file diff --git a/js/brand/notion.d.ts b/js/brand/notion.d.ts new file mode 100644 index 000000000..f6ef2c73f --- /dev/null +++ b/js/brand/notion.d.ts @@ -0,0 +1 @@ +export declare const notion: string[]; \ No newline at end of file diff --git a/js/brand/notion.js b/js/brand/notion.js index b62b43566..a456df33f 100644 --- a/js/brand/notion.js +++ b/js/brand/notion.js @@ -1 +1 @@ -export const notion = ["24 24",""] \ No newline at end of file +export const notion = ["32 32","notion"] \ No newline at end of file diff --git a/js/brand/npm.d.ts b/js/brand/npm.d.ts new file mode 100644 index 000000000..e2ef630f9 --- /dev/null +++ b/js/brand/npm.d.ts @@ -0,0 +1 @@ +export declare const npm: string[]; \ No newline at end of file diff --git a/js/brand/npm.js b/js/brand/npm.js index dd8410329..5e3c6ace9 100644 --- a/js/brand/npm.js +++ b/js/brand/npm.js @@ -1 +1 @@ -export const npm = ["24 24",""] \ No newline at end of file +export const npm = ["32 32","npm"] \ No newline at end of file diff --git a/js/brand/ns8.js b/js/brand/ns8.js deleted file mode 100644 index 2c6227843..000000000 --- a/js/brand/ns8.js +++ /dev/null @@ -1 +0,0 @@ -export const ns8 = ["640 512",""] \ No newline at end of file diff --git a/js/brand/nucleo.d.ts b/js/brand/nucleo.d.ts new file mode 100644 index 000000000..369635247 --- /dev/null +++ b/js/brand/nucleo.d.ts @@ -0,0 +1 @@ +export declare const nucleo: string[]; \ No newline at end of file diff --git a/js/brand/nucleo.js b/js/brand/nucleo.js index 17b991c93..796738a48 100644 --- a/js/brand/nucleo.js +++ b/js/brand/nucleo.js @@ -1 +1 @@ -export const nucleo = ["24 24",""] \ No newline at end of file +export const nucleo = ["32 32","nucleo"] \ No newline at end of file diff --git a/js/brand/nuget.d.ts b/js/brand/nuget.d.ts new file mode 100644 index 000000000..55ee78830 --- /dev/null +++ b/js/brand/nuget.d.ts @@ -0,0 +1 @@ +export declare const nuget: string[]; \ No newline at end of file diff --git a/js/brand/nuget.js b/js/brand/nuget.js index d43b1ae2d..451bc8b20 100644 --- a/js/brand/nuget.js +++ b/js/brand/nuget.js @@ -1 +1 @@ -export const nuget = ["24 24",""] \ No newline at end of file +export const nuget = ["32 32","nuget"] \ No newline at end of file diff --git a/js/brand/nutritionix.js b/js/brand/nutritionix.js deleted file mode 100644 index 11b587a52..000000000 --- a/js/brand/nutritionix.js +++ /dev/null @@ -1 +0,0 @@ -export const nutritionix = ["400 512",""] \ No newline at end of file diff --git a/js/brand/nuxt-dot-js.js b/js/brand/nuxt-dot-js.js deleted file mode 100644 index 7b75304ec..000000000 --- a/js/brand/nuxt-dot-js.js +++ /dev/null @@ -1 +0,0 @@ -export const nuxtDotJs = ["24 24",""] \ No newline at end of file diff --git a/js/brand/nuxt-js.d.ts b/js/brand/nuxt-js.d.ts new file mode 100644 index 000000000..ae1d61229 --- /dev/null +++ b/js/brand/nuxt-js.d.ts @@ -0,0 +1 @@ +export declare const nuxtJs: string[]; \ No newline at end of file diff --git a/js/brand/nuxt-js.js b/js/brand/nuxt-js.js new file mode 100644 index 000000000..1e29e9c36 --- /dev/null +++ b/js/brand/nuxt-js.js @@ -0,0 +1 @@ +export const nuxtJs = ["32 32","nuxt-js"] \ No newline at end of file diff --git a/js/brand/nvidia.d.ts b/js/brand/nvidia.d.ts new file mode 100644 index 000000000..8e294ff05 --- /dev/null +++ b/js/brand/nvidia.d.ts @@ -0,0 +1 @@ +export declare const nvidia: string[]; \ No newline at end of file diff --git a/js/brand/nvidia.js b/js/brand/nvidia.js index d69b72cc3..55d67539b 100644 --- a/js/brand/nvidia.js +++ b/js/brand/nvidia.js @@ -1 +1 @@ -export const nvidia = ["24 24",""] \ No newline at end of file +export const nvidia = ["32 32","nvidia"] \ No newline at end of file diff --git a/js/brand/ocaml.d.ts b/js/brand/ocaml.d.ts new file mode 100644 index 000000000..42e2d82ef --- /dev/null +++ b/js/brand/ocaml.d.ts @@ -0,0 +1 @@ +export declare const ocaml: string[]; \ No newline at end of file diff --git a/js/brand/ocaml.js b/js/brand/ocaml.js index 4efd3bed7..237e32d48 100644 --- a/js/brand/ocaml.js +++ b/js/brand/ocaml.js @@ -1 +1 @@ -export const ocaml = ["24 24",""] \ No newline at end of file +export const ocaml = ["32 32","ocaml"] \ No newline at end of file diff --git a/js/brand/octave.d.ts b/js/brand/octave.d.ts new file mode 100644 index 000000000..ce758a68d --- /dev/null +++ b/js/brand/octave.d.ts @@ -0,0 +1 @@ +export declare const octave: string[]; \ No newline at end of file diff --git a/js/brand/octave.js b/js/brand/octave.js index d5a2941e7..aa9ddf930 100644 --- a/js/brand/octave.js +++ b/js/brand/octave.js @@ -1 +1 @@ -export const octave = ["24 24",""] \ No newline at end of file +export const octave = ["32 32","octave"] \ No newline at end of file diff --git a/js/brand/octopus-deploy.d.ts b/js/brand/octopus-deploy.d.ts new file mode 100644 index 000000000..498fc4a3c --- /dev/null +++ b/js/brand/octopus-deploy.d.ts @@ -0,0 +1 @@ +export declare const octopusDeploy: string[]; \ No newline at end of file diff --git a/js/brand/octopus-deploy.js b/js/brand/octopus-deploy.js new file mode 100644 index 000000000..5da641f70 --- /dev/null +++ b/js/brand/octopus-deploy.js @@ -0,0 +1 @@ +export const octopusDeploy = ["32 32","octopus-deploy"] \ No newline at end of file diff --git a/js/brand/octopusdeploy.js b/js/brand/octopusdeploy.js deleted file mode 100644 index 03870e817..000000000 --- a/js/brand/octopusdeploy.js +++ /dev/null @@ -1 +0,0 @@ -export const octopusdeploy = ["24 24",""] \ No newline at end of file diff --git a/js/brand/oculus.d.ts b/js/brand/oculus.d.ts new file mode 100644 index 000000000..471f49bc8 --- /dev/null +++ b/js/brand/oculus.d.ts @@ -0,0 +1 @@ +export declare const oculus: string[]; \ No newline at end of file diff --git a/js/brand/oculus.js b/js/brand/oculus.js index f585c6fcf..66e6dd81a 100644 --- a/js/brand/oculus.js +++ b/js/brand/oculus.js @@ -1 +1 @@ -export const oculus = ["24 24",""] \ No newline at end of file +export const oculus = ["32 32","oculus"] \ No newline at end of file diff --git a/js/brand/odnoklassniki.d.ts b/js/brand/odnoklassniki.d.ts new file mode 100644 index 000000000..1621fbe0b --- /dev/null +++ b/js/brand/odnoklassniki.d.ts @@ -0,0 +1 @@ +export declare const odnoklassniki: string[]; \ No newline at end of file diff --git a/js/brand/odnoklassniki.js b/js/brand/odnoklassniki.js index 782157f56..58087683b 100644 --- a/js/brand/odnoklassniki.js +++ b/js/brand/odnoklassniki.js @@ -1 +1 @@ -export const odnoklassniki = ["24 24",""] \ No newline at end of file +export const odnoklassniki = ["32 32","odnoklassniki"] \ No newline at end of file diff --git a/js/brand/old-republic.js b/js/brand/old-republic.js deleted file mode 100644 index a9529ebf4..000000000 --- a/js/brand/old-republic.js +++ /dev/null @@ -1 +0,0 @@ -export const oldRepublic = ["496 512",""] \ No newline at end of file diff --git a/js/brand/open-access.d.ts b/js/brand/open-access.d.ts new file mode 100644 index 000000000..7183da8d6 --- /dev/null +++ b/js/brand/open-access.d.ts @@ -0,0 +1 @@ +export declare const openAccess: string[]; \ No newline at end of file diff --git a/js/brand/open-access.js b/js/brand/open-access.js new file mode 100644 index 000000000..5470c4e21 --- /dev/null +++ b/js/brand/open-access.js @@ -0,0 +1 @@ +export const openAccess = ["32 32","open-access"] \ No newline at end of file diff --git a/js/brand/open-collective.d.ts b/js/brand/open-collective.d.ts new file mode 100644 index 000000000..a7525b233 --- /dev/null +++ b/js/brand/open-collective.d.ts @@ -0,0 +1 @@ +export declare const openCollective: string[]; \ No newline at end of file diff --git a/js/brand/open-collective.js b/js/brand/open-collective.js new file mode 100644 index 000000000..e195a976c --- /dev/null +++ b/js/brand/open-collective.js @@ -0,0 +1 @@ +export const openCollective = ["32 32","open-collective"] \ No newline at end of file diff --git a/js/brand/open-id.d.ts b/js/brand/open-id.d.ts new file mode 100644 index 000000000..9b5022ea1 --- /dev/null +++ b/js/brand/open-id.d.ts @@ -0,0 +1 @@ +export declare const openId: string[]; \ No newline at end of file diff --git a/js/brand/open-id.js b/js/brand/open-id.js new file mode 100644 index 000000000..76657298d --- /dev/null +++ b/js/brand/open-id.js @@ -0,0 +1 @@ +export const openId = ["32 32","open-id"] \ No newline at end of file diff --git a/js/brand/open-source-initiative.d.ts b/js/brand/open-source-initiative.d.ts new file mode 100644 index 000000000..0d8340c4b --- /dev/null +++ b/js/brand/open-source-initiative.d.ts @@ -0,0 +1 @@ +export declare const openSourceInitiative: string[]; \ No newline at end of file diff --git a/js/brand/open-source-initiative.js b/js/brand/open-source-initiative.js new file mode 100644 index 000000000..65ab3efea --- /dev/null +++ b/js/brand/open-source-initiative.js @@ -0,0 +1 @@ +export const openSourceInitiative = ["32 32","open-source-initiative"] \ No newline at end of file diff --git a/js/brand/openaccess.js b/js/brand/openaccess.js deleted file mode 100644 index 2fd9babfe..000000000 --- a/js/brand/openaccess.js +++ /dev/null @@ -1 +0,0 @@ -export const openaccess = ["24 24",""] \ No newline at end of file diff --git a/js/brand/opencart.js b/js/brand/opencart.js deleted file mode 100644 index 66c003611..000000000 --- a/js/brand/opencart.js +++ /dev/null @@ -1 +0,0 @@ -export const opencart = ["640 512",""] \ No newline at end of file diff --git a/js/brand/opencollective.js b/js/brand/opencollective.js deleted file mode 100644 index d1b5bdffd..000000000 --- a/js/brand/opencollective.js +++ /dev/null @@ -1 +0,0 @@ -export const opencollective = ["24 24",""] \ No newline at end of file diff --git a/js/brand/openid.js b/js/brand/openid.js deleted file mode 100644 index dcc29c3dd..000000000 --- a/js/brand/openid.js +++ /dev/null @@ -1 +0,0 @@ -export const openid = ["448 512",""] \ No newline at end of file diff --git a/js/brand/opensourceinitiative.js b/js/brand/opensourceinitiative.js deleted file mode 100644 index b96788caa..000000000 --- a/js/brand/opensourceinitiative.js +++ /dev/null @@ -1 +0,0 @@ -export const opensourceinitiative = ["24 24",""] \ No newline at end of file diff --git a/js/brand/openstreetmap.d.ts b/js/brand/openstreetmap.d.ts new file mode 100644 index 000000000..c93bcc2d8 --- /dev/null +++ b/js/brand/openstreetmap.d.ts @@ -0,0 +1 @@ +export declare const openstreetmap: string[]; \ No newline at end of file diff --git a/js/brand/openstreetmap.js b/js/brand/openstreetmap.js index a879e8d75..ed69753b8 100644 --- a/js/brand/openstreetmap.js +++ b/js/brand/openstreetmap.js @@ -1 +1 @@ -export const openstreetmap = ["24 24",""] \ No newline at end of file +export const openstreetmap = ["32 32","openstreetmap"] \ No newline at end of file diff --git a/js/brand/opensuse.d.ts b/js/brand/opensuse.d.ts new file mode 100644 index 000000000..d72b1ca50 --- /dev/null +++ b/js/brand/opensuse.d.ts @@ -0,0 +1 @@ +export declare const opensuse: string[]; \ No newline at end of file diff --git a/js/brand/opensuse.js b/js/brand/opensuse.js index dc24f5f70..0defe792c 100644 --- a/js/brand/opensuse.js +++ b/js/brand/opensuse.js @@ -1 +1 @@ -export const opensuse = ["24 24",""] \ No newline at end of file +export const opensuse = ["32 32","opensuse"] \ No newline at end of file diff --git a/js/brand/openvpn.d.ts b/js/brand/openvpn.d.ts new file mode 100644 index 000000000..4ab9cf964 --- /dev/null +++ b/js/brand/openvpn.d.ts @@ -0,0 +1 @@ +export declare const openvpn: string[]; \ No newline at end of file diff --git a/js/brand/openvpn.js b/js/brand/openvpn.js index cbb0dd337..545e5e737 100644 --- a/js/brand/openvpn.js +++ b/js/brand/openvpn.js @@ -1 +1 @@ -export const openvpn = ["24 24",""] \ No newline at end of file +export const openvpn = ["32 32","openvpn"] \ No newline at end of file diff --git a/js/brand/opera.d.ts b/js/brand/opera.d.ts new file mode 100644 index 000000000..986074da6 --- /dev/null +++ b/js/brand/opera.d.ts @@ -0,0 +1 @@ +export declare const opera: string[]; \ No newline at end of file diff --git a/js/brand/opera.js b/js/brand/opera.js index dac2475c1..73e5081a6 100644 --- a/js/brand/opera.js +++ b/js/brand/opera.js @@ -1 +1 @@ -export const opera = ["24 24",""] \ No newline at end of file +export const opera = ["32 32","opera"] \ No newline at end of file diff --git a/js/brand/opsgenie.d.ts b/js/brand/opsgenie.d.ts new file mode 100644 index 000000000..e77d9a4b3 --- /dev/null +++ b/js/brand/opsgenie.d.ts @@ -0,0 +1 @@ +export declare const opsgenie: string[]; \ No newline at end of file diff --git a/js/brand/opsgenie.js b/js/brand/opsgenie.js index b0d83104a..eb683f80e 100644 --- a/js/brand/opsgenie.js +++ b/js/brand/opsgenie.js @@ -1 +1 @@ -export const opsgenie = ["24 24",""] \ No newline at end of file +export const opsgenie = ["32 32","opsgenie"] \ No newline at end of file diff --git a/js/brand/optin-monster.js b/js/brand/optin-monster.js deleted file mode 100644 index 43da270fc..000000000 --- a/js/brand/optin-monster.js +++ /dev/null @@ -1 +0,0 @@ -export const optinMonster = ["576 512",""] \ No newline at end of file diff --git a/js/brand/oracle.d.ts b/js/brand/oracle.d.ts new file mode 100644 index 000000000..c3f5a5e0b --- /dev/null +++ b/js/brand/oracle.d.ts @@ -0,0 +1 @@ +export declare const oracle: string[]; \ No newline at end of file diff --git a/js/brand/oracle.js b/js/brand/oracle.js index b5e8682ed..85a7f2e04 100644 --- a/js/brand/oracle.js +++ b/js/brand/oracle.js @@ -1 +1 @@ -export const oracle = ["24 24",""] \ No newline at end of file +export const oracle = ["32 32","oracle"] \ No newline at end of file diff --git a/js/brand/orcid.d.ts b/js/brand/orcid.d.ts new file mode 100644 index 000000000..4fc4a3fd2 --- /dev/null +++ b/js/brand/orcid.d.ts @@ -0,0 +1 @@ +export declare const orcid: string[]; \ No newline at end of file diff --git a/js/brand/orcid.js b/js/brand/orcid.js index b5f3dbdfb..4963ed496 100644 --- a/js/brand/orcid.js +++ b/js/brand/orcid.js @@ -1 +1 @@ -export const orcid = ["24 24",""] \ No newline at end of file +export const orcid = ["32 32","orcid"] \ No newline at end of file diff --git a/js/brand/origin.d.ts b/js/brand/origin.d.ts new file mode 100644 index 000000000..e0a1c1ab7 --- /dev/null +++ b/js/brand/origin.d.ts @@ -0,0 +1 @@ +export declare const origin: string[]; \ No newline at end of file diff --git a/js/brand/origin.js b/js/brand/origin.js index 219e4dfd7..8013d2511 100644 --- a/js/brand/origin.js +++ b/js/brand/origin.js @@ -1 +1 @@ -export const origin = ["24 24",""] \ No newline at end of file +export const origin = ["32 32","origin"] \ No newline at end of file diff --git a/js/brand/osi.d.ts b/js/brand/osi.d.ts new file mode 100644 index 000000000..fe0191d6a --- /dev/null +++ b/js/brand/osi.d.ts @@ -0,0 +1 @@ +export declare const osi: string[]; \ No newline at end of file diff --git a/js/brand/osi.js b/js/brand/osi.js index 6d4feed7a..23ae8606e 100644 --- a/js/brand/osi.js +++ b/js/brand/osi.js @@ -1 +1 @@ -export const osi = ["512 512",""] \ No newline at end of file +export const osi = ["32 32","osi"] \ No newline at end of file diff --git a/js/brand/osmc.d.ts b/js/brand/osmc.d.ts new file mode 100644 index 000000000..5840f0497 --- /dev/null +++ b/js/brand/osmc.d.ts @@ -0,0 +1 @@ +export declare const osmc: string[]; \ No newline at end of file diff --git a/js/brand/osmc.js b/js/brand/osmc.js index 91a9ffc49..19ea25d4f 100644 --- a/js/brand/osmc.js +++ b/js/brand/osmc.js @@ -1 +1 @@ -export const osmc = ["24 24",""] \ No newline at end of file +export const osmc = ["32 32","osmc"] \ No newline at end of file diff --git a/js/brand/overcast.d.ts b/js/brand/overcast.d.ts new file mode 100644 index 000000000..b35a61d9a --- /dev/null +++ b/js/brand/overcast.d.ts @@ -0,0 +1 @@ +export declare const overcast: string[]; \ No newline at end of file diff --git a/js/brand/overcast.js b/js/brand/overcast.js index dfed691a9..2c26d046c 100644 --- a/js/brand/overcast.js +++ b/js/brand/overcast.js @@ -1 +1 @@ -export const overcast = ["24 24",""] \ No newline at end of file +export const overcast = ["32 32","overcast"] \ No newline at end of file diff --git a/js/brand/overleaf.d.ts b/js/brand/overleaf.d.ts new file mode 100644 index 000000000..435606d9b --- /dev/null +++ b/js/brand/overleaf.d.ts @@ -0,0 +1 @@ +export declare const overleaf: string[]; \ No newline at end of file diff --git a/js/brand/overleaf.js b/js/brand/overleaf.js index dd7e8fa9a..26ec23e43 100644 --- a/js/brand/overleaf.js +++ b/js/brand/overleaf.js @@ -1 +1 @@ -export const overleaf = ["24 24",""] \ No newline at end of file +export const overleaf = ["32 32","overleaf"] \ No newline at end of file diff --git a/js/brand/ovh.d.ts b/js/brand/ovh.d.ts new file mode 100644 index 000000000..0d1e64054 --- /dev/null +++ b/js/brand/ovh.d.ts @@ -0,0 +1 @@ +export declare const ovh: string[]; \ No newline at end of file diff --git a/js/brand/ovh.js b/js/brand/ovh.js index f3c0be3d5..ad92d8e4a 100644 --- a/js/brand/ovh.js +++ b/js/brand/ovh.js @@ -1 +1 @@ -export const ovh = ["24 24",""] \ No newline at end of file +export const ovh = ["32 32","ovh"] \ No newline at end of file diff --git a/js/brand/page4.js b/js/brand/page4.js deleted file mode 100644 index f6b032d7e..000000000 --- a/js/brand/page4.js +++ /dev/null @@ -1 +0,0 @@ -export const page4 = ["496 512",""] \ No newline at end of file diff --git a/js/brand/pagekit.d.ts b/js/brand/pagekit.d.ts new file mode 100644 index 000000000..61c3d3579 --- /dev/null +++ b/js/brand/pagekit.d.ts @@ -0,0 +1 @@ +export declare const pagekit: string[]; \ No newline at end of file diff --git a/js/brand/pagekit.js b/js/brand/pagekit.js index 5f44c6f9e..83c69eb72 100644 --- a/js/brand/pagekit.js +++ b/js/brand/pagekit.js @@ -1 +1 @@ -export const pagekit = ["24 24",""] \ No newline at end of file +export const pagekit = ["32 32","pagekit"] \ No newline at end of file diff --git a/js/brand/pagelines.js b/js/brand/pagelines.js deleted file mode 100644 index 16af87cf6..000000000 --- a/js/brand/pagelines.js +++ /dev/null @@ -1 +0,0 @@ -export const pagelines = ["384 512",""] \ No newline at end of file diff --git a/js/brand/palantir.d.ts b/js/brand/palantir.d.ts new file mode 100644 index 000000000..4f994d98c --- /dev/null +++ b/js/brand/palantir.d.ts @@ -0,0 +1 @@ +export declare const palantir: string[]; \ No newline at end of file diff --git a/js/brand/palantir.js b/js/brand/palantir.js index 9e994f82a..a91d5267e 100644 --- a/js/brand/palantir.js +++ b/js/brand/palantir.js @@ -1 +1 @@ -export const palantir = ["24 24",""] \ No newline at end of file +export const palantir = ["32 32","palantir"] \ No newline at end of file diff --git a/js/brand/palfed.js b/js/brand/palfed.js deleted file mode 100644 index d6254c4e2..000000000 --- a/js/brand/palfed.js +++ /dev/null @@ -1 +0,0 @@ -export const palfed = ["576 512",""] \ No newline at end of file diff --git a/js/brand/paloaltosoftware.js b/js/brand/paloaltosoftware.js deleted file mode 100644 index 60fd7e5af..000000000 --- a/js/brand/paloaltosoftware.js +++ /dev/null @@ -1 +0,0 @@ -export const paloaltosoftware = ["24 24",""] \ No newline at end of file diff --git a/js/brand/pandora.d.ts b/js/brand/pandora.d.ts new file mode 100644 index 000000000..1020785ef --- /dev/null +++ b/js/brand/pandora.d.ts @@ -0,0 +1 @@ +export declare const pandora: string[]; \ No newline at end of file diff --git a/js/brand/pandora.js b/js/brand/pandora.js index 5ff24a636..d9335be6b 100644 --- a/js/brand/pandora.js +++ b/js/brand/pandora.js @@ -1 +1 @@ -export const pandora = ["24 24",""] \ No newline at end of file +export const pandora = ["32 32","pandora"] \ No newline at end of file diff --git a/js/brand/pantheon.d.ts b/js/brand/pantheon.d.ts new file mode 100644 index 000000000..d8d403933 --- /dev/null +++ b/js/brand/pantheon.d.ts @@ -0,0 +1 @@ +export declare const pantheon: string[]; \ No newline at end of file diff --git a/js/brand/pantheon.js b/js/brand/pantheon.js index 7c3cca4f9..e069b40f0 100644 --- a/js/brand/pantheon.js +++ b/js/brand/pantheon.js @@ -1 +1 @@ -export const pantheon = ["24 24",""] \ No newline at end of file +export const pantheon = ["32 32","pantheon"] \ No newline at end of file diff --git a/js/brand/patreon.d.ts b/js/brand/patreon.d.ts new file mode 100644 index 000000000..77ce00155 --- /dev/null +++ b/js/brand/patreon.d.ts @@ -0,0 +1 @@ +export declare const patreon: string[]; \ No newline at end of file diff --git a/js/brand/patreon.js b/js/brand/patreon.js index e6cb931ca..5625df4aa 100644 --- a/js/brand/patreon.js +++ b/js/brand/patreon.js @@ -1 +1 @@ -export const patreon = ["24 24",""] \ No newline at end of file +export const patreon = ["32 32","patreon"] \ No newline at end of file diff --git a/js/brand/paypal.d.ts b/js/brand/paypal.d.ts new file mode 100644 index 000000000..36172f401 --- /dev/null +++ b/js/brand/paypal.d.ts @@ -0,0 +1 @@ +export declare const paypal: string[]; \ No newline at end of file diff --git a/js/brand/paypal.js b/js/brand/paypal.js index 81ff39134..f39c8f829 100644 --- a/js/brand/paypal.js +++ b/js/brand/paypal.js @@ -1 +1 @@ -export const paypal = ["24 24",""] \ No newline at end of file +export const paypal = ["32 32","paypal"] \ No newline at end of file diff --git a/js/brand/penny-arcade.js b/js/brand/penny-arcade.js deleted file mode 100644 index b271add7d..000000000 --- a/js/brand/penny-arcade.js +++ /dev/null @@ -1 +0,0 @@ -export const pennyArcade = ["640 512",""] \ No newline at end of file diff --git a/js/brand/periscope.d.ts b/js/brand/periscope.d.ts new file mode 100644 index 000000000..9df76076a --- /dev/null +++ b/js/brand/periscope.d.ts @@ -0,0 +1 @@ +export declare const periscope: string[]; \ No newline at end of file diff --git a/js/brand/periscope.js b/js/brand/periscope.js index 534bdf965..356ecfeec 100644 --- a/js/brand/periscope.js +++ b/js/brand/periscope.js @@ -1 +1 @@ -export const periscope = ["24 24",""] \ No newline at end of file +export const periscope = ["32 32","periscope"] \ No newline at end of file diff --git a/js/brand/phabricator.js b/js/brand/phabricator.js deleted file mode 100644 index 027a34576..000000000 --- a/js/brand/phabricator.js +++ /dev/null @@ -1 +0,0 @@ -export const phabricator = ["496 512",""] \ No newline at end of file diff --git a/js/brand/phoenix-framework.js b/js/brand/phoenix-framework.js deleted file mode 100644 index 12f9922bc..000000000 --- a/js/brand/phoenix-framework.js +++ /dev/null @@ -1 +0,0 @@ -export const phoenixFramework = ["640 512",""] \ No newline at end of file diff --git a/js/brand/phoenix-squadron.js b/js/brand/phoenix-squadron.js deleted file mode 100644 index 2e4c5bebe..000000000 --- a/js/brand/phoenix-squadron.js +++ /dev/null @@ -1 +0,0 @@ -export const phoenixSquadron = ["512 512",""] \ No newline at end of file diff --git a/js/brand/php.d.ts b/js/brand/php.d.ts new file mode 100644 index 000000000..415590d9f --- /dev/null +++ b/js/brand/php.d.ts @@ -0,0 +1 @@ +export declare const php: string[]; \ No newline at end of file diff --git a/js/brand/php.js b/js/brand/php.js index f5f836a3b..9aedc7fb9 100644 --- a/js/brand/php.js +++ b/js/brand/php.js @@ -1 +1 @@ -export const php = ["24 24",""] \ No newline at end of file +export const php = ["32 32","php"] \ No newline at end of file diff --git a/js/brand/picarto-dot-tv.js b/js/brand/picarto-dot-tv.js deleted file mode 100644 index 41db293e0..000000000 --- a/js/brand/picarto-dot-tv.js +++ /dev/null @@ -1 +0,0 @@ -export const picartoDotTv = ["24 24",""] \ No newline at end of file diff --git a/js/brand/picarto-tv.d.ts b/js/brand/picarto-tv.d.ts new file mode 100644 index 000000000..ba8956ad0 --- /dev/null +++ b/js/brand/picarto-tv.d.ts @@ -0,0 +1 @@ +export declare const picartoTv: string[]; \ No newline at end of file diff --git a/js/brand/picarto-tv.js b/js/brand/picarto-tv.js new file mode 100644 index 000000000..23e687615 --- /dev/null +++ b/js/brand/picarto-tv.js @@ -0,0 +1 @@ +export const picartoTv = ["32 32","picarto-tv"] \ No newline at end of file diff --git a/js/brand/pied-piper-alt.js b/js/brand/pied-piper-alt.js deleted file mode 100644 index e4a7e5e96..000000000 --- a/js/brand/pied-piper-alt.js +++ /dev/null @@ -1 +0,0 @@ -export const piedPiperAlt = ["576 512",""] \ No newline at end of file diff --git a/js/brand/pied-piper-hat.js b/js/brand/pied-piper-hat.js deleted file mode 100644 index b03a3e474..000000000 --- a/js/brand/pied-piper-hat.js +++ /dev/null @@ -1 +0,0 @@ -export const piedPiperHat = ["640 512",""] \ No newline at end of file diff --git a/js/brand/pied-piper-pp.js b/js/brand/pied-piper-pp.js deleted file mode 100644 index e94fa115e..000000000 --- a/js/brand/pied-piper-pp.js +++ /dev/null @@ -1 +0,0 @@ -export const piedPiperPp = ["448 512",""] \ No newline at end of file diff --git a/js/brand/pied-piper.js b/js/brand/pied-piper.js deleted file mode 100644 index 8dbc3d49a..000000000 --- a/js/brand/pied-piper.js +++ /dev/null @@ -1 +0,0 @@ -export const piedPiper = ["448 512",""] \ No newline at end of file diff --git a/js/brand/pinboard.d.ts b/js/brand/pinboard.d.ts new file mode 100644 index 000000000..efd9b43af --- /dev/null +++ b/js/brand/pinboard.d.ts @@ -0,0 +1 @@ +export declare const pinboard: string[]; \ No newline at end of file diff --git a/js/brand/pinboard.js b/js/brand/pinboard.js index 4b3a7bf07..04a86a0af 100644 --- a/js/brand/pinboard.js +++ b/js/brand/pinboard.js @@ -1 +1 @@ -export const pinboard = ["24 24",""] \ No newline at end of file +export const pinboard = ["32 32","pinboard"] \ No newline at end of file diff --git a/js/brand/pingdom.d.ts b/js/brand/pingdom.d.ts new file mode 100644 index 000000000..6a5329b02 --- /dev/null +++ b/js/brand/pingdom.d.ts @@ -0,0 +1 @@ +export declare const pingdom: string[]; \ No newline at end of file diff --git a/js/brand/pingdom.js b/js/brand/pingdom.js index 90331a68b..4c47600de 100644 --- a/js/brand/pingdom.js +++ b/js/brand/pingdom.js @@ -1 +1 @@ -export const pingdom = ["24 24",""] \ No newline at end of file +export const pingdom = ["32 32","pingdom"] \ No newline at end of file diff --git a/js/brand/pingup.d.ts b/js/brand/pingup.d.ts new file mode 100644 index 000000000..084285e98 --- /dev/null +++ b/js/brand/pingup.d.ts @@ -0,0 +1 @@ +export declare const pingup: string[]; \ No newline at end of file diff --git a/js/brand/pingup.js b/js/brand/pingup.js index f195b2f0d..f95375bb4 100644 --- a/js/brand/pingup.js +++ b/js/brand/pingup.js @@ -1 +1 @@ -export const pingup = ["24 24",""] \ No newline at end of file +export const pingup = ["32 32","pingup"] \ No newline at end of file diff --git a/js/brand/pinterest-p.d.ts b/js/brand/pinterest-p.d.ts new file mode 100644 index 000000000..787d49d3b --- /dev/null +++ b/js/brand/pinterest-p.d.ts @@ -0,0 +1 @@ +export declare const pinterestP: string[]; \ No newline at end of file diff --git a/js/brand/pinterest-p.js b/js/brand/pinterest-p.js index 04d432248..da5587aa9 100644 --- a/js/brand/pinterest-p.js +++ b/js/brand/pinterest-p.js @@ -1 +1 @@ -export const pinterestP = ["384 512",""] \ No newline at end of file +export const pinterestP = ["32 32","pinterest-p"] \ No newline at end of file diff --git a/js/brand/pinterest.d.ts b/js/brand/pinterest.d.ts new file mode 100644 index 000000000..df3745c07 --- /dev/null +++ b/js/brand/pinterest.d.ts @@ -0,0 +1 @@ +export declare const pinterest: string[]; \ No newline at end of file diff --git a/js/brand/pinterest.js b/js/brand/pinterest.js index 4e68a0c33..04ecb0049 100644 --- a/js/brand/pinterest.js +++ b/js/brand/pinterest.js @@ -1 +1 @@ -export const pinterest = ["24 24",""] \ No newline at end of file +export const pinterest = ["32 32","pinterest"] \ No newline at end of file diff --git a/js/brand/pivotaltracker.d.ts b/js/brand/pivotaltracker.d.ts new file mode 100644 index 000000000..fea85dfe5 --- /dev/null +++ b/js/brand/pivotaltracker.d.ts @@ -0,0 +1 @@ +export declare const pivotaltracker: string[]; \ No newline at end of file diff --git a/js/brand/pivotaltracker.js b/js/brand/pivotaltracker.js index f059aa389..156b0631e 100644 --- a/js/brand/pivotaltracker.js +++ b/js/brand/pivotaltracker.js @@ -1 +1 @@ -export const pivotaltracker = ["24 24",""] \ No newline at end of file +export const pivotaltracker = ["32 32","pivotaltracker"] \ No newline at end of file diff --git a/js/brand/plangrid.d.ts b/js/brand/plangrid.d.ts new file mode 100644 index 000000000..d96f9fa42 --- /dev/null +++ b/js/brand/plangrid.d.ts @@ -0,0 +1 @@ +export declare const plangrid: string[]; \ No newline at end of file diff --git a/js/brand/plangrid.js b/js/brand/plangrid.js index b9dc00e8e..0bc6dfc6f 100644 --- a/js/brand/plangrid.js +++ b/js/brand/plangrid.js @@ -1 +1 @@ -export const plangrid = ["24 24",""] \ No newline at end of file +export const plangrid = ["32 32","plangrid"] \ No newline at end of file diff --git a/js/brand/player-dot-me.js b/js/brand/player-dot-me.js deleted file mode 100644 index d127f5139..000000000 --- a/js/brand/player-dot-me.js +++ /dev/null @@ -1 +0,0 @@ -export const playerDotMe = ["24 24",""] \ No newline at end of file diff --git a/js/brand/player-me.d.ts b/js/brand/player-me.d.ts new file mode 100644 index 000000000..e02dd60a9 --- /dev/null +++ b/js/brand/player-me.d.ts @@ -0,0 +1 @@ +export declare const playerMe: string[]; \ No newline at end of file diff --git a/js/brand/player-me.js b/js/brand/player-me.js new file mode 100644 index 000000000..47ea8fae4 --- /dev/null +++ b/js/brand/player-me.js @@ -0,0 +1 @@ +export const playerMe = ["32 32","player-me"] \ No newline at end of file diff --git a/js/brand/playerfm.d.ts b/js/brand/playerfm.d.ts new file mode 100644 index 000000000..8de7b8093 --- /dev/null +++ b/js/brand/playerfm.d.ts @@ -0,0 +1 @@ +export declare const playerfm: string[]; \ No newline at end of file diff --git a/js/brand/playerfm.js b/js/brand/playerfm.js index 934a7c795..f926dc7b1 100644 --- a/js/brand/playerfm.js +++ b/js/brand/playerfm.js @@ -1 +1 @@ -export const playerfm = ["24 24",""] \ No newline at end of file +export const playerfm = ["32 32","playerfm"] \ No newline at end of file diff --git a/js/brand/playstation.d.ts b/js/brand/playstation.d.ts new file mode 100644 index 000000000..6ed3cef1e --- /dev/null +++ b/js/brand/playstation.d.ts @@ -0,0 +1 @@ +export declare const playstation: string[]; \ No newline at end of file diff --git a/js/brand/playstation.js b/js/brand/playstation.js index 90e4b0f75..1f651d461 100644 --- a/js/brand/playstation.js +++ b/js/brand/playstation.js @@ -1 +1 @@ -export const playstation = ["24 24",""] \ No newline at end of file +export const playstation = ["32 32","playstation"] \ No newline at end of file diff --git a/js/brand/playstation3.d.ts b/js/brand/playstation3.d.ts new file mode 100644 index 000000000..2b355dc49 --- /dev/null +++ b/js/brand/playstation3.d.ts @@ -0,0 +1 @@ +export declare const playstation3: string[]; \ No newline at end of file diff --git a/js/brand/playstation3.js b/js/brand/playstation3.js index c23dc4c61..db31165c7 100644 --- a/js/brand/playstation3.js +++ b/js/brand/playstation3.js @@ -1 +1 @@ -export const playstation3 = ["24 24",""] \ No newline at end of file +export const playstation3 = ["32 32","playstation3"] \ No newline at end of file diff --git a/js/brand/playstation4.d.ts b/js/brand/playstation4.d.ts new file mode 100644 index 000000000..ed1fa8219 --- /dev/null +++ b/js/brand/playstation4.d.ts @@ -0,0 +1 @@ +export declare const playstation4: string[]; \ No newline at end of file diff --git a/js/brand/playstation4.js b/js/brand/playstation4.js index b203d39e3..6160ce4fc 100644 --- a/js/brand/playstation4.js +++ b/js/brand/playstation4.js @@ -1 +1 @@ -export const playstation4 = ["24 24",""] \ No newline at end of file +export const playstation4 = ["32 32","playstation4"] \ No newline at end of file diff --git a/js/brand/plesk.d.ts b/js/brand/plesk.d.ts new file mode 100644 index 000000000..d0752b24a --- /dev/null +++ b/js/brand/plesk.d.ts @@ -0,0 +1 @@ +export declare const plesk: string[]; \ No newline at end of file diff --git a/js/brand/plesk.js b/js/brand/plesk.js index 00642636e..4da38fc0d 100644 --- a/js/brand/plesk.js +++ b/js/brand/plesk.js @@ -1 +1 @@ -export const plesk = ["24 24",""] \ No newline at end of file +export const plesk = ["32 32","plesk"] \ No newline at end of file diff --git a/js/brand/plex.d.ts b/js/brand/plex.d.ts new file mode 100644 index 000000000..18ade9ec3 --- /dev/null +++ b/js/brand/plex.d.ts @@ -0,0 +1 @@ +export declare const plex: string[]; \ No newline at end of file diff --git a/js/brand/plex.js b/js/brand/plex.js index 31ee8c737..5a90ce4ef 100644 --- a/js/brand/plex.js +++ b/js/brand/plex.js @@ -1 +1 @@ -export const plex = ["24 24",""] \ No newline at end of file +export const plex = ["32 32","plex"] \ No newline at end of file diff --git a/js/brand/pluralsight.d.ts b/js/brand/pluralsight.d.ts new file mode 100644 index 000000000..7480e16d9 --- /dev/null +++ b/js/brand/pluralsight.d.ts @@ -0,0 +1 @@ +export declare const pluralsight: string[]; \ No newline at end of file diff --git a/js/brand/pluralsight.js b/js/brand/pluralsight.js index 34d481058..64888d648 100644 --- a/js/brand/pluralsight.js +++ b/js/brand/pluralsight.js @@ -1 +1 @@ -export const pluralsight = ["24 24",""] \ No newline at end of file +export const pluralsight = ["32 32","pluralsight"] \ No newline at end of file diff --git a/js/brand/plurk.d.ts b/js/brand/plurk.d.ts new file mode 100644 index 000000000..aed240bfb --- /dev/null +++ b/js/brand/plurk.d.ts @@ -0,0 +1 @@ +export declare const plurk: string[]; \ No newline at end of file diff --git a/js/brand/plurk.js b/js/brand/plurk.js index 4ba20f6fe..082138dab 100644 --- a/js/brand/plurk.js +++ b/js/brand/plurk.js @@ -1 +1 @@ -export const plurk = ["24 24",""] \ No newline at end of file +export const plurk = ["32 32","plurk"] \ No newline at end of file diff --git a/js/brand/pocket.d.ts b/js/brand/pocket.d.ts new file mode 100644 index 000000000..5a0a39def --- /dev/null +++ b/js/brand/pocket.d.ts @@ -0,0 +1 @@ +export declare const pocket: string[]; \ No newline at end of file diff --git a/js/brand/pocket.js b/js/brand/pocket.js index ba063c976..a306a81e0 100644 --- a/js/brand/pocket.js +++ b/js/brand/pocket.js @@ -1 +1 @@ -export const pocket = ["24 24",""] \ No newline at end of file +export const pocket = ["32 32","pocket"] \ No newline at end of file diff --git a/js/brand/postgresql.d.ts b/js/brand/postgresql.d.ts new file mode 100644 index 000000000..f41a91e16 --- /dev/null +++ b/js/brand/postgresql.d.ts @@ -0,0 +1 @@ +export declare const postgresql: string[]; \ No newline at end of file diff --git a/js/brand/postgresql.js b/js/brand/postgresql.js index 6cd8d9599..5a6c34e80 100644 --- a/js/brand/postgresql.js +++ b/js/brand/postgresql.js @@ -1 +1 @@ -export const postgresql = ["24 24",""] \ No newline at end of file +export const postgresql = ["32 32","postgresql"] \ No newline at end of file diff --git a/js/brand/postman.d.ts b/js/brand/postman.d.ts new file mode 100644 index 000000000..b9163faa1 --- /dev/null +++ b/js/brand/postman.d.ts @@ -0,0 +1 @@ +export declare const postman: string[]; \ No newline at end of file diff --git a/js/brand/postman.js b/js/brand/postman.js index e47a3a3b9..2311b8f37 100644 --- a/js/brand/postman.js +++ b/js/brand/postman.js @@ -1 +1 @@ -export const postman = ["24 24",""] \ No newline at end of file +export const postman = ["32 32","postman"] \ No newline at end of file diff --git a/js/brand/postwoman.d.ts b/js/brand/postwoman.d.ts new file mode 100644 index 000000000..6d1d1a550 --- /dev/null +++ b/js/brand/postwoman.d.ts @@ -0,0 +1 @@ +export declare const postwoman: string[]; \ No newline at end of file diff --git a/js/brand/postwoman.js b/js/brand/postwoman.js index fa423b76c..0f2880d0a 100644 --- a/js/brand/postwoman.js +++ b/js/brand/postwoman.js @@ -1 +1 @@ -export const postwoman = ["24 24",""] \ No newline at end of file +export const postwoman = ["32 32","postwoman"] \ No newline at end of file diff --git a/js/brand/powershell.d.ts b/js/brand/powershell.d.ts new file mode 100644 index 000000000..0b8cf555f --- /dev/null +++ b/js/brand/powershell.d.ts @@ -0,0 +1 @@ +export declare const powershell: string[]; \ No newline at end of file diff --git a/js/brand/powershell.js b/js/brand/powershell.js index 16f67f442..63c2ff9c2 100644 --- a/js/brand/powershell.js +++ b/js/brand/powershell.js @@ -1 +1 @@ -export const powershell = ["24 24",""] \ No newline at end of file +export const powershell = ["32 32","powershell"] \ No newline at end of file diff --git a/js/brand/prettier.d.ts b/js/brand/prettier.d.ts new file mode 100644 index 000000000..31556c9eb --- /dev/null +++ b/js/brand/prettier.d.ts @@ -0,0 +1 @@ +export declare const prettier: string[]; \ No newline at end of file diff --git a/js/brand/prettier.js b/js/brand/prettier.js index 8454f7539..68e2d19ae 100644 --- a/js/brand/prettier.js +++ b/js/brand/prettier.js @@ -1 +1 @@ -export const prettier = ["24 24",""] \ No newline at end of file +export const prettier = ["32 32","prettier"] \ No newline at end of file diff --git a/js/brand/prismic.d.ts b/js/brand/prismic.d.ts new file mode 100644 index 000000000..f788d9f32 --- /dev/null +++ b/js/brand/prismic.d.ts @@ -0,0 +1 @@ +export declare const prismic: string[]; \ No newline at end of file diff --git a/js/brand/prismic.js b/js/brand/prismic.js index 5bd45b62c..bf64fa3fb 100644 --- a/js/brand/prismic.js +++ b/js/brand/prismic.js @@ -1 +1 @@ -export const prismic = ["24 24",""] \ No newline at end of file +export const prismic = ["32 32","prismic"] \ No newline at end of file diff --git a/js/brand/probot.d.ts b/js/brand/probot.d.ts new file mode 100644 index 000000000..c5769883d --- /dev/null +++ b/js/brand/probot.d.ts @@ -0,0 +1 @@ +export declare const probot: string[]; \ No newline at end of file diff --git a/js/brand/probot.js b/js/brand/probot.js index f040d8914..49addc1b2 100644 --- a/js/brand/probot.js +++ b/js/brand/probot.js @@ -1 +1 @@ -export const probot = ["24 24",""] \ No newline at end of file +export const probot = ["32 32","probot"] \ No newline at end of file diff --git a/js/brand/processwire.d.ts b/js/brand/processwire.d.ts new file mode 100644 index 000000000..c989ad6f8 --- /dev/null +++ b/js/brand/processwire.d.ts @@ -0,0 +1 @@ +export declare const processwire: string[]; \ No newline at end of file diff --git a/js/brand/processwire.js b/js/brand/processwire.js index 72618b05d..b85b52f4c 100644 --- a/js/brand/processwire.js +++ b/js/brand/processwire.js @@ -1 +1 @@ -export const processwire = ["24 24",""] \ No newline at end of file +export const processwire = ["32 32","processwire"] \ No newline at end of file diff --git a/js/brand/product-hunt.d.ts b/js/brand/product-hunt.d.ts new file mode 100644 index 000000000..b4e3aa624 --- /dev/null +++ b/js/brand/product-hunt.d.ts @@ -0,0 +1 @@ +export declare const productHunt: string[]; \ No newline at end of file diff --git a/js/brand/product-hunt.js b/js/brand/product-hunt.js new file mode 100644 index 000000000..326045d2f --- /dev/null +++ b/js/brand/product-hunt.js @@ -0,0 +1 @@ +export const productHunt = ["32 32","product-hunt"] \ No newline at end of file diff --git a/js/brand/producthunt.js b/js/brand/producthunt.js deleted file mode 100644 index be62cd2de..000000000 --- a/js/brand/producthunt.js +++ /dev/null @@ -1 +0,0 @@ -export const producthunt = ["24 24",""] \ No newline at end of file diff --git a/js/brand/proto-dot-io.js b/js/brand/proto-dot-io.js deleted file mode 100644 index 5eb8b4afb..000000000 --- a/js/brand/proto-dot-io.js +++ /dev/null @@ -1 +0,0 @@ -export const protoDotIo = ["24 24",""] \ No newline at end of file diff --git a/js/brand/proto-io.d.ts b/js/brand/proto-io.d.ts new file mode 100644 index 000000000..8a7c95447 --- /dev/null +++ b/js/brand/proto-io.d.ts @@ -0,0 +1 @@ +export declare const protoIo: string[]; \ No newline at end of file diff --git a/js/brand/proto-io.js b/js/brand/proto-io.js new file mode 100644 index 000000000..1959474ec --- /dev/null +++ b/js/brand/proto-io.js @@ -0,0 +1 @@ +export const protoIo = ["32 32","proto-io"] \ No newline at end of file diff --git a/js/brand/protonmail.d.ts b/js/brand/protonmail.d.ts new file mode 100644 index 000000000..05f4808bc --- /dev/null +++ b/js/brand/protonmail.d.ts @@ -0,0 +1 @@ +export declare const protonmail: string[]; \ No newline at end of file diff --git a/js/brand/protonmail.js b/js/brand/protonmail.js index ece7e0015..83776893c 100644 --- a/js/brand/protonmail.js +++ b/js/brand/protonmail.js @@ -1 +1 @@ -export const protonmail = ["24 24",""] \ No newline at end of file +export const protonmail = ["32 32","protonmail"] \ No newline at end of file diff --git a/js/brand/proxmox.d.ts b/js/brand/proxmox.d.ts new file mode 100644 index 000000000..3c1cc3a9b --- /dev/null +++ b/js/brand/proxmox.d.ts @@ -0,0 +1 @@ +export declare const proxmox: string[]; \ No newline at end of file diff --git a/js/brand/proxmox.js b/js/brand/proxmox.js index caa473d4b..6cb0383cf 100644 --- a/js/brand/proxmox.js +++ b/js/brand/proxmox.js @@ -1 +1 @@ -export const proxmox = ["24 24",""] \ No newline at end of file +export const proxmox = ["32 32","proxmox"] \ No newline at end of file diff --git a/js/brand/pushed.js b/js/brand/pushed.js deleted file mode 100644 index de47001c0..000000000 --- a/js/brand/pushed.js +++ /dev/null @@ -1 +0,0 @@ -export const pushed = ["432 512",""] \ No newline at end of file diff --git a/js/brand/pypi.d.ts b/js/brand/pypi.d.ts new file mode 100644 index 000000000..46f6e159a --- /dev/null +++ b/js/brand/pypi.d.ts @@ -0,0 +1 @@ +export declare const pypi: string[]; \ No newline at end of file diff --git a/js/brand/pypi.js b/js/brand/pypi.js index 369c20431..68864a5e9 100644 --- a/js/brand/pypi.js +++ b/js/brand/pypi.js @@ -1 +1 @@ -export const pypi = ["24 24",""] \ No newline at end of file +export const pypi = ["32 32","pypi"] \ No newline at end of file diff --git a/js/brand/python.d.ts b/js/brand/python.d.ts new file mode 100644 index 000000000..271facb73 --- /dev/null +++ b/js/brand/python.d.ts @@ -0,0 +1 @@ +export declare const python: string[]; \ No newline at end of file diff --git a/js/brand/python.js b/js/brand/python.js index c95dc8489..2249a7958 100644 --- a/js/brand/python.js +++ b/js/brand/python.js @@ -1 +1 @@ -export const python = ["24 24",""] \ No newline at end of file +export const python = ["32 32","python"] \ No newline at end of file diff --git a/js/brand/pytorch.d.ts b/js/brand/pytorch.d.ts new file mode 100644 index 000000000..351856f57 --- /dev/null +++ b/js/brand/pytorch.d.ts @@ -0,0 +1 @@ +export declare const pytorch: string[]; \ No newline at end of file diff --git a/js/brand/pytorch.js b/js/brand/pytorch.js index 979ea7b03..7cab027e8 100644 --- a/js/brand/pytorch.js +++ b/js/brand/pytorch.js @@ -1 +1 @@ -export const pytorch = ["24 24",""] \ No newline at end of file +export const pytorch = ["32 32","pytorch"] \ No newline at end of file diff --git a/js/brand/qgis.d.ts b/js/brand/qgis.d.ts new file mode 100644 index 000000000..2eb57234b --- /dev/null +++ b/js/brand/qgis.d.ts @@ -0,0 +1 @@ +export declare const qgis: string[]; \ No newline at end of file diff --git a/js/brand/qgis.js b/js/brand/qgis.js index 9bf523bda..ca21cf7ab 100644 --- a/js/brand/qgis.js +++ b/js/brand/qgis.js @@ -1 +1 @@ -export const qgis = ["24 24",""] \ No newline at end of file +export const qgis = ["32 32","qgis"] \ No newline at end of file diff --git a/js/brand/qiita.d.ts b/js/brand/qiita.d.ts new file mode 100644 index 000000000..e3404e4a1 --- /dev/null +++ b/js/brand/qiita.d.ts @@ -0,0 +1 @@ +export declare const qiita: string[]; \ No newline at end of file diff --git a/js/brand/qiita.js b/js/brand/qiita.js index 09a057124..c6f11e387 100644 --- a/js/brand/qiita.js +++ b/js/brand/qiita.js @@ -1 +1 @@ -export const qiita = ["24 24",""] \ No newline at end of file +export const qiita = ["32 32","qiita"] \ No newline at end of file diff --git a/js/brand/qq.d.ts b/js/brand/qq.d.ts new file mode 100644 index 000000000..e75fb4a05 --- /dev/null +++ b/js/brand/qq.d.ts @@ -0,0 +1 @@ +export declare const qq: string[]; \ No newline at end of file diff --git a/js/brand/qq.js b/js/brand/qq.js index 8b3a42ce9..e32676a00 100644 --- a/js/brand/qq.js +++ b/js/brand/qq.js @@ -1 +1 @@ -export const qq = ["448 512",""] \ No newline at end of file +export const qq = ["32 32","qq"] \ No newline at end of file diff --git a/js/brand/qualcomm.d.ts b/js/brand/qualcomm.d.ts new file mode 100644 index 000000000..dd0d80190 --- /dev/null +++ b/js/brand/qualcomm.d.ts @@ -0,0 +1 @@ +export declare const qualcomm: string[]; \ No newline at end of file diff --git a/js/brand/qualcomm.js b/js/brand/qualcomm.js index f273496a8..57062fcdd 100644 --- a/js/brand/qualcomm.js +++ b/js/brand/qualcomm.js @@ -1 +1 @@ -export const qualcomm = ["24 24",""] \ No newline at end of file +export const qualcomm = ["32 32","qualcomm"] \ No newline at end of file diff --git a/js/brand/quantcast.d.ts b/js/brand/quantcast.d.ts new file mode 100644 index 000000000..54052600c --- /dev/null +++ b/js/brand/quantcast.d.ts @@ -0,0 +1 @@ +export declare const quantcast: string[]; \ No newline at end of file diff --git a/js/brand/quantcast.js b/js/brand/quantcast.js index 04f59f926..c0e2a76c4 100644 --- a/js/brand/quantcast.js +++ b/js/brand/quantcast.js @@ -1 +1 @@ -export const quantcast = ["24 24",""] \ No newline at end of file +export const quantcast = ["32 32","quantcast"] \ No newline at end of file diff --git a/js/brand/quantopian.d.ts b/js/brand/quantopian.d.ts new file mode 100644 index 000000000..504e81f9c --- /dev/null +++ b/js/brand/quantopian.d.ts @@ -0,0 +1 @@ +export declare const quantopian: string[]; \ No newline at end of file diff --git a/js/brand/quantopian.js b/js/brand/quantopian.js index b8935f0c9..6b3d80d90 100644 --- a/js/brand/quantopian.js +++ b/js/brand/quantopian.js @@ -1 +1 @@ -export const quantopian = ["24 24",""] \ No newline at end of file +export const quantopian = ["32 32","quantopian"] \ No newline at end of file diff --git a/js/brand/quarkus.d.ts b/js/brand/quarkus.d.ts new file mode 100644 index 000000000..6d934987e --- /dev/null +++ b/js/brand/quarkus.d.ts @@ -0,0 +1 @@ +export declare const quarkus: string[]; \ No newline at end of file diff --git a/js/brand/quarkus.js b/js/brand/quarkus.js index 53c5d9697..e8f138190 100644 --- a/js/brand/quarkus.js +++ b/js/brand/quarkus.js @@ -1 +1 @@ -export const quarkus = ["24 24",""] \ No newline at end of file +export const quarkus = ["32 32","quarkus"] \ No newline at end of file diff --git a/js/brand/quinscape.js b/js/brand/quinscape.js deleted file mode 100644 index 078763aad..000000000 --- a/js/brand/quinscape.js +++ /dev/null @@ -1 +0,0 @@ -export const quinscape = ["512 512",""] \ No newline at end of file diff --git a/js/brand/quora.d.ts b/js/brand/quora.d.ts new file mode 100644 index 000000000..9399834d9 --- /dev/null +++ b/js/brand/quora.d.ts @@ -0,0 +1 @@ +export declare const quora: string[]; \ No newline at end of file diff --git a/js/brand/quora.js b/js/brand/quora.js index a98e58538..2aeba391f 100644 --- a/js/brand/quora.js +++ b/js/brand/quora.js @@ -1 +1 @@ -export const quora = ["24 24",""] \ No newline at end of file +export const quora = ["32 32","quora"] \ No newline at end of file diff --git a/js/brand/qwiklabs.d.ts b/js/brand/qwiklabs.d.ts new file mode 100644 index 000000000..1f2715948 --- /dev/null +++ b/js/brand/qwiklabs.d.ts @@ -0,0 +1 @@ +export declare const qwiklabs: string[]; \ No newline at end of file diff --git a/js/brand/qwiklabs.js b/js/brand/qwiklabs.js index f4a5cdc75..8eecae015 100644 --- a/js/brand/qwiklabs.js +++ b/js/brand/qwiklabs.js @@ -1 +1 @@ -export const qwiklabs = ["24 24",""] \ No newline at end of file +export const qwiklabs = ["32 32","qwiklabs"] \ No newline at end of file diff --git a/js/brand/qzone.d.ts b/js/brand/qzone.d.ts new file mode 100644 index 000000000..1818c0352 --- /dev/null +++ b/js/brand/qzone.d.ts @@ -0,0 +1 @@ +export declare const qzone: string[]; \ No newline at end of file diff --git a/js/brand/qzone.js b/js/brand/qzone.js index a776f335c..59f81fd1b 100644 --- a/js/brand/qzone.js +++ b/js/brand/qzone.js @@ -1 +1 @@ -export const qzone = ["24 24",""] \ No newline at end of file +export const qzone = ["32 32","qzone"] \ No newline at end of file diff --git a/js/brand/r-project.js b/js/brand/r-project.js deleted file mode 100644 index 2b8215c5e..000000000 --- a/js/brand/r-project.js +++ /dev/null @@ -1 +0,0 @@ -export const rProject = ["581 512",""] \ No newline at end of file diff --git a/js/brand/r.d.ts b/js/brand/r.d.ts new file mode 100644 index 000000000..4ba64ca6d --- /dev/null +++ b/js/brand/r.d.ts @@ -0,0 +1 @@ +export declare const r: string[]; \ No newline at end of file diff --git a/js/brand/r.js b/js/brand/r.js index e36c5d367..1cb9f7d71 100644 --- a/js/brand/r.js +++ b/js/brand/r.js @@ -1 +1 @@ -export const r = ["24 24",""] \ No newline at end of file +export const r = ["32 32","r"] \ No newline at end of file diff --git a/js/brand/radiopublic.d.ts b/js/brand/radiopublic.d.ts new file mode 100644 index 000000000..6eeaa991c --- /dev/null +++ b/js/brand/radiopublic.d.ts @@ -0,0 +1 @@ +export declare const radiopublic: string[]; \ No newline at end of file diff --git a/js/brand/radiopublic.js b/js/brand/radiopublic.js index 1903c9205..421c074d5 100644 --- a/js/brand/radiopublic.js +++ b/js/brand/radiopublic.js @@ -1 +1 @@ -export const radiopublic = ["24 24",""] \ No newline at end of file +export const radiopublic = ["32 32","radiopublic"] \ No newline at end of file diff --git a/js/brand/rails.d.ts b/js/brand/rails.d.ts new file mode 100644 index 000000000..ee0bdafb2 --- /dev/null +++ b/js/brand/rails.d.ts @@ -0,0 +1 @@ +export declare const rails: string[]; \ No newline at end of file diff --git a/js/brand/rails.js b/js/brand/rails.js index 31f985832..b458eb622 100644 --- a/js/brand/rails.js +++ b/js/brand/rails.js @@ -1 +1 @@ -export const rails = ["24 24",""] \ No newline at end of file +export const rails = ["32 32","rails"] \ No newline at end of file diff --git a/js/brand/raspberry-pi.d.ts b/js/brand/raspberry-pi.d.ts new file mode 100644 index 000000000..ef5794194 --- /dev/null +++ b/js/brand/raspberry-pi.d.ts @@ -0,0 +1 @@ +export declare const raspberryPi: string[]; \ No newline at end of file diff --git a/js/brand/raspberry-pi.js b/js/brand/raspberry-pi.js new file mode 100644 index 000000000..8c4d0166c --- /dev/null +++ b/js/brand/raspberry-pi.js @@ -0,0 +1 @@ +export const raspberryPi = ["32 32","raspberry-pi"] \ No newline at end of file diff --git a/js/brand/raspberrypi.js b/js/brand/raspberrypi.js deleted file mode 100644 index 3d57c6c26..000000000 --- a/js/brand/raspberrypi.js +++ /dev/null @@ -1 +0,0 @@ -export const raspberrypi = ["24 24",""] \ No newline at end of file diff --git a/js/brand/ravelry.js b/js/brand/ravelry.js deleted file mode 100644 index 7beaf9d9c..000000000 --- a/js/brand/ravelry.js +++ /dev/null @@ -1 +0,0 @@ -export const ravelry = ["512 512",""] \ No newline at end of file diff --git a/js/brand/react.d.ts b/js/brand/react.d.ts new file mode 100644 index 000000000..65b46d673 --- /dev/null +++ b/js/brand/react.d.ts @@ -0,0 +1 @@ +export declare const react: string[]; \ No newline at end of file diff --git a/js/brand/react.js b/js/brand/react.js index f30c4ebc2..d64187b47 100644 --- a/js/brand/react.js +++ b/js/brand/react.js @@ -1 +1 @@ -export const react = ["24 24",""] \ No newline at end of file +export const react = ["32 32","react"] \ No newline at end of file diff --git a/js/brand/reacteurope.js b/js/brand/reacteurope.js deleted file mode 100644 index 6d56c581f..000000000 --- a/js/brand/reacteurope.js +++ /dev/null @@ -1 +0,0 @@ -export const reacteurope = ["576 512",""] \ No newline at end of file diff --git a/js/brand/read-the-docs.d.ts b/js/brand/read-the-docs.d.ts new file mode 100644 index 000000000..41ccece12 --- /dev/null +++ b/js/brand/read-the-docs.d.ts @@ -0,0 +1 @@ +export declare const readTheDocs: string[]; \ No newline at end of file diff --git a/js/brand/read-the-docs.js b/js/brand/read-the-docs.js new file mode 100644 index 000000000..971ba327d --- /dev/null +++ b/js/brand/read-the-docs.js @@ -0,0 +1 @@ +export const readTheDocs = ["32 32","read-the-docs"] \ No newline at end of file diff --git a/js/brand/readme.d.ts b/js/brand/readme.d.ts new file mode 100644 index 000000000..81a126723 --- /dev/null +++ b/js/brand/readme.d.ts @@ -0,0 +1 @@ +export declare const readme: string[]; \ No newline at end of file diff --git a/js/brand/readme.js b/js/brand/readme.js index ea8fa3223..ee9cf819d 100644 --- a/js/brand/readme.js +++ b/js/brand/readme.js @@ -1 +1 @@ -export const readme = ["576 512",""] \ No newline at end of file +export const readme = ["32 32","readme"] \ No newline at end of file diff --git a/js/brand/readthedocs.js b/js/brand/readthedocs.js deleted file mode 100644 index 73b7c621b..000000000 --- a/js/brand/readthedocs.js +++ /dev/null @@ -1 +0,0 @@ -export const readthedocs = ["24 24",""] \ No newline at end of file diff --git a/js/brand/realm.d.ts b/js/brand/realm.d.ts new file mode 100644 index 000000000..6aa7f81c7 --- /dev/null +++ b/js/brand/realm.d.ts @@ -0,0 +1 @@ +export declare const realm: string[]; \ No newline at end of file diff --git a/js/brand/realm.js b/js/brand/realm.js index 994821bc9..e757e5a53 100644 --- a/js/brand/realm.js +++ b/js/brand/realm.js @@ -1 +1 @@ -export const realm = ["24 24",""] \ No newline at end of file +export const realm = ["32 32","realm"] \ No newline at end of file diff --git a/js/brand/reason.d.ts b/js/brand/reason.d.ts new file mode 100644 index 000000000..5a6ef2eb7 --- /dev/null +++ b/js/brand/reason.d.ts @@ -0,0 +1 @@ +export declare const reason: string[]; \ No newline at end of file diff --git a/js/brand/reason.js b/js/brand/reason.js index a771abe60..8caedd911 100644 --- a/js/brand/reason.js +++ b/js/brand/reason.js @@ -1 +1 @@ -export const reason = ["24 24",""] \ No newline at end of file +export const reason = ["32 32","reason"] \ No newline at end of file diff --git a/js/brand/rebel.js b/js/brand/rebel.js deleted file mode 100644 index d56bfd2cc..000000000 --- a/js/brand/rebel.js +++ /dev/null @@ -1 +0,0 @@ -export const rebel = ["512 512",""] \ No newline at end of file diff --git a/js/brand/red-river.js b/js/brand/red-river.js deleted file mode 100644 index 0af03156c..000000000 --- a/js/brand/red-river.js +++ /dev/null @@ -1 +0,0 @@ -export const redRiver = ["448 512",""] \ No newline at end of file diff --git a/js/brand/redbubble.d.ts b/js/brand/redbubble.d.ts new file mode 100644 index 000000000..b6fbe72f9 --- /dev/null +++ b/js/brand/redbubble.d.ts @@ -0,0 +1 @@ +export declare const redbubble: string[]; \ No newline at end of file diff --git a/js/brand/redbubble.js b/js/brand/redbubble.js index 09d04b498..22e0ceca1 100644 --- a/js/brand/redbubble.js +++ b/js/brand/redbubble.js @@ -1 +1 @@ -export const redbubble = ["24 24",""] \ No newline at end of file +export const redbubble = ["32 32","redbubble"] \ No newline at end of file diff --git a/js/brand/reddit-alien.js b/js/brand/reddit-alien.js deleted file mode 100644 index 5ceccbbcb..000000000 --- a/js/brand/reddit-alien.js +++ /dev/null @@ -1 +0,0 @@ -export const redditAlien = ["512 512",""] \ No newline at end of file diff --git a/js/brand/reddit-alt.d.ts b/js/brand/reddit-alt.d.ts new file mode 100644 index 000000000..37c060ac9 --- /dev/null +++ b/js/brand/reddit-alt.d.ts @@ -0,0 +1 @@ +export declare const redditAlt: string[]; \ No newline at end of file diff --git a/js/brand/reddit-alt.js b/js/brand/reddit-alt.js new file mode 100644 index 000000000..ac53d08ea --- /dev/null +++ b/js/brand/reddit-alt.js @@ -0,0 +1 @@ +export const redditAlt = ["32 32","reddit-alt"] \ No newline at end of file diff --git a/js/brand/reddit.d.ts b/js/brand/reddit.d.ts new file mode 100644 index 000000000..4932c78e7 --- /dev/null +++ b/js/brand/reddit.d.ts @@ -0,0 +1 @@ +export declare const reddit: string[]; \ No newline at end of file diff --git a/js/brand/reddit.js b/js/brand/reddit.js index 157eaaef3..251606bc9 100644 --- a/js/brand/reddit.js +++ b/js/brand/reddit.js @@ -1 +1 @@ -export const reddit = ["24 24",""] \ No newline at end of file +export const reddit = ["32 32","reddit"] \ No newline at end of file diff --git a/js/brand/redhat.d.ts b/js/brand/redhat.d.ts new file mode 100644 index 000000000..cefbf6637 --- /dev/null +++ b/js/brand/redhat.d.ts @@ -0,0 +1 @@ +export declare const redhat: string[]; \ No newline at end of file diff --git a/js/brand/redhat.js b/js/brand/redhat.js index bfeb2bf51..aebd2442a 100644 --- a/js/brand/redhat.js +++ b/js/brand/redhat.js @@ -1 +1 @@ -export const redhat = ["24 24",""] \ No newline at end of file +export const redhat = ["32 32","redhat"] \ No newline at end of file diff --git a/js/brand/redis.d.ts b/js/brand/redis.d.ts new file mode 100644 index 000000000..f741321e1 --- /dev/null +++ b/js/brand/redis.d.ts @@ -0,0 +1 @@ +export declare const redis: string[]; \ No newline at end of file diff --git a/js/brand/redis.js b/js/brand/redis.js index ab464f207..6c9ac2319 100644 --- a/js/brand/redis.js +++ b/js/brand/redis.js @@ -1 +1 @@ -export const redis = ["24 24",""] \ No newline at end of file +export const redis = ["32 32","redis"] \ No newline at end of file diff --git a/js/brand/redux.d.ts b/js/brand/redux.d.ts new file mode 100644 index 000000000..480594aec --- /dev/null +++ b/js/brand/redux.d.ts @@ -0,0 +1 @@ +export declare const redux: string[]; \ No newline at end of file diff --git a/js/brand/redux.js b/js/brand/redux.js index 30498f987..2de70c579 100644 --- a/js/brand/redux.js +++ b/js/brand/redux.js @@ -1 +1 @@ -export const redux = ["24 24",""] \ No newline at end of file +export const redux = ["32 32","redux"] \ No newline at end of file diff --git a/js/brand/renren.d.ts b/js/brand/renren.d.ts new file mode 100644 index 000000000..054729088 --- /dev/null +++ b/js/brand/renren.d.ts @@ -0,0 +1 @@ +export declare const renren: string[]; \ No newline at end of file diff --git a/js/brand/renren.js b/js/brand/renren.js index 78aa2e90f..772677aa7 100644 --- a/js/brand/renren.js +++ b/js/brand/renren.js @@ -1 +1 @@ -export const renren = ["24 24",""] \ No newline at end of file +export const renren = ["32 32","renren"] \ No newline at end of file diff --git a/js/brand/replyd.js b/js/brand/replyd.js deleted file mode 100644 index 89a10adb1..000000000 --- a/js/brand/replyd.js +++ /dev/null @@ -1 +0,0 @@ -export const replyd = ["448 512",""] \ No newline at end of file diff --git a/js/brand/researchgate.js b/js/brand/researchgate.js deleted file mode 100644 index 83c0c98cb..000000000 --- a/js/brand/researchgate.js +++ /dev/null @@ -1 +0,0 @@ -export const researchgate = ["448 512",""] \ No newline at end of file diff --git a/js/brand/resolving.js b/js/brand/resolving.js deleted file mode 100644 index a4a682ed3..000000000 --- a/js/brand/resolving.js +++ /dev/null @@ -1 +0,0 @@ -export const resolving = ["496 512",""] \ No newline at end of file diff --git a/js/brand/rev.js b/js/brand/rev.js deleted file mode 100644 index d157ffc4f..000000000 --- a/js/brand/rev.js +++ /dev/null @@ -1 +0,0 @@ -export const rev = ["448 512",""] \ No newline at end of file diff --git a/js/brand/reverbnation.d.ts b/js/brand/reverbnation.d.ts new file mode 100644 index 000000000..5a0b2a8c1 --- /dev/null +++ b/js/brand/reverbnation.d.ts @@ -0,0 +1 @@ +export declare const reverbnation: string[]; \ No newline at end of file diff --git a/js/brand/reverbnation.js b/js/brand/reverbnation.js index 5ead1c283..2a576807f 100644 --- a/js/brand/reverbnation.js +++ b/js/brand/reverbnation.js @@ -1 +1 @@ -export const reverbnation = ["24 24",""] \ No newline at end of file +export const reverbnation = ["32 32","reverbnation"] \ No newline at end of file diff --git a/js/brand/riot.d.ts b/js/brand/riot.d.ts new file mode 100644 index 000000000..2c7346710 --- /dev/null +++ b/js/brand/riot.d.ts @@ -0,0 +1 @@ +export declare const riot: string[]; \ No newline at end of file diff --git a/js/brand/riot.js b/js/brand/riot.js index 20e4a1053..068f75516 100644 --- a/js/brand/riot.js +++ b/js/brand/riot.js @@ -1 +1 @@ -export const riot = ["24 24",""] \ No newline at end of file +export const riot = ["32 32","riot"] \ No newline at end of file diff --git a/js/brand/ripple.d.ts b/js/brand/ripple.d.ts new file mode 100644 index 000000000..adc3bafd3 --- /dev/null +++ b/js/brand/ripple.d.ts @@ -0,0 +1 @@ +export declare const ripple: string[]; \ No newline at end of file diff --git a/js/brand/ripple.js b/js/brand/ripple.js index 1426611e1..dfc5ac80d 100644 --- a/js/brand/ripple.js +++ b/js/brand/ripple.js @@ -1 +1 @@ -export const ripple = ["24 24",""] \ No newline at end of file +export const ripple = ["32 32","ripple"] \ No newline at end of file diff --git a/js/brand/riseup.d.ts b/js/brand/riseup.d.ts new file mode 100644 index 000000000..4447d38ad --- /dev/null +++ b/js/brand/riseup.d.ts @@ -0,0 +1 @@ +export declare const riseup: string[]; \ No newline at end of file diff --git a/js/brand/riseup.js b/js/brand/riseup.js index f5b306af3..963c4ec63 100644 --- a/js/brand/riseup.js +++ b/js/brand/riseup.js @@ -1 +1 @@ -export const riseup = ["24 24",""] \ No newline at end of file +export const riseup = ["32 32","riseup"] \ No newline at end of file diff --git a/js/brand/rocketchat.js b/js/brand/rocketchat.js deleted file mode 100644 index ea8d105ab..000000000 --- a/js/brand/rocketchat.js +++ /dev/null @@ -1 +0,0 @@ -export const rocketchat = ["576 512",""] \ No newline at end of file diff --git a/js/brand/rockrms.js b/js/brand/rockrms.js deleted file mode 100644 index 873c99dd3..000000000 --- a/js/brand/rockrms.js +++ /dev/null @@ -1 +0,0 @@ -export const rockrms = ["496 512",""] \ No newline at end of file diff --git a/js/brand/rollup-js.d.ts b/js/brand/rollup-js.d.ts new file mode 100644 index 000000000..92157730a --- /dev/null +++ b/js/brand/rollup-js.d.ts @@ -0,0 +1 @@ +export declare const rollupJs: string[]; \ No newline at end of file diff --git a/js/brand/rollup-js.js b/js/brand/rollup-js.js index 85c7b8b1c..b1e93d233 100644 --- a/js/brand/rollup-js.js +++ b/js/brand/rollup-js.js @@ -1 +1 @@ -export const rollupJs = ["24 24",""] \ No newline at end of file +export const rollupJs = ["32 32","rollup-js"] \ No newline at end of file diff --git a/js/brand/roots.d.ts b/js/brand/roots.d.ts new file mode 100644 index 000000000..e6a8f0217 --- /dev/null +++ b/js/brand/roots.d.ts @@ -0,0 +1 @@ +export declare const roots: string[]; \ No newline at end of file diff --git a/js/brand/roots.js b/js/brand/roots.js index 23b1598bc..8425cc17d 100644 --- a/js/brand/roots.js +++ b/js/brand/roots.js @@ -1 +1 @@ -export const roots = ["24 24",""] \ No newline at end of file +export const roots = ["32 32","roots"] \ No newline at end of file diff --git a/js/brand/roundcube.d.ts b/js/brand/roundcube.d.ts new file mode 100644 index 000000000..b48d64f44 --- /dev/null +++ b/js/brand/roundcube.d.ts @@ -0,0 +1 @@ +export declare const roundcube: string[]; \ No newline at end of file diff --git a/js/brand/roundcube.js b/js/brand/roundcube.js index 08f9f00df..672248a50 100644 --- a/js/brand/roundcube.js +++ b/js/brand/roundcube.js @@ -1 +1 @@ -export const roundcube = ["24 24",""] \ No newline at end of file +export const roundcube = ["32 32","roundcube"] \ No newline at end of file diff --git a/js/brand/rss.d.ts b/js/brand/rss.d.ts new file mode 100644 index 000000000..cae30e007 --- /dev/null +++ b/js/brand/rss.d.ts @@ -0,0 +1 @@ +export declare const rss: string[]; \ No newline at end of file diff --git a/js/brand/rss.js b/js/brand/rss.js index ad19e9b81..2a9ac5eae 100644 --- a/js/brand/rss.js +++ b/js/brand/rss.js @@ -1 +1 @@ -export const rss = ["24 24",""] \ No newline at end of file +export const rss = ["32 32","rss"] \ No newline at end of file diff --git a/js/brand/rstudio.d.ts b/js/brand/rstudio.d.ts new file mode 100644 index 000000000..625c4a9b3 --- /dev/null +++ b/js/brand/rstudio.d.ts @@ -0,0 +1 @@ +export declare const rstudio: string[]; \ No newline at end of file diff --git a/js/brand/rstudio.js b/js/brand/rstudio.js index ce9cac060..6927f81fc 100644 --- a/js/brand/rstudio.js +++ b/js/brand/rstudio.js @@ -1 +1 @@ -export const rstudio = ["24 24",""] \ No newline at end of file +export const rstudio = ["32 32","rstudio"] \ No newline at end of file diff --git a/js/brand/ruby.d.ts b/js/brand/ruby.d.ts new file mode 100644 index 000000000..e70abc47d --- /dev/null +++ b/js/brand/ruby.d.ts @@ -0,0 +1 @@ +export declare const ruby: string[]; \ No newline at end of file diff --git a/js/brand/ruby.js b/js/brand/ruby.js index a6bc3ca21..21efe5eab 100644 --- a/js/brand/ruby.js +++ b/js/brand/ruby.js @@ -1 +1 @@ -export const ruby = ["24 24",""] \ No newline at end of file +export const ruby = ["32 32","ruby"] \ No newline at end of file diff --git a/js/brand/rubygems.d.ts b/js/brand/rubygems.d.ts new file mode 100644 index 000000000..d9c881270 --- /dev/null +++ b/js/brand/rubygems.d.ts @@ -0,0 +1 @@ +export declare const rubygems: string[]; \ No newline at end of file diff --git a/js/brand/rubygems.js b/js/brand/rubygems.js index db74de2dc..dda914904 100644 --- a/js/brand/rubygems.js +++ b/js/brand/rubygems.js @@ -1 +1 @@ -export const rubygems = ["24 24",""] \ No newline at end of file +export const rubygems = ["32 32","rubygems"] \ No newline at end of file diff --git a/js/brand/runkeeper.d.ts b/js/brand/runkeeper.d.ts new file mode 100644 index 000000000..0031a97cb --- /dev/null +++ b/js/brand/runkeeper.d.ts @@ -0,0 +1 @@ +export declare const runkeeper: string[]; \ No newline at end of file diff --git a/js/brand/runkeeper.js b/js/brand/runkeeper.js index 9f583defc..8d6bd9a7c 100644 --- a/js/brand/runkeeper.js +++ b/js/brand/runkeeper.js @@ -1 +1 @@ -export const runkeeper = ["24 24",""] \ No newline at end of file +export const runkeeper = ["32 32","runkeeper"] \ No newline at end of file diff --git a/js/brand/rust.d.ts b/js/brand/rust.d.ts new file mode 100644 index 000000000..fbd388d6a --- /dev/null +++ b/js/brand/rust.d.ts @@ -0,0 +1 @@ +export declare const rust: string[]; \ No newline at end of file diff --git a/js/brand/rust.js b/js/brand/rust.js index 35e469f10..2e1e69306 100644 --- a/js/brand/rust.js +++ b/js/brand/rust.js @@ -1 +1 @@ -export const rust = ["24 24",""] \ No newline at end of file +export const rust = ["32 32","rust"] \ No newline at end of file diff --git a/js/brand/safari.d.ts b/js/brand/safari.d.ts new file mode 100644 index 000000000..9b1114e69 --- /dev/null +++ b/js/brand/safari.d.ts @@ -0,0 +1 @@ +export declare const safari: string[]; \ No newline at end of file diff --git a/js/brand/safari.js b/js/brand/safari.js index abd50b312..44339423f 100644 --- a/js/brand/safari.js +++ b/js/brand/safari.js @@ -1 +1 @@ -export const safari = ["24 24",""] \ No newline at end of file +export const safari = ["32 32","safari"] \ No newline at end of file diff --git a/js/brand/sahibinden.d.ts b/js/brand/sahibinden.d.ts new file mode 100644 index 000000000..448bac565 --- /dev/null +++ b/js/brand/sahibinden.d.ts @@ -0,0 +1 @@ +export declare const sahibinden: string[]; \ No newline at end of file diff --git a/js/brand/sahibinden.js b/js/brand/sahibinden.js index c775f02d2..49455cfe9 100644 --- a/js/brand/sahibinden.js +++ b/js/brand/sahibinden.js @@ -1 +1 @@ -export const sahibinden = ["24 24",""] \ No newline at end of file +export const sahibinden = ["32 32","sahibinden"] \ No newline at end of file diff --git a/js/brand/salesforce.d.ts b/js/brand/salesforce.d.ts new file mode 100644 index 000000000..50f3e2d3a --- /dev/null +++ b/js/brand/salesforce.d.ts @@ -0,0 +1 @@ +export declare const salesforce: string[]; \ No newline at end of file diff --git a/js/brand/salesforce.js b/js/brand/salesforce.js index 8b16bf9de..d6eab6531 100644 --- a/js/brand/salesforce.js +++ b/js/brand/salesforce.js @@ -1 +1 @@ -export const salesforce = ["24 24",""] \ No newline at end of file +export const salesforce = ["32 32","salesforce"] \ No newline at end of file diff --git a/js/brand/saltstack.d.ts b/js/brand/saltstack.d.ts new file mode 100644 index 000000000..0c7f0107e --- /dev/null +++ b/js/brand/saltstack.d.ts @@ -0,0 +1 @@ +export declare const saltstack: string[]; \ No newline at end of file diff --git a/js/brand/saltstack.js b/js/brand/saltstack.js index 5b0a5672f..ce9f62095 100644 --- a/js/brand/saltstack.js +++ b/js/brand/saltstack.js @@ -1 +1 @@ -export const saltstack = ["24 24",""] \ No newline at end of file +export const saltstack = ["32 32","saltstack"] \ No newline at end of file diff --git a/js/brand/samsung-pay.d.ts b/js/brand/samsung-pay.d.ts new file mode 100644 index 000000000..12adf8ad7 --- /dev/null +++ b/js/brand/samsung-pay.d.ts @@ -0,0 +1 @@ +export declare const samsungPay: string[]; \ No newline at end of file diff --git a/js/brand/samsung-pay.js b/js/brand/samsung-pay.js index 4e3e1c5d3..f3d400e60 100644 --- a/js/brand/samsung-pay.js +++ b/js/brand/samsung-pay.js @@ -1 +1 @@ -export const samsungPay = ["24 24",""] \ No newline at end of file +export const samsungPay = ["32 32","samsung-pay"] \ No newline at end of file diff --git a/js/brand/samsung.d.ts b/js/brand/samsung.d.ts new file mode 100644 index 000000000..bb9a211bd --- /dev/null +++ b/js/brand/samsung.d.ts @@ -0,0 +1 @@ +export declare const samsung: string[]; \ No newline at end of file diff --git a/js/brand/samsung.js b/js/brand/samsung.js index f27d759b8..c9eab0640 100644 --- a/js/brand/samsung.js +++ b/js/brand/samsung.js @@ -1 +1 @@ -export const samsung = ["24 24",""] \ No newline at end of file +export const samsung = ["32 32","samsung"] \ No newline at end of file diff --git a/js/brand/sap.d.ts b/js/brand/sap.d.ts new file mode 100644 index 000000000..c30e28918 --- /dev/null +++ b/js/brand/sap.d.ts @@ -0,0 +1 @@ +export declare const sap: string[]; \ No newline at end of file diff --git a/js/brand/sap.js b/js/brand/sap.js index fb059dceb..c928113f1 100644 --- a/js/brand/sap.js +++ b/js/brand/sap.js @@ -1 +1 @@ -export const sap = ["24 24",""] \ No newline at end of file +export const sap = ["32 32","sap"] \ No newline at end of file diff --git a/js/brand/sass-alt.d.ts b/js/brand/sass-alt.d.ts new file mode 100644 index 000000000..1d4469350 --- /dev/null +++ b/js/brand/sass-alt.d.ts @@ -0,0 +1 @@ +export declare const sassAlt: string[]; \ No newline at end of file diff --git a/js/brand/sass-alt.js b/js/brand/sass-alt.js new file mode 100644 index 000000000..0cad67fd4 --- /dev/null +++ b/js/brand/sass-alt.js @@ -0,0 +1 @@ +export const sassAlt = ["32 32","sass-alt"] \ No newline at end of file diff --git a/js/brand/sass.d.ts b/js/brand/sass.d.ts new file mode 100644 index 000000000..d7d78a6f8 --- /dev/null +++ b/js/brand/sass.d.ts @@ -0,0 +1 @@ +export declare const sass: string[]; \ No newline at end of file diff --git a/js/brand/sass.js b/js/brand/sass.js index 11425264c..80bfe3822 100644 --- a/js/brand/sass.js +++ b/js/brand/sass.js @@ -1 +1 @@ -export const sass = ["24 24",""] \ No newline at end of file +export const sass = ["32 32","sass"] \ No newline at end of file diff --git a/js/brand/saucelabs.d.ts b/js/brand/saucelabs.d.ts new file mode 100644 index 000000000..83b7ed5db --- /dev/null +++ b/js/brand/saucelabs.d.ts @@ -0,0 +1 @@ +export declare const saucelabs: string[]; \ No newline at end of file diff --git a/js/brand/saucelabs.js b/js/brand/saucelabs.js index b1afbf6b7..92f07edb0 100644 --- a/js/brand/saucelabs.js +++ b/js/brand/saucelabs.js @@ -1 +1 @@ -export const saucelabs = ["24 24",""] \ No newline at end of file +export const saucelabs = ["32 32","saucelabs"] \ No newline at end of file diff --git a/js/brand/scala.d.ts b/js/brand/scala.d.ts new file mode 100644 index 000000000..b2ce0d727 --- /dev/null +++ b/js/brand/scala.d.ts @@ -0,0 +1 @@ +export declare const scala: string[]; \ No newline at end of file diff --git a/js/brand/scala.js b/js/brand/scala.js index 00a2db7dc..28ac0eed7 100644 --- a/js/brand/scala.js +++ b/js/brand/scala.js @@ -1 +1 @@ -export const scala = ["24 24",""] \ No newline at end of file +export const scala = ["32 32","scala"] \ No newline at end of file diff --git a/js/brand/scaleway.d.ts b/js/brand/scaleway.d.ts new file mode 100644 index 000000000..332453574 --- /dev/null +++ b/js/brand/scaleway.d.ts @@ -0,0 +1 @@ +export declare const scaleway: string[]; \ No newline at end of file diff --git a/js/brand/scaleway.js b/js/brand/scaleway.js index bdd069896..b00e4377b 100644 --- a/js/brand/scaleway.js +++ b/js/brand/scaleway.js @@ -1 +1 @@ -export const scaleway = ["24 24",""] \ No newline at end of file +export const scaleway = ["32 32","scaleway"] \ No newline at end of file diff --git a/js/brand/schlix.js b/js/brand/schlix.js deleted file mode 100644 index 7f6cf6882..000000000 --- a/js/brand/schlix.js +++ /dev/null @@ -1 +0,0 @@ -export const schlix = ["448 512",""] \ No newline at end of file diff --git a/js/brand/scribd.d.ts b/js/brand/scribd.d.ts new file mode 100644 index 000000000..44fb149b1 --- /dev/null +++ b/js/brand/scribd.d.ts @@ -0,0 +1 @@ +export declare const scribd: string[]; \ No newline at end of file diff --git a/js/brand/scribd.js b/js/brand/scribd.js index b40adcc0b..86c537e16 100644 --- a/js/brand/scribd.js +++ b/js/brand/scribd.js @@ -1 +1 @@ -export const scribd = ["24 24",""] \ No newline at end of file +export const scribd = ["32 32","scribd"] \ No newline at end of file diff --git a/js/brand/scrutinizerci.d.ts b/js/brand/scrutinizerci.d.ts new file mode 100644 index 000000000..10581f3b7 --- /dev/null +++ b/js/brand/scrutinizerci.d.ts @@ -0,0 +1 @@ +export declare const scrutinizerci: string[]; \ No newline at end of file diff --git a/js/brand/scrutinizerci.js b/js/brand/scrutinizerci.js index 5a723302f..a9b33f09d 100644 --- a/js/brand/scrutinizerci.js +++ b/js/brand/scrutinizerci.js @@ -1 +1 @@ -export const scrutinizerci = ["24 24",""] \ No newline at end of file +export const scrutinizerci = ["32 32","scrutinizerci"] \ No newline at end of file diff --git a/js/brand/seagate.d.ts b/js/brand/seagate.d.ts new file mode 100644 index 000000000..4bca05518 --- /dev/null +++ b/js/brand/seagate.d.ts @@ -0,0 +1 @@ +export declare const seagate: string[]; \ No newline at end of file diff --git a/js/brand/seagate.js b/js/brand/seagate.js index 5d6f957f9..2464c7d9c 100644 --- a/js/brand/seagate.js +++ b/js/brand/seagate.js @@ -1 +1 @@ -export const seagate = ["24 24",""] \ No newline at end of file +export const seagate = ["32 32","seagate"] \ No newline at end of file diff --git a/js/brand/searchengin.js b/js/brand/searchengin.js deleted file mode 100644 index 0fa4d4a4b..000000000 --- a/js/brand/searchengin.js +++ /dev/null @@ -1 +0,0 @@ -export const searchengin = ["460 512",""] \ No newline at end of file diff --git a/js/brand/sega.d.ts b/js/brand/sega.d.ts new file mode 100644 index 000000000..b2ab515b9 --- /dev/null +++ b/js/brand/sega.d.ts @@ -0,0 +1 @@ +export declare const sega: string[]; \ No newline at end of file diff --git a/js/brand/sega.js b/js/brand/sega.js index f95201c8b..f91340528 100644 --- a/js/brand/sega.js +++ b/js/brand/sega.js @@ -1 +1 @@ -export const sega = ["24 24",""] \ No newline at end of file +export const sega = ["32 32","sega"] \ No newline at end of file diff --git a/js/brand/sellcast.js b/js/brand/sellcast.js deleted file mode 100644 index ce44e6481..000000000 --- a/js/brand/sellcast.js +++ /dev/null @@ -1 +0,0 @@ -export const sellcast = ["448 512",""] \ No newline at end of file diff --git a/js/brand/sellfy.d.ts b/js/brand/sellfy.d.ts new file mode 100644 index 000000000..fd80ea839 --- /dev/null +++ b/js/brand/sellfy.d.ts @@ -0,0 +1 @@ +export declare const sellfy: string[]; \ No newline at end of file diff --git a/js/brand/sellfy.js b/js/brand/sellfy.js index 5563bcc43..41be64f22 100644 --- a/js/brand/sellfy.js +++ b/js/brand/sellfy.js @@ -1 +1 @@ -export const sellfy = ["24 24",""] \ No newline at end of file +export const sellfy = ["32 32","sellfy"] \ No newline at end of file diff --git a/js/brand/sellsy.js b/js/brand/sellsy.js deleted file mode 100644 index f6a92242c..000000000 --- a/js/brand/sellsy.js +++ /dev/null @@ -1 +0,0 @@ -export const sellsy = ["640 512",""] \ No newline at end of file diff --git a/js/brand/semaphoreci.d.ts b/js/brand/semaphoreci.d.ts new file mode 100644 index 000000000..0fc286ecd --- /dev/null +++ b/js/brand/semaphoreci.d.ts @@ -0,0 +1 @@ +export declare const semaphoreci: string[]; \ No newline at end of file diff --git a/js/brand/semaphoreci.js b/js/brand/semaphoreci.js index 7a790f817..baf0339d7 100644 --- a/js/brand/semaphoreci.js +++ b/js/brand/semaphoreci.js @@ -1 +1 @@ -export const semaphoreci = ["24 24",""] \ No newline at end of file +export const semaphoreci = ["32 32","semaphoreci"] \ No newline at end of file diff --git a/js/brand/sensu.d.ts b/js/brand/sensu.d.ts new file mode 100644 index 000000000..3c8c843d2 --- /dev/null +++ b/js/brand/sensu.d.ts @@ -0,0 +1 @@ +export declare const sensu: string[]; \ No newline at end of file diff --git a/js/brand/sensu.js b/js/brand/sensu.js index 572b02207..bb92268d0 100644 --- a/js/brand/sensu.js +++ b/js/brand/sensu.js @@ -1 +1 @@ -export const sensu = ["24 24",""] \ No newline at end of file +export const sensu = ["32 32","sensu"] \ No newline at end of file diff --git a/js/brand/sentry.d.ts b/js/brand/sentry.d.ts new file mode 100644 index 000000000..ad2d8f4de --- /dev/null +++ b/js/brand/sentry.d.ts @@ -0,0 +1 @@ +export declare const sentry: string[]; \ No newline at end of file diff --git a/js/brand/sentry.js b/js/brand/sentry.js index 24d11feb7..85d08bcf7 100644 --- a/js/brand/sentry.js +++ b/js/brand/sentry.js @@ -1 +1 @@ -export const sentry = ["24 24",""] \ No newline at end of file +export const sentry = ["32 32","sentry"] \ No newline at end of file diff --git a/js/brand/server-fault.d.ts b/js/brand/server-fault.d.ts new file mode 100644 index 000000000..c02e13053 --- /dev/null +++ b/js/brand/server-fault.d.ts @@ -0,0 +1 @@ +export declare const serverFault: string[]; \ No newline at end of file diff --git a/js/brand/server-fault.js b/js/brand/server-fault.js new file mode 100644 index 000000000..5f43e4b10 --- /dev/null +++ b/js/brand/server-fault.js @@ -0,0 +1 @@ +export const serverFault = ["32 32","server-fault"] \ No newline at end of file diff --git a/js/brand/serverfault.js b/js/brand/serverfault.js deleted file mode 100644 index bdd6ed846..000000000 --- a/js/brand/serverfault.js +++ /dev/null @@ -1 +0,0 @@ -export const serverfault = ["24 24",""] \ No newline at end of file diff --git a/js/brand/servicestack.js b/js/brand/servicestack.js deleted file mode 100644 index 50ebf9eee..000000000 --- a/js/brand/servicestack.js +++ /dev/null @@ -1 +0,0 @@ -export const servicestack = ["496 512",""] \ No newline at end of file diff --git a/js/brand/shazam.d.ts b/js/brand/shazam.d.ts new file mode 100644 index 000000000..c9890ce62 --- /dev/null +++ b/js/brand/shazam.d.ts @@ -0,0 +1 @@ +export declare const shazam: string[]; \ No newline at end of file diff --git a/js/brand/shazam.js b/js/brand/shazam.js index 72ae7b0ab..6084d0dce 100644 --- a/js/brand/shazam.js +++ b/js/brand/shazam.js @@ -1 +1 @@ -export const shazam = ["24 24",""] \ No newline at end of file +export const shazam = ["32 32","shazam"] \ No newline at end of file diff --git a/js/brand/shell.d.ts b/js/brand/shell.d.ts new file mode 100644 index 000000000..96fd6ce58 --- /dev/null +++ b/js/brand/shell.d.ts @@ -0,0 +1 @@ +export declare const shell: string[]; \ No newline at end of file diff --git a/js/brand/shell.js b/js/brand/shell.js index 81aa2cef2..481a05bcb 100644 --- a/js/brand/shell.js +++ b/js/brand/shell.js @@ -1 +1 @@ -export const shell = ["24 24",""] \ No newline at end of file +export const shell = ["32 32","shell"] \ No newline at end of file diff --git a/js/brand/shirtsinbulk.js b/js/brand/shirtsinbulk.js deleted file mode 100644 index a19c153ac..000000000 --- a/js/brand/shirtsinbulk.js +++ /dev/null @@ -1 +0,0 @@ -export const shirtsinbulk = ["448 512",""] \ No newline at end of file diff --git a/js/brand/shopify.d.ts b/js/brand/shopify.d.ts new file mode 100644 index 000000000..9d7095801 --- /dev/null +++ b/js/brand/shopify.d.ts @@ -0,0 +1 @@ +export declare const shopify: string[]; \ No newline at end of file diff --git a/js/brand/shopify.js b/js/brand/shopify.js index f5e972ba1..62e96324c 100644 --- a/js/brand/shopify.js +++ b/js/brand/shopify.js @@ -1 +1 @@ -export const shopify = ["24 24",""] \ No newline at end of file +export const shopify = ["32 32","shopify"] \ No newline at end of file diff --git a/js/brand/shopware.js b/js/brand/shopware.js deleted file mode 100644 index 29f6f888e..000000000 --- a/js/brand/shopware.js +++ /dev/null @@ -1 +0,0 @@ -export const shopware = ["512 512",""] \ No newline at end of file diff --git a/js/brand/showpad.d.ts b/js/brand/showpad.d.ts new file mode 100644 index 000000000..5ed12d96d --- /dev/null +++ b/js/brand/showpad.d.ts @@ -0,0 +1 @@ +export declare const showpad: string[]; \ No newline at end of file diff --git a/js/brand/showpad.js b/js/brand/showpad.js index d008550cf..058a6f858 100644 --- a/js/brand/showpad.js +++ b/js/brand/showpad.js @@ -1 +1 @@ -export const showpad = ["24 24",""] \ No newline at end of file +export const showpad = ["32 32","showpad"] \ No newline at end of file diff --git a/js/brand/siemens.d.ts b/js/brand/siemens.d.ts new file mode 100644 index 000000000..c0d8de02e --- /dev/null +++ b/js/brand/siemens.d.ts @@ -0,0 +1 @@ +export declare const siemens: string[]; \ No newline at end of file diff --git a/js/brand/siemens.js b/js/brand/siemens.js index 4a13fb6dc..e6f28a3ae 100644 --- a/js/brand/siemens.js +++ b/js/brand/siemens.js @@ -1 +1 @@ -export const siemens = ["24 24",""] \ No newline at end of file +export const siemens = ["32 32","siemens"] \ No newline at end of file diff --git a/js/brand/signal.d.ts b/js/brand/signal.d.ts new file mode 100644 index 000000000..71f82f481 --- /dev/null +++ b/js/brand/signal.d.ts @@ -0,0 +1 @@ +export declare const signal: string[]; \ No newline at end of file diff --git a/js/brand/signal.js b/js/brand/signal.js index 02e2b6fa4..699b9e82e 100644 --- a/js/brand/signal.js +++ b/js/brand/signal.js @@ -1 +1 @@ -export const signal = ["24 24",""] \ No newline at end of file +export const signal = ["32 32","signal"] \ No newline at end of file diff --git a/js/brand/simpleicons.js b/js/brand/simpleicons.js deleted file mode 100644 index cbb6ba008..000000000 --- a/js/brand/simpleicons.js +++ /dev/null @@ -1 +0,0 @@ -export const simpleicons = ["24 24",""] \ No newline at end of file diff --git a/js/brand/simplybuilt.js b/js/brand/simplybuilt.js deleted file mode 100644 index 236ddb26a..000000000 --- a/js/brand/simplybuilt.js +++ /dev/null @@ -1 +0,0 @@ -export const simplybuilt = ["512 512",""] \ No newline at end of file diff --git a/js/brand/sina-weibo.d.ts b/js/brand/sina-weibo.d.ts new file mode 100644 index 000000000..31ead5fbf --- /dev/null +++ b/js/brand/sina-weibo.d.ts @@ -0,0 +1 @@ +export declare const sinaWeibo: string[]; \ No newline at end of file diff --git a/js/brand/sina-weibo.js b/js/brand/sina-weibo.js new file mode 100644 index 000000000..060e5ef75 --- /dev/null +++ b/js/brand/sina-weibo.js @@ -0,0 +1 @@ +export const sinaWeibo = ["32 32","sina-weibo"] \ No newline at end of file diff --git a/js/brand/sinaweibo.js b/js/brand/sinaweibo.js deleted file mode 100644 index 0dd36e39d..000000000 --- a/js/brand/sinaweibo.js +++ /dev/null @@ -1 +0,0 @@ -export const sinaweibo = ["24 24",""] \ No newline at end of file diff --git a/js/brand/sistrix.js b/js/brand/sistrix.js deleted file mode 100644 index b4e80a1d7..000000000 --- a/js/brand/sistrix.js +++ /dev/null @@ -1 +0,0 @@ -export const sistrix = ["448 512",""] \ No newline at end of file diff --git a/js/brand/sitepoint.d.ts b/js/brand/sitepoint.d.ts new file mode 100644 index 000000000..43d2e2fdf --- /dev/null +++ b/js/brand/sitepoint.d.ts @@ -0,0 +1 @@ +export declare const sitepoint: string[]; \ No newline at end of file diff --git a/js/brand/sitepoint.js b/js/brand/sitepoint.js index cdcb11df1..5ce95f541 100644 --- a/js/brand/sitepoint.js +++ b/js/brand/sitepoint.js @@ -1 +1 @@ -export const sitepoint = ["24 24",""] \ No newline at end of file +export const sitepoint = ["32 32","sitepoint"] \ No newline at end of file diff --git a/js/brand/sith.js b/js/brand/sith.js deleted file mode 100644 index a4c176487..000000000 --- a/js/brand/sith.js +++ /dev/null @@ -1 +0,0 @@ -export const sith = ["448 512",""] \ No newline at end of file diff --git a/js/brand/sketch.d.ts b/js/brand/sketch.d.ts new file mode 100644 index 000000000..5082d8dc9 --- /dev/null +++ b/js/brand/sketch.d.ts @@ -0,0 +1 @@ +export declare const sketch: string[]; \ No newline at end of file diff --git a/js/brand/sketch.js b/js/brand/sketch.js index b19f28ddf..4a374c09d 100644 --- a/js/brand/sketch.js +++ b/js/brand/sketch.js @@ -1 +1 @@ -export const sketch = ["512 512",""] \ No newline at end of file +export const sketch = ["32 32","sketch"] \ No newline at end of file diff --git a/js/brand/skillshare.d.ts b/js/brand/skillshare.d.ts new file mode 100644 index 000000000..a36985389 --- /dev/null +++ b/js/brand/skillshare.d.ts @@ -0,0 +1 @@ +export declare const skillshare: string[]; \ No newline at end of file diff --git a/js/brand/skillshare.js b/js/brand/skillshare.js index 23771752b..d296511eb 100644 --- a/js/brand/skillshare.js +++ b/js/brand/skillshare.js @@ -1 +1 @@ -export const skillshare = ["24 24",""] \ No newline at end of file +export const skillshare = ["32 32","skillshare"] \ No newline at end of file diff --git a/js/brand/skyatlas.js b/js/brand/skyatlas.js deleted file mode 100644 index 64b988924..000000000 --- a/js/brand/skyatlas.js +++ /dev/null @@ -1 +0,0 @@ -export const skyatlas = ["640 512",""] \ No newline at end of file diff --git a/js/brand/skyliner.d.ts b/js/brand/skyliner.d.ts new file mode 100644 index 000000000..a30fc0074 --- /dev/null +++ b/js/brand/skyliner.d.ts @@ -0,0 +1 @@ +export declare const skyliner: string[]; \ No newline at end of file diff --git a/js/brand/skyliner.js b/js/brand/skyliner.js index 13d47ab34..191e3aa36 100644 --- a/js/brand/skyliner.js +++ b/js/brand/skyliner.js @@ -1 +1 @@ -export const skyliner = ["24 24",""] \ No newline at end of file +export const skyliner = ["32 32","skyliner"] \ No newline at end of file diff --git a/js/brand/skype.d.ts b/js/brand/skype.d.ts new file mode 100644 index 000000000..930f4d10c --- /dev/null +++ b/js/brand/skype.d.ts @@ -0,0 +1 @@ +export declare const skype: string[]; \ No newline at end of file diff --git a/js/brand/skype.js b/js/brand/skype.js index 8939fab97..c168dd18e 100644 --- a/js/brand/skype.js +++ b/js/brand/skype.js @@ -1 +1 @@ -export const skype = ["24 24",""] \ No newline at end of file +export const skype = ["32 32","skype"] \ No newline at end of file diff --git a/js/brand/slack-hash.js b/js/brand/slack-hash.js deleted file mode 100644 index 40cae1142..000000000 --- a/js/brand/slack-hash.js +++ /dev/null @@ -1 +0,0 @@ -export const slackHash = ["448 512",""] \ No newline at end of file diff --git a/js/brand/slack.d.ts b/js/brand/slack.d.ts new file mode 100644 index 000000000..f74761dff --- /dev/null +++ b/js/brand/slack.d.ts @@ -0,0 +1 @@ +export declare const slack: string[]; \ No newline at end of file diff --git a/js/brand/slack.js b/js/brand/slack.js index 9e0089ac1..920c555ec 100644 --- a/js/brand/slack.js +++ b/js/brand/slack.js @@ -1 +1 @@ -export const slack = ["24 24",""] \ No newline at end of file +export const slack = ["32 32","slack"] \ No newline at end of file diff --git a/js/brand/slashdot.d.ts b/js/brand/slashdot.d.ts new file mode 100644 index 000000000..09d0b2189 --- /dev/null +++ b/js/brand/slashdot.d.ts @@ -0,0 +1 @@ +export declare const slashdot: string[]; \ No newline at end of file diff --git a/js/brand/slashdot.js b/js/brand/slashdot.js index 9f624463b..6aea2e8ba 100644 --- a/js/brand/slashdot.js +++ b/js/brand/slashdot.js @@ -1 +1 @@ -export const slashdot = ["24 24",""] \ No newline at end of file +export const slashdot = ["32 32","slashdot"] \ No newline at end of file diff --git a/js/brand/slickpic.d.ts b/js/brand/slickpic.d.ts new file mode 100644 index 000000000..04f438619 --- /dev/null +++ b/js/brand/slickpic.d.ts @@ -0,0 +1 @@ +export declare const slickpic: string[]; \ No newline at end of file diff --git a/js/brand/slickpic.js b/js/brand/slickpic.js index 33acad26d..9fac3c4a7 100644 --- a/js/brand/slickpic.js +++ b/js/brand/slickpic.js @@ -1 +1 @@ -export const slickpic = ["24 24",""] \ No newline at end of file +export const slickpic = ["32 32","slickpic"] \ No newline at end of file diff --git a/js/brand/slides.d.ts b/js/brand/slides.d.ts new file mode 100644 index 000000000..676d9020d --- /dev/null +++ b/js/brand/slides.d.ts @@ -0,0 +1 @@ +export declare const slides: string[]; \ No newline at end of file diff --git a/js/brand/slides.js b/js/brand/slides.js index 2ec59647d..4dccee34b 100644 --- a/js/brand/slides.js +++ b/js/brand/slides.js @@ -1 +1 @@ -export const slides = ["24 24",""] \ No newline at end of file +export const slides = ["32 32","slides"] \ No newline at end of file diff --git a/js/brand/slideshare.d.ts b/js/brand/slideshare.d.ts new file mode 100644 index 000000000..23aa1174a --- /dev/null +++ b/js/brand/slideshare.d.ts @@ -0,0 +1 @@ +export declare const slideshare: string[]; \ No newline at end of file diff --git a/js/brand/slideshare.js b/js/brand/slideshare.js index b5ab6185a..8fd817497 100644 --- a/js/brand/slideshare.js +++ b/js/brand/slideshare.js @@ -1 +1 @@ -export const slideshare = ["512 512",""] \ No newline at end of file +export const slideshare = ["32 32","slideshare"] \ No newline at end of file diff --git a/js/brand/smashingmagazine.d.ts b/js/brand/smashingmagazine.d.ts new file mode 100644 index 000000000..5f187e38b --- /dev/null +++ b/js/brand/smashingmagazine.d.ts @@ -0,0 +1 @@ +export declare const smashingmagazine: string[]; \ No newline at end of file diff --git a/js/brand/smashingmagazine.js b/js/brand/smashingmagazine.js index 982ed7c55..e183e7490 100644 --- a/js/brand/smashingmagazine.js +++ b/js/brand/smashingmagazine.js @@ -1 +1 @@ -export const smashingmagazine = ["24 24",""] \ No newline at end of file +export const smashingmagazine = ["32 32","smashingmagazine"] \ No newline at end of file diff --git a/js/brand/snapchat-ghost.js b/js/brand/snapchat-ghost.js deleted file mode 100644 index cbb7836ef..000000000 --- a/js/brand/snapchat-ghost.js +++ /dev/null @@ -1 +0,0 @@ -export const snapchatGhost = ["512 512",""] \ No newline at end of file diff --git a/js/brand/snapchat.d.ts b/js/brand/snapchat.d.ts new file mode 100644 index 000000000..10cf9e620 --- /dev/null +++ b/js/brand/snapchat.d.ts @@ -0,0 +1 @@ +export declare const snapchat: string[]; \ No newline at end of file diff --git a/js/brand/snapchat.js b/js/brand/snapchat.js index 828623b96..992bc24a1 100644 --- a/js/brand/snapchat.js +++ b/js/brand/snapchat.js @@ -1 +1 @@ -export const snapchat = ["24 24",""] \ No newline at end of file +export const snapchat = ["32 32","snapchat"] \ No newline at end of file diff --git a/js/brand/snapcraft.d.ts b/js/brand/snapcraft.d.ts new file mode 100644 index 000000000..c9e815a25 --- /dev/null +++ b/js/brand/snapcraft.d.ts @@ -0,0 +1 @@ +export declare const snapcraft: string[]; \ No newline at end of file diff --git a/js/brand/snapcraft.js b/js/brand/snapcraft.js index 7b89f3d92..58920569e 100644 --- a/js/brand/snapcraft.js +++ b/js/brand/snapcraft.js @@ -1 +1 @@ -export const snapcraft = ["24 24",""] \ No newline at end of file +export const snapcraft = ["32 32","snapcraft"] \ No newline at end of file diff --git a/js/brand/snyk.d.ts b/js/brand/snyk.d.ts new file mode 100644 index 000000000..a9c0f1399 --- /dev/null +++ b/js/brand/snyk.d.ts @@ -0,0 +1 @@ +export declare const snyk: string[]; \ No newline at end of file diff --git a/js/brand/snyk.js b/js/brand/snyk.js index 8bb787aa6..bd5bce776 100644 --- a/js/brand/snyk.js +++ b/js/brand/snyk.js @@ -1 +1 @@ -export const snyk = ["24 24",""] \ No newline at end of file +export const snyk = ["32 32","snyk"] \ No newline at end of file diff --git a/js/brand/society6.d.ts b/js/brand/society6.d.ts new file mode 100644 index 000000000..cd5ce1f0e --- /dev/null +++ b/js/brand/society6.d.ts @@ -0,0 +1 @@ +export declare const society6: string[]; \ No newline at end of file diff --git a/js/brand/society6.js b/js/brand/society6.js index 47b05a579..97b06d135 100644 --- a/js/brand/society6.js +++ b/js/brand/society6.js @@ -1 +1 @@ -export const society6 = ["24 24",""] \ No newline at end of file +export const society6 = ["32 32","society6"] \ No newline at end of file diff --git a/js/brand/socket-dot-io.js b/js/brand/socket-dot-io.js deleted file mode 100644 index 4fc63ef86..000000000 --- a/js/brand/socket-dot-io.js +++ /dev/null @@ -1 +0,0 @@ -export const socketDotIo = ["24 24",""] \ No newline at end of file diff --git a/js/brand/socket-io.d.ts b/js/brand/socket-io.d.ts new file mode 100644 index 000000000..b9f9a40ad --- /dev/null +++ b/js/brand/socket-io.d.ts @@ -0,0 +1 @@ +export declare const socketIo: string[]; \ No newline at end of file diff --git a/js/brand/socket-io.js b/js/brand/socket-io.js new file mode 100644 index 000000000..95dfec54f --- /dev/null +++ b/js/brand/socket-io.js @@ -0,0 +1 @@ +export const socketIo = ["32 32","socket-io"] \ No newline at end of file diff --git a/js/brand/sogou.d.ts b/js/brand/sogou.d.ts new file mode 100644 index 000000000..fec75f3ae --- /dev/null +++ b/js/brand/sogou.d.ts @@ -0,0 +1 @@ +export declare const sogou: string[]; \ No newline at end of file diff --git a/js/brand/sogou.js b/js/brand/sogou.js index eee699fb8..e686391bf 100644 --- a/js/brand/sogou.js +++ b/js/brand/sogou.js @@ -1 +1 @@ -export const sogou = ["24 24",""] \ No newline at end of file +export const sogou = ["32 32","sogou"] \ No newline at end of file diff --git a/js/brand/solus.d.ts b/js/brand/solus.d.ts new file mode 100644 index 000000000..5a237dc0b --- /dev/null +++ b/js/brand/solus.d.ts @@ -0,0 +1 @@ +export declare const solus: string[]; \ No newline at end of file diff --git a/js/brand/solus.js b/js/brand/solus.js index 71ee3323a..53400c47e 100644 --- a/js/brand/solus.js +++ b/js/brand/solus.js @@ -1 +1 @@ -export const solus = ["24 24",""] \ No newline at end of file +export const solus = ["32 32","solus"] \ No newline at end of file diff --git a/js/brand/songkick.d.ts b/js/brand/songkick.d.ts new file mode 100644 index 000000000..779e800a6 --- /dev/null +++ b/js/brand/songkick.d.ts @@ -0,0 +1 @@ +export declare const songkick: string[]; \ No newline at end of file diff --git a/js/brand/songkick.js b/js/brand/songkick.js index 5b8b3250c..5bcd63ac1 100644 --- a/js/brand/songkick.js +++ b/js/brand/songkick.js @@ -1 +1 @@ -export const songkick = ["24 24",""] \ No newline at end of file +export const songkick = ["32 32","songkick"] \ No newline at end of file diff --git a/js/brand/sonos.d.ts b/js/brand/sonos.d.ts new file mode 100644 index 000000000..8d3d63175 --- /dev/null +++ b/js/brand/sonos.d.ts @@ -0,0 +1 @@ +export declare const sonos: string[]; \ No newline at end of file diff --git a/js/brand/sonos.js b/js/brand/sonos.js index dfabb7b36..b5d3ba246 100644 --- a/js/brand/sonos.js +++ b/js/brand/sonos.js @@ -1 +1 @@ -export const sonos = ["24 24",""] \ No newline at end of file +export const sonos = ["32 32","sonos"] \ No newline at end of file diff --git a/js/brand/soundcloud.d.ts b/js/brand/soundcloud.d.ts new file mode 100644 index 000000000..9c4398891 --- /dev/null +++ b/js/brand/soundcloud.d.ts @@ -0,0 +1 @@ +export declare const soundcloud: string[]; \ No newline at end of file diff --git a/js/brand/soundcloud.js b/js/brand/soundcloud.js index 038b45f47..c88f2cd97 100644 --- a/js/brand/soundcloud.js +++ b/js/brand/soundcloud.js @@ -1 +1 @@ -export const soundcloud = ["24 24",""] \ No newline at end of file +export const soundcloud = ["32 32","soundcloud"] \ No newline at end of file diff --git a/js/brand/sourceforge.d.ts b/js/brand/sourceforge.d.ts new file mode 100644 index 000000000..13d41212e --- /dev/null +++ b/js/brand/sourceforge.d.ts @@ -0,0 +1 @@ +export declare const sourceforge: string[]; \ No newline at end of file diff --git a/js/brand/sourceforge.js b/js/brand/sourceforge.js index a4b7b8e40..2955fa559 100644 --- a/js/brand/sourceforge.js +++ b/js/brand/sourceforge.js @@ -1 +1 @@ -export const sourceforge = ["24 24",""] \ No newline at end of file +export const sourceforge = ["32 32","sourceforge"] \ No newline at end of file diff --git a/js/brand/sourcegraph.d.ts b/js/brand/sourcegraph.d.ts new file mode 100644 index 000000000..c4107428f --- /dev/null +++ b/js/brand/sourcegraph.d.ts @@ -0,0 +1 @@ +export declare const sourcegraph: string[]; \ No newline at end of file diff --git a/js/brand/sourcegraph.js b/js/brand/sourcegraph.js index 342b6c97e..0a371a801 100644 --- a/js/brand/sourcegraph.js +++ b/js/brand/sourcegraph.js @@ -1 +1 @@ -export const sourcegraph = ["24 24",""] \ No newline at end of file +export const sourcegraph = ["32 32","sourcegraph"] \ No newline at end of file diff --git a/js/brand/sourcetree.js b/js/brand/sourcetree.js deleted file mode 100644 index aa68389cc..000000000 --- a/js/brand/sourcetree.js +++ /dev/null @@ -1 +0,0 @@ -export const sourcetree = ["448 512",""] \ No newline at end of file diff --git a/js/brand/spacemacs.d.ts b/js/brand/spacemacs.d.ts new file mode 100644 index 000000000..266d20370 --- /dev/null +++ b/js/brand/spacemacs.d.ts @@ -0,0 +1 @@ +export declare const spacemacs: string[]; \ No newline at end of file diff --git a/js/brand/spacemacs.js b/js/brand/spacemacs.js index 50ab05700..040a6c2b3 100644 --- a/js/brand/spacemacs.js +++ b/js/brand/spacemacs.js @@ -1 +1 @@ -export const spacemacs = ["24 24",""] \ No newline at end of file +export const spacemacs = ["32 32","spacemacs"] \ No newline at end of file diff --git a/js/brand/spacex.d.ts b/js/brand/spacex.d.ts new file mode 100644 index 000000000..8eec383c0 --- /dev/null +++ b/js/brand/spacex.d.ts @@ -0,0 +1 @@ +export declare const spacex: string[]; \ No newline at end of file diff --git a/js/brand/spacex.js b/js/brand/spacex.js index 2031b419d..a2acd3d98 100644 --- a/js/brand/spacex.js +++ b/js/brand/spacex.js @@ -1 +1 @@ -export const spacex = ["24 24",""] \ No newline at end of file +export const spacex = ["32 32","spacex"] \ No newline at end of file diff --git a/js/brand/sparkfun.d.ts b/js/brand/sparkfun.d.ts new file mode 100644 index 000000000..6ca8e0b21 --- /dev/null +++ b/js/brand/sparkfun.d.ts @@ -0,0 +1 @@ +export declare const sparkfun: string[]; \ No newline at end of file diff --git a/js/brand/sparkfun.js b/js/brand/sparkfun.js index a6f396e3b..6a79de13a 100644 --- a/js/brand/sparkfun.js +++ b/js/brand/sparkfun.js @@ -1 +1 @@ -export const sparkfun = ["24 24",""] \ No newline at end of file +export const sparkfun = ["32 32","sparkfun"] \ No newline at end of file diff --git a/js/brand/sparkpost.d.ts b/js/brand/sparkpost.d.ts new file mode 100644 index 000000000..ab14bde9d --- /dev/null +++ b/js/brand/sparkpost.d.ts @@ -0,0 +1 @@ +export declare const sparkpost: string[]; \ No newline at end of file diff --git a/js/brand/sparkpost.js b/js/brand/sparkpost.js index 56d2991ed..83325a0e6 100644 --- a/js/brand/sparkpost.js +++ b/js/brand/sparkpost.js @@ -1 +1 @@ -export const sparkpost = ["24 24",""] \ No newline at end of file +export const sparkpost = ["32 32","sparkpost"] \ No newline at end of file diff --git a/js/brand/spdx.d.ts b/js/brand/spdx.d.ts new file mode 100644 index 000000000..3c134e838 --- /dev/null +++ b/js/brand/spdx.d.ts @@ -0,0 +1 @@ +export declare const spdx: string[]; \ No newline at end of file diff --git a/js/brand/spdx.js b/js/brand/spdx.js index 745b7c2fe..67eaa01b2 100644 --- a/js/brand/spdx.js +++ b/js/brand/spdx.js @@ -1 +1 @@ -export const spdx = ["24 24",""] \ No newline at end of file +export const spdx = ["32 32","spdx"] \ No newline at end of file diff --git a/js/brand/speakap.js b/js/brand/speakap.js deleted file mode 100644 index 7069297e3..000000000 --- a/js/brand/speakap.js +++ /dev/null @@ -1 +0,0 @@ -export const speakap = ["448 512",""] \ No newline at end of file diff --git a/js/brand/speaker-deck.d.ts b/js/brand/speaker-deck.d.ts new file mode 100644 index 000000000..afa0a89f5 --- /dev/null +++ b/js/brand/speaker-deck.d.ts @@ -0,0 +1 @@ +export declare const speakerDeck: string[]; \ No newline at end of file diff --git a/js/brand/speaker-deck.js b/js/brand/speaker-deck.js index 0f7159aa4..3a0903a9c 100644 --- a/js/brand/speaker-deck.js +++ b/js/brand/speaker-deck.js @@ -1 +1 @@ -export const speakerDeck = ["512 512",""] \ No newline at end of file +export const speakerDeck = ["32 32","speaker-deck"] \ No newline at end of file diff --git a/js/brand/speakerdeck.js b/js/brand/speakerdeck.js deleted file mode 100644 index 79c6680a5..000000000 --- a/js/brand/speakerdeck.js +++ /dev/null @@ -1 +0,0 @@ -export const speakerdeck = ["24 24",""] \ No newline at end of file diff --git a/js/brand/spectrum.d.ts b/js/brand/spectrum.d.ts new file mode 100644 index 000000000..5871c6596 --- /dev/null +++ b/js/brand/spectrum.d.ts @@ -0,0 +1 @@ +export declare const spectrum: string[]; \ No newline at end of file diff --git a/js/brand/spectrum.js b/js/brand/spectrum.js index bda07e46b..a4e3fa719 100644 --- a/js/brand/spectrum.js +++ b/js/brand/spectrum.js @@ -1 +1 @@ -export const spectrum = ["24 24",""] \ No newline at end of file +export const spectrum = ["32 32","spectrum"] \ No newline at end of file diff --git a/js/brand/spotify.d.ts b/js/brand/spotify.d.ts new file mode 100644 index 000000000..870c1e486 --- /dev/null +++ b/js/brand/spotify.d.ts @@ -0,0 +1 @@ +export declare const spotify: string[]; \ No newline at end of file diff --git a/js/brand/spotify.js b/js/brand/spotify.js index 1b60fc8a4..a3f68175f 100644 --- a/js/brand/spotify.js +++ b/js/brand/spotify.js @@ -1 +1 @@ -export const spotify = ["24 24",""] \ No newline at end of file +export const spotify = ["32 32","spotify"] \ No newline at end of file diff --git a/js/brand/spotlight.d.ts b/js/brand/spotlight.d.ts new file mode 100644 index 000000000..b74d06083 --- /dev/null +++ b/js/brand/spotlight.d.ts @@ -0,0 +1 @@ +export declare const spotlight: string[]; \ No newline at end of file diff --git a/js/brand/spotlight.js b/js/brand/spotlight.js index 9e980a7fe..2098ec979 100644 --- a/js/brand/spotlight.js +++ b/js/brand/spotlight.js @@ -1 +1 @@ -export const spotlight = ["24 24",""] \ No newline at end of file +export const spotlight = ["32 32","spotlight"] \ No newline at end of file diff --git a/js/brand/spreaker.d.ts b/js/brand/spreaker.d.ts new file mode 100644 index 000000000..4a703da37 --- /dev/null +++ b/js/brand/spreaker.d.ts @@ -0,0 +1 @@ +export declare const spreaker: string[]; \ No newline at end of file diff --git a/js/brand/spreaker.js b/js/brand/spreaker.js index 77158f325..193c336fb 100644 --- a/js/brand/spreaker.js +++ b/js/brand/spreaker.js @@ -1 +1 @@ -export const spreaker = ["24 24",""] \ No newline at end of file +export const spreaker = ["32 32","spreaker"] \ No newline at end of file diff --git a/js/brand/spring.d.ts b/js/brand/spring.d.ts new file mode 100644 index 000000000..5a84ea763 --- /dev/null +++ b/js/brand/spring.d.ts @@ -0,0 +1 @@ +export declare const spring: string[]; \ No newline at end of file diff --git a/js/brand/spring.js b/js/brand/spring.js index ef4d0dbe4..4e563dcf5 100644 --- a/js/brand/spring.js +++ b/js/brand/spring.js @@ -1 +1 @@ -export const spring = ["24 24",""] \ No newline at end of file +export const spring = ["32 32","spring"] \ No newline at end of file diff --git a/js/brand/sprint.d.ts b/js/brand/sprint.d.ts new file mode 100644 index 000000000..82ea42c2f --- /dev/null +++ b/js/brand/sprint.d.ts @@ -0,0 +1 @@ +export declare const sprint: string[]; \ No newline at end of file diff --git a/js/brand/sprint.js b/js/brand/sprint.js index c02b08511..2453a9293 100644 --- a/js/brand/sprint.js +++ b/js/brand/sprint.js @@ -1 +1 @@ -export const sprint = ["24 24",""] \ No newline at end of file +export const sprint = ["32 32","sprint"] \ No newline at end of file diff --git a/js/brand/squarespace.d.ts b/js/brand/squarespace.d.ts new file mode 100644 index 000000000..07aa28e07 --- /dev/null +++ b/js/brand/squarespace.d.ts @@ -0,0 +1 @@ +export declare const squarespace: string[]; \ No newline at end of file diff --git a/js/brand/squarespace.js b/js/brand/squarespace.js index 38bb389f4..25c895652 100644 --- a/js/brand/squarespace.js +++ b/js/brand/squarespace.js @@ -1 +1 @@ -export const squarespace = ["24 24",""] \ No newline at end of file +export const squarespace = ["32 32","squarespace"] \ No newline at end of file diff --git a/js/brand/stack-exchange.js b/js/brand/stack-exchange.js deleted file mode 100644 index fa02d8dd4..000000000 --- a/js/brand/stack-exchange.js +++ /dev/null @@ -1 +0,0 @@ -export const stackExchange = ["448 512",""] \ No newline at end of file diff --git a/js/brand/stack-overflow.js b/js/brand/stack-overflow.js deleted file mode 100644 index d495b16b5..000000000 --- a/js/brand/stack-overflow.js +++ /dev/null @@ -1 +0,0 @@ -export const stackOverflow = ["384 512",""] \ No newline at end of file diff --git a/js/brand/stackbit.d.ts b/js/brand/stackbit.d.ts new file mode 100644 index 000000000..e9899fd72 --- /dev/null +++ b/js/brand/stackbit.d.ts @@ -0,0 +1 @@ +export declare const stackbit: string[]; \ No newline at end of file diff --git a/js/brand/stackbit.js b/js/brand/stackbit.js index a2dc21e7a..d6accab5a 100644 --- a/js/brand/stackbit.js +++ b/js/brand/stackbit.js @@ -1 +1 @@ -export const stackbit = ["24 24",""] \ No newline at end of file +export const stackbit = ["32 32","stackbit"] \ No newline at end of file diff --git a/js/brand/stackexchange.d.ts b/js/brand/stackexchange.d.ts new file mode 100644 index 000000000..88d313a8e --- /dev/null +++ b/js/brand/stackexchange.d.ts @@ -0,0 +1 @@ +export declare const stackexchange: string[]; \ No newline at end of file diff --git a/js/brand/stackexchange.js b/js/brand/stackexchange.js index 47a82174d..09306ae65 100644 --- a/js/brand/stackexchange.js +++ b/js/brand/stackexchange.js @@ -1 +1 @@ -export const stackexchange = ["24 24",""] \ No newline at end of file +export const stackexchange = ["32 32","stackexchange"] \ No newline at end of file diff --git a/js/brand/stackoverflow.d.ts b/js/brand/stackoverflow.d.ts new file mode 100644 index 000000000..c2763dda8 --- /dev/null +++ b/js/brand/stackoverflow.d.ts @@ -0,0 +1 @@ +export declare const stackoverflow: string[]; \ No newline at end of file diff --git a/js/brand/stackoverflow.js b/js/brand/stackoverflow.js index 4e5949611..19df41aec 100644 --- a/js/brand/stackoverflow.js +++ b/js/brand/stackoverflow.js @@ -1 +1 @@ -export const stackoverflow = ["24 24",""] \ No newline at end of file +export const stackoverflow = ["32 32","stackoverflow"] \ No newline at end of file diff --git a/js/brand/stackpath.d.ts b/js/brand/stackpath.d.ts new file mode 100644 index 000000000..819d5a658 --- /dev/null +++ b/js/brand/stackpath.d.ts @@ -0,0 +1 @@ +export declare const stackpath: string[]; \ No newline at end of file diff --git a/js/brand/stackpath.js b/js/brand/stackpath.js index 5275e5869..d367d7453 100644 --- a/js/brand/stackpath.js +++ b/js/brand/stackpath.js @@ -1 +1 @@ -export const stackpath = ["448 512",""] \ No newline at end of file +export const stackpath = ["32 32","stackpath"] \ No newline at end of file diff --git a/js/brand/stackshare.d.ts b/js/brand/stackshare.d.ts new file mode 100644 index 000000000..29e316173 --- /dev/null +++ b/js/brand/stackshare.d.ts @@ -0,0 +1 @@ +export declare const stackshare: string[]; \ No newline at end of file diff --git a/js/brand/stackshare.js b/js/brand/stackshare.js index e5de13ab7..ee12e254b 100644 --- a/js/brand/stackshare.js +++ b/js/brand/stackshare.js @@ -1 +1 @@ -export const stackshare = ["24 24",""] \ No newline at end of file +export const stackshare = ["32 32","stackshare"] \ No newline at end of file diff --git a/js/brand/stadia.d.ts b/js/brand/stadia.d.ts new file mode 100644 index 000000000..ec47f9ffd --- /dev/null +++ b/js/brand/stadia.d.ts @@ -0,0 +1 @@ +export declare const stadia: string[]; \ No newline at end of file diff --git a/js/brand/stadia.js b/js/brand/stadia.js index 5d49256dc..e7d4fb76d 100644 --- a/js/brand/stadia.js +++ b/js/brand/stadia.js @@ -1 +1 @@ -export const stadia = ["24 24",""] \ No newline at end of file +export const stadia = ["32 32","stadia"] \ No newline at end of file diff --git a/js/brand/statamic.d.ts b/js/brand/statamic.d.ts new file mode 100644 index 000000000..33631e1f2 --- /dev/null +++ b/js/brand/statamic.d.ts @@ -0,0 +1 @@ +export declare const statamic: string[]; \ No newline at end of file diff --git a/js/brand/statamic.js b/js/brand/statamic.js index 73c71a7f4..5842414a2 100644 --- a/js/brand/statamic.js +++ b/js/brand/statamic.js @@ -1 +1 @@ -export const statamic = ["24 24",""] \ No newline at end of file +export const statamic = ["32 32","statamic"] \ No newline at end of file diff --git a/js/brand/staticman.d.ts b/js/brand/staticman.d.ts new file mode 100644 index 000000000..9c71193ee --- /dev/null +++ b/js/brand/staticman.d.ts @@ -0,0 +1 @@ +export declare const staticman: string[]; \ No newline at end of file diff --git a/js/brand/staticman.js b/js/brand/staticman.js index 649cb8a37..e57bf6b8f 100644 --- a/js/brand/staticman.js +++ b/js/brand/staticman.js @@ -1 +1 @@ -export const staticman = ["24 24",""] \ No newline at end of file +export const staticman = ["32 32","staticman"] \ No newline at end of file diff --git a/js/brand/statuspage.d.ts b/js/brand/statuspage.d.ts new file mode 100644 index 000000000..d4bc451e8 --- /dev/null +++ b/js/brand/statuspage.d.ts @@ -0,0 +1 @@ +export declare const statuspage: string[]; \ No newline at end of file diff --git a/js/brand/statuspage.js b/js/brand/statuspage.js index c1898c750..1cc2cc61a 100644 --- a/js/brand/statuspage.js +++ b/js/brand/statuspage.js @@ -1 +1 @@ -export const statuspage = ["24 24",""] \ No newline at end of file +export const statuspage = ["32 32","statuspage"] \ No newline at end of file diff --git a/js/brand/staylinked.js b/js/brand/staylinked.js deleted file mode 100644 index 3ccf2b4a4..000000000 --- a/js/brand/staylinked.js +++ /dev/null @@ -1 +0,0 @@ -export const staylinked = ["440 512",""] \ No newline at end of file diff --git a/js/brand/steam-symbol.js b/js/brand/steam-symbol.js deleted file mode 100644 index 6e03de777..000000000 --- a/js/brand/steam-symbol.js +++ /dev/null @@ -1 +0,0 @@ -export const steamSymbol = ["448 512",""] \ No newline at end of file diff --git a/js/brand/steam.d.ts b/js/brand/steam.d.ts new file mode 100644 index 000000000..b0235480c --- /dev/null +++ b/js/brand/steam.d.ts @@ -0,0 +1 @@ +export declare const steam: string[]; \ No newline at end of file diff --git a/js/brand/steam.js b/js/brand/steam.js index 074420b4e..c26d70b20 100644 --- a/js/brand/steam.js +++ b/js/brand/steam.js @@ -1 +1 @@ -export const steam = ["24 24",""] \ No newline at end of file +export const steam = ["32 32","steam"] \ No newline at end of file diff --git a/js/brand/steem.d.ts b/js/brand/steem.d.ts new file mode 100644 index 000000000..cd9ddb4e4 --- /dev/null +++ b/js/brand/steem.d.ts @@ -0,0 +1 @@ +export declare const steem: string[]; \ No newline at end of file diff --git a/js/brand/steem.js b/js/brand/steem.js index 55f495afa..77fb4c513 100644 --- a/js/brand/steem.js +++ b/js/brand/steem.js @@ -1 +1 @@ -export const steem = ["24 24",""] \ No newline at end of file +export const steem = ["32 32","steem"] \ No newline at end of file diff --git a/js/brand/steemit.d.ts b/js/brand/steemit.d.ts new file mode 100644 index 000000000..ba0f5653a --- /dev/null +++ b/js/brand/steemit.d.ts @@ -0,0 +1 @@ +export declare const steemit: string[]; \ No newline at end of file diff --git a/js/brand/steemit.js b/js/brand/steemit.js index ca965e1c5..2724520a1 100644 --- a/js/brand/steemit.js +++ b/js/brand/steemit.js @@ -1 +1 @@ -export const steemit = ["24 24",""] \ No newline at end of file +export const steemit = ["32 32","steemit"] \ No newline at end of file diff --git a/js/brand/sticker-mule.js b/js/brand/sticker-mule.js deleted file mode 100644 index 525885ecc..000000000 --- a/js/brand/sticker-mule.js +++ /dev/null @@ -1 +0,0 @@ -export const stickerMule = ["576 512",""] \ No newline at end of file diff --git a/js/brand/stitcher.d.ts b/js/brand/stitcher.d.ts new file mode 100644 index 000000000..600918d1a --- /dev/null +++ b/js/brand/stitcher.d.ts @@ -0,0 +1 @@ +export declare const stitcher: string[]; \ No newline at end of file diff --git a/js/brand/stitcher.js b/js/brand/stitcher.js index 313c6e1eb..b3762aae8 100644 --- a/js/brand/stitcher.js +++ b/js/brand/stitcher.js @@ -1 +1 @@ -export const stitcher = ["24 24",""] \ No newline at end of file +export const stitcher = ["32 32","stitcher"] \ No newline at end of file diff --git a/js/brand/storify.d.ts b/js/brand/storify.d.ts new file mode 100644 index 000000000..8e1fed65a --- /dev/null +++ b/js/brand/storify.d.ts @@ -0,0 +1 @@ +export declare const storify: string[]; \ No newline at end of file diff --git a/js/brand/storify.js b/js/brand/storify.js index 38b1a09c3..9b902ea68 100644 --- a/js/brand/storify.js +++ b/js/brand/storify.js @@ -1 +1 @@ -export const storify = ["24 24",""] \ No newline at end of file +export const storify = ["32 32","storify"] \ No newline at end of file diff --git a/js/brand/storybook.d.ts b/js/brand/storybook.d.ts new file mode 100644 index 000000000..f3c9d2892 --- /dev/null +++ b/js/brand/storybook.d.ts @@ -0,0 +1 @@ +export declare const storybook: string[]; \ No newline at end of file diff --git a/js/brand/storybook.js b/js/brand/storybook.js index 805642362..5e10361c1 100644 --- a/js/brand/storybook.js +++ b/js/brand/storybook.js @@ -1 +1 @@ -export const storybook = ["24 24",""] \ No newline at end of file +export const storybook = ["32 32","storybook"] \ No newline at end of file diff --git a/js/brand/strapi.d.ts b/js/brand/strapi.d.ts new file mode 100644 index 000000000..4b49b430e --- /dev/null +++ b/js/brand/strapi.d.ts @@ -0,0 +1 @@ +export declare const strapi: string[]; \ No newline at end of file diff --git a/js/brand/strapi.js b/js/brand/strapi.js index 6eea071a7..8f2baadcc 100644 --- a/js/brand/strapi.js +++ b/js/brand/strapi.js @@ -1 +1 @@ -export const strapi = ["24 24",""] \ No newline at end of file +export const strapi = ["32 32","strapi"] \ No newline at end of file diff --git a/js/brand/strava.d.ts b/js/brand/strava.d.ts new file mode 100644 index 000000000..6bf782026 --- /dev/null +++ b/js/brand/strava.d.ts @@ -0,0 +1 @@ +export declare const strava: string[]; \ No newline at end of file diff --git a/js/brand/strava.js b/js/brand/strava.js index d9f7e424d..c386461a4 100644 --- a/js/brand/strava.js +++ b/js/brand/strava.js @@ -1 +1 @@ -export const strava = ["24 24",""] \ No newline at end of file +export const strava = ["32 32","strava"] \ No newline at end of file diff --git a/js/brand/stripe-s.d.ts b/js/brand/stripe-s.d.ts new file mode 100644 index 000000000..129c7f3a7 --- /dev/null +++ b/js/brand/stripe-s.d.ts @@ -0,0 +1 @@ +export declare const stripeS: string[]; \ No newline at end of file diff --git a/js/brand/stripe-s.js b/js/brand/stripe-s.js new file mode 100644 index 000000000..a791511a4 --- /dev/null +++ b/js/brand/stripe-s.js @@ -0,0 +1 @@ +export const stripeS = ["32 32","stripe-s"] \ No newline at end of file diff --git a/js/brand/stripe.d.ts b/js/brand/stripe.d.ts new file mode 100644 index 000000000..04b053a9f --- /dev/null +++ b/js/brand/stripe.d.ts @@ -0,0 +1 @@ +export declare const stripe: string[]; \ No newline at end of file diff --git a/js/brand/stripe.js b/js/brand/stripe.js index 21dcd5fd2..162721e82 100644 --- a/js/brand/stripe.js +++ b/js/brand/stripe.js @@ -1 +1 @@ -export const stripe = ["24 24",""] \ No newline at end of file +export const stripe = ["32 32","stripe"] \ No newline at end of file diff --git a/js/brand/stubhub.d.ts b/js/brand/stubhub.d.ts new file mode 100644 index 000000000..513dc9ee0 --- /dev/null +++ b/js/brand/stubhub.d.ts @@ -0,0 +1 @@ +export declare const stubhub: string[]; \ No newline at end of file diff --git a/js/brand/stubhub.js b/js/brand/stubhub.js index 7e33c59c2..675c05ae9 100644 --- a/js/brand/stubhub.js +++ b/js/brand/stubhub.js @@ -1 +1 @@ -export const stubhub = ["24 24",""] \ No newline at end of file +export const stubhub = ["32 32","stubhub"] \ No newline at end of file diff --git a/js/brand/studiovinari.js b/js/brand/studiovinari.js deleted file mode 100644 index ada7c08a4..000000000 --- a/js/brand/studiovinari.js +++ /dev/null @@ -1 +0,0 @@ -export const studiovinari = ["512 512",""] \ No newline at end of file diff --git a/js/brand/stumbleupon-circle.js b/js/brand/stumbleupon-circle.js deleted file mode 100644 index 13209febf..000000000 --- a/js/brand/stumbleupon-circle.js +++ /dev/null @@ -1 +0,0 @@ -export const stumbleuponCircle = ["496 512",""] \ No newline at end of file diff --git a/js/brand/stumbleupon.d.ts b/js/brand/stumbleupon.d.ts new file mode 100644 index 000000000..33116d67a --- /dev/null +++ b/js/brand/stumbleupon.d.ts @@ -0,0 +1 @@ +export declare const stumbleupon: string[]; \ No newline at end of file diff --git a/js/brand/stumbleupon.js b/js/brand/stumbleupon.js index e73cb5693..ee574dc10 100644 --- a/js/brand/stumbleupon.js +++ b/js/brand/stumbleupon.js @@ -1 +1 @@ -export const stumbleupon = ["512 512",""] \ No newline at end of file +export const stumbleupon = ["32 32","stumbleupon"] \ No newline at end of file diff --git a/js/brand/styleshare.d.ts b/js/brand/styleshare.d.ts new file mode 100644 index 000000000..e776ea141 --- /dev/null +++ b/js/brand/styleshare.d.ts @@ -0,0 +1 @@ +export declare const styleshare: string[]; \ No newline at end of file diff --git a/js/brand/styleshare.js b/js/brand/styleshare.js index 36200e10e..ab9e82de6 100644 --- a/js/brand/styleshare.js +++ b/js/brand/styleshare.js @@ -1 +1 @@ -export const styleshare = ["24 24",""] \ No newline at end of file +export const styleshare = ["32 32","styleshare"] \ No newline at end of file diff --git a/js/brand/stylus.d.ts b/js/brand/stylus.d.ts new file mode 100644 index 000000000..829213f30 --- /dev/null +++ b/js/brand/stylus.d.ts @@ -0,0 +1 @@ +export declare const stylus: string[]; \ No newline at end of file diff --git a/js/brand/stylus.js b/js/brand/stylus.js index 0ebcc3672..8eb973add 100644 --- a/js/brand/stylus.js +++ b/js/brand/stylus.js @@ -1 +1 @@ -export const stylus = ["24 24",""] \ No newline at end of file +export const stylus = ["32 32","stylus"] \ No newline at end of file diff --git a/js/brand/sublime-text.d.ts b/js/brand/sublime-text.d.ts new file mode 100644 index 000000000..441d41db4 --- /dev/null +++ b/js/brand/sublime-text.d.ts @@ -0,0 +1 @@ +export declare const sublimeText: string[]; \ No newline at end of file diff --git a/js/brand/sublime-text.js b/js/brand/sublime-text.js new file mode 100644 index 000000000..91021db7d --- /dev/null +++ b/js/brand/sublime-text.js @@ -0,0 +1 @@ +export const sublimeText = ["32 32","sublime-text"] \ No newline at end of file diff --git a/js/brand/sublimetext.js b/js/brand/sublimetext.js deleted file mode 100644 index 5939d5834..000000000 --- a/js/brand/sublimetext.js +++ /dev/null @@ -1 +0,0 @@ -export const sublimetext = ["24 24",""] \ No newline at end of file diff --git a/js/brand/subversion.d.ts b/js/brand/subversion.d.ts new file mode 100644 index 000000000..5f6bd317d --- /dev/null +++ b/js/brand/subversion.d.ts @@ -0,0 +1 @@ +export declare const subversion: string[]; \ No newline at end of file diff --git a/js/brand/subversion.js b/js/brand/subversion.js index 802c9d894..67fe56f18 100644 --- a/js/brand/subversion.js +++ b/js/brand/subversion.js @@ -1 +1 @@ -export const subversion = ["24 24",""] \ No newline at end of file +export const subversion = ["32 32","subversion"] \ No newline at end of file diff --git a/js/brand/superpowers.js b/js/brand/superpowers.js deleted file mode 100644 index 66f3a5315..000000000 --- a/js/brand/superpowers.js +++ /dev/null @@ -1 +0,0 @@ -export const superpowers = ["448 512",""] \ No newline at end of file diff --git a/js/brand/superuser.d.ts b/js/brand/superuser.d.ts new file mode 100644 index 000000000..0cd377aaa --- /dev/null +++ b/js/brand/superuser.d.ts @@ -0,0 +1 @@ +export declare const superuser: string[]; \ No newline at end of file diff --git a/js/brand/superuser.js b/js/brand/superuser.js index 5ca5fee38..844df635c 100644 --- a/js/brand/superuser.js +++ b/js/brand/superuser.js @@ -1 +1 @@ -export const superuser = ["24 24",""] \ No newline at end of file +export const superuser = ["32 32","superuser"] \ No newline at end of file diff --git a/js/brand/supple.js b/js/brand/supple.js deleted file mode 100644 index ed4af58c7..000000000 --- a/js/brand/supple.js +++ /dev/null @@ -1 +0,0 @@ -export const supple = ["640 512",""] \ No newline at end of file diff --git a/js/brand/suse.js b/js/brand/suse.js deleted file mode 100644 index 693707aae..000000000 --- a/js/brand/suse.js +++ /dev/null @@ -1 +0,0 @@ -export const suse = ["640 512",""] \ No newline at end of file diff --git a/js/brand/svelte.d.ts b/js/brand/svelte.d.ts new file mode 100644 index 000000000..1b4c83391 --- /dev/null +++ b/js/brand/svelte.d.ts @@ -0,0 +1 @@ +export declare const svelte: string[]; \ No newline at end of file diff --git a/js/brand/svelte.js b/js/brand/svelte.js index d85d2b080..31a66119d 100644 --- a/js/brand/svelte.js +++ b/js/brand/svelte.js @@ -1 +1 @@ -export const svelte = ["24 24",""] \ No newline at end of file +export const svelte = ["32 32","svelte"] \ No newline at end of file diff --git a/js/brand/svg.d.ts b/js/brand/svg.d.ts new file mode 100644 index 000000000..a212ca4d5 --- /dev/null +++ b/js/brand/svg.d.ts @@ -0,0 +1 @@ +export declare const svg: string[]; \ No newline at end of file diff --git a/js/brand/svg.js b/js/brand/svg.js index 4a2164f06..a55776cfc 100644 --- a/js/brand/svg.js +++ b/js/brand/svg.js @@ -1 +1 @@ -export const svg = ["24 24",""] \ No newline at end of file +export const svg = ["32 32","svg"] \ No newline at end of file diff --git a/js/brand/swagger.d.ts b/js/brand/swagger.d.ts new file mode 100644 index 000000000..ef6bad32e --- /dev/null +++ b/js/brand/swagger.d.ts @@ -0,0 +1 @@ +export declare const swagger: string[]; \ No newline at end of file diff --git a/js/brand/swagger.js b/js/brand/swagger.js index 377a5f9e7..67ed37113 100644 --- a/js/brand/swagger.js +++ b/js/brand/swagger.js @@ -1 +1 @@ -export const swagger = ["24 24",""] \ No newline at end of file +export const swagger = ["32 32","swagger"] \ No newline at end of file diff --git a/js/brand/swarm.d.ts b/js/brand/swarm.d.ts new file mode 100644 index 000000000..83b611a1f --- /dev/null +++ b/js/brand/swarm.d.ts @@ -0,0 +1 @@ +export declare const swarm: string[]; \ No newline at end of file diff --git a/js/brand/swarm.js b/js/brand/swarm.js index 448e12256..8e3c0d481 100644 --- a/js/brand/swarm.js +++ b/js/brand/swarm.js @@ -1 +1 @@ -export const swarm = ["24 24",""] \ No newline at end of file +export const swarm = ["32 32","swarm"] \ No newline at end of file diff --git a/js/brand/swift.d.ts b/js/brand/swift.d.ts new file mode 100644 index 000000000..8b1589313 --- /dev/null +++ b/js/brand/swift.d.ts @@ -0,0 +1 @@ +export declare const swift: string[]; \ No newline at end of file diff --git a/js/brand/swift.js b/js/brand/swift.js index 3bddf65e7..f6f18c6c9 100644 --- a/js/brand/swift.js +++ b/js/brand/swift.js @@ -1 +1 @@ -export const swift = ["24 24",""] \ No newline at end of file +export const swift = ["32 32","swift"] \ No newline at end of file diff --git a/js/brand/symantec.d.ts b/js/brand/symantec.d.ts new file mode 100644 index 000000000..8e1c43acd --- /dev/null +++ b/js/brand/symantec.d.ts @@ -0,0 +1 @@ +export declare const symantec: string[]; \ No newline at end of file diff --git a/js/brand/symantec.js b/js/brand/symantec.js index 481290035..e58664c0e 100644 --- a/js/brand/symantec.js +++ b/js/brand/symantec.js @@ -1 +1 @@ -export const symantec = ["24 24",""] \ No newline at end of file +export const symantec = ["32 32","symantec"] \ No newline at end of file diff --git a/js/brand/symfony.d.ts b/js/brand/symfony.d.ts new file mode 100644 index 000000000..682a5210d --- /dev/null +++ b/js/brand/symfony.d.ts @@ -0,0 +1 @@ +export declare const symfony: string[]; \ No newline at end of file diff --git a/js/brand/symfony.js b/js/brand/symfony.js index 1b88d022e..303f5ac35 100644 --- a/js/brand/symfony.js +++ b/js/brand/symfony.js @@ -1 +1 @@ -export const symfony = ["24 24",""] \ No newline at end of file +export const symfony = ["32 32","symfony"] \ No newline at end of file diff --git a/js/brand/synology.d.ts b/js/brand/synology.d.ts new file mode 100644 index 000000000..c635de056 --- /dev/null +++ b/js/brand/synology.d.ts @@ -0,0 +1 @@ +export declare const synology: string[]; \ No newline at end of file diff --git a/js/brand/synology.js b/js/brand/synology.js index 5dfc944bd..90c83b9e9 100644 --- a/js/brand/synology.js +++ b/js/brand/synology.js @@ -1 +1 @@ -export const synology = ["24 24",""] \ No newline at end of file +export const synology = ["32 32","synology"] \ No newline at end of file diff --git a/js/brand/t-mobile.d.ts b/js/brand/t-mobile.d.ts new file mode 100644 index 000000000..ddabfd106 --- /dev/null +++ b/js/brand/t-mobile.d.ts @@ -0,0 +1 @@ +export declare const tMobile: string[]; \ No newline at end of file diff --git a/js/brand/t-mobile.js b/js/brand/t-mobile.js index 3a0880ad0..00cd2f2e9 100644 --- a/js/brand/t-mobile.js +++ b/js/brand/t-mobile.js @@ -1 +1 @@ -export const tMobile = ["24 24",""] \ No newline at end of file +export const tMobile = ["32 32","t-mobile"] \ No newline at end of file diff --git a/js/brand/tableau.d.ts b/js/brand/tableau.d.ts new file mode 100644 index 000000000..8a6ce254a --- /dev/null +++ b/js/brand/tableau.d.ts @@ -0,0 +1 @@ +export declare const tableau: string[]; \ No newline at end of file diff --git a/js/brand/tableau.js b/js/brand/tableau.js index d45536685..1eb2fa816 100644 --- a/js/brand/tableau.js +++ b/js/brand/tableau.js @@ -1 +1 @@ -export const tableau = ["24 24",""] \ No newline at end of file +export const tableau = ["32 32","tableau"] \ No newline at end of file diff --git a/js/brand/tails.d.ts b/js/brand/tails.d.ts new file mode 100644 index 000000000..9bf0ca395 --- /dev/null +++ b/js/brand/tails.d.ts @@ -0,0 +1 @@ +export declare const tails: string[]; \ No newline at end of file diff --git a/js/brand/tails.js b/js/brand/tails.js index 54c49d146..c50e7f7b5 100644 --- a/js/brand/tails.js +++ b/js/brand/tails.js @@ -1 +1 @@ -export const tails = ["24 24",""] \ No newline at end of file +export const tails = ["32 32","tails"] \ No newline at end of file diff --git a/js/brand/tapas.d.ts b/js/brand/tapas.d.ts new file mode 100644 index 000000000..9061937f9 --- /dev/null +++ b/js/brand/tapas.d.ts @@ -0,0 +1 @@ +export declare const tapas: string[]; \ No newline at end of file diff --git a/js/brand/tapas.js b/js/brand/tapas.js index 673033797..cf0f3bd88 100644 --- a/js/brand/tapas.js +++ b/js/brand/tapas.js @@ -1 +1 @@ -export const tapas = ["24 24",""] \ No newline at end of file +export const tapas = ["32 32","tapas"] \ No newline at end of file diff --git a/js/brand/teamspeak.js b/js/brand/teamspeak.js deleted file mode 100644 index 578e37749..000000000 --- a/js/brand/teamspeak.js +++ /dev/null @@ -1 +0,0 @@ -export const teamspeak = ["512 512",""] \ No newline at end of file diff --git a/js/brand/teamviewer.d.ts b/js/brand/teamviewer.d.ts new file mode 100644 index 000000000..a39c1f800 --- /dev/null +++ b/js/brand/teamviewer.d.ts @@ -0,0 +1 @@ +export declare const teamviewer: string[]; \ No newline at end of file diff --git a/js/brand/teamviewer.js b/js/brand/teamviewer.js index b54eb9240..7e5b8a62d 100644 --- a/js/brand/teamviewer.js +++ b/js/brand/teamviewer.js @@ -1 +1 @@ -export const teamviewer = ["24 24",""] \ No newline at end of file +export const teamviewer = ["32 32","teamviewer"] \ No newline at end of file diff --git a/js/brand/ted.d.ts b/js/brand/ted.d.ts new file mode 100644 index 000000000..000dde49d --- /dev/null +++ b/js/brand/ted.d.ts @@ -0,0 +1 @@ +export declare const ted: string[]; \ No newline at end of file diff --git a/js/brand/ted.js b/js/brand/ted.js index cb12eeb9a..14d5da74c 100644 --- a/js/brand/ted.js +++ b/js/brand/ted.js @@ -1 +1 @@ -export const ted = ["24 24",""] \ No newline at end of file +export const ted = ["32 32","ted"] \ No newline at end of file diff --git a/js/brand/teespring.d.ts b/js/brand/teespring.d.ts new file mode 100644 index 000000000..43a49c0df --- /dev/null +++ b/js/brand/teespring.d.ts @@ -0,0 +1 @@ +export declare const teespring: string[]; \ No newline at end of file diff --git a/js/brand/teespring.js b/js/brand/teespring.js index 7699a40a4..555f413c2 100644 --- a/js/brand/teespring.js +++ b/js/brand/teespring.js @@ -1 +1 @@ -export const teespring = ["24 24",""] \ No newline at end of file +export const teespring = ["32 32","teespring"] \ No newline at end of file diff --git a/js/brand/telegram-plane.d.ts b/js/brand/telegram-plane.d.ts new file mode 100644 index 000000000..a08bf1243 --- /dev/null +++ b/js/brand/telegram-plane.d.ts @@ -0,0 +1 @@ +export declare const telegramPlane: string[]; \ No newline at end of file diff --git a/js/brand/telegram-plane.js b/js/brand/telegram-plane.js new file mode 100644 index 000000000..28ac9cbf4 --- /dev/null +++ b/js/brand/telegram-plane.js @@ -0,0 +1 @@ +export const telegramPlane = ["32 32","telegram-plane"] \ No newline at end of file diff --git a/js/brand/telegram.d.ts b/js/brand/telegram.d.ts new file mode 100644 index 000000000..5f2dd9051 --- /dev/null +++ b/js/brand/telegram.d.ts @@ -0,0 +1 @@ +export declare const telegram: string[]; \ No newline at end of file diff --git a/js/brand/telegram.js b/js/brand/telegram.js index 84f2a63af..48b4e6b7f 100644 --- a/js/brand/telegram.js +++ b/js/brand/telegram.js @@ -1 +1 @@ -export const telegram = ["448 512",""] \ No newline at end of file +export const telegram = ["32 32","telegram"] \ No newline at end of file diff --git a/js/brand/tencent-qq.d.ts b/js/brand/tencent-qq.d.ts new file mode 100644 index 000000000..770de96da --- /dev/null +++ b/js/brand/tencent-qq.d.ts @@ -0,0 +1 @@ +export declare const tencentQq: string[]; \ No newline at end of file diff --git a/js/brand/tencent-qq.js b/js/brand/tencent-qq.js new file mode 100644 index 000000000..06d1fcc28 --- /dev/null +++ b/js/brand/tencent-qq.js @@ -0,0 +1 @@ +export const tencentQq = ["32 32","tencent-qq"] \ No newline at end of file diff --git a/js/brand/tencent-weibo.d.ts b/js/brand/tencent-weibo.d.ts new file mode 100644 index 000000000..1b5cfe983 --- /dev/null +++ b/js/brand/tencent-weibo.d.ts @@ -0,0 +1 @@ +export declare const tencentWeibo: string[]; \ No newline at end of file diff --git a/js/brand/tencent-weibo.js b/js/brand/tencent-weibo.js index f4e1d84e0..f6dd69964 100644 --- a/js/brand/tencent-weibo.js +++ b/js/brand/tencent-weibo.js @@ -1 +1 @@ -export const tencentWeibo = ["384 512",""] \ No newline at end of file +export const tencentWeibo = ["32 32","tencent-weibo"] \ No newline at end of file diff --git a/js/brand/tencentqq.js b/js/brand/tencentqq.js deleted file mode 100644 index e0d79b991..000000000 --- a/js/brand/tencentqq.js +++ /dev/null @@ -1 +0,0 @@ -export const tencentqq = ["24 24",""] \ No newline at end of file diff --git a/js/brand/tencentweibo.js b/js/brand/tencentweibo.js deleted file mode 100644 index c67238b98..000000000 --- a/js/brand/tencentweibo.js +++ /dev/null @@ -1 +0,0 @@ -export const tencentweibo = ["24 24",""] \ No newline at end of file diff --git a/js/brand/tensorflow.d.ts b/js/brand/tensorflow.d.ts new file mode 100644 index 000000000..87e1c5821 --- /dev/null +++ b/js/brand/tensorflow.d.ts @@ -0,0 +1 @@ +export declare const tensorflow: string[]; \ No newline at end of file diff --git a/js/brand/tensorflow.js b/js/brand/tensorflow.js index 1e31b8511..37794b9b8 100644 --- a/js/brand/tensorflow.js +++ b/js/brand/tensorflow.js @@ -1 +1 @@ -export const tensorflow = ["24 24",""] \ No newline at end of file +export const tensorflow = ["32 32","tensorflow"] \ No newline at end of file diff --git a/js/brand/terraform.d.ts b/js/brand/terraform.d.ts new file mode 100644 index 000000000..9b595ea5a --- /dev/null +++ b/js/brand/terraform.d.ts @@ -0,0 +1 @@ +export declare const terraform: string[]; \ No newline at end of file diff --git a/js/brand/terraform.js b/js/brand/terraform.js index 1b24ed6dd..c9e351bf7 100644 --- a/js/brand/terraform.js +++ b/js/brand/terraform.js @@ -1 +1 @@ -export const terraform = ["24 24",""] \ No newline at end of file +export const terraform = ["32 32","terraform"] \ No newline at end of file diff --git a/js/brand/tesla.d.ts b/js/brand/tesla.d.ts new file mode 100644 index 000000000..1c80d6b8b --- /dev/null +++ b/js/brand/tesla.d.ts @@ -0,0 +1 @@ +export declare const tesla: string[]; \ No newline at end of file diff --git a/js/brand/tesla.js b/js/brand/tesla.js index a20e69b7e..6e70d3650 100644 --- a/js/brand/tesla.js +++ b/js/brand/tesla.js @@ -1 +1 @@ -export const tesla = ["24 24",""] \ No newline at end of file +export const tesla = ["32 32","tesla"] \ No newline at end of file diff --git a/js/brand/the-mighty.d.ts b/js/brand/the-mighty.d.ts new file mode 100644 index 000000000..894200c92 --- /dev/null +++ b/js/brand/the-mighty.d.ts @@ -0,0 +1 @@ +export declare const theMighty: string[]; \ No newline at end of file diff --git a/js/brand/the-mighty.js b/js/brand/the-mighty.js new file mode 100644 index 000000000..bea5ea9c0 --- /dev/null +++ b/js/brand/the-mighty.js @@ -0,0 +1 @@ +export const theMighty = ["32 32","the-mighty"] \ No newline at end of file diff --git a/js/brand/the-movie-database.d.ts b/js/brand/the-movie-database.d.ts new file mode 100644 index 000000000..c76de41c4 --- /dev/null +++ b/js/brand/the-movie-database.d.ts @@ -0,0 +1 @@ +export declare const theMovieDatabase: string[]; \ No newline at end of file diff --git a/js/brand/the-movie-database.js b/js/brand/the-movie-database.js new file mode 100644 index 000000000..c8fb03ac0 --- /dev/null +++ b/js/brand/the-movie-database.js @@ -0,0 +1 @@ +export const theMovieDatabase = ["32 32","the-movie-database"] \ No newline at end of file diff --git a/js/brand/the-red-yeti.js b/js/brand/the-red-yeti.js deleted file mode 100644 index 1be4f01f5..000000000 --- a/js/brand/the-red-yeti.js +++ /dev/null @@ -1 +0,0 @@ -export const theRedYeti = ["512 512",""] \ No newline at end of file diff --git a/js/brand/themeco.js b/js/brand/themeco.js deleted file mode 100644 index e96fa7e84..000000000 --- a/js/brand/themeco.js +++ /dev/null @@ -1 +0,0 @@ -export const themeco = ["448 512",""] \ No newline at end of file diff --git a/js/brand/themeisle.js b/js/brand/themeisle.js deleted file mode 100644 index c3038a4ac..000000000 --- a/js/brand/themeisle.js +++ /dev/null @@ -1 +0,0 @@ -export const themeisle = ["512 512",""] \ No newline at end of file diff --git a/js/brand/themighty.js b/js/brand/themighty.js deleted file mode 100644 index fa9d9fccd..000000000 --- a/js/brand/themighty.js +++ /dev/null @@ -1 +0,0 @@ -export const themighty = ["24 24",""] \ No newline at end of file diff --git a/js/brand/themoviedatabase.js b/js/brand/themoviedatabase.js deleted file mode 100644 index c9a369060..000000000 --- a/js/brand/themoviedatabase.js +++ /dev/null @@ -1 +0,0 @@ -export const themoviedatabase = ["24 24",""] \ No newline at end of file diff --git a/js/brand/think-peaks.js b/js/brand/think-peaks.js deleted file mode 100644 index 3847ffc43..000000000 --- a/js/brand/think-peaks.js +++ /dev/null @@ -1 +0,0 @@ -export const thinkPeaks = ["576 512",""] \ No newline at end of file diff --git a/js/brand/tidal.d.ts b/js/brand/tidal.d.ts new file mode 100644 index 000000000..91fb5ba4d --- /dev/null +++ b/js/brand/tidal.d.ts @@ -0,0 +1 @@ +export declare const tidal: string[]; \ No newline at end of file diff --git a/js/brand/tidal.js b/js/brand/tidal.js index eb36718a8..685fbc7b3 100644 --- a/js/brand/tidal.js +++ b/js/brand/tidal.js @@ -1 +1 @@ -export const tidal = ["24 24",""] \ No newline at end of file +export const tidal = ["32 32","tidal"] \ No newline at end of file diff --git a/js/brand/tiktok.d.ts b/js/brand/tiktok.d.ts new file mode 100644 index 000000000..1fb843236 --- /dev/null +++ b/js/brand/tiktok.d.ts @@ -0,0 +1 @@ +export declare const tiktok: string[]; \ No newline at end of file diff --git a/js/brand/tiktok.js b/js/brand/tiktok.js index c3a886086..d08ca1afd 100644 --- a/js/brand/tiktok.js +++ b/js/brand/tiktok.js @@ -1 +1 @@ -export const tiktok = ["24 24",""] \ No newline at end of file +export const tiktok = ["32 32","tiktok"] \ No newline at end of file diff --git a/js/brand/tinder.d.ts b/js/brand/tinder.d.ts new file mode 100644 index 000000000..3fdb820fa --- /dev/null +++ b/js/brand/tinder.d.ts @@ -0,0 +1 @@ +export declare const tinder: string[]; \ No newline at end of file diff --git a/js/brand/tinder.js b/js/brand/tinder.js index e6f0b6c52..ed1aa74ed 100644 --- a/js/brand/tinder.js +++ b/js/brand/tinder.js @@ -1 +1 @@ -export const tinder = ["24 24",""] \ No newline at end of file +export const tinder = ["32 32","tinder"] \ No newline at end of file diff --git a/js/brand/todoist.d.ts b/js/brand/todoist.d.ts new file mode 100644 index 000000000..c3f92677c --- /dev/null +++ b/js/brand/todoist.d.ts @@ -0,0 +1 @@ +export declare const todoist: string[]; \ No newline at end of file diff --git a/js/brand/todoist.js b/js/brand/todoist.js index 4f1f8cc18..4ef411f67 100644 --- a/js/brand/todoist.js +++ b/js/brand/todoist.js @@ -1 +1 @@ -export const todoist = ["24 24",""] \ No newline at end of file +export const todoist = ["32 32","todoist"] \ No newline at end of file diff --git a/js/brand/toggl.d.ts b/js/brand/toggl.d.ts new file mode 100644 index 000000000..8b6764b79 --- /dev/null +++ b/js/brand/toggl.d.ts @@ -0,0 +1 @@ +export declare const toggl: string[]; \ No newline at end of file diff --git a/js/brand/toggl.js b/js/brand/toggl.js index ac372ef2d..1644f0bbe 100644 --- a/js/brand/toggl.js +++ b/js/brand/toggl.js @@ -1 +1 @@ -export const toggl = ["24 24",""] \ No newline at end of file +export const toggl = ["32 32","toggl"] \ No newline at end of file diff --git a/js/brand/topcoder.d.ts b/js/brand/topcoder.d.ts new file mode 100644 index 000000000..7c2c69871 --- /dev/null +++ b/js/brand/topcoder.d.ts @@ -0,0 +1 @@ +export declare const topcoder: string[]; \ No newline at end of file diff --git a/js/brand/topcoder.js b/js/brand/topcoder.js index 2408246eb..b75517cbc 100644 --- a/js/brand/topcoder.js +++ b/js/brand/topcoder.js @@ -1 +1 @@ -export const topcoder = ["24 24",""] \ No newline at end of file +export const topcoder = ["32 32","topcoder"] \ No newline at end of file diff --git a/js/brand/toptal.d.ts b/js/brand/toptal.d.ts new file mode 100644 index 000000000..9e8d8b8d9 --- /dev/null +++ b/js/brand/toptal.d.ts @@ -0,0 +1 @@ +export declare const toptal: string[]; \ No newline at end of file diff --git a/js/brand/toptal.js b/js/brand/toptal.js index 9cc001c55..50a701e30 100644 --- a/js/brand/toptal.js +++ b/js/brand/toptal.js @@ -1 +1 @@ -export const toptal = ["24 24",""] \ No newline at end of file +export const toptal = ["32 32","toptal"] \ No newline at end of file diff --git a/js/brand/tor.d.ts b/js/brand/tor.d.ts new file mode 100644 index 000000000..6e576646d --- /dev/null +++ b/js/brand/tor.d.ts @@ -0,0 +1 @@ +export declare const tor: string[]; \ No newline at end of file diff --git a/js/brand/tor.js b/js/brand/tor.js index c9cb90577..468da50f5 100644 --- a/js/brand/tor.js +++ b/js/brand/tor.js @@ -1 +1 @@ -export const tor = ["24 24",""] \ No newline at end of file +export const tor = ["32 32","tor"] \ No newline at end of file diff --git a/js/brand/toshiba.d.ts b/js/brand/toshiba.d.ts new file mode 100644 index 000000000..e0dc99e51 --- /dev/null +++ b/js/brand/toshiba.d.ts @@ -0,0 +1 @@ +export declare const toshiba: string[]; \ No newline at end of file diff --git a/js/brand/toshiba.js b/js/brand/toshiba.js index dba1b35e4..d9fc756f6 100644 --- a/js/brand/toshiba.js +++ b/js/brand/toshiba.js @@ -1 +1 @@ -export const toshiba = ["24 24",""] \ No newline at end of file +export const toshiba = ["32 32","toshiba"] \ No newline at end of file diff --git a/js/brand/trade-federation.js b/js/brand/trade-federation.js deleted file mode 100644 index 590f51ab5..000000000 --- a/js/brand/trade-federation.js +++ /dev/null @@ -1 +0,0 @@ -export const tradeFederation = ["496 512",""] \ No newline at end of file diff --git a/js/brand/trainerroad.d.ts b/js/brand/trainerroad.d.ts new file mode 100644 index 000000000..96f79fb9a --- /dev/null +++ b/js/brand/trainerroad.d.ts @@ -0,0 +1 @@ +export declare const trainerroad: string[]; \ No newline at end of file diff --git a/js/brand/trainerroad.js b/js/brand/trainerroad.js index f1723ead9..3beb89c67 100644 --- a/js/brand/trainerroad.js +++ b/js/brand/trainerroad.js @@ -1 +1 @@ -export const trainerroad = ["24 24",""] \ No newline at end of file +export const trainerroad = ["32 32","trainerroad"] \ No newline at end of file diff --git a/js/brand/trakt.d.ts b/js/brand/trakt.d.ts new file mode 100644 index 000000000..523fe2324 --- /dev/null +++ b/js/brand/trakt.d.ts @@ -0,0 +1 @@ +export declare const trakt: string[]; \ No newline at end of file diff --git a/js/brand/trakt.js b/js/brand/trakt.js index fdb9a4ad6..3949ec2fc 100644 --- a/js/brand/trakt.js +++ b/js/brand/trakt.js @@ -1 +1 @@ -export const trakt = ["24 24",""] \ No newline at end of file +export const trakt = ["32 32","trakt"] \ No newline at end of file diff --git a/js/brand/travisci.d.ts b/js/brand/travisci.d.ts new file mode 100644 index 000000000..ba24ae5f9 --- /dev/null +++ b/js/brand/travisci.d.ts @@ -0,0 +1 @@ +export declare const travisci: string[]; \ No newline at end of file diff --git a/js/brand/travisci.js b/js/brand/travisci.js index 68ee7c9e4..b5933e7fa 100644 --- a/js/brand/travisci.js +++ b/js/brand/travisci.js @@ -1 +1 @@ -export const travisci = ["24 24",""] \ No newline at end of file +export const travisci = ["32 32","travisci"] \ No newline at end of file diff --git a/js/brand/treehouse.d.ts b/js/brand/treehouse.d.ts new file mode 100644 index 000000000..8dd55f109 --- /dev/null +++ b/js/brand/treehouse.d.ts @@ -0,0 +1 @@ +export declare const treehouse: string[]; \ No newline at end of file diff --git a/js/brand/treehouse.js b/js/brand/treehouse.js index e1ce923dd..e773d5e54 100644 --- a/js/brand/treehouse.js +++ b/js/brand/treehouse.js @@ -1 +1 @@ -export const treehouse = ["24 24",""] \ No newline at end of file +export const treehouse = ["32 32","treehouse"] \ No newline at end of file diff --git a/js/brand/trello.d.ts b/js/brand/trello.d.ts new file mode 100644 index 000000000..73ff8bbd0 --- /dev/null +++ b/js/brand/trello.d.ts @@ -0,0 +1 @@ +export declare const trello: string[]; \ No newline at end of file diff --git a/js/brand/trello.js b/js/brand/trello.js index ebf5d45d3..7d899f18c 100644 --- a/js/brand/trello.js +++ b/js/brand/trello.js @@ -1 +1 @@ -export const trello = ["24 24",""] \ No newline at end of file +export const trello = ["32 32","trello"] \ No newline at end of file diff --git a/js/brand/tripadvisor.d.ts b/js/brand/tripadvisor.d.ts new file mode 100644 index 000000000..6a17541f7 --- /dev/null +++ b/js/brand/tripadvisor.d.ts @@ -0,0 +1 @@ +export declare const tripadvisor: string[]; \ No newline at end of file diff --git a/js/brand/tripadvisor.js b/js/brand/tripadvisor.js index 1135dbde3..757ca1499 100644 --- a/js/brand/tripadvisor.js +++ b/js/brand/tripadvisor.js @@ -1 +1 @@ -export const tripadvisor = ["24 24",""] \ No newline at end of file +export const tripadvisor = ["32 32","tripadvisor"] \ No newline at end of file diff --git a/js/brand/trulia.d.ts b/js/brand/trulia.d.ts new file mode 100644 index 000000000..2c202d464 --- /dev/null +++ b/js/brand/trulia.d.ts @@ -0,0 +1 @@ +export declare const trulia: string[]; \ No newline at end of file diff --git a/js/brand/trulia.js b/js/brand/trulia.js index 59260a8a1..91279495b 100644 --- a/js/brand/trulia.js +++ b/js/brand/trulia.js @@ -1 +1 @@ -export const trulia = ["24 24",""] \ No newline at end of file +export const trulia = ["32 32","trulia"] \ No newline at end of file diff --git a/js/brand/tumblr.d.ts b/js/brand/tumblr.d.ts new file mode 100644 index 000000000..f973fea9c --- /dev/null +++ b/js/brand/tumblr.d.ts @@ -0,0 +1 @@ +export declare const tumblr: string[]; \ No newline at end of file diff --git a/js/brand/tumblr.js b/js/brand/tumblr.js index 7b51fe789..feb589409 100644 --- a/js/brand/tumblr.js +++ b/js/brand/tumblr.js @@ -1 +1 @@ -export const tumblr = ["24 24",""] \ No newline at end of file +export const tumblr = ["32 32","tumblr"] \ No newline at end of file diff --git a/js/brand/turkishairlines.js b/js/brand/turkishairlines.js deleted file mode 100644 index 0f90da97a..000000000 --- a/js/brand/turkishairlines.js +++ /dev/null @@ -1 +0,0 @@ -export const turkishairlines = ["24 24",""] \ No newline at end of file diff --git a/js/brand/twilio.d.ts b/js/brand/twilio.d.ts new file mode 100644 index 000000000..f1ae80c7f --- /dev/null +++ b/js/brand/twilio.d.ts @@ -0,0 +1 @@ +export declare const twilio: string[]; \ No newline at end of file diff --git a/js/brand/twilio.js b/js/brand/twilio.js index f11362b6a..8d5c2e819 100644 --- a/js/brand/twilio.js +++ b/js/brand/twilio.js @@ -1 +1 @@ -export const twilio = ["24 24",""] \ No newline at end of file +export const twilio = ["32 32","twilio"] \ No newline at end of file diff --git a/js/brand/twitch.d.ts b/js/brand/twitch.d.ts new file mode 100644 index 000000000..768d7c451 --- /dev/null +++ b/js/brand/twitch.d.ts @@ -0,0 +1 @@ +export declare const twitch: string[]; \ No newline at end of file diff --git a/js/brand/twitch.js b/js/brand/twitch.js index 76362e5bd..d7b544860 100644 --- a/js/brand/twitch.js +++ b/js/brand/twitch.js @@ -1 +1 @@ -export const twitch = ["24 24",""] \ No newline at end of file +export const twitch = ["32 32","twitch"] \ No newline at end of file diff --git a/js/brand/twitter.d.ts b/js/brand/twitter.d.ts new file mode 100644 index 000000000..85063cc54 --- /dev/null +++ b/js/brand/twitter.d.ts @@ -0,0 +1 @@ +export declare const twitter: string[]; \ No newline at end of file diff --git a/js/brand/twitter.js b/js/brand/twitter.js index 50d5e5b30..d7ef1523e 100644 --- a/js/brand/twitter.js +++ b/js/brand/twitter.js @@ -1 +1 @@ -export const twitter = ["24 24",""] \ No newline at end of file +export const twitter = ["32 32","twitter"] \ No newline at end of file diff --git a/js/brand/twoo.d.ts b/js/brand/twoo.d.ts new file mode 100644 index 000000000..4dfbafe22 --- /dev/null +++ b/js/brand/twoo.d.ts @@ -0,0 +1 @@ +export declare const twoo: string[]; \ No newline at end of file diff --git a/js/brand/twoo.js b/js/brand/twoo.js index 5c3550e3b..375a8c456 100644 --- a/js/brand/twoo.js +++ b/js/brand/twoo.js @@ -1 +1 @@ -export const twoo = ["24 24",""] \ No newline at end of file +export const twoo = ["32 32","twoo"] \ No newline at end of file diff --git a/js/brand/typescript.d.ts b/js/brand/typescript.d.ts new file mode 100644 index 000000000..901281e2d --- /dev/null +++ b/js/brand/typescript.d.ts @@ -0,0 +1 @@ +export declare const typescript: string[]; \ No newline at end of file diff --git a/js/brand/typescript.js b/js/brand/typescript.js index 2e16267ee..29026a269 100644 --- a/js/brand/typescript.js +++ b/js/brand/typescript.js @@ -1 +1 @@ -export const typescript = ["24 24",""] \ No newline at end of file +export const typescript = ["32 32","typescript"] \ No newline at end of file diff --git a/js/brand/typo3.d.ts b/js/brand/typo3.d.ts new file mode 100644 index 000000000..13210e336 --- /dev/null +++ b/js/brand/typo3.d.ts @@ -0,0 +1 @@ +export declare const typo3: string[]; \ No newline at end of file diff --git a/js/brand/typo3.js b/js/brand/typo3.js index 631133376..2a121aee8 100644 --- a/js/brand/typo3.js +++ b/js/brand/typo3.js @@ -1 +1 @@ -export const typo3 = ["24 24",""] \ No newline at end of file +export const typo3 = ["32 32","typo3"] \ No newline at end of file diff --git a/js/brand/uber.d.ts b/js/brand/uber.d.ts new file mode 100644 index 000000000..529e64b21 --- /dev/null +++ b/js/brand/uber.d.ts @@ -0,0 +1 @@ +export declare const uber: string[]; \ No newline at end of file diff --git a/js/brand/uber.js b/js/brand/uber.js index 2d653c0ac..7b6281958 100644 --- a/js/brand/uber.js +++ b/js/brand/uber.js @@ -1 +1 @@ -export const uber = ["24 24",""] \ No newline at end of file +export const uber = ["32 32","uber"] \ No newline at end of file diff --git a/js/brand/ubisoft.d.ts b/js/brand/ubisoft.d.ts new file mode 100644 index 000000000..f60c4e6ab --- /dev/null +++ b/js/brand/ubisoft.d.ts @@ -0,0 +1 @@ +export declare const ubisoft: string[]; \ No newline at end of file diff --git a/js/brand/ubisoft.js b/js/brand/ubisoft.js index d4c229229..9bd761702 100644 --- a/js/brand/ubisoft.js +++ b/js/brand/ubisoft.js @@ -1 +1 @@ -export const ubisoft = ["24 24",""] \ No newline at end of file +export const ubisoft = ["32 32","ubisoft"] \ No newline at end of file diff --git a/js/brand/ublock-origin.d.ts b/js/brand/ublock-origin.d.ts new file mode 100644 index 000000000..783f28100 --- /dev/null +++ b/js/brand/ublock-origin.d.ts @@ -0,0 +1 @@ +export declare const ublockOrigin: string[]; \ No newline at end of file diff --git a/js/brand/ublock-origin.js b/js/brand/ublock-origin.js new file mode 100644 index 000000000..30e912f13 --- /dev/null +++ b/js/brand/ublock-origin.js @@ -0,0 +1 @@ +export const ublockOrigin = ["32 32","ublock-origin"] \ No newline at end of file diff --git a/js/brand/ublockorigin.js b/js/brand/ublockorigin.js deleted file mode 100644 index 23d357bd6..000000000 --- a/js/brand/ublockorigin.js +++ /dev/null @@ -1 +0,0 @@ -export const ublockorigin = ["24 24",""] \ No newline at end of file diff --git a/js/brand/ubuntu.d.ts b/js/brand/ubuntu.d.ts new file mode 100644 index 000000000..d0aea23b3 --- /dev/null +++ b/js/brand/ubuntu.d.ts @@ -0,0 +1 @@ +export declare const ubuntu: string[]; \ No newline at end of file diff --git a/js/brand/ubuntu.js b/js/brand/ubuntu.js index 6df29685b..aa0f19a6b 100644 --- a/js/brand/ubuntu.js +++ b/js/brand/ubuntu.js @@ -1 +1 @@ -export const ubuntu = ["24 24",""] \ No newline at end of file +export const ubuntu = ["32 32","ubuntu"] \ No newline at end of file diff --git a/js/brand/udacity.d.ts b/js/brand/udacity.d.ts new file mode 100644 index 000000000..acf4e891e --- /dev/null +++ b/js/brand/udacity.d.ts @@ -0,0 +1 @@ +export declare const udacity: string[]; \ No newline at end of file diff --git a/js/brand/udacity.js b/js/brand/udacity.js index d612a0ed7..da0db2581 100644 --- a/js/brand/udacity.js +++ b/js/brand/udacity.js @@ -1 +1 @@ -export const udacity = ["24 24",""] \ No newline at end of file +export const udacity = ["32 32","udacity"] \ No newline at end of file diff --git a/js/brand/udemy.d.ts b/js/brand/udemy.d.ts new file mode 100644 index 000000000..4c345b2b6 --- /dev/null +++ b/js/brand/udemy.d.ts @@ -0,0 +1 @@ +export declare const udemy: string[]; \ No newline at end of file diff --git a/js/brand/udemy.js b/js/brand/udemy.js index f4160bfeb..1ac7fb36e 100644 --- a/js/brand/udemy.js +++ b/js/brand/udemy.js @@ -1 +1 @@ -export const udemy = ["24 24",""] \ No newline at end of file +export const udemy = ["32 32","udemy"] \ No newline at end of file diff --git a/js/brand/uikit.d.ts b/js/brand/uikit.d.ts new file mode 100644 index 000000000..d05341ff9 --- /dev/null +++ b/js/brand/uikit.d.ts @@ -0,0 +1 @@ +export declare const uikit: string[]; \ No newline at end of file diff --git a/js/brand/uikit.js b/js/brand/uikit.js index dedafc2ee..8827b0a0d 100644 --- a/js/brand/uikit.js +++ b/js/brand/uikit.js @@ -1 +1 @@ -export const uikit = ["24 24",""] \ No newline at end of file +export const uikit = ["32 32","uikit"] \ No newline at end of file diff --git a/js/brand/umbraco.d.ts b/js/brand/umbraco.d.ts new file mode 100644 index 000000000..7bc00c739 --- /dev/null +++ b/js/brand/umbraco.d.ts @@ -0,0 +1 @@ +export declare const umbraco: string[]; \ No newline at end of file diff --git a/js/brand/umbraco.js b/js/brand/umbraco.js index d9eaf7f24..7b46ba104 100644 --- a/js/brand/umbraco.js +++ b/js/brand/umbraco.js @@ -1 +1 @@ -export const umbraco = ["24 24",""] \ No newline at end of file +export const umbraco = ["32 32","umbraco"] \ No newline at end of file diff --git a/js/brand/uniregistry.js b/js/brand/uniregistry.js deleted file mode 100644 index ed26d7157..000000000 --- a/js/brand/uniregistry.js +++ /dev/null @@ -1 +0,0 @@ -export const uniregistry = ["384 512",""] \ No newline at end of file diff --git a/js/brand/unity.d.ts b/js/brand/unity.d.ts new file mode 100644 index 000000000..a375669a1 --- /dev/null +++ b/js/brand/unity.d.ts @@ -0,0 +1 @@ +export declare const unity: string[]; \ No newline at end of file diff --git a/js/brand/unity.js b/js/brand/unity.js index a7fd9a6ea..ef15af4ef 100644 --- a/js/brand/unity.js +++ b/js/brand/unity.js @@ -1 +1 @@ -export const unity = ["24 24",""] \ No newline at end of file +export const unity = ["32 32","unity"] \ No newline at end of file diff --git a/js/brand/unreal-engine.d.ts b/js/brand/unreal-engine.d.ts new file mode 100644 index 000000000..62ab142d7 --- /dev/null +++ b/js/brand/unreal-engine.d.ts @@ -0,0 +1 @@ +export declare const unrealEngine: string[]; \ No newline at end of file diff --git a/js/brand/unreal-engine.js b/js/brand/unreal-engine.js new file mode 100644 index 000000000..ac95756f2 --- /dev/null +++ b/js/brand/unreal-engine.js @@ -0,0 +1 @@ +export const unrealEngine = ["32 32","unreal-engine"] \ No newline at end of file diff --git a/js/brand/unrealengine.js b/js/brand/unrealengine.js deleted file mode 100644 index c201168a9..000000000 --- a/js/brand/unrealengine.js +++ /dev/null @@ -1 +0,0 @@ -export const unrealengine = ["24 24",""] \ No newline at end of file diff --git a/js/brand/unsplash.d.ts b/js/brand/unsplash.d.ts new file mode 100644 index 000000000..c24b8d9b0 --- /dev/null +++ b/js/brand/unsplash.d.ts @@ -0,0 +1 @@ +export declare const unsplash: string[]; \ No newline at end of file diff --git a/js/brand/unsplash.js b/js/brand/unsplash.js index b83c251ee..8a53e35d8 100644 --- a/js/brand/unsplash.js +++ b/js/brand/unsplash.js @@ -1 +1 @@ -export const unsplash = ["24 24",""] \ No newline at end of file +export const unsplash = ["32 32","unsplash"] \ No newline at end of file diff --git a/js/brand/untappd.d.ts b/js/brand/untappd.d.ts new file mode 100644 index 000000000..efad0dafb --- /dev/null +++ b/js/brand/untappd.d.ts @@ -0,0 +1 @@ +export declare const untappd: string[]; \ No newline at end of file diff --git a/js/brand/untappd.js b/js/brand/untappd.js index 0bbf8e703..3d963c08d 100644 --- a/js/brand/untappd.js +++ b/js/brand/untappd.js @@ -1 +1 @@ -export const untappd = ["24 24",""] \ No newline at end of file +export const untappd = ["32 32","untappd"] \ No newline at end of file diff --git a/js/brand/ups.js b/js/brand/ups.js deleted file mode 100644 index 180cf0cb1..000000000 --- a/js/brand/ups.js +++ /dev/null @@ -1 +0,0 @@ -export const ups = ["384 512",""] \ No newline at end of file diff --git a/js/brand/upwork.d.ts b/js/brand/upwork.d.ts new file mode 100644 index 000000000..ea9254816 --- /dev/null +++ b/js/brand/upwork.d.ts @@ -0,0 +1 @@ +export declare const upwork: string[]; \ No newline at end of file diff --git a/js/brand/upwork.js b/js/brand/upwork.js index 0b89451ed..a60f43dd3 100644 --- a/js/brand/upwork.js +++ b/js/brand/upwork.js @@ -1 +1 @@ -export const upwork = ["24 24",""] \ No newline at end of file +export const upwork = ["32 32","upwork"] \ No newline at end of file diff --git a/js/brand/usb.d.ts b/js/brand/usb.d.ts new file mode 100644 index 000000000..137471d32 --- /dev/null +++ b/js/brand/usb.d.ts @@ -0,0 +1 @@ +export declare const usb: string[]; \ No newline at end of file diff --git a/js/brand/usb.js b/js/brand/usb.js index 9c5d3a394..5b3d2fef2 100644 --- a/js/brand/usb.js +++ b/js/brand/usb.js @@ -1 +1 @@ -export const usb = ["640 512",""] \ No newline at end of file +export const usb = ["32 32","usb"] \ No newline at end of file diff --git a/js/brand/usps.js b/js/brand/usps.js deleted file mode 100644 index 4fc2bbdd5..000000000 --- a/js/brand/usps.js +++ /dev/null @@ -1 +0,0 @@ -export const usps = ["576 512",""] \ No newline at end of file diff --git a/js/brand/ussunnah.js b/js/brand/ussunnah.js deleted file mode 100644 index fae9ff6ad..000000000 --- a/js/brand/ussunnah.js +++ /dev/null @@ -1 +0,0 @@ -export const ussunnah = ["512 512",""] \ No newline at end of file diff --git a/js/brand/v8.d.ts b/js/brand/v8.d.ts new file mode 100644 index 000000000..a260f53a7 --- /dev/null +++ b/js/brand/v8.d.ts @@ -0,0 +1 @@ +export declare const v8: string[]; \ No newline at end of file diff --git a/js/brand/v8.js b/js/brand/v8.js index 255437de1..0c83cfede 100644 --- a/js/brand/v8.js +++ b/js/brand/v8.js @@ -1 +1 @@ -export const v8 = ["24 24",""] \ No newline at end of file +export const v8 = ["32 32","v8"] \ No newline at end of file diff --git a/js/brand/vaadin.js b/js/brand/vaadin.js deleted file mode 100644 index 7bbf04e35..000000000 --- a/js/brand/vaadin.js +++ /dev/null @@ -1 +0,0 @@ -export const vaadin = ["448 512",""] \ No newline at end of file diff --git a/js/brand/vagrant.d.ts b/js/brand/vagrant.d.ts new file mode 100644 index 000000000..a2c6b5236 --- /dev/null +++ b/js/brand/vagrant.d.ts @@ -0,0 +1 @@ +export declare const vagrant: string[]; \ No newline at end of file diff --git a/js/brand/vagrant.js b/js/brand/vagrant.js index e0a7d61ea..b033dc1d7 100644 --- a/js/brand/vagrant.js +++ b/js/brand/vagrant.js @@ -1 +1 @@ -export const vagrant = ["24 24",""] \ No newline at end of file +export const vagrant = ["32 32","vagrant"] \ No newline at end of file diff --git a/js/brand/venmo.d.ts b/js/brand/venmo.d.ts new file mode 100644 index 000000000..784658f36 --- /dev/null +++ b/js/brand/venmo.d.ts @@ -0,0 +1 @@ +export declare const venmo: string[]; \ No newline at end of file diff --git a/js/brand/venmo.js b/js/brand/venmo.js index 80b048e20..5dafd1633 100644 --- a/js/brand/venmo.js +++ b/js/brand/venmo.js @@ -1 +1 @@ -export const venmo = ["24 24",""] \ No newline at end of file +export const venmo = ["32 32","venmo"] \ No newline at end of file diff --git a/js/brand/verizon.d.ts b/js/brand/verizon.d.ts new file mode 100644 index 000000000..f6ffa3fcf --- /dev/null +++ b/js/brand/verizon.d.ts @@ -0,0 +1 @@ +export declare const verizon: string[]; \ No newline at end of file diff --git a/js/brand/verizon.js b/js/brand/verizon.js index 24459c7a8..d8a3977ec 100644 --- a/js/brand/verizon.js +++ b/js/brand/verizon.js @@ -1 +1 @@ -export const verizon = ["24 24",""] \ No newline at end of file +export const verizon = ["32 32","verizon"] \ No newline at end of file diff --git a/js/brand/viacoin.js b/js/brand/viacoin.js deleted file mode 100644 index e4a0fae95..000000000 --- a/js/brand/viacoin.js +++ /dev/null @@ -1 +0,0 @@ -export const viacoin = ["384 512",""] \ No newline at end of file diff --git a/js/brand/viadeo.d.ts b/js/brand/viadeo.d.ts new file mode 100644 index 000000000..be6a0cbec --- /dev/null +++ b/js/brand/viadeo.d.ts @@ -0,0 +1 @@ +export declare const viadeo: string[]; \ No newline at end of file diff --git a/js/brand/viadeo.js b/js/brand/viadeo.js index fcab2e08a..c3e6d2c33 100644 --- a/js/brand/viadeo.js +++ b/js/brand/viadeo.js @@ -1 +1 @@ -export const viadeo = ["24 24",""] \ No newline at end of file +export const viadeo = ["32 32","viadeo"] \ No newline at end of file diff --git a/js/brand/viber.d.ts b/js/brand/viber.d.ts new file mode 100644 index 000000000..243cdaf3e --- /dev/null +++ b/js/brand/viber.d.ts @@ -0,0 +1 @@ +export declare const viber: string[]; \ No newline at end of file diff --git a/js/brand/viber.js b/js/brand/viber.js index 682fb8d07..138a51882 100644 --- a/js/brand/viber.js +++ b/js/brand/viber.js @@ -1 +1 @@ -export const viber = ["24 24",""] \ No newline at end of file +export const viber = ["32 32","viber"] \ No newline at end of file diff --git a/js/brand/vim.d.ts b/js/brand/vim.d.ts new file mode 100644 index 000000000..4155ed077 --- /dev/null +++ b/js/brand/vim.d.ts @@ -0,0 +1 @@ +export declare const vim: string[]; \ No newline at end of file diff --git a/js/brand/vim.js b/js/brand/vim.js index 80d0022df..1d1f716b0 100644 --- a/js/brand/vim.js +++ b/js/brand/vim.js @@ -1 +1 @@ -export const vim = ["24 24",""] \ No newline at end of file +export const vim = ["32 32","vim"] \ No newline at end of file diff --git a/js/brand/vimeo-v.d.ts b/js/brand/vimeo-v.d.ts new file mode 100644 index 000000000..e05590f74 --- /dev/null +++ b/js/brand/vimeo-v.d.ts @@ -0,0 +1 @@ +export declare const vimeoV: string[]; \ No newline at end of file diff --git a/js/brand/vimeo-v.js b/js/brand/vimeo-v.js new file mode 100644 index 000000000..90de2fad1 --- /dev/null +++ b/js/brand/vimeo-v.js @@ -0,0 +1 @@ +export const vimeoV = ["32 32","vimeo-v"] \ No newline at end of file diff --git a/js/brand/vimeo.d.ts b/js/brand/vimeo.d.ts new file mode 100644 index 000000000..90840f9c0 --- /dev/null +++ b/js/brand/vimeo.d.ts @@ -0,0 +1 @@ +export declare const vimeo: string[]; \ No newline at end of file diff --git a/js/brand/vimeo.js b/js/brand/vimeo.js index 118618955..adbdba2f0 100644 --- a/js/brand/vimeo.js +++ b/js/brand/vimeo.js @@ -1 +1 @@ -export const vimeo = ["24 24",""] \ No newline at end of file +export const vimeo = ["32 32","vimeo"] \ No newline at end of file diff --git a/js/brand/vine.d.ts b/js/brand/vine.d.ts new file mode 100644 index 000000000..10d41e7da --- /dev/null +++ b/js/brand/vine.d.ts @@ -0,0 +1 @@ +export declare const vine: string[]; \ No newline at end of file diff --git a/js/brand/vine.js b/js/brand/vine.js index 002e480a9..e242defd4 100644 --- a/js/brand/vine.js +++ b/js/brand/vine.js @@ -1 +1 @@ -export const vine = ["24 24",""] \ No newline at end of file +export const vine = ["32 32","vine"] \ No newline at end of file diff --git a/js/brand/virb.d.ts b/js/brand/virb.d.ts new file mode 100644 index 000000000..6c4d926c1 --- /dev/null +++ b/js/brand/virb.d.ts @@ -0,0 +1 @@ +export declare const virb: string[]; \ No newline at end of file diff --git a/js/brand/virb.js b/js/brand/virb.js index a7c75a515..ebe3d5d1a 100644 --- a/js/brand/virb.js +++ b/js/brand/virb.js @@ -1 +1 @@ -export const virb = ["24 24",""] \ No newline at end of file +export const virb = ["32 32","virb"] \ No newline at end of file diff --git a/js/brand/visa.d.ts b/js/brand/visa.d.ts new file mode 100644 index 000000000..da7b83504 --- /dev/null +++ b/js/brand/visa.d.ts @@ -0,0 +1 @@ +export declare const visa: string[]; \ No newline at end of file diff --git a/js/brand/visa.js b/js/brand/visa.js index c6efe8e72..7d79ccb7e 100644 --- a/js/brand/visa.js +++ b/js/brand/visa.js @@ -1 +1 @@ -export const visa = ["24 24",""] \ No newline at end of file +export const visa = ["32 32","visa"] \ No newline at end of file diff --git a/js/brand/visual-studio-code.d.ts b/js/brand/visual-studio-code.d.ts new file mode 100644 index 000000000..6ab82d6e3 --- /dev/null +++ b/js/brand/visual-studio-code.d.ts @@ -0,0 +1 @@ +export declare const visualStudioCode: string[]; \ No newline at end of file diff --git a/js/brand/visual-studio-code.js b/js/brand/visual-studio-code.js new file mode 100644 index 000000000..677cd0df6 --- /dev/null +++ b/js/brand/visual-studio-code.js @@ -0,0 +1 @@ +export const visualStudioCode = ["32 32","visual-studio-code"] \ No newline at end of file diff --git a/js/brand/visual-studio.d.ts b/js/brand/visual-studio.d.ts new file mode 100644 index 000000000..e79a1a78d --- /dev/null +++ b/js/brand/visual-studio.d.ts @@ -0,0 +1 @@ +export declare const visualStudio: string[]; \ No newline at end of file diff --git a/js/brand/visual-studio.js b/js/brand/visual-studio.js new file mode 100644 index 000000000..e5186576f --- /dev/null +++ b/js/brand/visual-studio.js @@ -0,0 +1 @@ +export const visualStudio = ["32 32","visual-studio"] \ No newline at end of file diff --git a/js/brand/visualstudio.js b/js/brand/visualstudio.js deleted file mode 100644 index 76185ff0a..000000000 --- a/js/brand/visualstudio.js +++ /dev/null @@ -1 +0,0 @@ -export const visualstudio = ["24 24",""] \ No newline at end of file diff --git a/js/brand/visualstudiocode.js b/js/brand/visualstudiocode.js deleted file mode 100644 index 7b981bb4d..000000000 --- a/js/brand/visualstudiocode.js +++ /dev/null @@ -1 +0,0 @@ -export const visualstudiocode = ["24 24",""] \ No newline at end of file diff --git a/js/brand/vk.d.ts b/js/brand/vk.d.ts new file mode 100644 index 000000000..508037170 --- /dev/null +++ b/js/brand/vk.d.ts @@ -0,0 +1 @@ +export declare const vk: string[]; \ No newline at end of file diff --git a/js/brand/vk.js b/js/brand/vk.js index 3a28046a4..89d666c71 100644 --- a/js/brand/vk.js +++ b/js/brand/vk.js @@ -1 +1 @@ -export const vk = ["24 24",""] \ No newline at end of file +export const vk = ["32 32","vk"] \ No newline at end of file diff --git a/js/brand/vlc.d.ts b/js/brand/vlc.d.ts new file mode 100644 index 000000000..ca00b0892 --- /dev/null +++ b/js/brand/vlc.d.ts @@ -0,0 +1 @@ +export declare const vlc: string[]; \ No newline at end of file diff --git a/js/brand/vlc.js b/js/brand/vlc.js index 904d08abd..c89e651d5 100644 --- a/js/brand/vlc.js +++ b/js/brand/vlc.js @@ -1 +1 @@ -export const vlc = ["24 24",""] \ No newline at end of file +export const vlc = ["32 32","vlc"] \ No newline at end of file diff --git a/js/brand/vnv.js b/js/brand/vnv.js deleted file mode 100644 index cc863889a..000000000 --- a/js/brand/vnv.js +++ /dev/null @@ -1 +0,0 @@ -export const vnv = ["640 512",""] \ No newline at end of file diff --git a/js/brand/vsco.d.ts b/js/brand/vsco.d.ts new file mode 100644 index 000000000..765835f9a --- /dev/null +++ b/js/brand/vsco.d.ts @@ -0,0 +1 @@ +export declare const vsco: string[]; \ No newline at end of file diff --git a/js/brand/vsco.js b/js/brand/vsco.js index 81cc675c4..0d324b1f8 100644 --- a/js/brand/vsco.js +++ b/js/brand/vsco.js @@ -1 +1 @@ -export const vsco = ["24 24",""] \ No newline at end of file +export const vsco = ["32 32","vsco"] \ No newline at end of file diff --git a/js/brand/vue-js.d.ts b/js/brand/vue-js.d.ts new file mode 100644 index 000000000..0cb49e146 --- /dev/null +++ b/js/brand/vue-js.d.ts @@ -0,0 +1 @@ +export declare const vueJs: string[]; \ No newline at end of file diff --git a/js/brand/vue-js.js b/js/brand/vue-js.js index f89bbdafd..4cc9aee30 100644 --- a/js/brand/vue-js.js +++ b/js/brand/vue-js.js @@ -1 +1 @@ -export const vueJs = ["24 24",""] \ No newline at end of file +export const vueJs = ["32 32","vue-js"] \ No newline at end of file diff --git a/js/brand/vuejs.js b/js/brand/vuejs.js deleted file mode 100644 index 260a2be13..000000000 --- a/js/brand/vuejs.js +++ /dev/null @@ -1 +0,0 @@ -export const vuejs = ["448 512",""] \ No newline at end of file diff --git a/js/brand/wattpad.d.ts b/js/brand/wattpad.d.ts new file mode 100644 index 000000000..829efe8b7 --- /dev/null +++ b/js/brand/wattpad.d.ts @@ -0,0 +1 @@ +export declare const wattpad: string[]; \ No newline at end of file diff --git a/js/brand/wattpad.js b/js/brand/wattpad.js index 16b265a35..cd07e1949 100644 --- a/js/brand/wattpad.js +++ b/js/brand/wattpad.js @@ -1 +1 @@ -export const wattpad = ["24 24",""] \ No newline at end of file +export const wattpad = ["32 32","wattpad"] \ No newline at end of file diff --git a/js/brand/waze.js b/js/brand/waze.js deleted file mode 100644 index a2df34b08..000000000 --- a/js/brand/waze.js +++ /dev/null @@ -1 +0,0 @@ -export const waze = ["512 512",""] \ No newline at end of file diff --git a/js/brand/weasyl.d.ts b/js/brand/weasyl.d.ts new file mode 100644 index 000000000..2d7a927b1 --- /dev/null +++ b/js/brand/weasyl.d.ts @@ -0,0 +1 @@ +export declare const weasyl: string[]; \ No newline at end of file diff --git a/js/brand/weasyl.js b/js/brand/weasyl.js index da259eebd..24ca0b280 100644 --- a/js/brand/weasyl.js +++ b/js/brand/weasyl.js @@ -1 +1 @@ -export const weasyl = ["24 24",""] \ No newline at end of file +export const weasyl = ["32 32","weasyl"] \ No newline at end of file diff --git a/js/brand/webcomponents-dot-org.js b/js/brand/webcomponents-dot-org.js deleted file mode 100644 index 2669f0432..000000000 --- a/js/brand/webcomponents-dot-org.js +++ /dev/null @@ -1 +0,0 @@ -export const webcomponentsDotOrg = ["24 24",""] \ No newline at end of file diff --git a/js/brand/webcomponents-org.d.ts b/js/brand/webcomponents-org.d.ts new file mode 100644 index 000000000..c89db7e6e --- /dev/null +++ b/js/brand/webcomponents-org.d.ts @@ -0,0 +1 @@ +export declare const webcomponentsOrg: string[]; \ No newline at end of file diff --git a/js/brand/webcomponents-org.js b/js/brand/webcomponents-org.js new file mode 100644 index 000000000..cd668ac04 --- /dev/null +++ b/js/brand/webcomponents-org.js @@ -0,0 +1 @@ +export const webcomponentsOrg = ["32 32","webcomponents-org"] \ No newline at end of file diff --git a/js/brand/webpack.d.ts b/js/brand/webpack.d.ts new file mode 100644 index 000000000..a3522b034 --- /dev/null +++ b/js/brand/webpack.d.ts @@ -0,0 +1 @@ +export declare const webpack: string[]; \ No newline at end of file diff --git a/js/brand/webpack.js b/js/brand/webpack.js index ea435622f..565041f09 100644 --- a/js/brand/webpack.js +++ b/js/brand/webpack.js @@ -1 +1 @@ -export const webpack = ["24 24",""] \ No newline at end of file +export const webpack = ["32 32","webpack"] \ No newline at end of file diff --git a/js/brand/webstorm.d.ts b/js/brand/webstorm.d.ts new file mode 100644 index 000000000..b725df1f1 --- /dev/null +++ b/js/brand/webstorm.d.ts @@ -0,0 +1 @@ +export declare const webstorm: string[]; \ No newline at end of file diff --git a/js/brand/webstorm.js b/js/brand/webstorm.js index c482b8ba0..02fa4e912 100644 --- a/js/brand/webstorm.js +++ b/js/brand/webstorm.js @@ -1 +1 @@ -export const webstorm = ["24 24",""] \ No newline at end of file +export const webstorm = ["32 32","webstorm"] \ No newline at end of file diff --git a/js/brand/wechat.d.ts b/js/brand/wechat.d.ts new file mode 100644 index 000000000..10f96f0a0 --- /dev/null +++ b/js/brand/wechat.d.ts @@ -0,0 +1 @@ +export declare const wechat: string[]; \ No newline at end of file diff --git a/js/brand/wechat.js b/js/brand/wechat.js index aa95a96a6..b81321ffd 100644 --- a/js/brand/wechat.js +++ b/js/brand/wechat.js @@ -1 +1 @@ -export const wechat = ["24 24",""] \ No newline at end of file +export const wechat = ["32 32","wechat"] \ No newline at end of file diff --git a/js/brand/weebly.js b/js/brand/weebly.js deleted file mode 100644 index de5064e9a..000000000 --- a/js/brand/weebly.js +++ /dev/null @@ -1 +0,0 @@ -export const weebly = ["512 512",""] \ No newline at end of file diff --git a/js/brand/weibo.js b/js/brand/weibo.js deleted file mode 100644 index 85b18245a..000000000 --- a/js/brand/weibo.js +++ /dev/null @@ -1 +0,0 @@ -export const weibo = ["512 512",""] \ No newline at end of file diff --git a/js/brand/weixin.js b/js/brand/weixin.js deleted file mode 100644 index a7f69b5c1..000000000 --- a/js/brand/weixin.js +++ /dev/null @@ -1 +0,0 @@ -export const weixin = ["576 512",""] \ No newline at end of file diff --git a/js/brand/whatsapp.d.ts b/js/brand/whatsapp.d.ts new file mode 100644 index 000000000..6cb32ee25 --- /dev/null +++ b/js/brand/whatsapp.d.ts @@ -0,0 +1 @@ +export declare const whatsapp: string[]; \ No newline at end of file diff --git a/js/brand/whatsapp.js b/js/brand/whatsapp.js index b8e4785c4..21615ab16 100644 --- a/js/brand/whatsapp.js +++ b/js/brand/whatsapp.js @@ -1 +1 @@ -export const whatsapp = ["24 24",""] \ No newline at end of file +export const whatsapp = ["32 32","whatsapp"] \ No newline at end of file diff --git a/js/brand/when-i-work.d.ts b/js/brand/when-i-work.d.ts new file mode 100644 index 000000000..68f784dfe --- /dev/null +++ b/js/brand/when-i-work.d.ts @@ -0,0 +1 @@ +export declare const whenIWork: string[]; \ No newline at end of file diff --git a/js/brand/when-i-work.js b/js/brand/when-i-work.js new file mode 100644 index 000000000..6328a7fac --- /dev/null +++ b/js/brand/when-i-work.js @@ -0,0 +1 @@ +export const whenIWork = ["32 32","when-i-work"] \ No newline at end of file diff --git a/js/brand/wheniwork.js b/js/brand/wheniwork.js deleted file mode 100644 index 33758eb83..000000000 --- a/js/brand/wheniwork.js +++ /dev/null @@ -1 +0,0 @@ -export const wheniwork = ["24 24",""] \ No newline at end of file diff --git a/js/brand/whmcs.js b/js/brand/whmcs.js deleted file mode 100644 index 6439d2416..000000000 --- a/js/brand/whmcs.js +++ /dev/null @@ -1 +0,0 @@ -export const whmcs = ["448 512",""] \ No newline at end of file diff --git a/js/brand/wii.d.ts b/js/brand/wii.d.ts new file mode 100644 index 000000000..46c4f803c --- /dev/null +++ b/js/brand/wii.d.ts @@ -0,0 +1 @@ +export declare const wii: string[]; \ No newline at end of file diff --git a/js/brand/wii.js b/js/brand/wii.js index 56b3abc32..9087a6708 100644 --- a/js/brand/wii.js +++ b/js/brand/wii.js @@ -1 +1 @@ -export const wii = ["24 24",""] \ No newline at end of file +export const wii = ["32 32","wii"] \ No newline at end of file diff --git a/js/brand/wiiu.d.ts b/js/brand/wiiu.d.ts new file mode 100644 index 000000000..4bb54b0ba --- /dev/null +++ b/js/brand/wiiu.d.ts @@ -0,0 +1 @@ +export declare const wiiu: string[]; \ No newline at end of file diff --git a/js/brand/wiiu.js b/js/brand/wiiu.js index eb268506d..e68dd1e7f 100644 --- a/js/brand/wiiu.js +++ b/js/brand/wiiu.js @@ -1 +1 @@ -export const wiiu = ["24 24",""] \ No newline at end of file +export const wiiu = ["32 32","wiiu"] \ No newline at end of file diff --git a/js/brand/wikipedia.d.ts b/js/brand/wikipedia.d.ts new file mode 100644 index 000000000..b83c98b88 --- /dev/null +++ b/js/brand/wikipedia.d.ts @@ -0,0 +1 @@ +export declare const wikipedia: string[]; \ No newline at end of file diff --git a/js/brand/wikipedia.js b/js/brand/wikipedia.js index f19b3e88b..45c174a5a 100644 --- a/js/brand/wikipedia.js +++ b/js/brand/wikipedia.js @@ -1 +1 @@ -export const wikipedia = ["24 24",""] \ No newline at end of file +export const wikipedia = ["32 32","wikipedia"] \ No newline at end of file diff --git a/js/brand/windows.d.ts b/js/brand/windows.d.ts new file mode 100644 index 000000000..e2922e96b --- /dev/null +++ b/js/brand/windows.d.ts @@ -0,0 +1 @@ +export declare const windows: string[]; \ No newline at end of file diff --git a/js/brand/windows.js b/js/brand/windows.js index fe5701a50..b275301ca 100644 --- a/js/brand/windows.js +++ b/js/brand/windows.js @@ -1 +1 @@ -export const windows = ["24 24",""] \ No newline at end of file +export const windows = ["32 32","windows"] \ No newline at end of file diff --git a/js/brand/wire.d.ts b/js/brand/wire.d.ts new file mode 100644 index 000000000..e48535b2c --- /dev/null +++ b/js/brand/wire.d.ts @@ -0,0 +1 @@ +export declare const wire: string[]; \ No newline at end of file diff --git a/js/brand/wire.js b/js/brand/wire.js index 849f16347..a3ec34082 100644 --- a/js/brand/wire.js +++ b/js/brand/wire.js @@ -1 +1 @@ -export const wire = ["24 24",""] \ No newline at end of file +export const wire = ["32 32","wire"] \ No newline at end of file diff --git a/js/brand/wireguard.d.ts b/js/brand/wireguard.d.ts new file mode 100644 index 000000000..96e79b8ac --- /dev/null +++ b/js/brand/wireguard.d.ts @@ -0,0 +1 @@ +export declare const wireguard: string[]; \ No newline at end of file diff --git a/js/brand/wireguard.js b/js/brand/wireguard.js index 999913c4e..366249dbb 100644 --- a/js/brand/wireguard.js +++ b/js/brand/wireguard.js @@ -1 +1 @@ -export const wireguard = ["24 24",""] \ No newline at end of file +export const wireguard = ["32 32","wireguard"] \ No newline at end of file diff --git a/js/brand/wix.d.ts b/js/brand/wix.d.ts new file mode 100644 index 000000000..05b31e136 --- /dev/null +++ b/js/brand/wix.d.ts @@ -0,0 +1 @@ +export declare const wix: string[]; \ No newline at end of file diff --git a/js/brand/wix.js b/js/brand/wix.js index 23d8e1632..dba48c676 100644 --- a/js/brand/wix.js +++ b/js/brand/wix.js @@ -1 +1 @@ -export const wix = ["24 24",""] \ No newline at end of file +export const wix = ["32 32","wix"] \ No newline at end of file diff --git a/js/brand/wizards-of-the-coast.js b/js/brand/wizards-of-the-coast.js deleted file mode 100644 index 040da7f89..000000000 --- a/js/brand/wizards-of-the-coast.js +++ /dev/null @@ -1 +0,0 @@ -export const wizardsOfTheCoast = ["640 512",""] \ No newline at end of file diff --git a/js/brand/wolf-pack-battalion.js b/js/brand/wolf-pack-battalion.js deleted file mode 100644 index e2ed79616..000000000 --- a/js/brand/wolf-pack-battalion.js +++ /dev/null @@ -1 +0,0 @@ -export const wolfPackBattalion = ["512 512",""] \ No newline at end of file diff --git a/js/brand/wolfram-language.d.ts b/js/brand/wolfram-language.d.ts new file mode 100644 index 000000000..cbf8054f7 --- /dev/null +++ b/js/brand/wolfram-language.d.ts @@ -0,0 +1 @@ +export declare const wolframLanguage: string[]; \ No newline at end of file diff --git a/js/brand/wolfram-language.js b/js/brand/wolfram-language.js index 38262694b..e4ca2ce37 100644 --- a/js/brand/wolfram-language.js +++ b/js/brand/wolfram-language.js @@ -1 +1 @@ -export const wolframLanguage = ["24 24",""] \ No newline at end of file +export const wolframLanguage = ["32 32","wolfram-language"] \ No newline at end of file diff --git a/js/brand/wolfram-mathematica.d.ts b/js/brand/wolfram-mathematica.d.ts new file mode 100644 index 000000000..a75d4eec7 --- /dev/null +++ b/js/brand/wolfram-mathematica.d.ts @@ -0,0 +1 @@ +export declare const wolframMathematica: string[]; \ No newline at end of file diff --git a/js/brand/wolfram-mathematica.js b/js/brand/wolfram-mathematica.js index 22a3d3e05..f9f1b5d8d 100644 --- a/js/brand/wolfram-mathematica.js +++ b/js/brand/wolfram-mathematica.js @@ -1 +1 @@ -export const wolframMathematica = ["24 24",""] \ No newline at end of file +export const wolframMathematica = ["32 32","wolfram-mathematica"] \ No newline at end of file diff --git a/js/brand/wolfram.d.ts b/js/brand/wolfram.d.ts new file mode 100644 index 000000000..205502796 --- /dev/null +++ b/js/brand/wolfram.d.ts @@ -0,0 +1 @@ +export declare const wolfram: string[]; \ No newline at end of file diff --git a/js/brand/wolfram.js b/js/brand/wolfram.js index 53ab0ecf1..160ed3885 100644 --- a/js/brand/wolfram.js +++ b/js/brand/wolfram.js @@ -1 +1 @@ -export const wolfram = ["24 24",""] \ No newline at end of file +export const wolfram = ["32 32","wolfram"] \ No newline at end of file diff --git a/js/brand/wordpress.d.ts b/js/brand/wordpress.d.ts new file mode 100644 index 000000000..af9b87edd --- /dev/null +++ b/js/brand/wordpress.d.ts @@ -0,0 +1 @@ +export declare const wordpress: string[]; \ No newline at end of file diff --git a/js/brand/wordpress.js b/js/brand/wordpress.js index ea59cf5b1..2f13af3d3 100644 --- a/js/brand/wordpress.js +++ b/js/brand/wordpress.js @@ -1 +1 @@ -export const wordpress = ["24 24",""] \ No newline at end of file +export const wordpress = ["32 32","wordpress"] \ No newline at end of file diff --git a/js/brand/wpbeginner.js b/js/brand/wpbeginner.js deleted file mode 100644 index 906f110c5..000000000 --- a/js/brand/wpbeginner.js +++ /dev/null @@ -1 +0,0 @@ -export const wpbeginner = ["512 512",""] \ No newline at end of file diff --git a/js/brand/wpengine.d.ts b/js/brand/wpengine.d.ts new file mode 100644 index 000000000..1bedfadb2 --- /dev/null +++ b/js/brand/wpengine.d.ts @@ -0,0 +1 @@ +export declare const wpengine: string[]; \ No newline at end of file diff --git a/js/brand/wpengine.js b/js/brand/wpengine.js index 6f5f5f660..9daa886d5 100644 --- a/js/brand/wpengine.js +++ b/js/brand/wpengine.js @@ -1 +1 @@ -export const wpengine = ["24 24",""] \ No newline at end of file +export const wpengine = ["32 32","wpengine"] \ No newline at end of file diff --git a/js/brand/wpexplorer.js b/js/brand/wpexplorer.js deleted file mode 100644 index 51ca788c2..000000000 --- a/js/brand/wpexplorer.js +++ /dev/null @@ -1 +0,0 @@ -export const wpexplorer = ["512 512",""] \ No newline at end of file diff --git a/js/brand/wpforms.js b/js/brand/wpforms.js deleted file mode 100644 index 0892e39a7..000000000 --- a/js/brand/wpforms.js +++ /dev/null @@ -1 +0,0 @@ -export const wpforms = ["448 512",""] \ No newline at end of file diff --git a/js/brand/wpressr.js b/js/brand/wpressr.js deleted file mode 100644 index f7837a440..000000000 --- a/js/brand/wpressr.js +++ /dev/null @@ -1 +0,0 @@ -export const wpressr = ["496 512",""] \ No newline at end of file diff --git a/js/brand/x-pack.d.ts b/js/brand/x-pack.d.ts new file mode 100644 index 000000000..d60b75a07 --- /dev/null +++ b/js/brand/x-pack.d.ts @@ -0,0 +1 @@ +export declare const xPack: string[]; \ No newline at end of file diff --git a/js/brand/x-pack.js b/js/brand/x-pack.js index b62b34f06..0da2ce3f0 100644 --- a/js/brand/x-pack.js +++ b/js/brand/x-pack.js @@ -1 +1 @@ -export const xPack = ["24 24",""] \ No newline at end of file +export const xPack = ["32 32","x-pack"] \ No newline at end of file diff --git a/js/brand/xbox.d.ts b/js/brand/xbox.d.ts new file mode 100644 index 000000000..1ec052099 --- /dev/null +++ b/js/brand/xbox.d.ts @@ -0,0 +1 @@ +export declare const xbox: string[]; \ No newline at end of file diff --git a/js/brand/xbox.js b/js/brand/xbox.js index c0e9aec07..d674001b4 100644 --- a/js/brand/xbox.js +++ b/js/brand/xbox.js @@ -1 +1 @@ -export const xbox = ["24 24",""] \ No newline at end of file +export const xbox = ["32 32","xbox"] \ No newline at end of file diff --git a/js/brand/xcode.d.ts b/js/brand/xcode.d.ts new file mode 100644 index 000000000..01517c727 --- /dev/null +++ b/js/brand/xcode.d.ts @@ -0,0 +1 @@ +export declare const xcode: string[]; \ No newline at end of file diff --git a/js/brand/xcode.js b/js/brand/xcode.js index eb5a4f0dc..19d0cb71d 100644 --- a/js/brand/xcode.js +++ b/js/brand/xcode.js @@ -1 +1 @@ -export const xcode = ["24 24",""] \ No newline at end of file +export const xcode = ["32 32","xcode"] \ No newline at end of file diff --git a/js/brand/xero.d.ts b/js/brand/xero.d.ts new file mode 100644 index 000000000..7fcbfac2f --- /dev/null +++ b/js/brand/xero.d.ts @@ -0,0 +1 @@ +export declare const xero: string[]; \ No newline at end of file diff --git a/js/brand/xero.js b/js/brand/xero.js index e875e64ee..ed76ca3ad 100644 --- a/js/brand/xero.js +++ b/js/brand/xero.js @@ -1 +1 @@ -export const xero = ["24 24",""] \ No newline at end of file +export const xero = ["32 32","xero"] \ No newline at end of file diff --git a/js/brand/xiaomi.d.ts b/js/brand/xiaomi.d.ts new file mode 100644 index 000000000..65fff61f0 --- /dev/null +++ b/js/brand/xiaomi.d.ts @@ -0,0 +1 @@ +export declare const xiaomi: string[]; \ No newline at end of file diff --git a/js/brand/xiaomi.js b/js/brand/xiaomi.js index 823a4dba5..94a650d1b 100644 --- a/js/brand/xiaomi.js +++ b/js/brand/xiaomi.js @@ -1 +1 @@ -export const xiaomi = ["24 24",""] \ No newline at end of file +export const xiaomi = ["32 32","xiaomi"] \ No newline at end of file diff --git a/js/brand/xing.d.ts b/js/brand/xing.d.ts new file mode 100644 index 000000000..f7fdc4200 --- /dev/null +++ b/js/brand/xing.d.ts @@ -0,0 +1 @@ +export declare const xing: string[]; \ No newline at end of file diff --git a/js/brand/xing.js b/js/brand/xing.js index 8d251c0dd..43964dcad 100644 --- a/js/brand/xing.js +++ b/js/brand/xing.js @@ -1 +1 @@ -export const xing = ["24 24",""] \ No newline at end of file +export const xing = ["32 32","xing"] \ No newline at end of file diff --git a/js/brand/xrp.d.ts b/js/brand/xrp.d.ts new file mode 100644 index 000000000..4b26230aa --- /dev/null +++ b/js/brand/xrp.d.ts @@ -0,0 +1 @@ +export declare const xrp: string[]; \ No newline at end of file diff --git a/js/brand/xrp.js b/js/brand/xrp.js index f17f4435c..15e3bc760 100644 --- a/js/brand/xrp.js +++ b/js/brand/xrp.js @@ -1 +1 @@ -export const xrp = ["24 24",""] \ No newline at end of file +export const xrp = ["32 32","xrp"] \ No newline at end of file diff --git a/js/brand/xsplit.d.ts b/js/brand/xsplit.d.ts new file mode 100644 index 000000000..f464ef354 --- /dev/null +++ b/js/brand/xsplit.d.ts @@ -0,0 +1 @@ +export declare const xsplit: string[]; \ No newline at end of file diff --git a/js/brand/xsplit.js b/js/brand/xsplit.js index 21ae6e5f8..e5932a29c 100644 --- a/js/brand/xsplit.js +++ b/js/brand/xsplit.js @@ -1 +1 @@ -export const xsplit = ["24 24",""] \ No newline at end of file +export const xsplit = ["32 32","xsplit"] \ No newline at end of file diff --git a/js/brand/y-combinator.d.ts b/js/brand/y-combinator.d.ts new file mode 100644 index 000000000..5998f41a6 --- /dev/null +++ b/js/brand/y-combinator.d.ts @@ -0,0 +1 @@ +export declare const yCombinator: string[]; \ No newline at end of file diff --git a/js/brand/y-combinator.js b/js/brand/y-combinator.js new file mode 100644 index 000000000..01d2341df --- /dev/null +++ b/js/brand/y-combinator.js @@ -0,0 +1 @@ +export const yCombinator = ["32 32","y-combinator"] \ No newline at end of file diff --git a/js/brand/yahoo.d.ts b/js/brand/yahoo.d.ts new file mode 100644 index 000000000..7955175f5 --- /dev/null +++ b/js/brand/yahoo.d.ts @@ -0,0 +1 @@ +export declare const yahoo: string[]; \ No newline at end of file diff --git a/js/brand/yahoo.js b/js/brand/yahoo.js index 507937a9a..756f13bc0 100644 --- a/js/brand/yahoo.js +++ b/js/brand/yahoo.js @@ -1 +1 @@ -export const yahoo = ["24 24",""] \ No newline at end of file +export const yahoo = ["32 32","yahoo"] \ No newline at end of file diff --git a/js/brand/yamaha-corporation.js b/js/brand/yamaha-corporation.js deleted file mode 100644 index 133f4364f..000000000 --- a/js/brand/yamaha-corporation.js +++ /dev/null @@ -1 +0,0 @@ -export const yamahaCorporation = ["24 24",""] \ No newline at end of file diff --git a/js/brand/yamaha-motor-corporation.js b/js/brand/yamaha-motor-corporation.js deleted file mode 100644 index b4d53cbb7..000000000 --- a/js/brand/yamaha-motor-corporation.js +++ /dev/null @@ -1 +0,0 @@ -export const yamahaMotorCorporation = ["24 24",""] \ No newline at end of file diff --git a/js/brand/yammer.d.ts b/js/brand/yammer.d.ts new file mode 100644 index 000000000..90f22bda2 --- /dev/null +++ b/js/brand/yammer.d.ts @@ -0,0 +1 @@ +export declare const yammer: string[]; \ No newline at end of file diff --git a/js/brand/yammer.js b/js/brand/yammer.js index 16a0c6d89..3e7c66088 100644 --- a/js/brand/yammer.js +++ b/js/brand/yammer.js @@ -1 +1 @@ -export const yammer = ["24 24",""] \ No newline at end of file +export const yammer = ["32 32","yammer"] \ No newline at end of file diff --git a/js/brand/yandex-international.js b/js/brand/yandex-international.js deleted file mode 100644 index 1a813f406..000000000 --- a/js/brand/yandex-international.js +++ /dev/null @@ -1 +0,0 @@ -export const yandexInternational = ["320 512",""] \ No newline at end of file diff --git a/js/brand/yandex.d.ts b/js/brand/yandex.d.ts new file mode 100644 index 000000000..9748797a8 --- /dev/null +++ b/js/brand/yandex.d.ts @@ -0,0 +1 @@ +export declare const yandex: string[]; \ No newline at end of file diff --git a/js/brand/yandex.js b/js/brand/yandex.js index 7429702ec..088f70be7 100644 --- a/js/brand/yandex.js +++ b/js/brand/yandex.js @@ -1 +1 @@ -export const yandex = ["24 24",""] \ No newline at end of file +export const yandex = ["32 32","yandex"] \ No newline at end of file diff --git a/js/brand/yarn.d.ts b/js/brand/yarn.d.ts new file mode 100644 index 000000000..8adafe3d2 --- /dev/null +++ b/js/brand/yarn.d.ts @@ -0,0 +1 @@ +export declare const yarn: string[]; \ No newline at end of file diff --git a/js/brand/yarn.js b/js/brand/yarn.js index 8a49c3fa0..da9370115 100644 --- a/js/brand/yarn.js +++ b/js/brand/yarn.js @@ -1 +1 @@ -export const yarn = ["24 24",""] \ No newline at end of file +export const yarn = ["32 32","yarn"] \ No newline at end of file diff --git a/js/brand/ycombinator.js b/js/brand/ycombinator.js deleted file mode 100644 index fda830bd3..000000000 --- a/js/brand/ycombinator.js +++ /dev/null @@ -1 +0,0 @@ -export const ycombinator = ["24 24",""] \ No newline at end of file diff --git a/js/brand/yelp.d.ts b/js/brand/yelp.d.ts new file mode 100644 index 000000000..3ccbe5ca4 --- /dev/null +++ b/js/brand/yelp.d.ts @@ -0,0 +1 @@ +export declare const yelp: string[]; \ No newline at end of file diff --git a/js/brand/yelp.js b/js/brand/yelp.js index aba4046ce..0628a9f67 100644 --- a/js/brand/yelp.js +++ b/js/brand/yelp.js @@ -1 +1 @@ -export const yelp = ["24 24",""] \ No newline at end of file +export const yelp = ["32 32","yelp"] \ No newline at end of file diff --git a/js/brand/yoast.js b/js/brand/yoast.js deleted file mode 100644 index 34e48467c..000000000 --- a/js/brand/yoast.js +++ /dev/null @@ -1 +0,0 @@ -export const yoast = ["448 512",""] \ No newline at end of file diff --git a/js/brand/youtube.d.ts b/js/brand/youtube.d.ts new file mode 100644 index 000000000..8deb30636 --- /dev/null +++ b/js/brand/youtube.d.ts @@ -0,0 +1 @@ +export declare const youtube: string[]; \ No newline at end of file diff --git a/js/brand/youtube.js b/js/brand/youtube.js index 7cda9e1d4..7b6acca52 100644 --- a/js/brand/youtube.js +++ b/js/brand/youtube.js @@ -1 +1 @@ -export const youtube = ["24 24",""] \ No newline at end of file +export const youtube = ["32 32","youtube"] \ No newline at end of file diff --git a/js/brand/zalando.d.ts b/js/brand/zalando.d.ts new file mode 100644 index 000000000..bf56bb93f --- /dev/null +++ b/js/brand/zalando.d.ts @@ -0,0 +1 @@ +export declare const zalando: string[]; \ No newline at end of file diff --git a/js/brand/zalando.js b/js/brand/zalando.js index 6ddf3ea49..e23145d53 100644 --- a/js/brand/zalando.js +++ b/js/brand/zalando.js @@ -1 +1 @@ -export const zalando = ["24 24",""] \ No newline at end of file +export const zalando = ["32 32","zalando"] \ No newline at end of file diff --git a/js/brand/zapier.d.ts b/js/brand/zapier.d.ts new file mode 100644 index 000000000..709658cee --- /dev/null +++ b/js/brand/zapier.d.ts @@ -0,0 +1 @@ +export declare const zapier: string[]; \ No newline at end of file diff --git a/js/brand/zapier.js b/js/brand/zapier.js index 77a0856a6..a18eb458a 100644 --- a/js/brand/zapier.js +++ b/js/brand/zapier.js @@ -1 +1 @@ -export const zapier = ["24 24",""] \ No newline at end of file +export const zapier = ["32 32","zapier"] \ No newline at end of file diff --git a/js/brand/zeit.d.ts b/js/brand/zeit.d.ts new file mode 100644 index 000000000..3207c7822 --- /dev/null +++ b/js/brand/zeit.d.ts @@ -0,0 +1 @@ +export declare const zeit: string[]; \ No newline at end of file diff --git a/js/brand/zeit.js b/js/brand/zeit.js index 83d0df369..1a8157898 100644 --- a/js/brand/zeit.js +++ b/js/brand/zeit.js @@ -1 +1 @@ -export const zeit = ["24 24",""] \ No newline at end of file +export const zeit = ["32 32","zeit"] \ No newline at end of file diff --git a/js/brand/zendesk.d.ts b/js/brand/zendesk.d.ts new file mode 100644 index 000000000..f341ce196 --- /dev/null +++ b/js/brand/zendesk.d.ts @@ -0,0 +1 @@ +export declare const zendesk: string[]; \ No newline at end of file diff --git a/js/brand/zendesk.js b/js/brand/zendesk.js index edfea34d6..8788c0866 100644 --- a/js/brand/zendesk.js +++ b/js/brand/zendesk.js @@ -1 +1 @@ -export const zendesk = ["24 24",""] \ No newline at end of file +export const zendesk = ["32 32","zendesk"] \ No newline at end of file diff --git a/js/brand/zerply.d.ts b/js/brand/zerply.d.ts new file mode 100644 index 000000000..7aaf6c046 --- /dev/null +++ b/js/brand/zerply.d.ts @@ -0,0 +1 @@ +export declare const zerply: string[]; \ No newline at end of file diff --git a/js/brand/zerply.js b/js/brand/zerply.js index 6f9b41b3f..05e8b7bb6 100644 --- a/js/brand/zerply.js +++ b/js/brand/zerply.js @@ -1 +1 @@ -export const zerply = ["24 24",""] \ No newline at end of file +export const zerply = ["32 32","zerply"] \ No newline at end of file diff --git a/js/brand/zhihu.js b/js/brand/zhihu.js deleted file mode 100644 index d1c204d87..000000000 --- a/js/brand/zhihu.js +++ /dev/null @@ -1 +0,0 @@ -export const zhihu = ["640 512",""] \ No newline at end of file diff --git a/js/brand/zillow.d.ts b/js/brand/zillow.d.ts new file mode 100644 index 000000000..7432ce104 --- /dev/null +++ b/js/brand/zillow.d.ts @@ -0,0 +1 @@ +export declare const zillow: string[]; \ No newline at end of file diff --git a/js/brand/zillow.js b/js/brand/zillow.js index c0efcaebf..8a22c7024 100644 --- a/js/brand/zillow.js +++ b/js/brand/zillow.js @@ -1 +1 @@ -export const zillow = ["24 24",""] \ No newline at end of file +export const zillow = ["32 32","zillow"] \ No newline at end of file diff --git a/js/brand/zingat.d.ts b/js/brand/zingat.d.ts new file mode 100644 index 000000000..86455fa97 --- /dev/null +++ b/js/brand/zingat.d.ts @@ -0,0 +1 @@ +export declare const zingat: string[]; \ No newline at end of file diff --git a/js/brand/zingat.js b/js/brand/zingat.js index 21f5eefa6..447457e1b 100644 --- a/js/brand/zingat.js +++ b/js/brand/zingat.js @@ -1 +1 @@ -export const zingat = ["24 24",""] \ No newline at end of file +export const zingat = ["32 32","zingat"] \ No newline at end of file diff --git a/js/brand/zoom.d.ts b/js/brand/zoom.d.ts new file mode 100644 index 000000000..4ac9e96e1 --- /dev/null +++ b/js/brand/zoom.d.ts @@ -0,0 +1 @@ +export declare const zoom: string[]; \ No newline at end of file diff --git a/js/brand/zoom.js b/js/brand/zoom.js index c09b37752..6a092f430 100644 --- a/js/brand/zoom.js +++ b/js/brand/zoom.js @@ -1 +1 @@ -export const zoom = ["24 24",""] \ No newline at end of file +export const zoom = ["32 32","zoom"] \ No newline at end of file diff --git a/js/brand/zorin.d.ts b/js/brand/zorin.d.ts new file mode 100644 index 000000000..4223dad05 --- /dev/null +++ b/js/brand/zorin.d.ts @@ -0,0 +1 @@ +export declare const zorin: string[]; \ No newline at end of file diff --git a/js/brand/zorin.js b/js/brand/zorin.js index d9c6795d0..f18ad6ddb 100644 --- a/js/brand/zorin.js +++ b/js/brand/zorin.js @@ -1 +1 @@ -export const zorin = ["24 24",""] \ No newline at end of file +export const zorin = ["32 32","zorin"] \ No newline at end of file diff --git a/js/brand/zulip.d.ts b/js/brand/zulip.d.ts new file mode 100644 index 000000000..a91ee2cb7 --- /dev/null +++ b/js/brand/zulip.d.ts @@ -0,0 +1 @@ +export declare const zulip: string[]; \ No newline at end of file diff --git a/js/brand/zulip.js b/js/brand/zulip.js index 097eada71..eb3f6996c 100644 --- a/js/brand/zulip.js +++ b/js/brand/zulip.js @@ -1 +1 @@ -export const zulip = ["24 24",""] \ No newline at end of file +export const zulip = ["32 32","zulip"] \ No newline at end of file diff --git a/js/flag/AD.d.ts b/js/flag/AD.d.ts new file mode 100644 index 000000000..00ee2ef47 --- /dev/null +++ b/js/flag/AD.d.ts @@ -0,0 +1 @@ +export declare const AD: string[]; \ No newline at end of file diff --git a/js/flag/AE.d.ts b/js/flag/AE.d.ts new file mode 100644 index 000000000..d4d5dfc54 --- /dev/null +++ b/js/flag/AE.d.ts @@ -0,0 +1 @@ +export declare const AE: string[]; \ No newline at end of file diff --git a/js/flag/AF.d.ts b/js/flag/AF.d.ts new file mode 100644 index 000000000..513b7b3f2 --- /dev/null +++ b/js/flag/AF.d.ts @@ -0,0 +1 @@ +export declare const AF: string[]; \ No newline at end of file diff --git a/js/flag/AG.d.ts b/js/flag/AG.d.ts new file mode 100644 index 000000000..3387ac97e --- /dev/null +++ b/js/flag/AG.d.ts @@ -0,0 +1 @@ +export declare const AG: string[]; \ No newline at end of file diff --git a/js/flag/AL.d.ts b/js/flag/AL.d.ts new file mode 100644 index 000000000..b730fe2e6 --- /dev/null +++ b/js/flag/AL.d.ts @@ -0,0 +1 @@ +export declare const AL: string[]; \ No newline at end of file diff --git a/js/flag/AM.d.ts b/js/flag/AM.d.ts new file mode 100644 index 000000000..eea1fa2ef --- /dev/null +++ b/js/flag/AM.d.ts @@ -0,0 +1 @@ +export declare const AM: string[]; \ No newline at end of file diff --git a/js/flag/AO.d.ts b/js/flag/AO.d.ts new file mode 100644 index 000000000..0a1119649 --- /dev/null +++ b/js/flag/AO.d.ts @@ -0,0 +1 @@ +export declare const AO: string[]; \ No newline at end of file diff --git a/js/flag/AR.d.ts b/js/flag/AR.d.ts new file mode 100644 index 000000000..2a9647112 --- /dev/null +++ b/js/flag/AR.d.ts @@ -0,0 +1 @@ +export declare const AR: string[]; \ No newline at end of file diff --git a/js/flag/AT.d.ts b/js/flag/AT.d.ts new file mode 100644 index 000000000..4d36267ff --- /dev/null +++ b/js/flag/AT.d.ts @@ -0,0 +1 @@ +export declare const AT: string[]; \ No newline at end of file diff --git a/js/flag/AU.d.ts b/js/flag/AU.d.ts new file mode 100644 index 000000000..6b5b14770 --- /dev/null +++ b/js/flag/AU.d.ts @@ -0,0 +1 @@ +export declare const AU: string[]; \ No newline at end of file diff --git a/js/flag/AZ.d.ts b/js/flag/AZ.d.ts new file mode 100644 index 000000000..3970de590 --- /dev/null +++ b/js/flag/AZ.d.ts @@ -0,0 +1 @@ +export declare const AZ: string[]; \ No newline at end of file diff --git a/js/flag/BA.d.ts b/js/flag/BA.d.ts new file mode 100644 index 000000000..f8e2a4a58 --- /dev/null +++ b/js/flag/BA.d.ts @@ -0,0 +1 @@ +export declare const BA: string[]; \ No newline at end of file diff --git a/js/flag/BB.d.ts b/js/flag/BB.d.ts new file mode 100644 index 000000000..a2e655559 --- /dev/null +++ b/js/flag/BB.d.ts @@ -0,0 +1 @@ +export declare const BB: string[]; \ No newline at end of file diff --git a/js/flag/BD.d.ts b/js/flag/BD.d.ts new file mode 100644 index 000000000..e59ebb1d1 --- /dev/null +++ b/js/flag/BD.d.ts @@ -0,0 +1 @@ +export declare const BD: string[]; \ No newline at end of file diff --git a/js/flag/BE.d.ts b/js/flag/BE.d.ts new file mode 100644 index 000000000..9fccc379f --- /dev/null +++ b/js/flag/BE.d.ts @@ -0,0 +1 @@ +export declare const BE: string[]; \ No newline at end of file diff --git a/js/flag/BF.d.ts b/js/flag/BF.d.ts new file mode 100644 index 000000000..143172ab0 --- /dev/null +++ b/js/flag/BF.d.ts @@ -0,0 +1 @@ +export declare const BF: string[]; \ No newline at end of file diff --git a/js/flag/BG.d.ts b/js/flag/BG.d.ts new file mode 100644 index 000000000..5d8194368 --- /dev/null +++ b/js/flag/BG.d.ts @@ -0,0 +1 @@ +export declare const BG: string[]; \ No newline at end of file diff --git a/js/flag/BH.d.ts b/js/flag/BH.d.ts new file mode 100644 index 000000000..df85b8b51 --- /dev/null +++ b/js/flag/BH.d.ts @@ -0,0 +1 @@ +export declare const BH: string[]; \ No newline at end of file diff --git a/js/flag/BI.d.ts b/js/flag/BI.d.ts new file mode 100644 index 000000000..e7deec24f --- /dev/null +++ b/js/flag/BI.d.ts @@ -0,0 +1 @@ +export declare const BI: string[]; \ No newline at end of file diff --git a/js/flag/BJ.d.ts b/js/flag/BJ.d.ts new file mode 100644 index 000000000..e40fa3391 --- /dev/null +++ b/js/flag/BJ.d.ts @@ -0,0 +1 @@ +export declare const BJ: string[]; \ No newline at end of file diff --git a/js/flag/BN.d.ts b/js/flag/BN.d.ts new file mode 100644 index 000000000..18e1bcf8e --- /dev/null +++ b/js/flag/BN.d.ts @@ -0,0 +1 @@ +export declare const BN: string[]; \ No newline at end of file diff --git a/js/flag/BO.d.ts b/js/flag/BO.d.ts new file mode 100644 index 000000000..8483591fc --- /dev/null +++ b/js/flag/BO.d.ts @@ -0,0 +1 @@ +export declare const BO: string[]; \ No newline at end of file diff --git a/js/flag/BR.d.ts b/js/flag/BR.d.ts new file mode 100644 index 000000000..e315ae527 --- /dev/null +++ b/js/flag/BR.d.ts @@ -0,0 +1 @@ +export declare const BR: string[]; \ No newline at end of file diff --git a/js/flag/BS.d.ts b/js/flag/BS.d.ts new file mode 100644 index 000000000..f2ee728e9 --- /dev/null +++ b/js/flag/BS.d.ts @@ -0,0 +1 @@ +export declare const BS: string[]; \ No newline at end of file diff --git a/js/flag/BT.d.ts b/js/flag/BT.d.ts new file mode 100644 index 000000000..c20f5de33 --- /dev/null +++ b/js/flag/BT.d.ts @@ -0,0 +1 @@ +export declare const BT: string[]; \ No newline at end of file diff --git a/js/flag/BW.d.ts b/js/flag/BW.d.ts new file mode 100644 index 000000000..26b712a57 --- /dev/null +++ b/js/flag/BW.d.ts @@ -0,0 +1 @@ +export declare const BW: string[]; \ No newline at end of file diff --git a/js/flag/BY.d.ts b/js/flag/BY.d.ts new file mode 100644 index 000000000..5e96ff8ea --- /dev/null +++ b/js/flag/BY.d.ts @@ -0,0 +1 @@ +export declare const BY: string[]; \ No newline at end of file diff --git a/js/flag/BZ.d.ts b/js/flag/BZ.d.ts new file mode 100644 index 000000000..2cad63364 --- /dev/null +++ b/js/flag/BZ.d.ts @@ -0,0 +1 @@ +export declare const BZ: string[]; \ No newline at end of file diff --git a/js/flag/CA.d.ts b/js/flag/CA.d.ts new file mode 100644 index 000000000..9da9214c7 --- /dev/null +++ b/js/flag/CA.d.ts @@ -0,0 +1 @@ +export declare const CA: string[]; \ No newline at end of file diff --git a/js/flag/CD.d.ts b/js/flag/CD.d.ts new file mode 100644 index 000000000..80a972c69 --- /dev/null +++ b/js/flag/CD.d.ts @@ -0,0 +1 @@ +export declare const CD: string[]; \ No newline at end of file diff --git a/js/flag/CF.d.ts b/js/flag/CF.d.ts new file mode 100644 index 000000000..64bf464c1 --- /dev/null +++ b/js/flag/CF.d.ts @@ -0,0 +1 @@ +export declare const CF: string[]; \ No newline at end of file diff --git a/js/flag/CG.d.ts b/js/flag/CG.d.ts new file mode 100644 index 000000000..3f1ab7630 --- /dev/null +++ b/js/flag/CG.d.ts @@ -0,0 +1 @@ +export declare const CG: string[]; \ No newline at end of file diff --git a/js/flag/CH.d.ts b/js/flag/CH.d.ts new file mode 100644 index 000000000..ca8ad6368 --- /dev/null +++ b/js/flag/CH.d.ts @@ -0,0 +1 @@ +export declare const CH: string[]; \ No newline at end of file diff --git a/js/flag/CI.d.ts b/js/flag/CI.d.ts new file mode 100644 index 000000000..cc020045f --- /dev/null +++ b/js/flag/CI.d.ts @@ -0,0 +1 @@ +export declare const CI: string[]; \ No newline at end of file diff --git a/js/flag/CL.d.ts b/js/flag/CL.d.ts new file mode 100644 index 000000000..a969c3a9a --- /dev/null +++ b/js/flag/CL.d.ts @@ -0,0 +1 @@ +export declare const CL: string[]; \ No newline at end of file diff --git a/js/flag/CM.d.ts b/js/flag/CM.d.ts new file mode 100644 index 000000000..02cbb2ecb --- /dev/null +++ b/js/flag/CM.d.ts @@ -0,0 +1 @@ +export declare const CM: string[]; \ No newline at end of file diff --git a/js/flag/CN.d.ts b/js/flag/CN.d.ts new file mode 100644 index 000000000..c07a628c0 --- /dev/null +++ b/js/flag/CN.d.ts @@ -0,0 +1 @@ +export declare const CN: string[]; \ No newline at end of file diff --git a/js/flag/CO.d.ts b/js/flag/CO.d.ts new file mode 100644 index 000000000..19fc2c3e0 --- /dev/null +++ b/js/flag/CO.d.ts @@ -0,0 +1 @@ +export declare const CO: string[]; \ No newline at end of file diff --git a/js/flag/CR.d.ts b/js/flag/CR.d.ts new file mode 100644 index 000000000..4d9a110ee --- /dev/null +++ b/js/flag/CR.d.ts @@ -0,0 +1 @@ +export declare const CR: string[]; \ No newline at end of file diff --git a/js/flag/CU.d.ts b/js/flag/CU.d.ts new file mode 100644 index 000000000..7000e9719 --- /dev/null +++ b/js/flag/CU.d.ts @@ -0,0 +1 @@ +export declare const CU: string[]; \ No newline at end of file diff --git a/js/flag/CV.d.ts b/js/flag/CV.d.ts new file mode 100644 index 000000000..49159ff11 --- /dev/null +++ b/js/flag/CV.d.ts @@ -0,0 +1 @@ +export declare const CV: string[]; \ No newline at end of file diff --git a/js/flag/CY.d.ts b/js/flag/CY.d.ts new file mode 100644 index 000000000..f114f0fb9 --- /dev/null +++ b/js/flag/CY.d.ts @@ -0,0 +1 @@ +export declare const CY: string[]; \ No newline at end of file diff --git a/js/flag/CZ.d.ts b/js/flag/CZ.d.ts new file mode 100644 index 000000000..5ffb13634 --- /dev/null +++ b/js/flag/CZ.d.ts @@ -0,0 +1 @@ +export declare const CZ: string[]; \ No newline at end of file diff --git a/js/flag/DE.d.ts b/js/flag/DE.d.ts new file mode 100644 index 000000000..11a830d96 --- /dev/null +++ b/js/flag/DE.d.ts @@ -0,0 +1 @@ +export declare const DE: string[]; \ No newline at end of file diff --git a/js/flag/DJ.d.ts b/js/flag/DJ.d.ts new file mode 100644 index 000000000..6c05c8896 --- /dev/null +++ b/js/flag/DJ.d.ts @@ -0,0 +1 @@ +export declare const DJ: string[]; \ No newline at end of file diff --git a/js/flag/DK.d.ts b/js/flag/DK.d.ts new file mode 100644 index 000000000..d8834e28e --- /dev/null +++ b/js/flag/DK.d.ts @@ -0,0 +1 @@ +export declare const DK: string[]; \ No newline at end of file diff --git a/js/flag/DM.d.ts b/js/flag/DM.d.ts new file mode 100644 index 000000000..dbd7e57ee --- /dev/null +++ b/js/flag/DM.d.ts @@ -0,0 +1 @@ +export declare const DM: string[]; \ No newline at end of file diff --git a/js/flag/DO.d.ts b/js/flag/DO.d.ts new file mode 100644 index 000000000..a1834c689 --- /dev/null +++ b/js/flag/DO.d.ts @@ -0,0 +1 @@ +export declare const DO: string[]; \ No newline at end of file diff --git a/js/flag/DZ.d.ts b/js/flag/DZ.d.ts new file mode 100644 index 000000000..edeacbe14 --- /dev/null +++ b/js/flag/DZ.d.ts @@ -0,0 +1 @@ +export declare const DZ: string[]; \ No newline at end of file diff --git a/js/flag/EC.d.ts b/js/flag/EC.d.ts new file mode 100644 index 000000000..c588a02d7 --- /dev/null +++ b/js/flag/EC.d.ts @@ -0,0 +1 @@ +export declare const EC: string[]; \ No newline at end of file diff --git a/js/flag/EE.d.ts b/js/flag/EE.d.ts new file mode 100644 index 000000000..8289db12c --- /dev/null +++ b/js/flag/EE.d.ts @@ -0,0 +1 @@ +export declare const EE: string[]; \ No newline at end of file diff --git a/js/flag/EG.d.ts b/js/flag/EG.d.ts new file mode 100644 index 000000000..21b1785eb --- /dev/null +++ b/js/flag/EG.d.ts @@ -0,0 +1 @@ +export declare const EG: string[]; \ No newline at end of file diff --git a/js/flag/ER.d.ts b/js/flag/ER.d.ts new file mode 100644 index 000000000..46ca5bf53 --- /dev/null +++ b/js/flag/ER.d.ts @@ -0,0 +1 @@ +export declare const ER: string[]; \ No newline at end of file diff --git a/js/flag/ES.d.ts b/js/flag/ES.d.ts new file mode 100644 index 000000000..e08b8db3d --- /dev/null +++ b/js/flag/ES.d.ts @@ -0,0 +1 @@ +export declare const ES: string[]; \ No newline at end of file diff --git a/js/flag/ET.d.ts b/js/flag/ET.d.ts new file mode 100644 index 000000000..1b435f98e --- /dev/null +++ b/js/flag/ET.d.ts @@ -0,0 +1 @@ +export declare const ET: string[]; \ No newline at end of file diff --git a/js/flag/FI.d.ts b/js/flag/FI.d.ts new file mode 100644 index 000000000..74109dfd4 --- /dev/null +++ b/js/flag/FI.d.ts @@ -0,0 +1 @@ +export declare const FI: string[]; \ No newline at end of file diff --git a/js/flag/FJ.d.ts b/js/flag/FJ.d.ts new file mode 100644 index 000000000..4b4aca511 --- /dev/null +++ b/js/flag/FJ.d.ts @@ -0,0 +1 @@ +export declare const FJ: string[]; \ No newline at end of file diff --git a/js/flag/FM.d.ts b/js/flag/FM.d.ts new file mode 100644 index 000000000..71648199d --- /dev/null +++ b/js/flag/FM.d.ts @@ -0,0 +1 @@ +export declare const FM: string[]; \ No newline at end of file diff --git a/js/flag/FR.d.ts b/js/flag/FR.d.ts new file mode 100644 index 000000000..17c41e86f --- /dev/null +++ b/js/flag/FR.d.ts @@ -0,0 +1 @@ +export declare const FR: string[]; \ No newline at end of file diff --git a/js/flag/GA.d.ts b/js/flag/GA.d.ts new file mode 100644 index 000000000..7e4333dad --- /dev/null +++ b/js/flag/GA.d.ts @@ -0,0 +1 @@ +export declare const GA: string[]; \ No newline at end of file diff --git a/js/flag/GB.d.ts b/js/flag/GB.d.ts new file mode 100644 index 000000000..94b675065 --- /dev/null +++ b/js/flag/GB.d.ts @@ -0,0 +1 @@ +export declare const GB: string[]; \ No newline at end of file diff --git a/js/flag/GD.d.ts b/js/flag/GD.d.ts new file mode 100644 index 000000000..8fc9d51d9 --- /dev/null +++ b/js/flag/GD.d.ts @@ -0,0 +1 @@ +export declare const GD: string[]; \ No newline at end of file diff --git a/js/flag/GE.d.ts b/js/flag/GE.d.ts new file mode 100644 index 000000000..d89a80116 --- /dev/null +++ b/js/flag/GE.d.ts @@ -0,0 +1 @@ +export declare const GE: string[]; \ No newline at end of file diff --git a/js/flag/GH.d.ts b/js/flag/GH.d.ts new file mode 100644 index 000000000..8c43dde78 --- /dev/null +++ b/js/flag/GH.d.ts @@ -0,0 +1 @@ +export declare const GH: string[]; \ No newline at end of file diff --git a/js/flag/GM.d.ts b/js/flag/GM.d.ts new file mode 100644 index 000000000..e394aaf77 --- /dev/null +++ b/js/flag/GM.d.ts @@ -0,0 +1 @@ +export declare const GM: string[]; \ No newline at end of file diff --git a/js/flag/GN.d.ts b/js/flag/GN.d.ts new file mode 100644 index 000000000..a03363a38 --- /dev/null +++ b/js/flag/GN.d.ts @@ -0,0 +1 @@ +export declare const GN: string[]; \ No newline at end of file diff --git a/js/flag/GQ.d.ts b/js/flag/GQ.d.ts new file mode 100644 index 000000000..7806f4a07 --- /dev/null +++ b/js/flag/GQ.d.ts @@ -0,0 +1 @@ +export declare const GQ: string[]; \ No newline at end of file diff --git a/js/flag/GR.d.ts b/js/flag/GR.d.ts new file mode 100644 index 000000000..d8b02c625 --- /dev/null +++ b/js/flag/GR.d.ts @@ -0,0 +1 @@ +export declare const GR: string[]; \ No newline at end of file diff --git a/js/flag/GT.d.ts b/js/flag/GT.d.ts new file mode 100644 index 000000000..99ba39fc0 --- /dev/null +++ b/js/flag/GT.d.ts @@ -0,0 +1 @@ +export declare const GT: string[]; \ No newline at end of file diff --git a/js/flag/GW.d.ts b/js/flag/GW.d.ts new file mode 100644 index 000000000..025edc615 --- /dev/null +++ b/js/flag/GW.d.ts @@ -0,0 +1 @@ +export declare const GW: string[]; \ No newline at end of file diff --git a/js/flag/GY.d.ts b/js/flag/GY.d.ts new file mode 100644 index 000000000..51789b088 --- /dev/null +++ b/js/flag/GY.d.ts @@ -0,0 +1 @@ +export declare const GY: string[]; \ No newline at end of file diff --git a/js/flag/HN.d.ts b/js/flag/HN.d.ts new file mode 100644 index 000000000..43f5a8242 --- /dev/null +++ b/js/flag/HN.d.ts @@ -0,0 +1 @@ +export declare const HN: string[]; \ No newline at end of file diff --git a/js/flag/HR.d.ts b/js/flag/HR.d.ts new file mode 100644 index 000000000..311931cb8 --- /dev/null +++ b/js/flag/HR.d.ts @@ -0,0 +1 @@ +export declare const HR: string[]; \ No newline at end of file diff --git a/js/flag/HT.d.ts b/js/flag/HT.d.ts new file mode 100644 index 000000000..ffb0e2d96 --- /dev/null +++ b/js/flag/HT.d.ts @@ -0,0 +1 @@ +export declare const HT: string[]; \ No newline at end of file diff --git a/js/flag/HU.d.ts b/js/flag/HU.d.ts new file mode 100644 index 000000000..5ea9a6472 --- /dev/null +++ b/js/flag/HU.d.ts @@ -0,0 +1 @@ +export declare const HU: string[]; \ No newline at end of file diff --git a/js/flag/ID.d.ts b/js/flag/ID.d.ts new file mode 100644 index 000000000..bf9c88af4 --- /dev/null +++ b/js/flag/ID.d.ts @@ -0,0 +1 @@ +export declare const ID: string[]; \ No newline at end of file diff --git a/js/flag/IE.d.ts b/js/flag/IE.d.ts new file mode 100644 index 000000000..7a0368a0c --- /dev/null +++ b/js/flag/IE.d.ts @@ -0,0 +1 @@ +export declare const IE: string[]; \ No newline at end of file diff --git a/js/flag/IL.d.ts b/js/flag/IL.d.ts new file mode 100644 index 000000000..0d5657198 --- /dev/null +++ b/js/flag/IL.d.ts @@ -0,0 +1 @@ +export declare const IL: string[]; \ No newline at end of file diff --git a/js/flag/IN.d.ts b/js/flag/IN.d.ts new file mode 100644 index 000000000..efab81ee5 --- /dev/null +++ b/js/flag/IN.d.ts @@ -0,0 +1 @@ +export declare const IN: string[]; \ No newline at end of file diff --git a/js/flag/IQ.d.ts b/js/flag/IQ.d.ts new file mode 100644 index 000000000..840570baa --- /dev/null +++ b/js/flag/IQ.d.ts @@ -0,0 +1 @@ +export declare const IQ: string[]; \ No newline at end of file diff --git a/js/flag/IR.d.ts b/js/flag/IR.d.ts new file mode 100644 index 000000000..148d5791d --- /dev/null +++ b/js/flag/IR.d.ts @@ -0,0 +1 @@ +export declare const IR: string[]; \ No newline at end of file diff --git a/js/flag/IS.d.ts b/js/flag/IS.d.ts new file mode 100644 index 000000000..2191c1c64 --- /dev/null +++ b/js/flag/IS.d.ts @@ -0,0 +1 @@ +export declare const IS: string[]; \ No newline at end of file diff --git a/js/flag/IT.d.ts b/js/flag/IT.d.ts new file mode 100644 index 000000000..572335caa --- /dev/null +++ b/js/flag/IT.d.ts @@ -0,0 +1 @@ +export declare const IT: string[]; \ No newline at end of file diff --git a/js/flag/JM.d.ts b/js/flag/JM.d.ts new file mode 100644 index 000000000..5b75aac14 --- /dev/null +++ b/js/flag/JM.d.ts @@ -0,0 +1 @@ +export declare const JM: string[]; \ No newline at end of file diff --git a/js/flag/JO.d.ts b/js/flag/JO.d.ts new file mode 100644 index 000000000..95ca316e4 --- /dev/null +++ b/js/flag/JO.d.ts @@ -0,0 +1 @@ +export declare const JO: string[]; \ No newline at end of file diff --git a/js/flag/JP.d.ts b/js/flag/JP.d.ts new file mode 100644 index 000000000..01b0f590e --- /dev/null +++ b/js/flag/JP.d.ts @@ -0,0 +1 @@ +export declare const JP: string[]; \ No newline at end of file diff --git a/js/flag/KE.d.ts b/js/flag/KE.d.ts new file mode 100644 index 000000000..c93a97e21 --- /dev/null +++ b/js/flag/KE.d.ts @@ -0,0 +1 @@ +export declare const KE: string[]; \ No newline at end of file diff --git a/js/flag/KG.d.ts b/js/flag/KG.d.ts new file mode 100644 index 000000000..020389f0c --- /dev/null +++ b/js/flag/KG.d.ts @@ -0,0 +1 @@ +export declare const KG: string[]; \ No newline at end of file diff --git a/js/flag/KH.d.ts b/js/flag/KH.d.ts new file mode 100644 index 000000000..621bcec02 --- /dev/null +++ b/js/flag/KH.d.ts @@ -0,0 +1 @@ +export declare const KH: string[]; \ No newline at end of file diff --git a/js/flag/KI.d.ts b/js/flag/KI.d.ts new file mode 100644 index 000000000..4b6cc668a --- /dev/null +++ b/js/flag/KI.d.ts @@ -0,0 +1 @@ +export declare const KI: string[]; \ No newline at end of file diff --git a/js/flag/KM.d.ts b/js/flag/KM.d.ts new file mode 100644 index 000000000..c415fbb2f --- /dev/null +++ b/js/flag/KM.d.ts @@ -0,0 +1 @@ +export declare const KM: string[]; \ No newline at end of file diff --git a/js/flag/KN.d.ts b/js/flag/KN.d.ts new file mode 100644 index 000000000..3b06efcd7 --- /dev/null +++ b/js/flag/KN.d.ts @@ -0,0 +1 @@ +export declare const KN: string[]; \ No newline at end of file diff --git a/js/flag/KP.d.ts b/js/flag/KP.d.ts new file mode 100644 index 000000000..a57507946 --- /dev/null +++ b/js/flag/KP.d.ts @@ -0,0 +1 @@ +export declare const KP: string[]; \ No newline at end of file diff --git a/js/flag/KR.d.ts b/js/flag/KR.d.ts new file mode 100644 index 000000000..71e560227 --- /dev/null +++ b/js/flag/KR.d.ts @@ -0,0 +1 @@ +export declare const KR: string[]; \ No newline at end of file diff --git a/js/flag/KW.d.ts b/js/flag/KW.d.ts new file mode 100644 index 000000000..aaa8ff970 --- /dev/null +++ b/js/flag/KW.d.ts @@ -0,0 +1 @@ +export declare const KW: string[]; \ No newline at end of file diff --git a/js/flag/KZ.d.ts b/js/flag/KZ.d.ts new file mode 100644 index 000000000..42d252bb5 --- /dev/null +++ b/js/flag/KZ.d.ts @@ -0,0 +1 @@ +export declare const KZ: string[]; \ No newline at end of file diff --git a/js/flag/LA.d.ts b/js/flag/LA.d.ts new file mode 100644 index 000000000..3486337a2 --- /dev/null +++ b/js/flag/LA.d.ts @@ -0,0 +1 @@ +export declare const LA: string[]; \ No newline at end of file diff --git a/js/flag/LB.d.ts b/js/flag/LB.d.ts new file mode 100644 index 000000000..d6f519ca5 --- /dev/null +++ b/js/flag/LB.d.ts @@ -0,0 +1 @@ +export declare const LB: string[]; \ No newline at end of file diff --git a/js/flag/LC.d.ts b/js/flag/LC.d.ts new file mode 100644 index 000000000..19307312b --- /dev/null +++ b/js/flag/LC.d.ts @@ -0,0 +1 @@ +export declare const LC: string[]; \ No newline at end of file diff --git a/js/flag/LI.d.ts b/js/flag/LI.d.ts new file mode 100644 index 000000000..da5250d13 --- /dev/null +++ b/js/flag/LI.d.ts @@ -0,0 +1 @@ +export declare const LI: string[]; \ No newline at end of file diff --git a/js/flag/LK.d.ts b/js/flag/LK.d.ts new file mode 100644 index 000000000..8ad13bb5b --- /dev/null +++ b/js/flag/LK.d.ts @@ -0,0 +1 @@ +export declare const LK: string[]; \ No newline at end of file diff --git a/js/flag/LR.d.ts b/js/flag/LR.d.ts new file mode 100644 index 000000000..0b471c4d9 --- /dev/null +++ b/js/flag/LR.d.ts @@ -0,0 +1 @@ +export declare const LR: string[]; \ No newline at end of file diff --git a/js/flag/LS.d.ts b/js/flag/LS.d.ts new file mode 100644 index 000000000..0f86d5418 --- /dev/null +++ b/js/flag/LS.d.ts @@ -0,0 +1 @@ +export declare const LS: string[]; \ No newline at end of file diff --git a/js/flag/LT.d.ts b/js/flag/LT.d.ts new file mode 100644 index 000000000..49bb3160d --- /dev/null +++ b/js/flag/LT.d.ts @@ -0,0 +1 @@ +export declare const LT: string[]; \ No newline at end of file diff --git a/js/flag/LU.d.ts b/js/flag/LU.d.ts new file mode 100644 index 000000000..b38f77747 --- /dev/null +++ b/js/flag/LU.d.ts @@ -0,0 +1 @@ +export declare const LU: string[]; \ No newline at end of file diff --git a/js/flag/LV.d.ts b/js/flag/LV.d.ts new file mode 100644 index 000000000..22808c37e --- /dev/null +++ b/js/flag/LV.d.ts @@ -0,0 +1 @@ +export declare const LV: string[]; \ No newline at end of file diff --git a/js/flag/LY.d.ts b/js/flag/LY.d.ts new file mode 100644 index 000000000..1aa608455 --- /dev/null +++ b/js/flag/LY.d.ts @@ -0,0 +1 @@ +export declare const LY: string[]; \ No newline at end of file diff --git a/js/flag/MA.d.ts b/js/flag/MA.d.ts new file mode 100644 index 000000000..0a2ddcbb1 --- /dev/null +++ b/js/flag/MA.d.ts @@ -0,0 +1 @@ +export declare const MA: string[]; \ No newline at end of file diff --git a/js/flag/MC.d.ts b/js/flag/MC.d.ts new file mode 100644 index 000000000..8a67a9489 --- /dev/null +++ b/js/flag/MC.d.ts @@ -0,0 +1 @@ +export declare const MC: string[]; \ No newline at end of file diff --git a/js/flag/MD.d.ts b/js/flag/MD.d.ts new file mode 100644 index 000000000..0cc694110 --- /dev/null +++ b/js/flag/MD.d.ts @@ -0,0 +1 @@ +export declare const MD: string[]; \ No newline at end of file diff --git a/js/flag/ME.d.ts b/js/flag/ME.d.ts new file mode 100644 index 000000000..ef74a7831 --- /dev/null +++ b/js/flag/ME.d.ts @@ -0,0 +1 @@ +export declare const ME: string[]; \ No newline at end of file diff --git a/js/flag/MG.d.ts b/js/flag/MG.d.ts new file mode 100644 index 000000000..36200b5ed --- /dev/null +++ b/js/flag/MG.d.ts @@ -0,0 +1 @@ +export declare const MG: string[]; \ No newline at end of file diff --git a/js/flag/MH.d.ts b/js/flag/MH.d.ts new file mode 100644 index 000000000..b3709a8d9 --- /dev/null +++ b/js/flag/MH.d.ts @@ -0,0 +1 @@ +export declare const MH: string[]; \ No newline at end of file diff --git a/js/flag/MK.d.ts b/js/flag/MK.d.ts new file mode 100644 index 000000000..64f3dba87 --- /dev/null +++ b/js/flag/MK.d.ts @@ -0,0 +1 @@ +export declare const MK: string[]; \ No newline at end of file diff --git a/js/flag/ML.d.ts b/js/flag/ML.d.ts new file mode 100644 index 000000000..e353f70d3 --- /dev/null +++ b/js/flag/ML.d.ts @@ -0,0 +1 @@ +export declare const ML: string[]; \ No newline at end of file diff --git a/js/flag/MM.d.ts b/js/flag/MM.d.ts new file mode 100644 index 000000000..d477dce7d --- /dev/null +++ b/js/flag/MM.d.ts @@ -0,0 +1 @@ +export declare const MM: string[]; \ No newline at end of file diff --git a/js/flag/MN.d.ts b/js/flag/MN.d.ts new file mode 100644 index 000000000..ca60ad6a3 --- /dev/null +++ b/js/flag/MN.d.ts @@ -0,0 +1 @@ +export declare const MN: string[]; \ No newline at end of file diff --git a/js/flag/MR.d.ts b/js/flag/MR.d.ts new file mode 100644 index 000000000..03f527f1d --- /dev/null +++ b/js/flag/MR.d.ts @@ -0,0 +1 @@ +export declare const MR: string[]; \ No newline at end of file diff --git a/js/flag/MT.d.ts b/js/flag/MT.d.ts new file mode 100644 index 000000000..fbe26e9e8 --- /dev/null +++ b/js/flag/MT.d.ts @@ -0,0 +1 @@ +export declare const MT: string[]; \ No newline at end of file diff --git a/js/flag/MU.d.ts b/js/flag/MU.d.ts new file mode 100644 index 000000000..c3a05ff12 --- /dev/null +++ b/js/flag/MU.d.ts @@ -0,0 +1 @@ +export declare const MU: string[]; \ No newline at end of file diff --git a/js/flag/MV.d.ts b/js/flag/MV.d.ts new file mode 100644 index 000000000..4615e68b9 --- /dev/null +++ b/js/flag/MV.d.ts @@ -0,0 +1 @@ +export declare const MV: string[]; \ No newline at end of file diff --git a/js/flag/MW.d.ts b/js/flag/MW.d.ts new file mode 100644 index 000000000..bc3129e11 --- /dev/null +++ b/js/flag/MW.d.ts @@ -0,0 +1 @@ +export declare const MW: string[]; \ No newline at end of file diff --git a/js/flag/MX.d.ts b/js/flag/MX.d.ts new file mode 100644 index 000000000..3cb671950 --- /dev/null +++ b/js/flag/MX.d.ts @@ -0,0 +1 @@ +export declare const MX: string[]; \ No newline at end of file diff --git a/js/flag/MY.d.ts b/js/flag/MY.d.ts new file mode 100644 index 000000000..b9c248dfd --- /dev/null +++ b/js/flag/MY.d.ts @@ -0,0 +1 @@ +export declare const MY: string[]; \ No newline at end of file diff --git a/js/flag/MZ.d.ts b/js/flag/MZ.d.ts new file mode 100644 index 000000000..ecade91c7 --- /dev/null +++ b/js/flag/MZ.d.ts @@ -0,0 +1 @@ +export declare const MZ: string[]; \ No newline at end of file diff --git a/js/flag/NA.d.ts b/js/flag/NA.d.ts new file mode 100644 index 000000000..da989f7e1 --- /dev/null +++ b/js/flag/NA.d.ts @@ -0,0 +1 @@ +export declare const NA: string[]; \ No newline at end of file diff --git a/js/flag/NE.d.ts b/js/flag/NE.d.ts new file mode 100644 index 000000000..b642e5517 --- /dev/null +++ b/js/flag/NE.d.ts @@ -0,0 +1 @@ +export declare const NE: string[]; \ No newline at end of file diff --git a/js/flag/NG.d.ts b/js/flag/NG.d.ts new file mode 100644 index 000000000..401196c0d --- /dev/null +++ b/js/flag/NG.d.ts @@ -0,0 +1 @@ +export declare const NG: string[]; \ No newline at end of file diff --git a/js/flag/NI.d.ts b/js/flag/NI.d.ts new file mode 100644 index 000000000..eaf21a531 --- /dev/null +++ b/js/flag/NI.d.ts @@ -0,0 +1 @@ +export declare const NI: string[]; \ No newline at end of file diff --git a/js/flag/NL.d.ts b/js/flag/NL.d.ts new file mode 100644 index 000000000..07e229972 --- /dev/null +++ b/js/flag/NL.d.ts @@ -0,0 +1 @@ +export declare const NL: string[]; \ No newline at end of file diff --git a/js/flag/NO.d.ts b/js/flag/NO.d.ts new file mode 100644 index 000000000..6b00343e9 --- /dev/null +++ b/js/flag/NO.d.ts @@ -0,0 +1 @@ +export declare const NO: string[]; \ No newline at end of file diff --git a/js/flag/NP.d.ts b/js/flag/NP.d.ts new file mode 100644 index 000000000..eb909ea5a --- /dev/null +++ b/js/flag/NP.d.ts @@ -0,0 +1 @@ +export declare const NP: string[]; \ No newline at end of file diff --git a/js/flag/NR.d.ts b/js/flag/NR.d.ts new file mode 100644 index 000000000..469e5dfb1 --- /dev/null +++ b/js/flag/NR.d.ts @@ -0,0 +1 @@ +export declare const NR: string[]; \ No newline at end of file diff --git a/js/flag/NU.d.ts b/js/flag/NU.d.ts new file mode 100644 index 000000000..6bcb7cdfd --- /dev/null +++ b/js/flag/NU.d.ts @@ -0,0 +1 @@ +export declare const NU: string[]; \ No newline at end of file diff --git a/js/flag/NZ.d.ts b/js/flag/NZ.d.ts new file mode 100644 index 000000000..856ad827c --- /dev/null +++ b/js/flag/NZ.d.ts @@ -0,0 +1 @@ +export declare const NZ: string[]; \ No newline at end of file diff --git a/js/flag/OM.d.ts b/js/flag/OM.d.ts new file mode 100644 index 000000000..a238c555f --- /dev/null +++ b/js/flag/OM.d.ts @@ -0,0 +1 @@ +export declare const OM: string[]; \ No newline at end of file diff --git a/js/flag/PA.d.ts b/js/flag/PA.d.ts new file mode 100644 index 000000000..1849d0cac --- /dev/null +++ b/js/flag/PA.d.ts @@ -0,0 +1 @@ +export declare const PA: string[]; \ No newline at end of file diff --git a/js/flag/PE.d.ts b/js/flag/PE.d.ts new file mode 100644 index 000000000..0465212d3 --- /dev/null +++ b/js/flag/PE.d.ts @@ -0,0 +1 @@ +export declare const PE: string[]; \ No newline at end of file diff --git a/js/flag/PG.d.ts b/js/flag/PG.d.ts new file mode 100644 index 000000000..3391a313e --- /dev/null +++ b/js/flag/PG.d.ts @@ -0,0 +1 @@ +export declare const PG: string[]; \ No newline at end of file diff --git a/js/flag/PH.d.ts b/js/flag/PH.d.ts new file mode 100644 index 000000000..4134838a3 --- /dev/null +++ b/js/flag/PH.d.ts @@ -0,0 +1 @@ +export declare const PH: string[]; \ No newline at end of file diff --git a/js/flag/PK.d.ts b/js/flag/PK.d.ts new file mode 100644 index 000000000..d83e06bbe --- /dev/null +++ b/js/flag/PK.d.ts @@ -0,0 +1 @@ +export declare const PK: string[]; \ No newline at end of file diff --git a/js/flag/PL.d.ts b/js/flag/PL.d.ts new file mode 100644 index 000000000..85dbacd49 --- /dev/null +++ b/js/flag/PL.d.ts @@ -0,0 +1 @@ +export declare const PL: string[]; \ No newline at end of file diff --git a/js/flag/PT.d.ts b/js/flag/PT.d.ts new file mode 100644 index 000000000..4c920795b --- /dev/null +++ b/js/flag/PT.d.ts @@ -0,0 +1 @@ +export declare const PT: string[]; \ No newline at end of file diff --git a/js/flag/PW.d.ts b/js/flag/PW.d.ts new file mode 100644 index 000000000..69ef84921 --- /dev/null +++ b/js/flag/PW.d.ts @@ -0,0 +1 @@ +export declare const PW: string[]; \ No newline at end of file diff --git a/js/flag/PY.d.ts b/js/flag/PY.d.ts new file mode 100644 index 000000000..6502993b6 --- /dev/null +++ b/js/flag/PY.d.ts @@ -0,0 +1 @@ +export declare const PY: string[]; \ No newline at end of file diff --git a/js/flag/QA.d.ts b/js/flag/QA.d.ts new file mode 100644 index 000000000..e3551c99b --- /dev/null +++ b/js/flag/QA.d.ts @@ -0,0 +1 @@ +export declare const QA: string[]; \ No newline at end of file diff --git a/js/flag/RO.d.ts b/js/flag/RO.d.ts new file mode 100644 index 000000000..0da4dbbed --- /dev/null +++ b/js/flag/RO.d.ts @@ -0,0 +1 @@ +export declare const RO: string[]; \ No newline at end of file diff --git a/js/flag/RS.d.ts b/js/flag/RS.d.ts new file mode 100644 index 000000000..4dbc24a3e --- /dev/null +++ b/js/flag/RS.d.ts @@ -0,0 +1 @@ +export declare const RS: string[]; \ No newline at end of file diff --git a/js/flag/RU.d.ts b/js/flag/RU.d.ts new file mode 100644 index 000000000..f946a9e53 --- /dev/null +++ b/js/flag/RU.d.ts @@ -0,0 +1 @@ +export declare const RU: string[]; \ No newline at end of file diff --git a/js/flag/RW.d.ts b/js/flag/RW.d.ts new file mode 100644 index 000000000..6acbc4833 --- /dev/null +++ b/js/flag/RW.d.ts @@ -0,0 +1 @@ +export declare const RW: string[]; \ No newline at end of file diff --git a/js/flag/SA.d.ts b/js/flag/SA.d.ts new file mode 100644 index 000000000..bd16c2c7c --- /dev/null +++ b/js/flag/SA.d.ts @@ -0,0 +1 @@ +export declare const SA: string[]; \ No newline at end of file diff --git a/js/flag/SB.d.ts b/js/flag/SB.d.ts new file mode 100644 index 000000000..60a3c9695 --- /dev/null +++ b/js/flag/SB.d.ts @@ -0,0 +1 @@ +export declare const SB: string[]; \ No newline at end of file diff --git a/js/flag/SC.d.ts b/js/flag/SC.d.ts new file mode 100644 index 000000000..d4e16c993 --- /dev/null +++ b/js/flag/SC.d.ts @@ -0,0 +1 @@ +export declare const SC: string[]; \ No newline at end of file diff --git a/js/flag/SD.d.ts b/js/flag/SD.d.ts new file mode 100644 index 000000000..718dc1603 --- /dev/null +++ b/js/flag/SD.d.ts @@ -0,0 +1 @@ +export declare const SD: string[]; \ No newline at end of file diff --git a/js/flag/SE.d.ts b/js/flag/SE.d.ts new file mode 100644 index 000000000..8535c7aea --- /dev/null +++ b/js/flag/SE.d.ts @@ -0,0 +1 @@ +export declare const SE: string[]; \ No newline at end of file diff --git a/js/flag/SG.d.ts b/js/flag/SG.d.ts new file mode 100644 index 000000000..f653cecc2 --- /dev/null +++ b/js/flag/SG.d.ts @@ -0,0 +1 @@ +export declare const SG: string[]; \ No newline at end of file diff --git a/js/flag/SI.d.ts b/js/flag/SI.d.ts new file mode 100644 index 000000000..0d9705e12 --- /dev/null +++ b/js/flag/SI.d.ts @@ -0,0 +1 @@ +export declare const SI: string[]; \ No newline at end of file diff --git a/js/flag/SK.d.ts b/js/flag/SK.d.ts new file mode 100644 index 000000000..d43a53fbb --- /dev/null +++ b/js/flag/SK.d.ts @@ -0,0 +1 @@ +export declare const SK: string[]; \ No newline at end of file diff --git a/js/flag/SL.d.ts b/js/flag/SL.d.ts new file mode 100644 index 000000000..b8b9e89e0 --- /dev/null +++ b/js/flag/SL.d.ts @@ -0,0 +1 @@ +export declare const SL: string[]; \ No newline at end of file diff --git a/js/flag/SM.d.ts b/js/flag/SM.d.ts new file mode 100644 index 000000000..162f3d0c1 --- /dev/null +++ b/js/flag/SM.d.ts @@ -0,0 +1 @@ +export declare const SM: string[]; \ No newline at end of file diff --git a/js/flag/SN.d.ts b/js/flag/SN.d.ts new file mode 100644 index 000000000..58eef0b8f --- /dev/null +++ b/js/flag/SN.d.ts @@ -0,0 +1 @@ +export declare const SN: string[]; \ No newline at end of file diff --git a/js/flag/SO.d.ts b/js/flag/SO.d.ts new file mode 100644 index 000000000..b2392fd92 --- /dev/null +++ b/js/flag/SO.d.ts @@ -0,0 +1 @@ +export declare const SO: string[]; \ No newline at end of file diff --git a/js/flag/SR.d.ts b/js/flag/SR.d.ts new file mode 100644 index 000000000..7578f0649 --- /dev/null +++ b/js/flag/SR.d.ts @@ -0,0 +1 @@ +export declare const SR: string[]; \ No newline at end of file diff --git a/js/flag/SS.d.ts b/js/flag/SS.d.ts new file mode 100644 index 000000000..dc5f44035 --- /dev/null +++ b/js/flag/SS.d.ts @@ -0,0 +1 @@ +export declare const SS: string[]; \ No newline at end of file diff --git a/js/flag/ST.d.ts b/js/flag/ST.d.ts new file mode 100644 index 000000000..fc3312fa5 --- /dev/null +++ b/js/flag/ST.d.ts @@ -0,0 +1 @@ +export declare const ST: string[]; \ No newline at end of file diff --git a/js/flag/SV.d.ts b/js/flag/SV.d.ts new file mode 100644 index 000000000..8c8f48889 --- /dev/null +++ b/js/flag/SV.d.ts @@ -0,0 +1 @@ +export declare const SV: string[]; \ No newline at end of file diff --git a/js/flag/SY.d.ts b/js/flag/SY.d.ts new file mode 100644 index 000000000..e44faea03 --- /dev/null +++ b/js/flag/SY.d.ts @@ -0,0 +1 @@ +export declare const SY: string[]; \ No newline at end of file diff --git a/js/flag/SZ.d.ts b/js/flag/SZ.d.ts new file mode 100644 index 000000000..9cfe2f768 --- /dev/null +++ b/js/flag/SZ.d.ts @@ -0,0 +1 @@ +export declare const SZ: string[]; \ No newline at end of file diff --git a/js/flag/TD.d.ts b/js/flag/TD.d.ts new file mode 100644 index 000000000..751ef3435 --- /dev/null +++ b/js/flag/TD.d.ts @@ -0,0 +1 @@ +export declare const TD: string[]; \ No newline at end of file diff --git a/js/flag/TG.d.ts b/js/flag/TG.d.ts new file mode 100644 index 000000000..59865faac --- /dev/null +++ b/js/flag/TG.d.ts @@ -0,0 +1 @@ +export declare const TG: string[]; \ No newline at end of file diff --git a/js/flag/TH.d.ts b/js/flag/TH.d.ts new file mode 100644 index 000000000..b84e4d297 --- /dev/null +++ b/js/flag/TH.d.ts @@ -0,0 +1 @@ +export declare const TH: string[]; \ No newline at end of file diff --git a/js/flag/TJ.d.ts b/js/flag/TJ.d.ts new file mode 100644 index 000000000..fec13bc2f --- /dev/null +++ b/js/flag/TJ.d.ts @@ -0,0 +1 @@ +export declare const TJ: string[]; \ No newline at end of file diff --git a/js/flag/TL.d.ts b/js/flag/TL.d.ts new file mode 100644 index 000000000..2d9eb27c2 --- /dev/null +++ b/js/flag/TL.d.ts @@ -0,0 +1 @@ +export declare const TL: string[]; \ No newline at end of file diff --git a/js/flag/TM.d.ts b/js/flag/TM.d.ts new file mode 100644 index 000000000..cd8a02f1f --- /dev/null +++ b/js/flag/TM.d.ts @@ -0,0 +1 @@ +export declare const TM: string[]; \ No newline at end of file diff --git a/js/flag/TN.d.ts b/js/flag/TN.d.ts new file mode 100644 index 000000000..307b937ed --- /dev/null +++ b/js/flag/TN.d.ts @@ -0,0 +1 @@ +export declare const TN: string[]; \ No newline at end of file diff --git a/js/flag/TO.d.ts b/js/flag/TO.d.ts new file mode 100644 index 000000000..734f99e19 --- /dev/null +++ b/js/flag/TO.d.ts @@ -0,0 +1 @@ +export declare const TO: string[]; \ No newline at end of file diff --git a/js/flag/TR.d.ts b/js/flag/TR.d.ts new file mode 100644 index 000000000..962ca4525 --- /dev/null +++ b/js/flag/TR.d.ts @@ -0,0 +1 @@ +export declare const TR: string[]; \ No newline at end of file diff --git a/js/flag/TT.d.ts b/js/flag/TT.d.ts new file mode 100644 index 000000000..00288def9 --- /dev/null +++ b/js/flag/TT.d.ts @@ -0,0 +1 @@ +export declare const TT: string[]; \ No newline at end of file diff --git a/js/flag/TV.d.ts b/js/flag/TV.d.ts new file mode 100644 index 000000000..d7bc4d9a9 --- /dev/null +++ b/js/flag/TV.d.ts @@ -0,0 +1 @@ +export declare const TV: string[]; \ No newline at end of file diff --git a/js/flag/TW.d.ts b/js/flag/TW.d.ts new file mode 100644 index 000000000..19c8cbb4c --- /dev/null +++ b/js/flag/TW.d.ts @@ -0,0 +1 @@ +export declare const TW: string[]; \ No newline at end of file diff --git a/js/flag/TZ.d.ts b/js/flag/TZ.d.ts new file mode 100644 index 000000000..2217b6793 --- /dev/null +++ b/js/flag/TZ.d.ts @@ -0,0 +1 @@ +export declare const TZ: string[]; \ No newline at end of file diff --git a/js/flag/UA.d.ts b/js/flag/UA.d.ts new file mode 100644 index 000000000..dee07aef0 --- /dev/null +++ b/js/flag/UA.d.ts @@ -0,0 +1 @@ +export declare const UA: string[]; \ No newline at end of file diff --git a/js/flag/UG.d.ts b/js/flag/UG.d.ts new file mode 100644 index 000000000..f83883081 --- /dev/null +++ b/js/flag/UG.d.ts @@ -0,0 +1 @@ +export declare const UG: string[]; \ No newline at end of file diff --git a/js/flag/US.d.ts b/js/flag/US.d.ts new file mode 100644 index 000000000..25f53c17e --- /dev/null +++ b/js/flag/US.d.ts @@ -0,0 +1 @@ +export declare const US: string[]; \ No newline at end of file diff --git a/js/flag/UY.d.ts b/js/flag/UY.d.ts new file mode 100644 index 000000000..4c51b99df --- /dev/null +++ b/js/flag/UY.d.ts @@ -0,0 +1 @@ +export declare const UY: string[]; \ No newline at end of file diff --git a/js/flag/UZ.d.ts b/js/flag/UZ.d.ts new file mode 100644 index 000000000..27170dccc --- /dev/null +++ b/js/flag/UZ.d.ts @@ -0,0 +1 @@ +export declare const UZ: string[]; \ No newline at end of file diff --git a/js/flag/VA.d.ts b/js/flag/VA.d.ts new file mode 100644 index 000000000..408d9bd2b --- /dev/null +++ b/js/flag/VA.d.ts @@ -0,0 +1 @@ +export declare const VA: string[]; \ No newline at end of file diff --git a/js/flag/VC.d.ts b/js/flag/VC.d.ts new file mode 100644 index 000000000..5053c4fd5 --- /dev/null +++ b/js/flag/VC.d.ts @@ -0,0 +1 @@ +export declare const VC: string[]; \ No newline at end of file diff --git a/js/flag/VE.d.ts b/js/flag/VE.d.ts new file mode 100644 index 000000000..43954c065 --- /dev/null +++ b/js/flag/VE.d.ts @@ -0,0 +1 @@ +export declare const VE: string[]; \ No newline at end of file diff --git a/js/flag/VN.d.ts b/js/flag/VN.d.ts new file mode 100644 index 000000000..d7c629733 --- /dev/null +++ b/js/flag/VN.d.ts @@ -0,0 +1 @@ +export declare const VN: string[]; \ No newline at end of file diff --git a/js/flag/WS.d.ts b/js/flag/WS.d.ts new file mode 100644 index 000000000..e87071abf --- /dev/null +++ b/js/flag/WS.d.ts @@ -0,0 +1 @@ +export declare const WS: string[]; \ No newline at end of file diff --git a/js/flag/XK.d.ts b/js/flag/XK.d.ts new file mode 100644 index 000000000..3d8a15102 --- /dev/null +++ b/js/flag/XK.d.ts @@ -0,0 +1 @@ +export declare const XK: string[]; \ No newline at end of file diff --git a/js/flag/YE.d.ts b/js/flag/YE.d.ts new file mode 100644 index 000000000..1698793ba --- /dev/null +++ b/js/flag/YE.d.ts @@ -0,0 +1 @@ +export declare const YE: string[]; \ No newline at end of file diff --git a/js/flag/ZA.d.ts b/js/flag/ZA.d.ts new file mode 100644 index 000000000..6850d0220 --- /dev/null +++ b/js/flag/ZA.d.ts @@ -0,0 +1 @@ +export declare const ZA: string[]; \ No newline at end of file diff --git a/js/flag/ZM.d.ts b/js/flag/ZM.d.ts new file mode 100644 index 000000000..60f2751dd --- /dev/null +++ b/js/flag/ZM.d.ts @@ -0,0 +1 @@ +export declare const ZM: string[]; \ No newline at end of file diff --git a/js/flag/ZW.d.ts b/js/flag/ZW.d.ts new file mode 100644 index 000000000..c9559152c --- /dev/null +++ b/js/flag/ZW.d.ts @@ -0,0 +1 @@ +export declare const ZW: string[]; \ No newline at end of file diff --git a/js/flag/flag-set.d.ts b/js/flag/flag-set.d.ts new file mode 100644 index 000000000..690ce3ff2 --- /dev/null +++ b/js/flag/flag-set.d.ts @@ -0,0 +1,198 @@ +export declare const flagSet: { + "AG": string[]; + "AM": string[]; + "AE": string[]; + "AO": string[]; + "AU": string[]; + "AT": string[]; + "AZ": string[]; + "BA": string[]; + "BB": string[]; + "BE": string[]; + "BF": string[]; + "BD": string[]; + "BH": string[]; + "BG": string[]; + "BI": string[]; + "BJ": string[]; + "BO": string[]; + "BS": string[]; + "BW": string[]; + "BR": string[]; + "CA": string[]; + "CD": string[]; + "CG": string[]; + "CF": string[]; + "CH": string[]; + "CI": string[]; + "CM": string[]; + "CN": string[]; + "CL": string[]; + "CO": string[]; + "CR": string[]; + "CU": string[]; + "CV": string[]; + "CZ": string[]; + "DE": string[]; + "DJ": string[]; + "DZ": string[]; + "DK": string[]; + "ET": string[]; + "FI": string[]; + "ER": string[]; + "EE": string[]; + "FM": string[]; + "FR": string[]; + "GB": string[]; + "GA": string[]; + "GD": string[]; + "GH": string[]; + "GE": string[]; + "GR": string[]; + "GM": string[]; + "GW": string[]; + "HN": string[]; + "HU": string[]; + "IE": string[]; + "ID": string[]; + "IL": string[]; + "IN": string[]; + "GY": string[]; + "IQ": string[]; + "IS": string[]; + "IT": string[]; + "JM": string[]; + "JO": string[]; + "KE": string[]; + "JP": string[]; + "IR": string[]; + "KM": string[]; + "KN": string[]; + "KP": string[]; + "KW": string[]; + "LA": string[]; + "KI": string[]; + "LC": string[]; + "LR": string[]; + "LS": string[]; + "KR": string[]; + "LT": string[]; + "LU": string[]; + "LV": string[]; + "LY": string[]; + "MC": string[]; + "MA": string[]; + "MH": string[]; + "MG": string[]; + "ML": string[]; + "MK": string[]; + "MM": string[]; + "MN": string[]; + "MR": string[]; + "MV": string[]; + "MY": string[]; + "MU": string[]; + "MZ": string[]; + "NA": string[]; + "NE": string[]; + "NG": string[]; + "NL": string[]; + "NR": string[]; + "NO": string[]; + "NZ": string[]; + "MW": string[]; + "NP": string[]; + "PA": string[]; + "NU": string[]; + "PE": string[]; + "PG": string[]; + "PH": string[]; + "PK": string[]; + "PL": string[]; + "PW": string[]; + "QA": string[]; + "RO": string[]; + "RU": string[]; + "RW": string[]; + "SB": string[]; + "SD": string[]; + "SC": string[]; + "SE": string[]; + "SG": string[]; + "SI": string[]; + "SK": string[]; + "SL": string[]; + "SN": string[]; + "SO": string[]; + "SR": string[]; + "SS": string[]; + "ST": string[]; + "SY": string[]; + "TD": string[]; + "TG": string[]; + "TH": string[]; + "TJ": string[]; + "TL": string[]; + "TN": string[]; + "TO": string[]; + "TR": string[]; + "TT": string[]; + "TV": string[]; + "TW": string[]; + "TZ": string[]; + "UA": string[]; + "UG": string[]; + "SZ": string[]; + "UZ": string[]; + "VC": string[]; + "VE": string[]; + "VN": string[]; + "WS": string[]; + "YE": string[]; + "ZA": string[]; + "UY": string[]; + "US": string[]; + "ZM": string[]; + "ZW": string[]; + "XK": string[]; + "AL": string[]; + "AR": string[]; + "BY": string[]; + "DM": string[]; + "CY": string[]; + "GN": string[]; + "GQ": string[]; + "KG": string[]; + "LB": string[]; + "MT": string[]; + "KH": string[]; + "LI": string[]; + "NI": string[]; + "OM": string[]; + "SA": string[]; + "BN": string[]; + "EG": string[]; + "KZ": string[]; + "MD": string[]; + "LK": string[]; + "BT": string[]; + "HT": string[]; + "PY": string[]; + "PT": string[]; + "AF": string[]; + "TM": string[]; + "AD": string[]; + "VA": string[]; + "ME": string[]; + "BZ": string[]; + "GT": string[]; + "FJ": string[]; + "HR": string[]; + "ES": string[]; + "SM": string[]; + "DO": string[]; + "SV": string[]; + "MX": string[]; + "EC": string[]; + "RS": string[]; +} \ No newline at end of file diff --git a/js/flag/flag-set.js b/js/flag/flag-set.js index f242114e4..0b97f022f 100644 --- a/js/flag/flag-set.js +++ b/js/flag/flag-set.js @@ -1 +1 @@ -export const flagSet = {"AG":["301 201",""],"AM":["301 151",""],"AE":["301 151",""],"AO":["300 200",""],"AU":["301 151",""],"BB":["301 201",""],"AT":["301 201",""],"BH":["301 181",""],"BA":["301 151",""],"BF":["301 201",""],"BI":["301 181",""],"BD":["301 181",""],"BG":["301 181",""],"AZ":["301 151",""],"BJ":["301 201",""],"BO":["301 205",""],"BW":["301 201",""],"BR":["301 211",""],"BS":["301 151",""],"CA":["301 151",""],"BE":["301 261",""],"CF":["301 201",""],"CL":["301 201",""],"CD":["301 225",""],"CG":["301 201",""],"CI":["301 201",""],"CM":["301 201",""],"CN":["301 201",""],"CV":["301 177",""],"CR":["301 181",""],"CO":["301 201",""],"CH":["301 301",""],"CU":["301 151",""],"DJ":["301 201",""],"DK":["301 227",""],"CZ":["301 201",""],"DE":["301 181",""],"DZ":["300 200",""],"EE":["301 191",""],"ET":["301 151",""],"ER":["301 151",""],"FI":["301 185",""],"FM":["301 159",""],"GA":["301 225",""],"GB":["301 151",""],"GD":["301 181",""],"FR":["301 201",""],"GE":["300 200",""],"GH":["301 201",""],"GR":["301 201",""],"GM":["301 201",""],"GW":["301 151",""],"GY":["301 181",""],"HN":["301 151",""],"IL":["301 219",""],"HU":["301 151",""],"IN":["301 201",""],"ID":["301 201",""],"IE":["301 151",""],"IQ":["301 201",""],"IS":["301 217",""],"IR":["300 173",""],"IT":["301 201",""],"JO":["301 151",""],"KM":["301 181",""],"JM":["301 151",""],"KI":["301 151",""],"JP":["301 201",""],"KE":["301 201",""],"KW":["301 151",""],"KN":["301 201",""],"KP":["301 151",""],"KR":["301 201",""],"LA":["301 201",""],"LC":["301 151",""],"LT":["301 181",""],"LR":["301 159",""],"LV":["301 151",""],"LU":["301 181",""],"LY":["301 151",""],"MC":["301 241",""],"MA":["301 201",""],"LS":["300 200",""],"MG":["301 201",""],"MK":["301 151",""],"MH":["302 160",""],"ML":["301 201",""],"MU":["301 201",""],"MM":["301 201",""],"MN":["301 151",""],"MW":["301 201",""],"MV":["301 201",""],"MR":["301 201",""],"MY":["301 151",""],"NA":["301 201",""],"NE":["301 259",""],"NG":["301 151",""],"MZ":["301 201",""],"NP":["301 380",""],"NL":["301 201",""],"NU":["301 151",""],"NO":["301 219",""],"NR":["301 151",""],"PA":["301 201",""],"NZ":["301 151",""],"PG":["301 225",""],"PE":["301 201",""],"PL":["301 189",""],"PH":["301 151",""],"PK":["301 201",""],"PW":["301 189",""],"QA":["301 119",""],"RO":["301 201",""],"SB":["301 151",""],"RW":["301 201",""],"SC":["301 151",""],"SD":["301 151",""],"SE":["301 189",""],"SG":["301 201",""],"SI":["300 151",""],"RU":["301 201",""],"SK":["301 201",""],"SL":["301 201",""],"SR":["301 201",""],"SN":["301 201",""],"SO":["300 200",""],"SS":["301 151",""],"SZ":["301 201",""],"ST":["301 151",""],"SY":["301 201",""],"TG":["300 187",""],"TH":["301 201",""],"TD":["301 201",""],"TJ":["301 151",""],"TN":["301 201",""],"TL":["300 150",""],"TO":["301 151",""],"TV":["301 151",""],"TR":["301 201",""],"TZ":["301 201",""],"TW":["300 200",""],"UG":["301 201",""],"UA":["301 201",""],"US":["300 159",""],"UY":["301 201",""],"VC":["301 201",""],"UZ":["301 151",""],"VE":["301 201",""],"ZA":["300 200",""],"VN":["301 201",""],"ZM":["301 201",""],"TT":["301 181",""],"XK":["300 200",""],"ZW":["301 151",""],"WS":["301 151",""],"YE":["300 200",""],"AL":["300 216",""],"AR":["301 188",""],"BY":["301 151",""],"CY":["301 201",""],"DM":["301 151",""],"GN":["301 201",""],"GQ":["301 201",""],"KG":["301 181",""],"LB":["301 201",""],"MT":["301 201",""],"KH":["301 193",""],"LI":["301 181",""],"NI":["300 180",""],"OM":["301 151",""],"SA":["301 201",""],"BN":["301 151",""],"EG":["301 201",""],"KZ":["301 151",""],"LK":["301 151",""],"MD":["301 151",""],"BT":["301 201",""],"HT":["301 181",""],"PY":["301 181",""],"PT":["301 201",""],"AF":["300 200",""],"TM":["300 201",""],"AD":["300 210",""],"VA":["301 301",""],"ME":["300 150",""],"BZ":["300 200",""],"GT":["301 189",""],"FJ":["301 151",""],"HR":["301 151",""],"ES":["301 201",""],"SM":["301 225",""],"DO":["301 188",""],"SV":["301 171",""],"MX":["301 173",""],"EC":["301 201",""],"RS":["301 201",""]} \ No newline at end of file +export const flagSet = {"AG":["301 201",""],"AM":["301 151",""],"AE":["301 151",""],"AO":["300 200",""],"AU":["301 151",""],"AT":["301 201",""],"AZ":["301 151",""],"BA":["301 151",""],"BB":["301 201",""],"BE":["301 261",""],"BF":["301 201",""],"BD":["301 181",""],"BH":["301 181",""],"BG":["301 181",""],"BI":["301 181",""],"BJ":["301 201",""],"BO":["301 205",""],"BS":["301 151",""],"BW":["301 201",""],"BR":["301 211",""],"CA":["301 151",""],"CD":["301 225",""],"CG":["301 201",""],"CF":["301 201",""],"CH":["301 301",""],"CI":["301 201",""],"CM":["301 201",""],"CN":["301 201",""],"CL":["301 201",""],"CO":["301 201",""],"CR":["301 181",""],"CU":["301 151",""],"CV":["301 177",""],"CZ":["301 201",""],"DE":["301 181",""],"DJ":["301 201",""],"DZ":["300 200",""],"DK":["301 227",""],"ET":["301 151",""],"FI":["301 185",""],"ER":["301 151",""],"EE":["301 191",""],"FM":["301 159",""],"FR":["301 201",""],"GB":["301 151",""],"GA":["301 225",""],"GD":["301 181",""],"GH":["301 201",""],"GE":["300 200",""],"GR":["301 201",""],"GM":["301 201",""],"GW":["301 151",""],"HN":["301 151",""],"HU":["301 151",""],"IE":["301 151",""],"ID":["301 201",""],"IL":["301 219",""],"IN":["301 201",""],"GY":["301 181",""],"IQ":["301 201",""],"IS":["301 217",""],"IT":["301 201",""],"JM":["301 151",""],"JO":["301 151",""],"KE":["301 201",""],"JP":["301 201",""],"IR":["300 173",""],"KM":["301 181",""],"KN":["301 201",""],"KP":["301 151",""],"KW":["301 151",""],"LA":["301 201",""],"KI":["301 151",""],"LC":["301 151",""],"LR":["301 159",""],"LS":["300 200",""],"KR":["301 201",""],"LT":["301 181",""],"LU":["301 181",""],"LV":["301 151",""],"LY":["301 151",""],"MC":["301 241",""],"MA":["301 201",""],"MH":["302 160",""],"MG":["301 201",""],"ML":["301 201",""],"MK":["301 151",""],"MM":["301 201",""],"MN":["301 151",""],"MR":["301 201",""],"MV":["301 201",""],"MY":["301 151",""],"MU":["301 201",""],"MZ":["301 201",""],"NA":["301 201",""],"NE":["301 259",""],"NG":["301 151",""],"NL":["301 201",""],"NR":["301 151",""],"NO":["301 219",""],"NZ":["301 151",""],"MW":["301 201",""],"NP":["301 380",""],"PA":["301 201",""],"NU":["301 151",""],"PE":["301 201",""],"PG":["301 225",""],"PH":["301 151",""],"PK":["301 201",""],"PL":["301 189",""],"PW":["301 189",""],"QA":["301 119",""],"RO":["301 201",""],"RU":["301 201",""],"RW":["301 201",""],"SB":["301 151",""],"SD":["301 151",""],"SC":["301 151",""],"SE":["301 189",""],"SG":["301 201",""],"SI":["300 151",""],"SK":["301 201",""],"SL":["301 201",""],"SN":["301 201",""],"SO":["300 200",""],"SR":["301 201",""],"SS":["301 151",""],"ST":["301 151",""],"SY":["301 201",""],"TD":["301 201",""],"TG":["300 187",""],"TH":["301 201",""],"TJ":["301 151",""],"TL":["300 150",""],"TN":["301 201",""],"TO":["301 151",""],"TR":["301 201",""],"TT":["301 181",""],"TV":["301 151",""],"TW":["300 200",""],"TZ":["301 201",""],"UA":["301 201",""],"UG":["301 201",""],"SZ":["301 201",""],"UZ":["301 151",""],"VC":["301 201",""],"VE":["301 201",""],"VN":["301 201",""],"WS":["301 151",""],"YE":["300 200",""],"ZA":["300 200",""],"UY":["301 201",""],"US":["300 159",""],"ZM":["301 201",""],"ZW":["301 151",""],"XK":["300 200",""],"AL":["300 216",""],"AR":["301 188",""],"BY":["301 151",""],"DM":["301 151",""],"CY":["301 201",""],"GN":["301 201",""],"GQ":["301 201",""],"KG":["301 181",""],"LB":["301 201",""],"MT":["301 201",""],"KH":["301 193",""],"LI":["301 181",""],"NI":["300 180",""],"OM":["301 151",""],"SA":["301 201",""],"BN":["301 151",""],"EG":["301 201",""],"KZ":["301 151",""],"MD":["301 151",""],"LK":["301 151",""],"BT":["301 201",""],"HT":["301 181",""],"PY":["301 181",""],"PT":["301 201",""],"AF":["300 200",""],"TM":["300 201",""],"AD":["300 210",""],"VA":["301 301",""],"ME":["300 150",""],"BZ":["300 200",""],"GT":["301 189",""],"FJ":["301 151",""],"HR":["301 151",""],"ES":["301 201",""],"SM":["301 225",""],"DO":["301 188",""],"SV":["301 171",""],"MX":["301 173",""],"EC":["301 201",""],"RS":["301 201",""]} \ No newline at end of file diff --git a/js/flag/index.d.ts b/js/flag/index.d.ts index 8818dcaff..0fd05f563 100644 --- a/js/flag/index.d.ts +++ b/js/flag/index.d.ts @@ -1,375 +1,335 @@ -export declare const AD: string[]; -export declare const AE: string[]; -export declare const AF: string[]; +export declare const flagSet: { + "AG": string[]; + "AM": string[]; + "AE": string[]; + "AO": string[]; + "AU": string[]; + "AT": string[]; + "AZ": string[]; + "BA": string[]; + "BB": string[]; + "BE": string[]; + "BF": string[]; + "BD": string[]; + "BH": string[]; + "BG": string[]; + "BI": string[]; + "BJ": string[]; + "BO": string[]; + "BS": string[]; + "BW": string[]; + "BR": string[]; + "CA": string[]; + "CD": string[]; + "CG": string[]; + "CF": string[]; + "CH": string[]; + "CI": string[]; + "CM": string[]; + "CN": string[]; + "CL": string[]; + "CO": string[]; + "CR": string[]; + "CU": string[]; + "CV": string[]; + "CZ": string[]; + "DE": string[]; + "DJ": string[]; + "DZ": string[]; + "DK": string[]; + "ET": string[]; + "FI": string[]; + "ER": string[]; + "EE": string[]; + "FM": string[]; + "FR": string[]; + "GB": string[]; + "GA": string[]; + "GD": string[]; + "GH": string[]; + "GE": string[]; + "GR": string[]; + "GM": string[]; + "GW": string[]; + "HN": string[]; + "HU": string[]; + "IE": string[]; + "ID": string[]; + "IL": string[]; + "IN": string[]; + "GY": string[]; + "IQ": string[]; + "IS": string[]; + "IT": string[]; + "JM": string[]; + "JO": string[]; + "KE": string[]; + "JP": string[]; + "IR": string[]; + "KM": string[]; + "KN": string[]; + "KP": string[]; + "KW": string[]; + "LA": string[]; + "KI": string[]; + "LC": string[]; + "LR": string[]; + "LS": string[]; + "KR": string[]; + "LT": string[]; + "LU": string[]; + "LV": string[]; + "LY": string[]; + "MC": string[]; + "MA": string[]; + "MH": string[]; + "MG": string[]; + "ML": string[]; + "MK": string[]; + "MM": string[]; + "MN": string[]; + "MR": string[]; + "MV": string[]; + "MY": string[]; + "MU": string[]; + "MZ": string[]; + "NA": string[]; + "NE": string[]; + "NG": string[]; + "NL": string[]; + "NR": string[]; + "NO": string[]; + "NZ": string[]; + "MW": string[]; + "NP": string[]; + "PA": string[]; + "NU": string[]; + "PE": string[]; + "PG": string[]; + "PH": string[]; + "PK": string[]; + "PL": string[]; + "PW": string[]; + "QA": string[]; + "RO": string[]; + "RU": string[]; + "RW": string[]; + "SB": string[]; + "SD": string[]; + "SC": string[]; + "SE": string[]; + "SG": string[]; + "SI": string[]; + "SK": string[]; + "SL": string[]; + "SN": string[]; + "SO": string[]; + "SR": string[]; + "SS": string[]; + "ST": string[]; + "SY": string[]; + "TD": string[]; + "TG": string[]; + "TH": string[]; + "TJ": string[]; + "TL": string[]; + "TN": string[]; + "TO": string[]; + "TR": string[]; + "TT": string[]; + "TV": string[]; + "TW": string[]; + "TZ": string[]; + "UA": string[]; + "UG": string[]; + "SZ": string[]; + "UZ": string[]; + "VC": string[]; + "VE": string[]; + "VN": string[]; + "WS": string[]; + "YE": string[]; + "ZA": string[]; + "UY": string[]; + "US": string[]; + "ZM": string[]; + "ZW": string[]; + "XK": string[]; + "AL": string[]; + "AR": string[]; + "BY": string[]; + "DM": string[]; + "CY": string[]; + "GN": string[]; + "GQ": string[]; + "KG": string[]; + "LB": string[]; + "MT": string[]; + "KH": string[]; + "LI": string[]; + "NI": string[]; + "OM": string[]; + "SA": string[]; + "BN": string[]; + "EG": string[]; + "KZ": string[]; + "MD": string[]; + "LK": string[]; + "BT": string[]; + "HT": string[]; + "PY": string[]; + "PT": string[]; + "AF": string[]; + "TM": string[]; + "AD": string[]; + "VA": string[]; + "ME": string[]; + "BZ": string[]; + "GT": string[]; + "FJ": string[]; + "HR": string[]; + "ES": string[]; + "SM": string[]; + "DO": string[]; + "SV": string[]; + "MX": string[]; + "EC": string[]; + "RS": string[]; +} export declare const AG: string[]; -export declare const AL: string[]; export declare const AM: string[]; +export declare const AE: string[]; export declare const AO: string[]; -export declare const AR: string[]; -export declare const AT: string[]; export declare const AU: string[]; +export declare const AT: string[]; export declare const AZ: string[]; export declare const BA: string[]; export declare const BB: string[]; -export declare const BD: string[]; export declare const BE: string[]; export declare const BF: string[]; -export declare const BG: string[]; +export declare const BD: string[]; export declare const BH: string[]; +export declare const BG: string[]; export declare const BI: string[]; export declare const BJ: string[]; -export declare const BN: string[]; export declare const BO: string[]; -export declare const BR: string[]; export declare const BS: string[]; -export declare const BT: string[]; export declare const BW: string[]; -export declare const BY: string[]; -export declare const BZ: string[]; +export declare const BR: string[]; export declare const CA: string[]; export declare const CD: string[]; -export declare const CF: string[]; export declare const CG: string[]; +export declare const CF: string[]; export declare const CH: string[]; export declare const CI: string[]; -export declare const CL: string[]; export declare const CM: string[]; export declare const CN: string[]; +export declare const CL: string[]; export declare const CO: string[]; export declare const CR: string[]; export declare const CU: string[]; export declare const CV: string[]; -export declare const CY: string[]; export declare const CZ: string[]; export declare const DE: string[]; export declare const DJ: string[]; -export declare const DK: string[]; -export declare const DM: string[]; -export declare const DO: string[]; export declare const DZ: string[]; -export declare const EC: string[]; -export declare const EE: string[]; -export declare const EG: string[]; -export declare const ER: string[]; -export declare const ES: string[]; +export declare const DK: string[]; export declare const ET: string[]; export declare const FI: string[]; -export declare const FJ: string[]; -export declare const flagSet: { - "AG": string[]; - "AM": string[]; - "AE": string[]; - "AO": string[]; - "AU": string[]; - "BB": string[]; - "AT": string[]; - "BH": string[]; - "BA": string[]; - "BF": string[]; - "BI": string[]; - "BD": string[]; - "BG": string[]; - "AZ": string[]; - "BJ": string[]; - "BO": string[]; - "BW": string[]; - "BR": string[]; - "BS": string[]; - "CA": string[]; - "BE": string[]; - "CF": string[]; - "CL": string[]; - "CD": string[]; - "CG": string[]; - "CI": string[]; - "CM": string[]; - "CN": string[]; - "CV": string[]; - "CR": string[]; - "CO": string[]; - "CH": string[]; - "CU": string[]; - "DJ": string[]; - "DK": string[]; - "CZ": string[]; - "DE": string[]; - "DZ": string[]; - "EE": string[]; - "ET": string[]; - "ER": string[]; - "FI": string[]; - "FM": string[]; - "GA": string[]; - "GB": string[]; - "GD": string[]; - "FR": string[]; - "GE": string[]; - "GH": string[]; - "GR": string[]; - "GM": string[]; - "GW": string[]; - "GY": string[]; - "HN": string[]; - "IL": string[]; - "HU": string[]; - "IN": string[]; - "ID": string[]; - "IE": string[]; - "IQ": string[]; - "IS": string[]; - "IR": string[]; - "IT": string[]; - "JO": string[]; - "KM": string[]; - "JM": string[]; - "KI": string[]; - "JP": string[]; - "KE": string[]; - "KW": string[]; - "KN": string[]; - "KP": string[]; - "KR": string[]; - "LA": string[]; - "LC": string[]; - "LT": string[]; - "LR": string[]; - "LV": string[]; - "LU": string[]; - "LY": string[]; - "MC": string[]; - "MA": string[]; - "LS": string[]; - "MG": string[]; - "MK": string[]; - "MH": string[]; - "ML": string[]; - "MU": string[]; - "MM": string[]; - "MN": string[]; - "MW": string[]; - "MV": string[]; - "MR": string[]; - "MY": string[]; - "NA": string[]; - "NE": string[]; - "NG": string[]; - "MZ": string[]; - "NP": string[]; - "NL": string[]; - "NU": string[]; - "NO": string[]; - "NR": string[]; - "PA": string[]; - "NZ": string[]; - "PG": string[]; - "PE": string[]; - "PL": string[]; - "PH": string[]; - "PK": string[]; - "PW": string[]; - "QA": string[]; - "RO": string[]; - "SB": string[]; - "RW": string[]; - "SC": string[]; - "SD": string[]; - "SE": string[]; - "SG": string[]; - "SI": string[]; - "RU": string[]; - "SK": string[]; - "SL": string[]; - "SR": string[]; - "SN": string[]; - "SO": string[]; - "SS": string[]; - "SZ": string[]; - "ST": string[]; - "SY": string[]; - "TG": string[]; - "TH": string[]; - "TD": string[]; - "TJ": string[]; - "TN": string[]; - "TL": string[]; - "TO": string[]; - "TV": string[]; - "TR": string[]; - "TZ": string[]; - "TW": string[]; - "UG": string[]; - "UA": string[]; - "US": string[]; - "UY": string[]; - "VC": string[]; - "UZ": string[]; - "VE": string[]; - "ZA": string[]; - "VN": string[]; - "ZM": string[]; - "TT": string[]; - "XK": string[]; - "ZW": string[]; - "WS": string[]; - "YE": string[]; - "AL": string[]; - "AR": string[]; - "BY": string[]; - "CY": string[]; - "DM": string[]; - "GN": string[]; - "GQ": string[]; - "KG": string[]; - "LB": string[]; - "MT": string[]; - "KH": string[]; - "LI": string[]; - "NI": string[]; - "OM": string[]; - "SA": string[]; - "BN": string[]; - "EG": string[]; - "KZ": string[]; - "LK": string[]; - "MD": string[]; - "BT": string[]; - "HT": string[]; - "PY": string[]; - "PT": string[]; - "AF": string[]; - "TM": string[]; - "AD": string[]; - "VA": string[]; - "ME": string[]; - "BZ": string[]; - "GT": string[]; - "FJ": string[]; - "HR": string[]; - "ES": string[]; - "SM": string[]; - "DO": string[]; - "SV": string[]; - "MX": string[]; - "EC": string[]; - "RS": string[]; -}; +export declare const ER: string[]; +export declare const EE: string[]; export declare const FM: string[]; export declare const FR: string[]; -export declare const GA: string[]; export declare const GB: string[]; +export declare const GA: string[]; export declare const GD: string[]; -export declare const GE: string[]; export declare const GH: string[]; -export declare const GM: string[]; -export declare const GN: string[]; -export declare const GQ: string[]; +export declare const GE: string[]; export declare const GR: string[]; -export declare const GT: string[]; +export declare const GM: string[]; export declare const GW: string[]; -export declare const GY: string[]; export declare const HN: string[]; -export declare const HR: string[]; -export declare const HT: string[]; export declare const HU: string[]; -export declare const ID: string[]; export declare const IE: string[]; +export declare const ID: string[]; export declare const IL: string[]; export declare const IN: string[]; +export declare const GY: string[]; export declare const IQ: string[]; -export declare const IR: string[]; export declare const IS: string[]; export declare const IT: string[]; export declare const JM: string[]; export declare const JO: string[]; -export declare const JP: string[]; export declare const KE: string[]; -export declare const KG: string[]; -export declare const KH: string[]; -export declare const KI: string[]; +export declare const JP: string[]; +export declare const IR: string[]; export declare const KM: string[]; export declare const KN: string[]; export declare const KP: string[]; -export declare const KR: string[]; export declare const KW: string[]; -export declare const KZ: string[]; export declare const LA: string[]; -export declare const LB: string[]; +export declare const KI: string[]; export declare const LC: string[]; -export declare const LI: string[]; -export declare const LK: string[]; export declare const LR: string[]; export declare const LS: string[]; +export declare const KR: string[]; export declare const LT: string[]; export declare const LU: string[]; export declare const LV: string[]; export declare const LY: string[]; -export declare const MA: string[]; export declare const MC: string[]; -export declare const MD: string[]; -export declare const ME: string[]; -export declare const MG: string[]; +export declare const MA: string[]; export declare const MH: string[]; -export declare const MK: string[]; +export declare const MG: string[]; export declare const ML: string[]; +export declare const MK: string[]; export declare const MM: string[]; export declare const MN: string[]; export declare const MR: string[]; -export declare const MT: string[]; -export declare const MU: string[]; export declare const MV: string[]; -export declare const MW: string[]; -export declare const MX: string[]; export declare const MY: string[]; +export declare const MU: string[]; export declare const MZ: string[]; export declare const NA: string[]; export declare const NE: string[]; export declare const NG: string[]; -export declare const NI: string[]; export declare const NL: string[]; -export declare const NO: string[]; -export declare const NP: string[]; export declare const NR: string[]; -export declare const NU: string[]; +export declare const NO: string[]; export declare const NZ: string[]; -export declare const OM: string[]; +export declare const MW: string[]; +export declare const NP: string[]; export declare const PA: string[]; +export declare const NU: string[]; export declare const PE: string[]; export declare const PG: string[]; export declare const PH: string[]; export declare const PK: string[]; export declare const PL: string[]; -export declare const PT: string[]; export declare const PW: string[]; -export declare const PY: string[]; export declare const QA: string[]; export declare const RO: string[]; -export declare const RS: string[]; export declare const RU: string[]; export declare const RW: string[]; -export declare const SA: string[]; export declare const SB: string[]; -export declare const SC: string[]; export declare const SD: string[]; +export declare const SC: string[]; export declare const SE: string[]; export declare const SG: string[]; export declare const SI: string[]; export declare const SK: string[]; export declare const SL: string[]; -export declare const SM: string[]; export declare const SN: string[]; export declare const SO: string[]; export declare const SR: string[]; export declare const SS: string[]; export declare const ST: string[]; -export declare const SV: string[]; export declare const SY: string[]; -export declare const SZ: string[]; export declare const TD: string[]; export declare const TG: string[]; export declare const TH: string[]; export declare const TJ: string[]; export declare const TL: string[]; -export declare const TM: string[]; export declare const TN: string[]; export declare const TO: string[]; export declare const TR: string[]; @@ -379,16 +339,56 @@ export declare const TW: string[]; export declare const TZ: string[]; export declare const UA: string[]; export declare const UG: string[]; -export declare const US: string[]; -export declare const UY: string[]; +export declare const SZ: string[]; export declare const UZ: string[]; -export declare const VA: string[]; export declare const VC: string[]; export declare const VE: string[]; export declare const VN: string[]; export declare const WS: string[]; -export declare const XK: string[]; export declare const YE: string[]; export declare const ZA: string[]; +export declare const UY: string[]; +export declare const US: string[]; export declare const ZM: string[]; export declare const ZW: string[]; +export declare const XK: string[]; +export declare const AL: string[]; +export declare const AR: string[]; +export declare const BY: string[]; +export declare const DM: string[]; +export declare const CY: string[]; +export declare const GN: string[]; +export declare const GQ: string[]; +export declare const KG: string[]; +export declare const LB: string[]; +export declare const MT: string[]; +export declare const KH: string[]; +export declare const LI: string[]; +export declare const NI: string[]; +export declare const OM: string[]; +export declare const SA: string[]; +export declare const BN: string[]; +export declare const EG: string[]; +export declare const KZ: string[]; +export declare const MD: string[]; +export declare const LK: string[]; +export declare const BT: string[]; +export declare const HT: string[]; +export declare const PY: string[]; +export declare const PT: string[]; +export declare const AF: string[]; +export declare const TM: string[]; +export declare const AD: string[]; +export declare const VA: string[]; +export declare const ME: string[]; +export declare const BZ: string[]; +export declare const GT: string[]; +export declare const FJ: string[]; +export declare const HR: string[]; +export declare const ES: string[]; +export declare const SM: string[]; +export declare const DO: string[]; +export declare const SV: string[]; +export declare const MX: string[]; +export declare const EC: string[]; +export declare const RS: string[]; \ No newline at end of file diff --git a/js/flag/index.js b/js/flag/index.js index a3ca8a1de..f3df28909 100644 --- a/js/flag/index.js +++ b/js/flag/index.js @@ -6,162 +6,162 @@ import { AM } from './AM.js' import { AE } from './AE.js' import { AO } from './AO.js' import { AU } from './AU.js' -import { BB } from './BB.js' import { AT } from './AT.js' -import { BH } from './BH.js' -import { BA } from './BA.js' -import { BF } from './BF.js' -import { BI } from './BI.js' -import { BD } from './BD.js' -import { BG } from './BG.js' import { AZ } from './AZ.js' +import { BA } from './BA.js' +import { BB } from './BB.js' +import { BE } from './BE.js' +import { BF } from './BF.js' +import { BD } from './BD.js' +import { BH } from './BH.js' +import { BG } from './BG.js' +import { BI } from './BI.js' import { BJ } from './BJ.js' import { BO } from './BO.js' +import { BS } from './BS.js' import { BW } from './BW.js' import { BR } from './BR.js' -import { BS } from './BS.js' import { CA } from './CA.js' -import { BE } from './BE.js' -import { CF } from './CF.js' -import { CL } from './CL.js' import { CD } from './CD.js' import { CG } from './CG.js' +import { CF } from './CF.js' +import { CH } from './CH.js' import { CI } from './CI.js' import { CM } from './CM.js' import { CN } from './CN.js' -import { CV } from './CV.js' -import { CR } from './CR.js' +import { CL } from './CL.js' import { CO } from './CO.js' -import { CH } from './CH.js' +import { CR } from './CR.js' import { CU } from './CU.js' -import { DJ } from './DJ.js' -import { DK } from './DK.js' +import { CV } from './CV.js' import { CZ } from './CZ.js' import { DE } from './DE.js' +import { DJ } from './DJ.js' import { DZ } from './DZ.js' -import { EE } from './EE.js' +import { DK } from './DK.js' import { ET } from './ET.js' -import { ER } from './ER.js' import { FI } from './FI.js' +import { ER } from './ER.js' +import { EE } from './EE.js' import { FM } from './FM.js' -import { GA } from './GA.js' -import { GB } from './GB.js' -import { GD } from './GD.js' import { FR } from './FR.js' -import { GE } from './GE.js' +import { GB } from './GB.js' +import { GA } from './GA.js' +import { GD } from './GD.js' import { GH } from './GH.js' +import { GE } from './GE.js' import { GR } from './GR.js' import { GM } from './GM.js' import { GW } from './GW.js' -import { GY } from './GY.js' import { HN } from './HN.js' -import { IL } from './IL.js' import { HU } from './HU.js' -import { IN } from './IN.js' -import { ID } from './ID.js' import { IE } from './IE.js' +import { ID } from './ID.js' +import { IL } from './IL.js' +import { IN } from './IN.js' +import { GY } from './GY.js' import { IQ } from './IQ.js' import { IS } from './IS.js' -import { IR } from './IR.js' import { IT } from './IT.js' -import { JO } from './JO.js' -import { KM } from './KM.js' import { JM } from './JM.js' -import { KI } from './KI.js' -import { JP } from './JP.js' +import { JO } from './JO.js' import { KE } from './KE.js' -import { KW } from './KW.js' +import { JP } from './JP.js' +import { IR } from './IR.js' +import { KM } from './KM.js' import { KN } from './KN.js' import { KP } from './KP.js' -import { KR } from './KR.js' +import { KW } from './KW.js' import { LA } from './LA.js' +import { KI } from './KI.js' import { LC } from './LC.js' -import { LT } from './LT.js' import { LR } from './LR.js' -import { LV } from './LV.js' +import { LS } from './LS.js' +import { KR } from './KR.js' +import { LT } from './LT.js' import { LU } from './LU.js' +import { LV } from './LV.js' import { LY } from './LY.js' import { MC } from './MC.js' import { MA } from './MA.js' -import { LS } from './LS.js' -import { MG } from './MG.js' -import { MK } from './MK.js' import { MH } from './MH.js' +import { MG } from './MG.js' import { ML } from './ML.js' -import { MU } from './MU.js' +import { MK } from './MK.js' import { MM } from './MM.js' import { MN } from './MN.js' -import { MW } from './MW.js' -import { MV } from './MV.js' import { MR } from './MR.js' +import { MV } from './MV.js' import { MY } from './MY.js' +import { MU } from './MU.js' +import { MZ } from './MZ.js' import { NA } from './NA.js' import { NE } from './NE.js' import { NG } from './NG.js' -import { MZ } from './MZ.js' -import { NP } from './NP.js' import { NL } from './NL.js' -import { NU } from './NU.js' -import { NO } from './NO.js' import { NR } from './NR.js' -import { PA } from './PA.js' +import { NO } from './NO.js' import { NZ } from './NZ.js' -import { PG } from './PG.js' +import { MW } from './MW.js' +import { NP } from './NP.js' +import { PA } from './PA.js' +import { NU } from './NU.js' import { PE } from './PE.js' -import { PL } from './PL.js' +import { PG } from './PG.js' import { PH } from './PH.js' import { PK } from './PK.js' +import { PL } from './PL.js' import { PW } from './PW.js' import { QA } from './QA.js' import { RO } from './RO.js' -import { SB } from './SB.js' +import { RU } from './RU.js' import { RW } from './RW.js' -import { SC } from './SC.js' +import { SB } from './SB.js' import { SD } from './SD.js' +import { SC } from './SC.js' import { SE } from './SE.js' import { SG } from './SG.js' import { SI } from './SI.js' -import { RU } from './RU.js' import { SK } from './SK.js' import { SL } from './SL.js' -import { SR } from './SR.js' import { SN } from './SN.js' import { SO } from './SO.js' +import { SR } from './SR.js' import { SS } from './SS.js' -import { SZ } from './SZ.js' import { ST } from './ST.js' import { SY } from './SY.js' +import { TD } from './TD.js' import { TG } from './TG.js' import { TH } from './TH.js' -import { TD } from './TD.js' import { TJ } from './TJ.js' -import { TN } from './TN.js' import { TL } from './TL.js' +import { TN } from './TN.js' import { TO } from './TO.js' -import { TV } from './TV.js' import { TR } from './TR.js' -import { TZ } from './TZ.js' -import { TW } from './TW.js' -import { UG } from './UG.js' -import { UA } from './UA.js' -import { US } from './US.js' -import { UY } from './UY.js' -import { VC } from './VC.js' -import { UZ } from './UZ.js' -import { VE } from './VE.js' -import { ZA } from './ZA.js' -import { VN } from './VN.js' -import { ZM } from './ZM.js' import { TT } from './TT.js' -import { XK } from './XK.js' -import { ZW } from './ZW.js' +import { TV } from './TV.js' +import { TW } from './TW.js' +import { TZ } from './TZ.js' +import { UA } from './UA.js' +import { UG } from './UG.js' +import { SZ } from './SZ.js' +import { UZ } from './UZ.js' +import { VC } from './VC.js' +import { VE } from './VE.js' +import { VN } from './VN.js' import { WS } from './WS.js' import { YE } from './YE.js' +import { ZA } from './ZA.js' +import { UY } from './UY.js' +import { US } from './US.js' +import { ZM } from './ZM.js' +import { ZW } from './ZW.js' +import { XK } from './XK.js' import { AL } from './AL.js' import { AR } from './AR.js' import { BY } from './BY.js' -import { CY } from './CY.js' import { DM } from './DM.js' +import { CY } from './CY.js' import { GN } from './GN.js' import { GQ } from './GQ.js' import { KG } from './KG.js' @@ -175,8 +175,8 @@ import { SA } from './SA.js' import { BN } from './BN.js' import { EG } from './EG.js' import { KZ } from './KZ.js' -import { LK } from './LK.js' import { MD } from './MD.js' +import { LK } from './LK.js' import { BT } from './BT.js' import { HT } from './HT.js' import { PY } from './PY.js' @@ -202,162 +202,162 @@ export { AM } export { AE } export { AO } export { AU } -export { BB } export { AT } -export { BH } -export { BA } -export { BF } -export { BI } -export { BD } -export { BG } export { AZ } +export { BA } +export { BB } +export { BE } +export { BF } +export { BD } +export { BH } +export { BG } +export { BI } export { BJ } export { BO } +export { BS } export { BW } export { BR } -export { BS } export { CA } -export { BE } -export { CF } -export { CL } export { CD } export { CG } +export { CF } +export { CH } export { CI } export { CM } export { CN } -export { CV } -export { CR } +export { CL } export { CO } -export { CH } +export { CR } export { CU } -export { DJ } -export { DK } +export { CV } export { CZ } export { DE } +export { DJ } export { DZ } -export { EE } +export { DK } export { ET } -export { ER } export { FI } +export { ER } +export { EE } export { FM } -export { GA } -export { GB } -export { GD } export { FR } -export { GE } +export { GB } +export { GA } +export { GD } export { GH } +export { GE } export { GR } export { GM } export { GW } -export { GY } export { HN } -export { IL } export { HU } -export { IN } -export { ID } export { IE } +export { ID } +export { IL } +export { IN } +export { GY } export { IQ } export { IS } -export { IR } export { IT } -export { JO } -export { KM } export { JM } -export { KI } -export { JP } +export { JO } export { KE } -export { KW } +export { JP } +export { IR } +export { KM } export { KN } export { KP } -export { KR } +export { KW } export { LA } +export { KI } export { LC } -export { LT } export { LR } -export { LV } +export { LS } +export { KR } +export { LT } export { LU } +export { LV } export { LY } export { MC } export { MA } -export { LS } -export { MG } -export { MK } export { MH } +export { MG } export { ML } -export { MU } +export { MK } export { MM } export { MN } -export { MW } -export { MV } export { MR } +export { MV } export { MY } +export { MU } +export { MZ } export { NA } export { NE } export { NG } -export { MZ } -export { NP } export { NL } -export { NU } -export { NO } export { NR } -export { PA } +export { NO } export { NZ } -export { PG } +export { MW } +export { NP } +export { PA } +export { NU } export { PE } -export { PL } +export { PG } export { PH } export { PK } +export { PL } export { PW } export { QA } export { RO } -export { SB } +export { RU } export { RW } -export { SC } +export { SB } export { SD } +export { SC } export { SE } export { SG } export { SI } -export { RU } export { SK } export { SL } -export { SR } export { SN } export { SO } +export { SR } export { SS } -export { SZ } export { ST } export { SY } +export { TD } export { TG } export { TH } -export { TD } export { TJ } -export { TN } export { TL } +export { TN } export { TO } -export { TV } export { TR } -export { TZ } -export { TW } -export { UG } -export { UA } -export { US } -export { UY } -export { VC } -export { UZ } -export { VE } -export { ZA } -export { VN } -export { ZM } export { TT } -export { XK } -export { ZW } +export { TV } +export { TW } +export { TZ } +export { UA } +export { UG } +export { SZ } +export { UZ } +export { VC } +export { VE } +export { VN } export { WS } export { YE } +export { ZA } +export { UY } +export { US } +export { ZM } +export { ZW } +export { XK } export { AL } export { AR } export { BY } -export { CY } export { DM } +export { CY } export { GN } export { GQ } export { KG } @@ -371,8 +371,8 @@ export { SA } export { BN } export { EG } export { KZ } -export { LK } export { MD } +export { LK } export { BT } export { HT } export { PY } diff --git a/js/free/3d.d.ts b/js/free/3d.d.ts new file mode 100644 index 000000000..a624e6de9 --- /dev/null +++ b/js/free/3d.d.ts @@ -0,0 +1 @@ +export declare const n3d: string[]; \ No newline at end of file diff --git a/js/free/4k.d.ts b/js/free/4k.d.ts new file mode 100644 index 000000000..5355af2b6 --- /dev/null +++ b/js/free/4k.d.ts @@ -0,0 +1 @@ +export declare const n4k: string[]; \ No newline at end of file diff --git a/js/free/account-logout.d.ts b/js/free/account-logout.d.ts new file mode 100644 index 000000000..960b86328 --- /dev/null +++ b/js/free/account-logout.d.ts @@ -0,0 +1 @@ +export declare const accountLogout: string[]; \ No newline at end of file diff --git a/js/free/action-redo.d.ts b/js/free/action-redo.d.ts new file mode 100644 index 000000000..bc1547082 --- /dev/null +++ b/js/free/action-redo.d.ts @@ -0,0 +1 @@ +export declare const actionRedo: string[]; \ No newline at end of file diff --git a/js/free/action-undo.d.ts b/js/free/action-undo.d.ts new file mode 100644 index 000000000..7a24c4480 --- /dev/null +++ b/js/free/action-undo.d.ts @@ -0,0 +1 @@ +export declare const actionUndo: string[]; \ No newline at end of file diff --git a/js/free/address-book.d.ts b/js/free/address-book.d.ts new file mode 100644 index 000000000..c41cf42ff --- /dev/null +++ b/js/free/address-book.d.ts @@ -0,0 +1 @@ +export declare const addressBook: string[]; \ No newline at end of file diff --git a/js/free/airplane-mode-off.d.ts b/js/free/airplane-mode-off.d.ts new file mode 100644 index 000000000..2fcfc8811 --- /dev/null +++ b/js/free/airplane-mode-off.d.ts @@ -0,0 +1 @@ +export declare const airplaneModeOff: string[]; \ No newline at end of file diff --git a/js/free/airplane-mode.d.ts b/js/free/airplane-mode.d.ts new file mode 100644 index 000000000..54c654ba0 --- /dev/null +++ b/js/free/airplane-mode.d.ts @@ -0,0 +1 @@ +export declare const airplaneMode: string[]; \ No newline at end of file diff --git a/js/free/airplay.d.ts b/js/free/airplay.d.ts new file mode 100644 index 000000000..f2a22dabe --- /dev/null +++ b/js/free/airplay.d.ts @@ -0,0 +1 @@ +export declare const airplay: string[]; \ No newline at end of file diff --git a/js/free/alarm.d.ts b/js/free/alarm.d.ts new file mode 100644 index 000000000..831ef4d30 --- /dev/null +++ b/js/free/alarm.d.ts @@ -0,0 +1 @@ +export declare const alarm: string[]; \ No newline at end of file diff --git a/js/free/album.d.ts b/js/free/album.d.ts new file mode 100644 index 000000000..9906dfbba --- /dev/null +++ b/js/free/album.d.ts @@ -0,0 +1 @@ +export declare const album: string[]; \ No newline at end of file diff --git a/js/free/align-center.d.ts b/js/free/align-center.d.ts new file mode 100644 index 000000000..48f2a868d --- /dev/null +++ b/js/free/align-center.d.ts @@ -0,0 +1 @@ +export declare const alignCenter: string[]; \ No newline at end of file diff --git a/js/free/align-left.d.ts b/js/free/align-left.d.ts new file mode 100644 index 000000000..c44e9ac56 --- /dev/null +++ b/js/free/align-left.d.ts @@ -0,0 +1 @@ +export declare const alignLeft: string[]; \ No newline at end of file diff --git a/js/free/align-right.d.ts b/js/free/align-right.d.ts new file mode 100644 index 000000000..6f9b7a063 --- /dev/null +++ b/js/free/align-right.d.ts @@ -0,0 +1 @@ +export declare const alignRight: string[]; \ No newline at end of file diff --git a/js/free/american-football.d.ts b/js/free/american-football.d.ts new file mode 100644 index 000000000..5b8379c12 --- /dev/null +++ b/js/free/american-football.d.ts @@ -0,0 +1 @@ +export declare const americanFootball: string[]; \ No newline at end of file diff --git a/js/free/aperture.d.ts b/js/free/aperture.d.ts new file mode 100644 index 000000000..2121266b2 --- /dev/null +++ b/js/free/aperture.d.ts @@ -0,0 +1 @@ +export declare const aperture: string[]; \ No newline at end of file diff --git a/js/free/applications-settings.d.ts b/js/free/applications-settings.d.ts new file mode 100644 index 000000000..48350b5e3 --- /dev/null +++ b/js/free/applications-settings.d.ts @@ -0,0 +1 @@ +export declare const applicationsSettings: string[]; \ No newline at end of file diff --git a/js/free/applications.d.ts b/js/free/applications.d.ts new file mode 100644 index 000000000..797876bae --- /dev/null +++ b/js/free/applications.d.ts @@ -0,0 +1 @@ +export declare const applications: string[]; \ No newline at end of file diff --git a/js/free/arrow-bottom.d.ts b/js/free/arrow-bottom.d.ts new file mode 100644 index 000000000..ea7c4aff7 --- /dev/null +++ b/js/free/arrow-bottom.d.ts @@ -0,0 +1 @@ +export declare const arrowBottom: string[]; \ No newline at end of file diff --git a/js/free/arrow-circle-bottom.d.ts b/js/free/arrow-circle-bottom.d.ts new file mode 100644 index 000000000..a5a8383cf --- /dev/null +++ b/js/free/arrow-circle-bottom.d.ts @@ -0,0 +1 @@ +export declare const arrowCircleBottom: string[]; \ No newline at end of file diff --git a/js/free/arrow-circle-left.d.ts b/js/free/arrow-circle-left.d.ts new file mode 100644 index 000000000..75dbbaca6 --- /dev/null +++ b/js/free/arrow-circle-left.d.ts @@ -0,0 +1 @@ +export declare const arrowCircleLeft: string[]; \ No newline at end of file diff --git a/js/free/arrow-circle-right.d.ts b/js/free/arrow-circle-right.d.ts new file mode 100644 index 000000000..2792ff399 --- /dev/null +++ b/js/free/arrow-circle-right.d.ts @@ -0,0 +1 @@ +export declare const arrowCircleRight: string[]; \ No newline at end of file diff --git a/js/free/arrow-circle-top.d.ts b/js/free/arrow-circle-top.d.ts new file mode 100644 index 000000000..234886644 --- /dev/null +++ b/js/free/arrow-circle-top.d.ts @@ -0,0 +1 @@ +export declare const arrowCircleTop: string[]; \ No newline at end of file diff --git a/js/free/arrow-left.d.ts b/js/free/arrow-left.d.ts new file mode 100644 index 000000000..01934ed91 --- /dev/null +++ b/js/free/arrow-left.d.ts @@ -0,0 +1 @@ +export declare const arrowLeft: string[]; \ No newline at end of file diff --git a/js/free/arrow-right.d.ts b/js/free/arrow-right.d.ts new file mode 100644 index 000000000..4b50cfc83 --- /dev/null +++ b/js/free/arrow-right.d.ts @@ -0,0 +1 @@ +export declare const arrowRight: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-bottom.d.ts b/js/free/arrow-thick-bottom.d.ts new file mode 100644 index 000000000..3285333b8 --- /dev/null +++ b/js/free/arrow-thick-bottom.d.ts @@ -0,0 +1 @@ +export declare const arrowThickBottom: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-from-bottom.d.ts b/js/free/arrow-thick-from-bottom.d.ts new file mode 100644 index 000000000..7ece80a8f --- /dev/null +++ b/js/free/arrow-thick-from-bottom.d.ts @@ -0,0 +1 @@ +export declare const arrowThickFromBottom: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-from-left.d.ts b/js/free/arrow-thick-from-left.d.ts new file mode 100644 index 000000000..a381725c7 --- /dev/null +++ b/js/free/arrow-thick-from-left.d.ts @@ -0,0 +1 @@ +export declare const arrowThickFromLeft: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-from-right.d.ts b/js/free/arrow-thick-from-right.d.ts new file mode 100644 index 000000000..ae1ac5c22 --- /dev/null +++ b/js/free/arrow-thick-from-right.d.ts @@ -0,0 +1 @@ +export declare const arrowThickFromRight: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-from-top.d.ts b/js/free/arrow-thick-from-top.d.ts new file mode 100644 index 000000000..69e16b8a1 --- /dev/null +++ b/js/free/arrow-thick-from-top.d.ts @@ -0,0 +1 @@ +export declare const arrowThickFromTop: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-left.d.ts b/js/free/arrow-thick-left.d.ts new file mode 100644 index 000000000..ac2233121 --- /dev/null +++ b/js/free/arrow-thick-left.d.ts @@ -0,0 +1 @@ +export declare const arrowThickLeft: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-right.d.ts b/js/free/arrow-thick-right.d.ts new file mode 100644 index 000000000..74891c6cf --- /dev/null +++ b/js/free/arrow-thick-right.d.ts @@ -0,0 +1 @@ +export declare const arrowThickRight: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-to-bottom.d.ts b/js/free/arrow-thick-to-bottom.d.ts new file mode 100644 index 000000000..c3e1925e5 --- /dev/null +++ b/js/free/arrow-thick-to-bottom.d.ts @@ -0,0 +1 @@ +export declare const arrowThickToBottom: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-to-left.d.ts b/js/free/arrow-thick-to-left.d.ts new file mode 100644 index 000000000..be359b153 --- /dev/null +++ b/js/free/arrow-thick-to-left.d.ts @@ -0,0 +1 @@ +export declare const arrowThickToLeft: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-to-right.d.ts b/js/free/arrow-thick-to-right.d.ts new file mode 100644 index 000000000..e77483f8d --- /dev/null +++ b/js/free/arrow-thick-to-right.d.ts @@ -0,0 +1 @@ +export declare const arrowThickToRight: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-to-top.d.ts b/js/free/arrow-thick-to-top.d.ts new file mode 100644 index 000000000..3d255bacb --- /dev/null +++ b/js/free/arrow-thick-to-top.d.ts @@ -0,0 +1 @@ +export declare const arrowThickToTop: string[]; \ No newline at end of file diff --git a/js/free/arrow-thick-top.d.ts b/js/free/arrow-thick-top.d.ts new file mode 100644 index 000000000..3b04a9a87 --- /dev/null +++ b/js/free/arrow-thick-top.d.ts @@ -0,0 +1 @@ +export declare const arrowThickTop: string[]; \ No newline at end of file diff --git a/js/free/arrow-top.d.ts b/js/free/arrow-top.d.ts new file mode 100644 index 000000000..9e83f9297 --- /dev/null +++ b/js/free/arrow-top.d.ts @@ -0,0 +1 @@ +export declare const arrowTop: string[]; \ No newline at end of file diff --git a/js/free/assistive-listening-system.d.ts b/js/free/assistive-listening-system.d.ts new file mode 100644 index 000000000..667c15969 --- /dev/null +++ b/js/free/assistive-listening-system.d.ts @@ -0,0 +1 @@ +export declare const assistiveListeningSystem: string[]; \ No newline at end of file diff --git a/js/free/asterisk-circle.d.ts b/js/free/asterisk-circle.d.ts new file mode 100644 index 000000000..473af315a --- /dev/null +++ b/js/free/asterisk-circle.d.ts @@ -0,0 +1 @@ +export declare const asteriskCircle: string[]; \ No newline at end of file diff --git a/js/free/asterisk.d.ts b/js/free/asterisk.d.ts new file mode 100644 index 000000000..fd878d9a6 --- /dev/null +++ b/js/free/asterisk.d.ts @@ -0,0 +1 @@ +export declare const asterisk: string[]; \ No newline at end of file diff --git a/js/free/at.d.ts b/js/free/at.d.ts new file mode 100644 index 000000000..059639054 --- /dev/null +++ b/js/free/at.d.ts @@ -0,0 +1 @@ +export declare const at: string[]; \ No newline at end of file diff --git a/js/free/audio-description.d.ts b/js/free/audio-description.d.ts new file mode 100644 index 000000000..c6c36674b --- /dev/null +++ b/js/free/audio-description.d.ts @@ -0,0 +1 @@ +export declare const audioDescription: string[]; \ No newline at end of file diff --git a/js/free/audio-spectrum.d.ts b/js/free/audio-spectrum.d.ts new file mode 100644 index 000000000..b35a4f290 --- /dev/null +++ b/js/free/audio-spectrum.d.ts @@ -0,0 +1 @@ +export declare const audioSpectrum: string[]; \ No newline at end of file diff --git a/js/free/audio.d.ts b/js/free/audio.d.ts new file mode 100644 index 000000000..a11bc21f1 --- /dev/null +++ b/js/free/audio.d.ts @@ -0,0 +1 @@ +export declare const audio: string[]; \ No newline at end of file diff --git a/js/free/av-timer.d.ts b/js/free/av-timer.d.ts new file mode 100644 index 000000000..2124b81cb --- /dev/null +++ b/js/free/av-timer.d.ts @@ -0,0 +1 @@ +export declare const avTimer: string[]; \ No newline at end of file diff --git a/js/free/badge.d.ts b/js/free/badge.d.ts new file mode 100644 index 000000000..d7fe08f04 --- /dev/null +++ b/js/free/badge.d.ts @@ -0,0 +1 @@ +export declare const badge: string[]; \ No newline at end of file diff --git a/js/free/balance-scale.d.ts b/js/free/balance-scale.d.ts new file mode 100644 index 000000000..146d5abb8 --- /dev/null +++ b/js/free/balance-scale.d.ts @@ -0,0 +1 @@ +export declare const balanceScale: string[]; \ No newline at end of file diff --git a/js/free/ban.d.ts b/js/free/ban.d.ts new file mode 100644 index 000000000..e651155e9 --- /dev/null +++ b/js/free/ban.d.ts @@ -0,0 +1 @@ +export declare const ban: string[]; \ No newline at end of file diff --git a/js/free/bank.d.ts b/js/free/bank.d.ts new file mode 100644 index 000000000..cbadc4ba8 --- /dev/null +++ b/js/free/bank.d.ts @@ -0,0 +1 @@ +export declare const bank: string[]; \ No newline at end of file diff --git a/js/free/bar-chart.d.ts b/js/free/bar-chart.d.ts new file mode 100644 index 000000000..e634b1e62 --- /dev/null +++ b/js/free/bar-chart.d.ts @@ -0,0 +1 @@ +export declare const barChart: string[]; \ No newline at end of file diff --git a/js/free/barcode.d.ts b/js/free/barcode.d.ts new file mode 100644 index 000000000..b687722e5 --- /dev/null +++ b/js/free/barcode.d.ts @@ -0,0 +1 @@ +export declare const barcode: string[]; \ No newline at end of file diff --git a/js/free/baseball.d.ts b/js/free/baseball.d.ts new file mode 100644 index 000000000..7abe972a9 --- /dev/null +++ b/js/free/baseball.d.ts @@ -0,0 +1 @@ +export declare const baseball: string[]; \ No newline at end of file diff --git a/js/free/basket.d.ts b/js/free/basket.d.ts new file mode 100644 index 000000000..cba4e6d88 --- /dev/null +++ b/js/free/basket.d.ts @@ -0,0 +1 @@ +export declare const basket: string[]; \ No newline at end of file diff --git a/js/free/basketball.d.ts b/js/free/basketball.d.ts new file mode 100644 index 000000000..a8e1ee68d --- /dev/null +++ b/js/free/basketball.d.ts @@ -0,0 +1 @@ +export declare const basketball: string[]; \ No newline at end of file diff --git a/js/free/bath.d.ts b/js/free/bath.d.ts new file mode 100644 index 000000000..ffbfca365 --- /dev/null +++ b/js/free/bath.d.ts @@ -0,0 +1 @@ +export declare const bath: string[]; \ No newline at end of file diff --git a/js/free/battery-0.d.ts b/js/free/battery-0.d.ts new file mode 100644 index 000000000..9d9a7084a --- /dev/null +++ b/js/free/battery-0.d.ts @@ -0,0 +1 @@ +export declare const battery0: string[]; \ No newline at end of file diff --git a/js/free/battery-3.d.ts b/js/free/battery-3.d.ts new file mode 100644 index 000000000..00221adfe --- /dev/null +++ b/js/free/battery-3.d.ts @@ -0,0 +1 @@ +export declare const battery3: string[]; \ No newline at end of file diff --git a/js/free/battery-5.d.ts b/js/free/battery-5.d.ts new file mode 100644 index 000000000..16a725494 --- /dev/null +++ b/js/free/battery-5.d.ts @@ -0,0 +1 @@ +export declare const battery5: string[]; \ No newline at end of file diff --git a/js/free/battery-alert.d.ts b/js/free/battery-alert.d.ts new file mode 100644 index 000000000..a7f8680d8 --- /dev/null +++ b/js/free/battery-alert.d.ts @@ -0,0 +1 @@ +export declare const batteryAlert: string[]; \ No newline at end of file diff --git a/js/free/battery-slash.d.ts b/js/free/battery-slash.d.ts new file mode 100644 index 000000000..60fe242ea --- /dev/null +++ b/js/free/battery-slash.d.ts @@ -0,0 +1 @@ +export declare const batterySlash: string[]; \ No newline at end of file diff --git a/js/free/beach-access.d.ts b/js/free/beach-access.d.ts new file mode 100644 index 000000000..2523fcac8 --- /dev/null +++ b/js/free/beach-access.d.ts @@ -0,0 +1 @@ +export declare const beachAccess: string[]; \ No newline at end of file diff --git a/js/free/beaker.d.ts b/js/free/beaker.d.ts new file mode 100644 index 000000000..f82b51914 --- /dev/null +++ b/js/free/beaker.d.ts @@ -0,0 +1 @@ +export declare const beaker: string[]; \ No newline at end of file diff --git a/js/free/bed.d.ts b/js/free/bed.d.ts new file mode 100644 index 000000000..c3a21dc61 --- /dev/null +++ b/js/free/bed.d.ts @@ -0,0 +1 @@ +export declare const bed: string[]; \ No newline at end of file diff --git a/js/free/bell.d.ts b/js/free/bell.d.ts new file mode 100644 index 000000000..1ddd5a14a --- /dev/null +++ b/js/free/bell.d.ts @@ -0,0 +1 @@ +export declare const bell: string[]; \ No newline at end of file diff --git a/js/free/bike.d.ts b/js/free/bike.d.ts new file mode 100644 index 000000000..72c4bba7a --- /dev/null +++ b/js/free/bike.d.ts @@ -0,0 +1 @@ +export declare const bike: string[]; \ No newline at end of file diff --git a/js/free/birthday-cake.d.ts b/js/free/birthday-cake.d.ts new file mode 100644 index 000000000..ef33156c4 --- /dev/null +++ b/js/free/birthday-cake.d.ts @@ -0,0 +1 @@ +export declare const birthdayCake: string[]; \ No newline at end of file diff --git a/js/free/blind.d.ts b/js/free/blind.d.ts new file mode 100644 index 000000000..009a014d7 --- /dev/null +++ b/js/free/blind.d.ts @@ -0,0 +1 @@ +export declare const blind: string[]; \ No newline at end of file diff --git a/js/free/blur-circular.d.ts b/js/free/blur-circular.d.ts new file mode 100644 index 000000000..5ed9b76a8 --- /dev/null +++ b/js/free/blur-circular.d.ts @@ -0,0 +1 @@ +export declare const blurCircular: string[]; \ No newline at end of file diff --git a/js/free/blur-linear.d.ts b/js/free/blur-linear.d.ts new file mode 100644 index 000000000..bf8c24d60 --- /dev/null +++ b/js/free/blur-linear.d.ts @@ -0,0 +1 @@ +export declare const blurLinear: string[]; \ No newline at end of file diff --git a/js/free/blur.d.ts b/js/free/blur.d.ts new file mode 100644 index 000000000..0432d0719 --- /dev/null +++ b/js/free/blur.d.ts @@ -0,0 +1 @@ +export declare const blur: string[]; \ No newline at end of file diff --git a/js/free/boat-alt.d.ts b/js/free/boat-alt.d.ts new file mode 100644 index 000000000..2d3c18f0f --- /dev/null +++ b/js/free/boat-alt.d.ts @@ -0,0 +1 @@ +export declare const boatAlt: string[]; \ No newline at end of file diff --git a/js/free/bold.d.ts b/js/free/bold.d.ts new file mode 100644 index 000000000..256edbbcd --- /dev/null +++ b/js/free/bold.d.ts @@ -0,0 +1 @@ +export declare const bold: string[]; \ No newline at end of file diff --git a/js/free/bolt.d.ts b/js/free/bolt.d.ts new file mode 100644 index 000000000..9211aa8ad --- /dev/null +++ b/js/free/bolt.d.ts @@ -0,0 +1 @@ +export declare const bolt: string[]; \ No newline at end of file diff --git a/js/free/book.d.ts b/js/free/book.d.ts new file mode 100644 index 000000000..559ff579e --- /dev/null +++ b/js/free/book.d.ts @@ -0,0 +1 @@ +export declare const book: string[]; \ No newline at end of file diff --git a/js/free/bookmark.d.ts b/js/free/bookmark.d.ts new file mode 100644 index 000000000..743d61ca2 --- /dev/null +++ b/js/free/bookmark.d.ts @@ -0,0 +1 @@ +export declare const bookmark: string[]; \ No newline at end of file diff --git a/js/free/border-all.d.ts b/js/free/border-all.d.ts new file mode 100644 index 000000000..8f4cf562e --- /dev/null +++ b/js/free/border-all.d.ts @@ -0,0 +1 @@ +export declare const borderAll: string[]; \ No newline at end of file diff --git a/js/free/border-bottom.d.ts b/js/free/border-bottom.d.ts new file mode 100644 index 000000000..7e96e01b3 --- /dev/null +++ b/js/free/border-bottom.d.ts @@ -0,0 +1 @@ +export declare const borderBottom: string[]; \ No newline at end of file diff --git a/js/free/border-clear.d.ts b/js/free/border-clear.d.ts new file mode 100644 index 000000000..507e52cfc --- /dev/null +++ b/js/free/border-clear.d.ts @@ -0,0 +1 @@ +export declare const borderClear: string[]; \ No newline at end of file diff --git a/js/free/border-horizontal.d.ts b/js/free/border-horizontal.d.ts new file mode 100644 index 000000000..f301a7437 --- /dev/null +++ b/js/free/border-horizontal.d.ts @@ -0,0 +1 @@ +export declare const borderHorizontal: string[]; \ No newline at end of file diff --git a/js/free/border-inner.d.ts b/js/free/border-inner.d.ts new file mode 100644 index 000000000..67c89d969 --- /dev/null +++ b/js/free/border-inner.d.ts @@ -0,0 +1 @@ +export declare const borderInner: string[]; \ No newline at end of file diff --git a/js/free/border-left.d.ts b/js/free/border-left.d.ts new file mode 100644 index 000000000..0c4d64e6b --- /dev/null +++ b/js/free/border-left.d.ts @@ -0,0 +1 @@ +export declare const borderLeft: string[]; \ No newline at end of file diff --git a/js/free/border-outer.d.ts b/js/free/border-outer.d.ts new file mode 100644 index 000000000..68f27967a --- /dev/null +++ b/js/free/border-outer.d.ts @@ -0,0 +1 @@ +export declare const borderOuter: string[]; \ No newline at end of file diff --git a/js/free/border-right.d.ts b/js/free/border-right.d.ts new file mode 100644 index 000000000..acaa1e738 --- /dev/null +++ b/js/free/border-right.d.ts @@ -0,0 +1 @@ +export declare const borderRight: string[]; \ No newline at end of file diff --git a/js/free/border-style.d.ts b/js/free/border-style.d.ts new file mode 100644 index 000000000..eb134591b --- /dev/null +++ b/js/free/border-style.d.ts @@ -0,0 +1 @@ +export declare const borderStyle: string[]; \ No newline at end of file diff --git a/js/free/border-top.d.ts b/js/free/border-top.d.ts new file mode 100644 index 000000000..46751cb12 --- /dev/null +++ b/js/free/border-top.d.ts @@ -0,0 +1 @@ +export declare const borderTop: string[]; \ No newline at end of file diff --git a/js/free/border-vertical.d.ts b/js/free/border-vertical.d.ts new file mode 100644 index 000000000..4ee2c36c4 --- /dev/null +++ b/js/free/border-vertical.d.ts @@ -0,0 +1 @@ +export declare const borderVertical: string[]; \ No newline at end of file diff --git a/js/free/bowling.d.ts b/js/free/bowling.d.ts new file mode 100644 index 000000000..ea38652a0 --- /dev/null +++ b/js/free/bowling.d.ts @@ -0,0 +1 @@ +export declare const bowling: string[]; \ No newline at end of file diff --git a/js/free/braille.d.ts b/js/free/braille.d.ts new file mode 100644 index 000000000..ccdeea502 --- /dev/null +++ b/js/free/braille.d.ts @@ -0,0 +1 @@ +export declare const braille: string[]; \ No newline at end of file diff --git a/js/free/briefcase.d.ts b/js/free/briefcase.d.ts new file mode 100644 index 000000000..ea082d9b8 --- /dev/null +++ b/js/free/briefcase.d.ts @@ -0,0 +1 @@ +export declare const briefcase: string[]; \ No newline at end of file diff --git a/js/free/brightness.d.ts b/js/free/brightness.d.ts new file mode 100644 index 000000000..fa8a9f3e4 --- /dev/null +++ b/js/free/brightness.d.ts @@ -0,0 +1 @@ +export declare const brightness: string[]; \ No newline at end of file diff --git a/js/free/british-pound.d.ts b/js/free/british-pound.d.ts new file mode 100644 index 000000000..d57ee781b --- /dev/null +++ b/js/free/british-pound.d.ts @@ -0,0 +1 @@ +export declare const britishPound: string[]; \ No newline at end of file diff --git a/js/free/browser.d.ts b/js/free/browser.d.ts new file mode 100644 index 000000000..b0224a625 --- /dev/null +++ b/js/free/browser.d.ts @@ -0,0 +1 @@ +export declare const browser: string[]; \ No newline at end of file diff --git a/js/free/brush-alt.d.ts b/js/free/brush-alt.d.ts new file mode 100644 index 000000000..d3ff0748e --- /dev/null +++ b/js/free/brush-alt.d.ts @@ -0,0 +1 @@ +export declare const brushAlt: string[]; \ No newline at end of file diff --git a/js/free/brush.d.ts b/js/free/brush.d.ts new file mode 100644 index 000000000..e00185082 --- /dev/null +++ b/js/free/brush.d.ts @@ -0,0 +1 @@ +export declare const brush: string[]; \ No newline at end of file diff --git a/js/free/bug.d.ts b/js/free/bug.d.ts new file mode 100644 index 000000000..b57515339 --- /dev/null +++ b/js/free/bug.d.ts @@ -0,0 +1 @@ +export declare const bug: string[]; \ No newline at end of file diff --git a/js/free/building.d.ts b/js/free/building.d.ts new file mode 100644 index 000000000..4c24906e9 --- /dev/null +++ b/js/free/building.d.ts @@ -0,0 +1 @@ +export declare const building: string[]; \ No newline at end of file diff --git a/js/free/bullhorn.d.ts b/js/free/bullhorn.d.ts new file mode 100644 index 000000000..2be3e5997 --- /dev/null +++ b/js/free/bullhorn.d.ts @@ -0,0 +1 @@ +export declare const bullhorn: string[]; \ No newline at end of file diff --git a/js/free/burger.d.ts b/js/free/burger.d.ts new file mode 100644 index 000000000..449c7a70e --- /dev/null +++ b/js/free/burger.d.ts @@ -0,0 +1 @@ +export declare const burger: string[]; \ No newline at end of file diff --git a/js/free/bus-alt.d.ts b/js/free/bus-alt.d.ts new file mode 100644 index 000000000..2d44aee36 --- /dev/null +++ b/js/free/bus-alt.d.ts @@ -0,0 +1 @@ +export declare const busAlt: string[]; \ No newline at end of file diff --git a/js/free/calculator.d.ts b/js/free/calculator.d.ts new file mode 100644 index 000000000..121b5fc1e --- /dev/null +++ b/js/free/calculator.d.ts @@ -0,0 +1 @@ +export declare const calculator: string[]; \ No newline at end of file diff --git a/js/free/calendar-check.d.ts b/js/free/calendar-check.d.ts new file mode 100644 index 000000000..81b07f1c9 --- /dev/null +++ b/js/free/calendar-check.d.ts @@ -0,0 +1 @@ +export declare const calendarCheck: string[]; \ No newline at end of file diff --git a/js/free/calendar.d.ts b/js/free/calendar.d.ts new file mode 100644 index 000000000..11fb7b47f --- /dev/null +++ b/js/free/calendar.d.ts @@ -0,0 +1 @@ +export declare const calendar: string[]; \ No newline at end of file diff --git a/js/free/camera-control.d.ts b/js/free/camera-control.d.ts new file mode 100644 index 000000000..81400f713 --- /dev/null +++ b/js/free/camera-control.d.ts @@ -0,0 +1 @@ +export declare const cameraControl: string[]; \ No newline at end of file diff --git a/js/free/camera-roll.d.ts b/js/free/camera-roll.d.ts new file mode 100644 index 000000000..bc9154830 --- /dev/null +++ b/js/free/camera-roll.d.ts @@ -0,0 +1 @@ +export declare const cameraRoll: string[]; \ No newline at end of file diff --git a/js/free/camera.d.ts b/js/free/camera.d.ts new file mode 100644 index 000000000..7aff12d03 --- /dev/null +++ b/js/free/camera.d.ts @@ -0,0 +1 @@ +export declare const camera: string[]; \ No newline at end of file diff --git a/js/free/car-alt.d.ts b/js/free/car-alt.d.ts new file mode 100644 index 000000000..902022a2e --- /dev/null +++ b/js/free/car-alt.d.ts @@ -0,0 +1 @@ +export declare const carAlt: string[]; \ No newline at end of file diff --git a/js/free/caret-bottom.d.ts b/js/free/caret-bottom.d.ts new file mode 100644 index 000000000..6e91c47a8 --- /dev/null +++ b/js/free/caret-bottom.d.ts @@ -0,0 +1 @@ +export declare const caretBottom: string[]; \ No newline at end of file diff --git a/js/free/caret-left.d.ts b/js/free/caret-left.d.ts new file mode 100644 index 000000000..d3ab3265c --- /dev/null +++ b/js/free/caret-left.d.ts @@ -0,0 +1 @@ +export declare const caretLeft: string[]; \ No newline at end of file diff --git a/js/free/caret-right.d.ts b/js/free/caret-right.d.ts new file mode 100644 index 000000000..6b3262cb8 --- /dev/null +++ b/js/free/caret-right.d.ts @@ -0,0 +1 @@ +export declare const caretRight: string[]; \ No newline at end of file diff --git a/js/free/caret-top.d.ts b/js/free/caret-top.d.ts new file mode 100644 index 000000000..333b46c65 --- /dev/null +++ b/js/free/caret-top.d.ts @@ -0,0 +1 @@ +export declare const caretTop: string[]; \ No newline at end of file diff --git a/js/free/cart.d.ts b/js/free/cart.d.ts new file mode 100644 index 000000000..bd151f305 --- /dev/null +++ b/js/free/cart.d.ts @@ -0,0 +1 @@ +export declare const cart: string[]; \ No newline at end of file diff --git a/js/free/casino.d.ts b/js/free/casino.d.ts new file mode 100644 index 000000000..c92db9998 --- /dev/null +++ b/js/free/casino.d.ts @@ -0,0 +1 @@ +export declare const casino: string[]; \ No newline at end of file diff --git a/js/free/cast.d.ts b/js/free/cast.d.ts new file mode 100644 index 000000000..91df9372d --- /dev/null +++ b/js/free/cast.d.ts @@ -0,0 +1 @@ +export declare const cast: string[]; \ No newline at end of file diff --git a/js/free/cat.d.ts b/js/free/cat.d.ts new file mode 100644 index 000000000..bd7b380c9 --- /dev/null +++ b/js/free/cat.d.ts @@ -0,0 +1 @@ +export declare const cat: string[]; \ No newline at end of file diff --git a/js/free/center-focus.d.ts b/js/free/center-focus.d.ts new file mode 100644 index 000000000..d1303b208 --- /dev/null +++ b/js/free/center-focus.d.ts @@ -0,0 +1 @@ +export declare const centerFocus: string[]; \ No newline at end of file diff --git a/js/free/chart-line.d.ts b/js/free/chart-line.d.ts new file mode 100644 index 000000000..afbb9ea6d --- /dev/null +++ b/js/free/chart-line.d.ts @@ -0,0 +1 @@ +export declare const chartLine: string[]; \ No newline at end of file diff --git a/js/free/chart-pie.d.ts b/js/free/chart-pie.d.ts new file mode 100644 index 000000000..3fba5b551 --- /dev/null +++ b/js/free/chart-pie.d.ts @@ -0,0 +1 @@ +export declare const chartPie: string[]; \ No newline at end of file diff --git a/js/free/chart.d.ts b/js/free/chart.d.ts new file mode 100644 index 000000000..110e26014 --- /dev/null +++ b/js/free/chart.d.ts @@ -0,0 +1 @@ +export declare const chart: string[]; \ No newline at end of file diff --git a/js/free/chat-bubble.d.ts b/js/free/chat-bubble.d.ts new file mode 100644 index 000000000..e50abfb59 --- /dev/null +++ b/js/free/chat-bubble.d.ts @@ -0,0 +1 @@ +export declare const chatBubble: string[]; \ No newline at end of file diff --git a/js/free/check.d.ts b/js/free/check.d.ts new file mode 100644 index 000000000..25c1250a4 --- /dev/null +++ b/js/free/check.d.ts @@ -0,0 +1 @@ +export declare const check: string[]; \ No newline at end of file diff --git a/js/free/chevron-bottom.d.ts b/js/free/chevron-bottom.d.ts new file mode 100644 index 000000000..2933dd852 --- /dev/null +++ b/js/free/chevron-bottom.d.ts @@ -0,0 +1 @@ +export declare const chevronBottom: string[]; \ No newline at end of file diff --git a/js/free/chevron-circle-down-alt.d.ts b/js/free/chevron-circle-down-alt.d.ts new file mode 100644 index 000000000..a90fd5fb8 --- /dev/null +++ b/js/free/chevron-circle-down-alt.d.ts @@ -0,0 +1 @@ +export declare const chevronCircleDownAlt: string[]; \ No newline at end of file diff --git a/js/free/chevron-circle-left-alt.d.ts b/js/free/chevron-circle-left-alt.d.ts new file mode 100644 index 000000000..c1143c67b --- /dev/null +++ b/js/free/chevron-circle-left-alt.d.ts @@ -0,0 +1 @@ +export declare const chevronCircleLeftAlt: string[]; \ No newline at end of file diff --git a/js/free/chevron-circle-right-alt.d.ts b/js/free/chevron-circle-right-alt.d.ts new file mode 100644 index 000000000..6c49ed75d --- /dev/null +++ b/js/free/chevron-circle-right-alt.d.ts @@ -0,0 +1 @@ +export declare const chevronCircleRightAlt: string[]; \ No newline at end of file diff --git a/js/free/chevron-circle-up-alt.d.ts b/js/free/chevron-circle-up-alt.d.ts new file mode 100644 index 000000000..1faeed11e --- /dev/null +++ b/js/free/chevron-circle-up-alt.d.ts @@ -0,0 +1 @@ +export declare const chevronCircleUpAlt: string[]; \ No newline at end of file diff --git a/js/free/chevron-double-down.d.ts b/js/free/chevron-double-down.d.ts new file mode 100644 index 000000000..220c92983 --- /dev/null +++ b/js/free/chevron-double-down.d.ts @@ -0,0 +1 @@ +export declare const chevronDoubleDown: string[]; \ No newline at end of file diff --git a/js/free/chevron-double-left.d.ts b/js/free/chevron-double-left.d.ts new file mode 100644 index 000000000..9bc9c5ce4 --- /dev/null +++ b/js/free/chevron-double-left.d.ts @@ -0,0 +1 @@ +export declare const chevronDoubleLeft: string[]; \ No newline at end of file diff --git a/js/free/chevron-double-right.d.ts b/js/free/chevron-double-right.d.ts new file mode 100644 index 000000000..549439c96 --- /dev/null +++ b/js/free/chevron-double-right.d.ts @@ -0,0 +1 @@ +export declare const chevronDoubleRight: string[]; \ No newline at end of file diff --git a/js/free/chevron-double-up-alt.d.ts b/js/free/chevron-double-up-alt.d.ts new file mode 100644 index 000000000..3596f511a --- /dev/null +++ b/js/free/chevron-double-up-alt.d.ts @@ -0,0 +1 @@ +export declare const chevronDoubleUpAlt: string[]; \ No newline at end of file diff --git a/js/free/chevron-double-up.d.ts b/js/free/chevron-double-up.d.ts new file mode 100644 index 000000000..4864d2660 --- /dev/null +++ b/js/free/chevron-double-up.d.ts @@ -0,0 +1 @@ +export declare const chevronDoubleUp: string[]; \ No newline at end of file diff --git a/js/free/chevron-left.d.ts b/js/free/chevron-left.d.ts new file mode 100644 index 000000000..860e5ac0c --- /dev/null +++ b/js/free/chevron-left.d.ts @@ -0,0 +1 @@ +export declare const chevronLeft: string[]; \ No newline at end of file diff --git a/js/free/chevron-right.d.ts b/js/free/chevron-right.d.ts new file mode 100644 index 000000000..395830dcd --- /dev/null +++ b/js/free/chevron-right.d.ts @@ -0,0 +1 @@ +export declare const chevronRight: string[]; \ No newline at end of file diff --git a/js/free/chevron-top.d.ts b/js/free/chevron-top.d.ts new file mode 100644 index 000000000..0559e3f41 --- /dev/null +++ b/js/free/chevron-top.d.ts @@ -0,0 +1 @@ +export declare const chevronTop: string[]; \ No newline at end of file diff --git a/js/free/child-friendly.d.ts b/js/free/child-friendly.d.ts new file mode 100644 index 000000000..e51e6c2cd --- /dev/null +++ b/js/free/child-friendly.d.ts @@ -0,0 +1 @@ +export declare const childFriendly: string[]; \ No newline at end of file diff --git a/js/free/child.d.ts b/js/free/child.d.ts new file mode 100644 index 000000000..e61f4d19a --- /dev/null +++ b/js/free/child.d.ts @@ -0,0 +1 @@ +export declare const child: string[]; \ No newline at end of file diff --git a/js/free/clear-all.d.ts b/js/free/clear-all.d.ts new file mode 100644 index 000000000..fb776b45c --- /dev/null +++ b/js/free/clear-all.d.ts @@ -0,0 +1 @@ +export declare const clearAll: string[]; \ No newline at end of file diff --git a/js/free/clipboard.d.ts b/js/free/clipboard.d.ts new file mode 100644 index 000000000..c1087459a --- /dev/null +++ b/js/free/clipboard.d.ts @@ -0,0 +1 @@ +export declare const clipboard: string[]; \ No newline at end of file diff --git a/js/free/clock.d.ts b/js/free/clock.d.ts new file mode 100644 index 000000000..d064df853 --- /dev/null +++ b/js/free/clock.d.ts @@ -0,0 +1 @@ +export declare const clock: string[]; \ No newline at end of file diff --git a/js/free/clone.d.ts b/js/free/clone.d.ts new file mode 100644 index 000000000..9b99f5b9c --- /dev/null +++ b/js/free/clone.d.ts @@ -0,0 +1 @@ +export declare const clone: string[]; \ No newline at end of file diff --git a/js/free/closed-captioning.d.ts b/js/free/closed-captioning.d.ts new file mode 100644 index 000000000..22666c90d --- /dev/null +++ b/js/free/closed-captioning.d.ts @@ -0,0 +1 @@ +export declare const closedCaptioning: string[]; \ No newline at end of file diff --git a/js/free/cloud-download.d.ts b/js/free/cloud-download.d.ts new file mode 100644 index 000000000..991d5f9ca --- /dev/null +++ b/js/free/cloud-download.d.ts @@ -0,0 +1 @@ +export declare const cloudDownload: string[]; \ No newline at end of file diff --git a/js/free/cloud-upload.d.ts b/js/free/cloud-upload.d.ts new file mode 100644 index 000000000..32ae28ae1 --- /dev/null +++ b/js/free/cloud-upload.d.ts @@ -0,0 +1 @@ +export declare const cloudUpload: string[]; \ No newline at end of file diff --git a/js/free/cloud.d.ts b/js/free/cloud.d.ts new file mode 100644 index 000000000..b3a6fb988 --- /dev/null +++ b/js/free/cloud.d.ts @@ -0,0 +1 @@ +export declare const cloud: string[]; \ No newline at end of file diff --git a/js/free/cloudy.d.ts b/js/free/cloudy.d.ts new file mode 100644 index 000000000..d764600e6 --- /dev/null +++ b/js/free/cloudy.d.ts @@ -0,0 +1 @@ +export declare const cloudy: string[]; \ No newline at end of file diff --git a/js/free/code.d.ts b/js/free/code.d.ts new file mode 100644 index 000000000..debc25290 --- /dev/null +++ b/js/free/code.d.ts @@ -0,0 +1 @@ +export declare const code: string[]; \ No newline at end of file diff --git a/js/free/coffee.d.ts b/js/free/coffee.d.ts new file mode 100644 index 000000000..6a5fa5836 --- /dev/null +++ b/js/free/coffee.d.ts @@ -0,0 +1 @@ +export declare const coffee: string[]; \ No newline at end of file diff --git a/js/free/color-border.d.ts b/js/free/color-border.d.ts new file mode 100644 index 000000000..1b122b759 --- /dev/null +++ b/js/free/color-border.d.ts @@ -0,0 +1 @@ +export declare const colorBorder: string[]; \ No newline at end of file diff --git a/js/free/color-fill.d.ts b/js/free/color-fill.d.ts new file mode 100644 index 000000000..95a7b71b5 --- /dev/null +++ b/js/free/color-fill.d.ts @@ -0,0 +1 @@ +export declare const colorFill: string[]; \ No newline at end of file diff --git a/js/free/color-palette.d.ts b/js/free/color-palette.d.ts new file mode 100644 index 000000000..46a7d98ae --- /dev/null +++ b/js/free/color-palette.d.ts @@ -0,0 +1 @@ +export declare const colorPalette: string[]; \ No newline at end of file diff --git a/js/free/columns.d.ts b/js/free/columns.d.ts new file mode 100644 index 000000000..f52bbe6e3 --- /dev/null +++ b/js/free/columns.d.ts @@ -0,0 +1 @@ +export declare const columns: string[]; \ No newline at end of file diff --git a/js/free/comment-bubble.d.ts b/js/free/comment-bubble.d.ts new file mode 100644 index 000000000..d3f18291b --- /dev/null +++ b/js/free/comment-bubble.d.ts @@ -0,0 +1 @@ +export declare const commentBubble: string[]; \ No newline at end of file diff --git a/js/free/comment-square.d.ts b/js/free/comment-square.d.ts new file mode 100644 index 000000000..45cf7c757 --- /dev/null +++ b/js/free/comment-square.d.ts @@ -0,0 +1 @@ +export declare const commentSquare: string[]; \ No newline at end of file diff --git a/js/free/compass.d.ts b/js/free/compass.d.ts new file mode 100644 index 000000000..52be133dd --- /dev/null +++ b/js/free/compass.d.ts @@ -0,0 +1 @@ +export declare const compass: string[]; \ No newline at end of file diff --git a/js/free/compress.d.ts b/js/free/compress.d.ts new file mode 100644 index 000000000..f8f326066 --- /dev/null +++ b/js/free/compress.d.ts @@ -0,0 +1 @@ +export declare const compress: string[]; \ No newline at end of file diff --git a/js/free/contact.d.ts b/js/free/contact.d.ts new file mode 100644 index 000000000..1e17d8173 --- /dev/null +++ b/js/free/contact.d.ts @@ -0,0 +1 @@ +export declare const contact: string[]; \ No newline at end of file diff --git a/js/free/contrast.d.ts b/js/free/contrast.d.ts new file mode 100644 index 000000000..af87b7255 --- /dev/null +++ b/js/free/contrast.d.ts @@ -0,0 +1 @@ +export declare const contrast: string[]; \ No newline at end of file diff --git a/js/free/copy.d.ts b/js/free/copy.d.ts new file mode 100644 index 000000000..e7fe276d5 --- /dev/null +++ b/js/free/copy.d.ts @@ -0,0 +1 @@ +export declare const copy: string[]; \ No newline at end of file diff --git a/js/free/copyright.d.ts b/js/free/copyright.d.ts new file mode 100644 index 000000000..e234895e0 --- /dev/null +++ b/js/free/copyright.d.ts @@ -0,0 +1 @@ +export declare const copyright: string[]; \ No newline at end of file diff --git a/js/free/couch.d.ts b/js/free/couch.d.ts new file mode 100644 index 000000000..1b7388ee2 --- /dev/null +++ b/js/free/couch.d.ts @@ -0,0 +1 @@ +export declare const couch: string[]; \ No newline at end of file diff --git a/js/free/credit-card.d.ts b/js/free/credit-card.d.ts new file mode 100644 index 000000000..cb61e5e52 --- /dev/null +++ b/js/free/credit-card.d.ts @@ -0,0 +1 @@ +export declare const creditCard: string[]; \ No newline at end of file diff --git a/js/free/crop-rotate.d.ts b/js/free/crop-rotate.d.ts new file mode 100644 index 000000000..59819c947 --- /dev/null +++ b/js/free/crop-rotate.d.ts @@ -0,0 +1 @@ +export declare const cropRotate: string[]; \ No newline at end of file diff --git a/js/free/crop.d.ts b/js/free/crop.d.ts new file mode 100644 index 000000000..95c0087b2 --- /dev/null +++ b/js/free/crop.d.ts @@ -0,0 +1 @@ +export declare const crop: string[]; \ No newline at end of file diff --git a/js/free/cursor-move.d.ts b/js/free/cursor-move.d.ts new file mode 100644 index 000000000..d3c88dd19 --- /dev/null +++ b/js/free/cursor-move.d.ts @@ -0,0 +1 @@ +export declare const cursorMove: string[]; \ No newline at end of file diff --git a/js/free/cursor.d.ts b/js/free/cursor.d.ts new file mode 100644 index 000000000..4d7796cc5 --- /dev/null +++ b/js/free/cursor.d.ts @@ -0,0 +1 @@ +export declare const cursor: string[]; \ No newline at end of file diff --git a/js/free/cut.d.ts b/js/free/cut.d.ts new file mode 100644 index 000000000..3783298ba --- /dev/null +++ b/js/free/cut.d.ts @@ -0,0 +1 @@ +export declare const cut: string[]; \ No newline at end of file diff --git a/js/free/data-transfer-down.d.ts b/js/free/data-transfer-down.d.ts new file mode 100644 index 000000000..f178bcf46 --- /dev/null +++ b/js/free/data-transfer-down.d.ts @@ -0,0 +1 @@ +export declare const dataTransferDown: string[]; \ No newline at end of file diff --git a/js/free/data-transfer-up.d.ts b/js/free/data-transfer-up.d.ts new file mode 100644 index 000000000..03a38dd13 --- /dev/null +++ b/js/free/data-transfer-up.d.ts @@ -0,0 +1 @@ +export declare const dataTransferUp: string[]; \ No newline at end of file diff --git a/js/free/deaf.d.ts b/js/free/deaf.d.ts new file mode 100644 index 000000000..db6688820 --- /dev/null +++ b/js/free/deaf.d.ts @@ -0,0 +1 @@ +export declare const deaf: string[]; \ No newline at end of file diff --git a/js/free/description.d.ts b/js/free/description.d.ts new file mode 100644 index 000000000..235465033 --- /dev/null +++ b/js/free/description.d.ts @@ -0,0 +1 @@ +export declare const description: string[]; \ No newline at end of file diff --git a/js/free/devices.d.ts b/js/free/devices.d.ts new file mode 100644 index 000000000..0eb03a0d7 --- /dev/null +++ b/js/free/devices.d.ts @@ -0,0 +1 @@ +export declare const devices: string[]; \ No newline at end of file diff --git a/js/free/dialpad.d.ts b/js/free/dialpad.d.ts new file mode 100644 index 000000000..4e2eba61e --- /dev/null +++ b/js/free/dialpad.d.ts @@ -0,0 +1 @@ +export declare const dialpad: string[]; \ No newline at end of file diff --git a/js/free/dinner.d.ts b/js/free/dinner.d.ts new file mode 100644 index 000000000..14324b013 --- /dev/null +++ b/js/free/dinner.d.ts @@ -0,0 +1 @@ +export declare const dinner: string[]; \ No newline at end of file diff --git a/js/free/dog.d.ts b/js/free/dog.d.ts new file mode 100644 index 000000000..ef87fdd1b --- /dev/null +++ b/js/free/dog.d.ts @@ -0,0 +1 @@ +export declare const dog: string[]; \ No newline at end of file diff --git a/js/free/dollar.d.ts b/js/free/dollar.d.ts new file mode 100644 index 000000000..649d4f37c --- /dev/null +++ b/js/free/dollar.d.ts @@ -0,0 +1 @@ +export declare const dollar: string[]; \ No newline at end of file diff --git a/js/free/door.d.ts b/js/free/door.d.ts new file mode 100644 index 000000000..24500dffe --- /dev/null +++ b/js/free/door.d.ts @@ -0,0 +1 @@ +export declare const door: string[]; \ No newline at end of file diff --git a/js/free/double-quote-sans-left.d.ts b/js/free/double-quote-sans-left.d.ts new file mode 100644 index 000000000..b59600c8f --- /dev/null +++ b/js/free/double-quote-sans-left.d.ts @@ -0,0 +1 @@ +export declare const doubleQuoteSansLeft: string[]; \ No newline at end of file diff --git a/js/free/double-quote-sans-right.d.ts b/js/free/double-quote-sans-right.d.ts new file mode 100644 index 000000000..28965d204 --- /dev/null +++ b/js/free/double-quote-sans-right.d.ts @@ -0,0 +1 @@ +export declare const doubleQuoteSansRight: string[]; \ No newline at end of file diff --git a/js/free/drink-alcohol.d.ts b/js/free/drink-alcohol.d.ts new file mode 100644 index 000000000..d4e3f54e3 --- /dev/null +++ b/js/free/drink-alcohol.d.ts @@ -0,0 +1 @@ +export declare const drinkAlcohol: string[]; \ No newline at end of file diff --git a/js/free/drink.d.ts b/js/free/drink.d.ts new file mode 100644 index 000000000..3914f39b8 --- /dev/null +++ b/js/free/drink.d.ts @@ -0,0 +1 @@ +export declare const drink: string[]; \ No newline at end of file diff --git a/js/free/drop.d.ts b/js/free/drop.d.ts new file mode 100644 index 000000000..238a9bd45 --- /dev/null +++ b/js/free/drop.d.ts @@ -0,0 +1 @@ +export declare const drop: string[]; \ No newline at end of file diff --git a/js/free/drop1.d.ts b/js/free/drop1.d.ts new file mode 100644 index 000000000..5060cbd33 --- /dev/null +++ b/js/free/drop1.d.ts @@ -0,0 +1 @@ +export declare const drop1: string[]; \ No newline at end of file diff --git a/js/free/elevator.d.ts b/js/free/elevator.d.ts new file mode 100644 index 000000000..b0c84fd50 --- /dev/null +++ b/js/free/elevator.d.ts @@ -0,0 +1 @@ +export declare const elevator: string[]; \ No newline at end of file diff --git a/js/free/envelope-closed.d.ts b/js/free/envelope-closed.d.ts new file mode 100644 index 000000000..91cb33aaa --- /dev/null +++ b/js/free/envelope-closed.d.ts @@ -0,0 +1 @@ +export declare const envelopeClosed: string[]; \ No newline at end of file diff --git a/js/free/envelope-letter.d.ts b/js/free/envelope-letter.d.ts new file mode 100644 index 000000000..cf1d07bb8 --- /dev/null +++ b/js/free/envelope-letter.d.ts @@ -0,0 +1 @@ +export declare const envelopeLetter: string[]; \ No newline at end of file diff --git a/js/free/envelope-open.d.ts b/js/free/envelope-open.d.ts new file mode 100644 index 000000000..3065c4bc4 --- /dev/null +++ b/js/free/envelope-open.d.ts @@ -0,0 +1 @@ +export declare const envelopeOpen: string[]; \ No newline at end of file diff --git a/js/free/equalizer.d.ts b/js/free/equalizer.d.ts new file mode 100644 index 000000000..7114c1241 --- /dev/null +++ b/js/free/equalizer.d.ts @@ -0,0 +1 @@ +export declare const equalizer: string[]; \ No newline at end of file diff --git a/js/free/ethernet.d.ts b/js/free/ethernet.d.ts new file mode 100644 index 000000000..fe926fff4 --- /dev/null +++ b/js/free/ethernet.d.ts @@ -0,0 +1 @@ +export declare const ethernet: string[]; \ No newline at end of file diff --git a/js/free/euro.d.ts b/js/free/euro.d.ts new file mode 100644 index 000000000..48d0a5d11 --- /dev/null +++ b/js/free/euro.d.ts @@ -0,0 +1 @@ +export declare const euro: string[]; \ No newline at end of file diff --git a/js/free/excerpt.d.ts b/js/free/excerpt.d.ts new file mode 100644 index 000000000..3d51a9acd --- /dev/null +++ b/js/free/excerpt.d.ts @@ -0,0 +1 @@ +export declare const excerpt: string[]; \ No newline at end of file diff --git a/js/free/exit-to-app.d.ts b/js/free/exit-to-app.d.ts new file mode 100644 index 000000000..cc178dcc7 --- /dev/null +++ b/js/free/exit-to-app.d.ts @@ -0,0 +1 @@ +export declare const exitToApp: string[]; \ No newline at end of file diff --git a/js/free/expand-down.d.ts b/js/free/expand-down.d.ts new file mode 100644 index 000000000..da86c0b30 --- /dev/null +++ b/js/free/expand-down.d.ts @@ -0,0 +1 @@ +export declare const expandDown: string[]; \ No newline at end of file diff --git a/js/free/expand-left.d.ts b/js/free/expand-left.d.ts new file mode 100644 index 000000000..4084f422b --- /dev/null +++ b/js/free/expand-left.d.ts @@ -0,0 +1 @@ +export declare const expandLeft: string[]; \ No newline at end of file diff --git a/js/free/expand-right.d.ts b/js/free/expand-right.d.ts new file mode 100644 index 000000000..f37a14732 --- /dev/null +++ b/js/free/expand-right.d.ts @@ -0,0 +1 @@ +export declare const expandRight: string[]; \ No newline at end of file diff --git a/js/free/expand-up.d.ts b/js/free/expand-up.d.ts new file mode 100644 index 000000000..afe030526 --- /dev/null +++ b/js/free/expand-up.d.ts @@ -0,0 +1 @@ +export declare const expandUp: string[]; \ No newline at end of file diff --git a/js/free/exposure.d.ts b/js/free/exposure.d.ts new file mode 100644 index 000000000..bb47aa9f0 --- /dev/null +++ b/js/free/exposure.d.ts @@ -0,0 +1 @@ +export declare const exposure: string[]; \ No newline at end of file diff --git a/js/free/external-link.d.ts b/js/free/external-link.d.ts new file mode 100644 index 000000000..ebb8a8367 --- /dev/null +++ b/js/free/external-link.d.ts @@ -0,0 +1 @@ +export declare const externalLink: string[]; \ No newline at end of file diff --git a/js/free/eyedropper.d.ts b/js/free/eyedropper.d.ts new file mode 100644 index 000000000..2f1f5bfb1 --- /dev/null +++ b/js/free/eyedropper.d.ts @@ -0,0 +1 @@ +export declare const eyedropper: string[]; \ No newline at end of file diff --git a/js/free/face-dead.d.ts b/js/free/face-dead.d.ts new file mode 100644 index 000000000..21ed11261 --- /dev/null +++ b/js/free/face-dead.d.ts @@ -0,0 +1 @@ +export declare const faceDead: string[]; \ No newline at end of file diff --git a/js/free/face.d.ts b/js/free/face.d.ts new file mode 100644 index 000000000..145cfb25f --- /dev/null +++ b/js/free/face.d.ts @@ -0,0 +1 @@ +export declare const face: string[]; \ No newline at end of file diff --git a/js/free/fastfood.d.ts b/js/free/fastfood.d.ts new file mode 100644 index 000000000..ecc74f21a --- /dev/null +++ b/js/free/fastfood.d.ts @@ -0,0 +1 @@ +export declare const fastfood: string[]; \ No newline at end of file diff --git a/js/free/fax.d.ts b/js/free/fax.d.ts new file mode 100644 index 000000000..fb9003946 --- /dev/null +++ b/js/free/fax.d.ts @@ -0,0 +1 @@ +export declare const fax: string[]; \ No newline at end of file diff --git a/js/free/featured-playlist.d.ts b/js/free/featured-playlist.d.ts new file mode 100644 index 000000000..2e179e143 --- /dev/null +++ b/js/free/featured-playlist.d.ts @@ -0,0 +1 @@ +export declare const featuredPlaylist: string[]; \ No newline at end of file diff --git a/js/free/file.d.ts b/js/free/file.d.ts new file mode 100644 index 000000000..7bfd2b0c9 --- /dev/null +++ b/js/free/file.d.ts @@ -0,0 +1 @@ +export declare const file: string[]; \ No newline at end of file diff --git a/js/free/filter-frames.d.ts b/js/free/filter-frames.d.ts new file mode 100644 index 000000000..bf5ec970d --- /dev/null +++ b/js/free/filter-frames.d.ts @@ -0,0 +1 @@ +export declare const filterFrames: string[]; \ No newline at end of file diff --git a/js/free/filter-photo.d.ts b/js/free/filter-photo.d.ts new file mode 100644 index 000000000..e0f0f0b3c --- /dev/null +++ b/js/free/filter-photo.d.ts @@ -0,0 +1 @@ +export declare const filterPhoto: string[]; \ No newline at end of file diff --git a/js/free/filter.d.ts b/js/free/filter.d.ts new file mode 100644 index 000000000..63d886165 --- /dev/null +++ b/js/free/filter.d.ts @@ -0,0 +1 @@ +export declare const filter: string[]; \ No newline at end of file diff --git a/js/free/find-in-page.d.ts b/js/free/find-in-page.d.ts new file mode 100644 index 000000000..dc3624b68 --- /dev/null +++ b/js/free/find-in-page.d.ts @@ -0,0 +1 @@ +export declare const findInPage: string[]; \ No newline at end of file diff --git a/js/free/fingerprint.d.ts b/js/free/fingerprint.d.ts new file mode 100644 index 000000000..6bc1ebea0 --- /dev/null +++ b/js/free/fingerprint.d.ts @@ -0,0 +1 @@ +export declare const fingerprint: string[]; \ No newline at end of file diff --git a/js/free/fire.d.ts b/js/free/fire.d.ts new file mode 100644 index 000000000..68fa4d138 --- /dev/null +++ b/js/free/fire.d.ts @@ -0,0 +1 @@ +export declare const fire: string[]; \ No newline at end of file diff --git a/js/free/flag-alt.d.ts b/js/free/flag-alt.d.ts new file mode 100644 index 000000000..bb5e07faf --- /dev/null +++ b/js/free/flag-alt.d.ts @@ -0,0 +1 @@ +export declare const flagAlt: string[]; \ No newline at end of file diff --git a/js/free/flight-takeoff.d.ts b/js/free/flight-takeoff.d.ts new file mode 100644 index 000000000..9a8aa78ef --- /dev/null +++ b/js/free/flight-takeoff.d.ts @@ -0,0 +1 @@ +export declare const flightTakeoff: string[]; \ No newline at end of file diff --git a/js/free/flip-to-back.d.ts b/js/free/flip-to-back.d.ts new file mode 100644 index 000000000..47020417c --- /dev/null +++ b/js/free/flip-to-back.d.ts @@ -0,0 +1 @@ +export declare const flipToBack: string[]; \ No newline at end of file diff --git a/js/free/flip-to-front.d.ts b/js/free/flip-to-front.d.ts new file mode 100644 index 000000000..8c47c0ff0 --- /dev/null +++ b/js/free/flip-to-front.d.ts @@ -0,0 +1 @@ +export declare const flipToFront: string[]; \ No newline at end of file diff --git a/js/free/flip.d.ts b/js/free/flip.d.ts new file mode 100644 index 000000000..3dc3c7155 --- /dev/null +++ b/js/free/flip.d.ts @@ -0,0 +1 @@ +export declare const flip: string[]; \ No newline at end of file diff --git a/js/free/flower.d.ts b/js/free/flower.d.ts new file mode 100644 index 000000000..70091548f --- /dev/null +++ b/js/free/flower.d.ts @@ -0,0 +1 @@ +export declare const flower: string[]; \ No newline at end of file diff --git a/js/free/folder-open.d.ts b/js/free/folder-open.d.ts new file mode 100644 index 000000000..2f4112613 --- /dev/null +++ b/js/free/folder-open.d.ts @@ -0,0 +1 @@ +export declare const folderOpen: string[]; \ No newline at end of file diff --git a/js/free/folder.d.ts b/js/free/folder.d.ts new file mode 100644 index 000000000..4a59a46a4 --- /dev/null +++ b/js/free/folder.d.ts @@ -0,0 +1 @@ +export declare const folder: string[]; \ No newline at end of file diff --git a/js/free/font.d.ts b/js/free/font.d.ts new file mode 100644 index 000000000..d62989cc0 --- /dev/null +++ b/js/free/font.d.ts @@ -0,0 +1 @@ +export declare const font: string[]; \ No newline at end of file diff --git a/js/free/football.d.ts b/js/free/football.d.ts new file mode 100644 index 000000000..08e9990c5 --- /dev/null +++ b/js/free/football.d.ts @@ -0,0 +1 @@ +export declare const football: string[]; \ No newline at end of file diff --git a/js/free/fork.d.ts b/js/free/fork.d.ts new file mode 100644 index 000000000..c868ad807 --- /dev/null +++ b/js/free/fork.d.ts @@ -0,0 +1 @@ +export declare const fork: string[]; \ No newline at end of file diff --git a/js/free/free-set.d.ts b/js/free/free-set.d.ts new file mode 100644 index 000000000..aa21d92b4 --- /dev/null +++ b/js/free/free-set.d.ts @@ -0,0 +1,504 @@ +export declare const freeSet: { + "n3d": string[]; + "accountLogout": string[]; + "actionRedo": string[]; + "addressBook": string[]; + "actionUndo": string[]; + "n4k": string[]; + "airplaneModeOff": string[]; + "alarm": string[]; + "album": string[]; + "airplay": string[]; + "airplaneMode": string[]; + "alignCenter": string[]; + "alignLeft": string[]; + "alignRight": string[]; + "americanFootball": string[]; + "aperture": string[]; + "applicationsSettings": string[]; + "arrowCircleBottom": string[]; + "arrowBottom": string[]; + "applications": string[]; + "arrowCircleLeft": string[]; + "arrowLeft": string[]; + "arrowCircleTop": string[]; + "arrowRight": string[]; + "arrowCircleRight": string[]; + "arrowThickBottom": string[]; + "arrowThickFromLeft": string[]; + "arrowThickFromRight": string[]; + "arrowThickFromBottom": string[]; + "arrowThickFromTop": string[]; + "arrowThickLeft": string[]; + "arrowThickRight": string[]; + "arrowThickToLeft": string[]; + "arrowThickToBottom": string[]; + "arrowThickTop": string[]; + "arrowThickToRight": string[]; + "assistiveListeningSystem": string[]; + "arrowThickToTop": string[]; + "arrowTop": string[]; + "asteriskCircle": string[]; + "at": string[]; + "asterisk": string[]; + "audioSpectrum": string[]; + "audio": string[]; + "balanceScale": string[]; + "badge": string[]; + "avTimer": string[]; + "bank": string[]; + "audioDescription": string[]; + "barChart": string[]; + "ban": string[]; + "barcode": string[]; + "baseball": string[]; + "basketball": string[]; + "battery0": string[]; + "bath": string[]; + "battery3": string[]; + "battery5": string[]; + "batteryAlert": string[]; + "basket": string[]; + "beachAccess": string[]; + "batterySlash": string[]; + "beaker": string[]; + "bell": string[]; + "bed": string[]; + "birthdayCake": string[]; + "blind": string[]; + "blurCircular": string[]; + "blurLinear": string[]; + "blur": string[]; + "bike": string[]; + "boatAlt": string[]; + "bolt": string[]; + "borderAll": string[]; + "book": string[]; + "bold": string[]; + "borderHorizontal": string[]; + "bookmark": string[]; + "borderOuter": string[]; + "borderInner": string[]; + "borderClear": string[]; + "borderBottom": string[]; + "borderTop": string[]; + "borderStyle": string[]; + "borderRight": string[]; + "borderVertical": string[]; + "braille": string[]; + "borderLeft": string[]; + "brightness": string[]; + "briefcase": string[]; + "britishPound": string[]; + "bowling": string[]; + "browser": string[]; + "brush": string[]; + "brushAlt": string[]; + "building": string[]; + "bug": string[]; + "burger": string[]; + "busAlt": string[]; + "calculator": string[]; + "bullhorn": string[]; + "calendarCheck": string[]; + "cameraRoll": string[]; + "cameraControl": string[]; + "carAlt": string[]; + "camera": string[]; + "caretBottom": string[]; + "calendar": string[]; + "caretLeft": string[]; + "caretRight": string[]; + "cart": string[]; + "caretTop": string[]; + "cat": string[]; + "cast": string[]; + "casino": string[]; + "centerFocus": string[]; + "chartLine": string[]; + "chatBubble": string[]; + "check": string[]; + "chartPie": string[]; + "chevronBottom": string[]; + "chevronCircleDownAlt": string[]; + "chevronCircleRightAlt": string[]; + "chevronCircleLeftAlt": string[]; + "chart": string[]; + "chevronCircleUpAlt": string[]; + "chevronDoubleDown": string[]; + "chevronDoubleUpAlt": string[]; + "chevronDoubleLeft": string[]; + "chevronDoubleRight": string[]; + "chevronDoubleUp": string[]; + "chevronLeft": string[]; + "chevronRight": string[]; + "childFriendly": string[]; + "child": string[]; + "clearAll": string[]; + "chevronTop": string[]; + "clone": string[]; + "clock": string[]; + "clipboard": string[]; + "closedCaptioning": string[]; + "cloudDownload": string[]; + "cloudUpload": string[]; + "cloud": string[]; + "code": string[]; + "coffee": string[]; + "colorBorder": string[]; + "cloudy": string[]; + "colorFill": string[]; + "commentBubble": string[]; + "columns": string[]; + "colorPalette": string[]; + "commentSquare": string[]; + "compass": string[]; + "contrast": string[]; + "compress": string[]; + "copy": string[]; + "contact": string[]; + "copyright": string[]; + "creditCard": string[]; + "couch": string[]; + "crop": string[]; + "cursor": string[]; + "cursorMove": string[]; + "cropRotate": string[]; + "dataTransferDown": string[]; + "cut": string[]; + "dataTransferUp": string[]; + "deaf": string[]; + "description": string[]; + "devices": string[]; + "dinner": string[]; + "dog": string[]; + "dialpad": string[]; + "doubleQuoteSansLeft": string[]; + "doubleQuoteSansRight": string[]; + "dollar": string[]; + "door": string[]; + "drink": string[]; + "drop": string[]; + "drinkAlcohol": string[]; + "drop1": string[]; + "elevator": string[]; + "envelopeClosed": string[]; + "envelopeLetter": string[]; + "envelopeOpen": string[]; + "equalizer": string[]; + "euro": string[]; + "ethernet": string[]; + "exitToApp": string[]; + "excerpt": string[]; + "expandDown": string[]; + "expandLeft": string[]; + "expandUp": string[]; + "externalLink": string[]; + "expandRight": string[]; + "exposure": string[]; + "eyedropper": string[]; + "faceDead": string[]; + "fastfood": string[]; + "fax": string[]; + "file": string[]; + "featuredPlaylist": string[]; + "filterFrames": string[]; + "face": string[]; + "filterPhoto": string[]; + "findInPage": string[]; + "filter": string[]; + "flightTakeoff": string[]; + "fire": string[]; + "flipToBack": string[]; + "fingerprint": string[]; + "flagAlt": string[]; + "flip": string[]; + "flipToFront": string[]; + "folderOpen": string[]; + "flower": string[]; + "folder": string[]; + "font": string[]; + "fork": string[]; + "fridge": string[]; + "football": string[]; + "frown": string[]; + "fullscreenExit": string[]; + "functions": string[]; + "fullscreen": string[]; + "functionsAlt": string[]; + "gamepad": string[]; + "gif": string[]; + "gem": string[]; + "gift": string[]; + "githubCircle": string[]; + "garage": string[]; + "globeAlt": string[]; + "golf": string[]; + "golfAlt": string[]; + "gradient": string[]; + "graph": string[]; + "grain": string[]; + "grid": string[]; + "handPointDown": string[]; + "handPointLeft": string[]; + "gridSlash": string[]; + "hd": string[]; + "handPointRight": string[]; + "hdr": string[]; + "header": string[]; + "headphones": string[]; + "handPointUp": string[]; + "healing": string[]; + "highligt": string[]; + "highlighter": string[]; + "history": string[]; + "home": string[]; + "heart": string[]; + "hospital": string[]; + "hotTub": string[]; + "https": string[]; + "imagePlus": string[]; + "imageBroken": string[]; + "house": string[]; + "indentDecrease": string[]; + "infinity": string[]; + "industry": string[]; + "industrySlash": string[]; + "image1": string[]; + "inbox": string[]; + "indentIncrease": string[]; + "info": string[]; + "inputHdmi": string[]; + "inputPower": string[]; + "institution": string[]; + "italic": string[]; + "input": string[]; + "justifyCenter": string[]; + "justifyRight": string[]; + "justifyLeft": string[]; + "lan": string[]; + "keyboard": string[]; + "language": string[]; + "layers": string[]; + "leaf": string[]; + "levelDown": string[]; + "levelUp": string[]; + "laptop": string[]; + "lemon": string[]; + "libraryAdd": string[]; + "lifeRing": string[]; + "library": string[]; + "lineSpacing": string[]; + "lineWeight": string[]; + "linkAlt": string[]; + "linkBroken": string[]; + "lineStyle": string[]; + "link": string[]; + "listFilter": string[]; + "lightbulb": string[]; + "listHighPriority": string[]; + "listLowPriority": string[]; + "listNumbered": string[]; + "listRich": string[]; + "locationPin": string[]; + "lockLocked": string[]; + "lockUnlocked": string[]; + "locomotive": string[]; + "loop1": string[]; + "list": string[]; + "loop": string[]; + "loopCircular": string[]; + "lowVision": string[]; + "magnifyingGlass": string[]; + "map": string[]; + "mediaEject": string[]; + "mediaPause": string[]; + "mediaPlay": string[]; + "mediaSkipForward": string[]; + "mediaRecord": string[]; + "mediaStepBackward": string[]; + "mediaStepForward": string[]; + "mediaSkipBackward": string[]; + "mediaStop": string[]; + "medicalCross": string[]; + "meh": string[]; + "memory": string[]; + "microphone": string[]; + "mobileLandscape": string[]; + "minus": string[]; + "mobile": string[]; + "menu": string[]; + "money": string[]; + "monitor": string[]; + "moodBad": string[]; + "moodGood": string[]; + "moodVeryBad": string[]; + "moodVeryGood": string[]; + "moon": string[]; + "mouse": string[]; + "move": string[]; + "mouthSlash": string[]; + "mugTea": string[]; + "mug": string[]; + "newspaper": string[]; + "movie": string[]; + "musicNote": string[]; + "objectUngroup": string[]; + "objectGroup": string[]; + "opacity": string[]; + "notes": string[]; + "options": string[]; + "paintBucket": string[]; + "optionsHorizontal": string[]; + "paperPlane": string[]; + "paint": string[]; + "paragraph": string[]; + "paperclip": string[]; + "paw": string[]; + "penAlt": string[]; + "penNib": string[]; + "people": string[]; + "pencil": string[]; + "phone": string[]; + "pin": string[]; + "pizza": string[]; + "plus": string[]; + "playlistAdd": string[]; + "pool": string[]; + "polymer": string[]; + "powerStandby": string[]; + "pregnant": string[]; + "puzzle": string[]; + "print": string[]; + "qrCode": string[]; + "rectangle": string[]; + "rain": string[]; + "registered": string[]; + "resizeBoth": string[]; + "reload": string[]; + "remove": string[]; + "resizeWidth": string[]; + "room": string[]; + "resizeHeight": string[]; + "restaurant": string[]; + "running": string[]; + "rowing": string[]; + "satelite": string[]; + "save": string[]; + "school": string[]; + "screenDesktop": string[]; + "screenSmartphone": string[]; + "scrubber": string[]; + "shareAll": string[]; + "settings": string[]; + "shareAlt": string[]; + "shareBoxed": string[]; + "share": string[]; + "shieldAlt": string[]; + "shortText": string[]; + "signLanguage": string[]; + "shower": string[]; + "signalCellular0": string[]; + "signalCellular3": string[]; + "smilePlus": string[]; + "sim": string[]; + "signalCellular4": string[]; + "smokeFree": string[]; + "smile": string[]; + "sitemap": string[]; + "smokingRoom": string[]; + "snowflake": string[]; + "sortAlphaDown": string[]; + "sortAlphaUp": string[]; + "sortDescending": string[]; + "sortNumericUp": string[]; + "sortAscending": string[]; + "sortNumericDown": string[]; + "spa": string[]; + "spaceBar": string[]; + "speaker": string[]; + "speech": string[]; + "starHalf": string[]; + "spreadsheet": string[]; + "square": string[]; + "speedometer": string[]; + "star": string[]; + "storage": string[]; + "stream": string[]; + "sun": string[]; + "swapVertical": string[]; + "swapHorizontal": string[]; + "sync": string[]; + "tablet": string[]; + "swimming": string[]; + "tag": string[]; + "task": string[]; + "tags": string[]; + "taxi": string[]; + "tennisBall": string[]; + "tennis": string[]; + "terminal": string[]; + "terrain": string[]; + "textShapes": string[]; + "textStrike": string[]; + "textSize": string[]; + "text": string[]; + "textSquare": string[]; + "thumbDown": string[]; + "toggleOff": string[]; + "thumbUp": string[]; + "touchApp": string[]; + "toilet": string[]; + "transfer": string[]; + "trademark": string[]; + "translate": string[]; + "trash": string[]; + "triangle": string[]; + "truck": string[]; + "tv": string[]; + "underline": string[]; + "userFemale": string[]; + "userUnfollow": string[]; + "userFollow": string[]; + "vector": string[]; + "user": string[]; + "verticalAlignBottom": string[]; + "verticalAlignBottom1": string[]; + "verticalAlignCenter": string[]; + "verticalAlignCenter1": string[]; + "verticalAlignTop": string[]; + "verticalAlignTop1": string[]; + "video": string[]; + "viewColumn": string[]; + "viewModule": string[]; + "viewStream": string[]; + "viewQuilt": string[]; + "voiceOverRecord": string[]; + "volumeHigh": string[]; + "volumeLow": string[]; + "volumeOff": string[]; + "vue": string[]; + "walk": string[]; + "wallet": string[]; + "wallpaper": string[]; + "warning": string[]; + "watch": string[]; + "wc": string[]; + "weightlifitng": string[]; + "wheelchair": string[]; + "wifiSignal0": string[]; + "wifiSignal1": string[]; + "wifiSignal2": string[]; + "wifiSignal4": string[]; + "wifiSignalOff": string[]; + "windowMaximize": string[]; + "windowMinimize": string[]; + "windowRestore": string[]; + "window": string[]; + "wrapText": string[]; + "xCircle": string[]; + "x": string[]; + "yen": string[]; + "zoomIn": string[]; + "zoomOut": string[]; +} \ No newline at end of file diff --git a/js/free/free-set.js b/js/free/free-set.js index a8959399c..03d82eeac 100644 --- a/js/free/free-set.js +++ b/js/free/free-set.js @@ -1 +1 @@ -export const freeSet = {"3d":["24 24",""],"4k":["24 24",""],"accountLogout":["24 24",""],"actionRedo":["24 24",""],"actionUndo":["24 24",""],"airplaneModeOff":["24 24",""],"addressBook":["24 24",""],"airplaneMode":["24 24",""],"alarm":["24 24",""],"airplay":["24 24",""],"alignLeft":["24 24",""],"album":["24 24",""],"alignRight":["24 24",""],"americanFootball":["24 24",""],"alignCenter":["24 24",""],"aperture":["24 24",""],"applications":["24 24",""],"applicationsSettings":["24 24",""],"arrowBottom":["24 24",""],"arrowCircleLeft":["24 24",""],"arrowCircleBottom":["24 24",""],"arrowCircleTop":["24 24",""],"arrowLeft":["24 24",""],"arrowRight":["24 24",""],"arrowCircleRight":["24 24",""],"arrowThickFromRight":["24 24",""],"arrowThickFromBottom":["24 24",""],"arrowThickBottom":["24 24",""],"arrowThickFromLeft":["24 24",""],"arrowThickFromTop":["24 24",""],"arrowThickToRight":["24 24",""],"arrowThickRight":["24 24",""],"arrowThickLeft":["24 24",""],"arrowThickToBottom":["24 24",""],"arrowThickToLeft":["24 24",""],"arrowThickToTop":["24 24",""],"assistiveListeningSystem":["24 24",""],"arrowThickTop":["24 24",""],"arrowTop":["24 24",""],"asterisk":["24 24",""],"asteriskCircle":["24 24",""],"audioSpectrum":["24 24",""],"at":["24 24",""],"avTimer":["24 24",""],"audioDescription":["24 24",""],"audio":["24 24",""],"badge":["24 24",""],"ban":["24 24",""],"bank":["24 24",""],"balanceScale":["24 24",""],"barcode":["24 24",""],"barChart":["24 24",""],"baseball":["24 24",""],"basketball":["24 24",""],"basket":["24 24",""],"batteryAlert":["24 24",""],"bath":["24 24",""],"battery0":["24 24",""],"batterySlash":["24 24",""],"battery5":["24 24",""],"beaker":["24 24",""],"battery3":["24 24",""],"bell":["24 24",""],"bike":["24 24",""],"beachAccess":["24 24",""],"blind":["24 24",""],"bed":["24 24",""],"birthdayCake":["24 24",""],"blur":["24 24",""],"blurCircular":["24 24",""],"blurLinear":["24 24",""],"bold":["24 24",""],"bolt":["24 24",""],"bookmark":["24 24",""],"boatAlt":["24 24",""],"book":["24 24",""],"borderAll":["24 24",""],"borderClear":["24 24",""],"borderBottom":["24 24",""],"borderHorizontal":["24 24",""],"borderInner":["24 24",""],"borderLeft":["24 24",""],"borderStyle":["24 24",""],"borderOuter":["24 24",""],"borderRight":["24 24",""],"borderTop":["24 24",""],"bowling":["24 24",""],"briefcase":["24 24",""],"braille":["24 24",""],"borderVertical":["24 24",""],"brush":["24 24",""],"browser":["24 24",""],"bug":["24 24",""],"brightness":["24 24",""],"building":["24 24",""],"burger":["24 24",""],"bullhorn":["24 24",""],"calculator":["24 24",""],"busAlt":["24 24",""],"brushAlt":["24 24",""],"cameraControl":["24 24",""],"calendarCheck":["24 24",""],"cameraRoll":["24 24",""],"britishPound":["24 24",""],"calendar":["24 24",""],"camera":["24 24",""],"caretBottom":["24 24",""],"caretTop":["24 24",""],"carAlt":["24 24",""],"caretLeft":["24 24",""],"caretRight":["24 24",""],"cast":["24 24",""],"cat":["24 24",""],"cart":["24 24",""],"centerFocus":["24 24",""],"casino":["24 24",""],"chart":["24 24",""],"chartPie":["24 24",""],"check":["24 24",""],"chartLine":["24 24",""],"chatBubble":["24 24",""],"chevronCircleDownAlt":["24 24",""],"chevronBottom":["24 24",""],"chevronCircleRightAlt":["24 24",""],"chevronDoubleDown":["24 24",""],"chevronDoubleLeft":["24 24",""],"chevronCircleLeftAlt":["24 24",""],"chevronDoubleRight":["24 24",""],"chevronCircleUpAlt":["24 24",""],"chevronDoubleUp":["24 24",""],"chevronLeft":["24 24",""],"chevronDoubleUpAlt":["24 24",""],"childFriendly":["24 24",""],"chevronTop":["24 24",""],"child":["24 24",""],"clearAll":["24 24",""],"chevronRight":["24 24",""],"clipboard":["24 24",""],"clock":["24 24",""],"cloudUpload":["24 24",""],"clone":["24 24",""],"closedCaptioning":["24 24",""],"cloudDownload":["24 24",""],"cloud":["24 24",""],"code":["24 24",""],"colorFill":["24 24",""],"cloudy":["24 24",""],"colorPalette":["24 24",""],"coffee":["24 24",""],"commentBubble":["24 24",""],"colorBorder":["24 24",""],"columns":["24 24",""],"commentSquare":["24 24",""],"contact":["24 24",""],"compass":["24 24",""],"compress":["24 24",""],"contrast":["24 24",""],"copyright":["24 24",""],"copy":["24 24",""],"creditCard":["24 24",""],"couch":["24 24",""],"cropRotate":["24 24",""],"crop":["24 24",""],"dataTransferDown":["24 24",""],"cursor":["24 24",""],"cursorMove":["24 24",""],"cut":["24 24",""],"description":["24 24",""],"deaf":["24 24",""],"dataTransferUp":["24 24",""],"dinner":["24 24",""],"dialpad":["24 24",""],"dog":["24 24",""],"drinkAlcohol":["24 24",""],"dollar":["24 24",""],"devices":["24 24",""],"door":["24 24",""],"doubleQuoteSansLeft":["24 24",""],"drink":["24 24",""],"doubleQuoteSansRight":["24 24",""],"elevator":["24 24",""],"drop":["24 24",""],"drop1":["24 24",""],"envelopeLetter":["24 24",""],"envelopeClosed":["24 24",""],"equalizer":["24 24",""],"ethernet":["24 24",""],"excerpt":["24 24",""],"envelopeOpen":["24 24",""],"euro":["24 24",""],"exitToApp":["24 24",""],"expandLeft":["24 24",""],"expandDown":["24 24",""],"exposure":["24 24",""],"expandRight":["24 24",""],"expandUp":["24 24",""],"externalLink":["24 24",""],"fastfood":["24 24",""],"face":["24 24",""],"faceDead":["24 24",""],"featuredPlaylist":["24 24",""],"eyedropper":["24 24",""],"file":["24 24",""],"fax":["24 24",""],"filter":["24 24",""],"filterPhoto":["24 24",""],"filterFrames":["24 24",""],"findInPage":["24 24",""],"flightTakeoff":["24 24",""],"fingerprint":["24 24",""],"fire":["24 24",""],"flipToBack":["24 24",""],"flagAlt":["24 24",""],"flip":["24 24",""],"folder":["24 24",""],"folderOpen":["24 24",""],"flower":["24 24",""],"font":["24 24",""],"football":["24 24",""],"fridge":["24 24",""],"fork":["24 24",""],"frown":["24 24",""],"flipToFront":["24 24",""],"fullscreenExit":["24 24",""],"gamepad":["24 24",""],"functions":["24 24",""],"fullscreen":["24 24",""],"functionsAlt":["24 24",""],"garage":["24 24",""],"gif":["24 24",""],"gem":["24 24",""],"githubCircle":["24 24",""],"globeAlt":["24 24",""],"gift":["24 24",""],"golf":["24 24",""],"grain":["24 24",""],"golfAlt":["24 24",""],"gradient":["24 24",""],"handPointRight":["24 24",""],"handPointDown":["24 24",""],"gridSlash":["24 24",""],"handPointLeft":["24 24",""],"handPointUp":["24 24",""],"hd":["24 24",""],"healing":["24 24",""],"graph":["24 24",""],"hdr":["24 24",""],"grid":["24 24",""],"header":["24 24",""],"heart":["24 24",""],"headphones":["24 24",""],"highligt":["24 24",""],"highlighter":["24 24",""],"history":["24 24",""],"home":["24 24",""],"hospital":["24 24",""],"hotTub":["24 24",""],"https":["24 24",""],"house":["24 24",""],"inbox":["24 24",""],"imageBroken":["24 24",""],"imagePlus":["24 24",""],"image1":["24 24",""],"indentIncrease":["24 24",""],"indentDecrease":["24 24",""],"industrySlash":["24 24",""],"info":["24 24",""],"inputHdmi":["24 24",""],"inputPower":["24 24",""],"italic":["24 24",""],"institution":["24 24",""],"input":["24 24",""],"justifyCenter":["24 24",""],"keyboard":["24 24",""],"justifyLeft":["24 24",""],"justifyRight":["24 24",""],"language":["24 24",""],"laptop":["24 24",""],"layers":["24 24",""],"lan":["24 24",""],"leaf":["24 24",""],"lemon":["24 24",""],"lifeRing":["24 24",""],"libraryAdd":["24 24",""],"levelDown":["24 24",""],"levelUp":["24 24",""],"lightbulb":["24 24",""],"lineSpacing":["24 24",""],"library":["24 24",""],"lineStyle":["24 24",""],"lineWeight":["24 24",""],"linkAlt":["24 24",""],"linkBroken":["24 24",""],"link":["24 24",""],"infinity":["24 24",""],"listFilter":["24 24",""],"industry":["24 24",""],"listRich":["24 24",""],"listHighPriority":["24 24",""],"listLowPriority":["24 24",""],"list":["24 24",""],"listNumbered":["24 24",""],"locationPin":["24 24",""],"lockUnlocked":["24 24",""],"lockLocked":["24 24",""],"locomotive":["24 24",""],"lowVision":["24 24",""],"loop1":["24 24",""],"loop":["24 24",""],"loopCircular":["24 24",""],"magnifyingGlass":["24 24",""],"mediaEject":["24 24",""],"map":["24 24",""],"mediaPause":["24 24",""],"mediaPlay":["24 24",""],"mediaRecord":["24 24",""],"mediaSkipForward":["24 24",""],"mediaSkipBackward":["24 24",""],"mediaStepBackward":["24 24",""],"mediaStepForward":["24 24",""],"memory":["24 24",""],"menu":["24 24",""],"mediaStop":["24 24",""],"medicalCross":["24 24",""],"meh":["24 24",""],"minus":["24 24",""],"mobileLandscape":["24 24",""],"microphone":["24 24",""],"mobile":["24 24",""],"moodGood":["24 24",""],"monitor":["24 24",""],"moodBad":["24 24",""],"money":["24 24",""],"moodVeryGood":["24 24",""],"moon":["24 24",""],"move":["24 24",""],"moodVeryBad":["24 24",""],"mouthSlash":["24 24",""],"movie":["24 24",""],"mouse":["24 24",""],"mug":["24 24",""],"mugTea":["24 24",""],"objectUngroup":["24 24",""],"notes":["24 24",""],"objectGroup":["24 24",""],"musicNote":["24 24",""],"newspaper":["24 24",""],"optionsHorizontal":["24 24",""],"opacity":["24 24",""],"options":["24 24",""],"paperPlane":["24 24",""],"paintBucket":["24 24",""],"paint":["24 24",""],"paperclip":["24 24",""],"paragraph":["24 24",""],"pencil":["24 24",""],"penAlt":["24 24",""],"phone":["24 24",""],"penNib":["24 24",""],"paw":["24 24",""],"people":["24 24",""],"pin":["24 24",""],"pizza":["24 24",""],"playlistAdd":["24 24",""],"pool":["24 24",""],"plus":["24 24",""],"powerStandby":["24 24",""],"puzzle":["24 24",""],"polymer":["24 24",""],"pregnant":["24 24",""],"rain":["24 24",""],"reload":["24 24",""],"print":["24 24",""],"rectangle":["24 24",""],"qrCode":["24 24",""],"registered":["24 24",""],"restaurant":["24 24",""],"resizeBoth":["24 24",""],"resizeWidth":["24 24",""],"resizeHeight":["24 24",""],"rowing":["24 24",""],"running":["24 24",""],"remove":["24 24",""],"room":["24 24",""],"satelite":["24 24",""],"save":["24 24",""],"scrubber":["24 24",""],"school":["24 24",""],"settings":["24 24",""],"shareAll":["24 24",""],"shareAlt":["24 24",""],"shareBoxed":["24 24",""],"screenDesktop":["24 24",""],"shieldAlt":["24 24",""],"share":["24 24",""],"shortText":["24 24",""],"signalCellular0":["24 24",""],"shower":["24 24",""],"signLanguage":["24 24",""],"screenSmartphone":["24 24",""],"signalCellular4":["24 24",""],"sitemap":["24 24",""],"signalCellular3":["24 24",""],"sim":["24 24",""],"smilePlus":["24 24",""],"smokeFree":["24 24",""],"sortAlphaDown":["24 24",""],"smile":["24 24",""],"smokingRoom":["24 24",""],"sortAscending":["24 24",""],"snowflake":["24 24",""],"sortDescending":["24 24",""],"sortAlphaUp":["24 24",""],"sortNumericDown":["24 24",""],"sortNumericUp":["24 24",""],"spa":["24 24",""],"spaceBar":["24 24",""],"speedometer":["24 24",""],"square":["24 24",""],"speaker":["24 24",""],"spreadsheet":["24 24",""],"speech":["24 24",""],"starHalf":["24 24",""],"star":["24 24",""],"sun":["24 24",""],"stream":["24 24",""],"storage":["24 24",""],"swapVertical":["24 24",""],"swapHorizontal":["24 24",""],"swimming":["24 24",""],"tablet":["24 24",""],"tag":["24 24",""],"sync":["24 24",""],"tags":["24 24",""],"taxi":["24 24",""],"task":["24 24",""],"terminal":["24 24",""],"tennisBall":["24 24",""],"tennis":["24 24",""],"textSize":["24 24",""],"terrain":["24 24",""],"text":["24 24",""],"thumbUp":["24 24",""],"textShapes":["24 24",""],"textStrike":["24 24",""],"textSquare":["24 24",""],"thumbDown":["24 24",""],"toilet":["24 24",""],"toggleOff":["24 24",""],"touchApp":["24 24",""],"trademark":["24 24",""],"transfer":["24 24",""],"trash":["24 24",""],"translate":["24 24",""],"underline":["24 24",""],"triangle":["24 24",""],"tv":["24 24",""],"truck":["24 24",""],"userUnfollow":["24 24",""],"userFollow":["24 24",""],"vector":["24 24",""],"verticalAlignCenter":["24 24",""],"userFemale":["24 24",""],"verticalAlignBottom1":["24 24",""],"user":["24 24",""],"verticalAlignBottom":["24 24",""],"verticalAlignCenter1":["24 24",""],"verticalAlignTop":["24 24",""],"verticalAlignTop1":["24 24",""],"video":["24 24",""],"viewColumn":["24 24",""],"viewModule":["24 24",""],"viewQuilt":["24 24",""],"viewStream":["24 24",""],"voiceOverRecord":["24 24",""],"volumeHigh":["24 24",""],"volumeOff":["24 24",""],"walk":["24 24",""],"volumeLow":["24 24",""],"vue":["24 24",""],"watch":["24 24",""],"warning":["24 24",""],"wallpaper":["24 24",""],"wallet":["24 24",""],"wifiSignal0":["24 24",""],"weightlifitng":["24 24",""],"wheelchair":["24 24",""],"wc":["24 24",""],"wifiSignal1":["24 24",""],"windowMinimize":["24 24",""],"wifiSignalOff":["24 24",""],"wifiSignal4":["24 24",""],"wifiSignal2":["24 24",""],"windowMaximize":["24 24",""],"windowRestore":["24 24",""],"wrapText":["24 24",""],"window":["24 24",""],"xCircle":["24 24",""],"x":["24 24",""],"zoomOut":["24 24",""],"yen":["24 24",""],"zoomIn":["24 24",""]} \ No newline at end of file +export const freeSet = {"3d":["24 24",""],"accountLogout":["24 24",""],"actionRedo":["24 24",""],"addressBook":["24 24",""],"actionUndo":["24 24",""],"4k":["24 24",""],"airplaneModeOff":["24 24",""],"alarm":["24 24",""],"album":["24 24",""],"airplay":["24 24",""],"airplaneMode":["24 24",""],"alignCenter":["24 24",""],"alignLeft":["24 24",""],"alignRight":["24 24",""],"americanFootball":["24 24",""],"aperture":["24 24",""],"applicationsSettings":["24 24",""],"arrowCircleBottom":["24 24",""],"arrowBottom":["24 24",""],"applications":["24 24",""],"arrowCircleLeft":["24 24",""],"arrowLeft":["24 24",""],"arrowCircleTop":["24 24",""],"arrowRight":["24 24",""],"arrowCircleRight":["24 24",""],"arrowThickBottom":["24 24",""],"arrowThickFromLeft":["24 24",""],"arrowThickFromRight":["24 24",""],"arrowThickFromBottom":["24 24",""],"arrowThickFromTop":["24 24",""],"arrowThickLeft":["24 24",""],"arrowThickRight":["24 24",""],"arrowThickToLeft":["24 24",""],"arrowThickToBottom":["24 24",""],"arrowThickTop":["24 24",""],"arrowThickToRight":["24 24",""],"assistiveListeningSystem":["24 24",""],"arrowThickToTop":["24 24",""],"arrowTop":["24 24",""],"asteriskCircle":["24 24",""],"at":["24 24",""],"asterisk":["24 24",""],"audioSpectrum":["24 24",""],"audio":["24 24",""],"balanceScale":["24 24",""],"badge":["24 24",""],"avTimer":["24 24",""],"bank":["24 24",""],"audioDescription":["24 24",""],"barChart":["24 24",""],"ban":["24 24",""],"barcode":["24 24",""],"baseball":["24 24",""],"basketball":["24 24",""],"battery0":["24 24",""],"bath":["24 24",""],"battery3":["24 24",""],"battery5":["24 24",""],"batteryAlert":["24 24",""],"basket":["24 24",""],"beachAccess":["24 24",""],"batterySlash":["24 24",""],"beaker":["24 24",""],"bell":["24 24",""],"bed":["24 24",""],"birthdayCake":["24 24",""],"blind":["24 24",""],"blurCircular":["24 24",""],"blurLinear":["24 24",""],"blur":["24 24",""],"bike":["24 24",""],"boatAlt":["24 24",""],"bolt":["24 24",""],"borderAll":["24 24",""],"book":["24 24",""],"bold":["24 24",""],"borderHorizontal":["24 24",""],"bookmark":["24 24",""],"borderOuter":["24 24",""],"borderInner":["24 24",""],"borderClear":["24 24",""],"borderBottom":["24 24",""],"borderTop":["24 24",""],"borderStyle":["24 24",""],"borderRight":["24 24",""],"borderVertical":["24 24",""],"braille":["24 24",""],"borderLeft":["24 24",""],"brightness":["24 24",""],"briefcase":["24 24",""],"britishPound":["24 24",""],"bowling":["24 24",""],"browser":["24 24",""],"brush":["24 24",""],"brushAlt":["24 24",""],"building":["24 24",""],"bug":["24 24",""],"burger":["24 24",""],"busAlt":["24 24",""],"calculator":["24 24",""],"bullhorn":["24 24",""],"calendarCheck":["24 24",""],"cameraRoll":["24 24",""],"cameraControl":["24 24",""],"carAlt":["24 24",""],"camera":["24 24",""],"caretBottom":["24 24",""],"calendar":["24 24",""],"caretLeft":["24 24",""],"caretRight":["24 24",""],"cart":["24 24",""],"caretTop":["24 24",""],"cat":["24 24",""],"cast":["24 24",""],"casino":["24 24",""],"centerFocus":["24 24",""],"chartLine":["24 24",""],"chatBubble":["24 24",""],"check":["24 24",""],"chartPie":["24 24",""],"chevronBottom":["24 24",""],"chevronCircleDownAlt":["24 24",""],"chevronCircleRightAlt":["24 24",""],"chevronCircleLeftAlt":["24 24",""],"chart":["24 24",""],"chevronCircleUpAlt":["24 24",""],"chevronDoubleDown":["24 24",""],"chevronDoubleUpAlt":["24 24",""],"chevronDoubleLeft":["24 24",""],"chevronDoubleRight":["24 24",""],"chevronDoubleUp":["24 24",""],"chevronLeft":["24 24",""],"chevronRight":["24 24",""],"childFriendly":["24 24",""],"child":["24 24",""],"clearAll":["24 24",""],"chevronTop":["24 24",""],"clone":["24 24",""],"clock":["24 24",""],"clipboard":["24 24",""],"closedCaptioning":["24 24",""],"cloudDownload":["24 24",""],"cloudUpload":["24 24",""],"cloud":["24 24",""],"code":["24 24",""],"coffee":["24 24",""],"colorBorder":["24 24",""],"cloudy":["24 24",""],"colorFill":["24 24",""],"commentBubble":["24 24",""],"columns":["24 24",""],"colorPalette":["24 24",""],"commentSquare":["24 24",""],"compass":["24 24",""],"contrast":["24 24",""],"compress":["24 24",""],"copy":["24 24",""],"contact":["24 24",""],"copyright":["24 24",""],"creditCard":["24 24",""],"couch":["24 24",""],"crop":["24 24",""],"cursor":["24 24",""],"cursorMove":["24 24",""],"cropRotate":["24 24",""],"dataTransferDown":["24 24",""],"cut":["24 24",""],"dataTransferUp":["24 24",""],"deaf":["24 24",""],"description":["24 24",""],"devices":["24 24",""],"dinner":["24 24",""],"dog":["24 24",""],"dialpad":["24 24",""],"doubleQuoteSansLeft":["24 24",""],"doubleQuoteSansRight":["24 24",""],"dollar":["24 24",""],"door":["24 24",""],"drink":["24 24",""],"drop":["24 24",""],"drinkAlcohol":["24 24",""],"drop1":["24 24",""],"elevator":["24 24",""],"envelopeClosed":["24 24",""],"envelopeLetter":["24 24",""],"envelopeOpen":["24 24",""],"equalizer":["24 24",""],"euro":["24 24",""],"ethernet":["24 24",""],"exitToApp":["24 24",""],"excerpt":["24 24",""],"expandDown":["24 24",""],"expandLeft":["24 24",""],"expandUp":["24 24",""],"externalLink":["24 24",""],"expandRight":["24 24",""],"exposure":["24 24",""],"eyedropper":["24 24",""],"faceDead":["24 24",""],"fastfood":["24 24",""],"fax":["24 24",""],"file":["24 24",""],"featuredPlaylist":["24 24",""],"filterFrames":["24 24",""],"face":["24 24",""],"filterPhoto":["24 24",""],"findInPage":["24 24",""],"filter":["24 24",""],"flightTakeoff":["24 24",""],"fire":["24 24",""],"flipToBack":["24 24",""],"fingerprint":["24 24",""],"flagAlt":["24 24",""],"flip":["24 24",""],"flipToFront":["24 24",""],"folderOpen":["24 24",""],"flower":["24 24",""],"folder":["24 24",""],"font":["24 24",""],"fork":["24 24",""],"fridge":["24 24",""],"football":["24 24",""],"frown":["24 24",""],"fullscreenExit":["24 24",""],"functions":["24 24",""],"fullscreen":["24 24",""],"functionsAlt":["24 24",""],"gamepad":["24 24",""],"gif":["24 24",""],"gem":["24 24",""],"gift":["24 24",""],"githubCircle":["24 24",""],"garage":["24 24",""],"globeAlt":["24 24",""],"golf":["24 24",""],"golfAlt":["24 24",""],"gradient":["24 24",""],"graph":["24 24",""],"grain":["24 24",""],"grid":["24 24",""],"handPointDown":["24 24",""],"handPointLeft":["24 24",""],"gridSlash":["24 24",""],"hd":["24 24",""],"handPointRight":["24 24",""],"hdr":["24 24",""],"header":["24 24",""],"headphones":["24 24",""],"handPointUp":["24 24",""],"healing":["24 24",""],"highligt":["24 24",""],"highlighter":["24 24",""],"history":["24 24",""],"home":["24 24",""],"heart":["24 24",""],"hospital":["24 24",""],"hotTub":["24 24",""],"https":["24 24",""],"imagePlus":["24 24",""],"imageBroken":["24 24",""],"house":["24 24",""],"indentDecrease":["24 24",""],"infinity":["24 24",""],"industry":["24 24",""],"industrySlash":["24 24",""],"image1":["24 24",""],"inbox":["24 24",""],"indentIncrease":["24 24",""],"info":["24 24",""],"inputHdmi":["24 24",""],"inputPower":["24 24",""],"institution":["24 24",""],"italic":["24 24",""],"input":["24 24",""],"justifyCenter":["24 24",""],"justifyRight":["24 24",""],"justifyLeft":["24 24",""],"lan":["24 24",""],"keyboard":["24 24",""],"language":["24 24",""],"layers":["24 24",""],"leaf":["24 24",""],"levelDown":["24 24",""],"levelUp":["24 24",""],"laptop":["24 24",""],"lemon":["24 24",""],"libraryAdd":["24 24",""],"lifeRing":["24 24",""],"library":["24 24",""],"lineSpacing":["24 24",""],"lineWeight":["24 24",""],"linkAlt":["24 24",""],"linkBroken":["24 24",""],"lineStyle":["24 24",""],"link":["24 24",""],"listFilter":["24 24",""],"lightbulb":["24 24",""],"listHighPriority":["24 24",""],"listLowPriority":["24 24",""],"listNumbered":["24 24",""],"listRich":["24 24",""],"locationPin":["24 24",""],"lockLocked":["24 24",""],"lockUnlocked":["24 24",""],"locomotive":["24 24",""],"loop1":["24 24",""],"list":["24 24",""],"loop":["24 24",""],"loopCircular":["24 24",""],"lowVision":["24 24",""],"magnifyingGlass":["24 24",""],"map":["24 24",""],"mediaEject":["24 24",""],"mediaPause":["24 24",""],"mediaPlay":["24 24",""],"mediaSkipForward":["24 24",""],"mediaRecord":["24 24",""],"mediaStepBackward":["24 24",""],"mediaStepForward":["24 24",""],"mediaSkipBackward":["24 24",""],"mediaStop":["24 24",""],"medicalCross":["24 24",""],"meh":["24 24",""],"memory":["24 24",""],"microphone":["24 24",""],"mobileLandscape":["24 24",""],"minus":["24 24",""],"mobile":["24 24",""],"menu":["24 24",""],"money":["24 24",""],"monitor":["24 24",""],"moodBad":["24 24",""],"moodGood":["24 24",""],"moodVeryBad":["24 24",""],"moodVeryGood":["24 24",""],"moon":["24 24",""],"mouse":["24 24",""],"move":["24 24",""],"mouthSlash":["24 24",""],"mugTea":["24 24",""],"mug":["24 24",""],"newspaper":["24 24",""],"movie":["24 24",""],"musicNote":["24 24",""],"objectUngroup":["24 24",""],"objectGroup":["24 24",""],"opacity":["24 24",""],"notes":["24 24",""],"options":["24 24",""],"paintBucket":["24 24",""],"optionsHorizontal":["24 24",""],"paperPlane":["24 24",""],"paint":["24 24",""],"paragraph":["24 24",""],"paperclip":["24 24",""],"paw":["24 24",""],"penAlt":["24 24",""],"penNib":["24 24",""],"people":["24 24",""],"pencil":["24 24",""],"phone":["24 24",""],"pin":["24 24",""],"pizza":["24 24",""],"plus":["24 24",""],"playlistAdd":["24 24",""],"pool":["24 24",""],"polymer":["24 24",""],"powerStandby":["24 24",""],"pregnant":["24 24",""],"puzzle":["24 24",""],"print":["24 24",""],"qrCode":["24 24",""],"rectangle":["24 24",""],"rain":["24 24",""],"registered":["24 24",""],"resizeBoth":["24 24",""],"reload":["24 24",""],"remove":["24 24",""],"resizeWidth":["24 24",""],"room":["24 24",""],"resizeHeight":["24 24",""],"restaurant":["24 24",""],"running":["24 24",""],"rowing":["24 24",""],"satelite":["24 24",""],"save":["24 24",""],"school":["24 24",""],"screenDesktop":["24 24",""],"screenSmartphone":["24 24",""],"scrubber":["24 24",""],"shareAll":["24 24",""],"settings":["24 24",""],"shareAlt":["24 24",""],"shareBoxed":["24 24",""],"share":["24 24",""],"shieldAlt":["24 24",""],"shortText":["24 24",""],"signLanguage":["24 24",""],"shower":["24 24",""],"signalCellular0":["24 24",""],"signalCellular3":["24 24",""],"smilePlus":["24 24",""],"sim":["24 24",""],"signalCellular4":["24 24",""],"smokeFree":["24 24",""],"smile":["24 24",""],"sitemap":["24 24",""],"smokingRoom":["24 24",""],"snowflake":["24 24",""],"sortAlphaDown":["24 24",""],"sortAlphaUp":["24 24",""],"sortDescending":["24 24",""],"sortNumericUp":["24 24",""],"sortAscending":["24 24",""],"sortNumericDown":["24 24",""],"spa":["24 24",""],"spaceBar":["24 24",""],"speaker":["24 24",""],"speech":["24 24",""],"starHalf":["24 24",""],"spreadsheet":["24 24",""],"square":["24 24",""],"speedometer":["24 24",""],"star":["24 24",""],"storage":["24 24",""],"stream":["24 24",""],"sun":["24 24",""],"swapVertical":["24 24",""],"swapHorizontal":["24 24",""],"sync":["24 24",""],"tablet":["24 24",""],"swimming":["24 24",""],"tag":["24 24",""],"task":["24 24",""],"tags":["24 24",""],"taxi":["24 24",""],"tennisBall":["24 24",""],"tennis":["24 24",""],"terminal":["24 24",""],"terrain":["24 24",""],"textShapes":["24 24",""],"textStrike":["24 24",""],"textSize":["24 24",""],"text":["24 24",""],"textSquare":["24 24",""],"thumbDown":["24 24",""],"toggleOff":["24 24",""],"thumbUp":["24 24",""],"touchApp":["24 24",""],"toilet":["24 24",""],"transfer":["24 24",""],"trademark":["24 24",""],"translate":["24 24",""],"trash":["24 24",""],"triangle":["24 24",""],"truck":["24 24",""],"tv":["24 24",""],"underline":["24 24",""],"userFemale":["24 24",""],"userUnfollow":["24 24",""],"userFollow":["24 24",""],"vector":["24 24",""],"user":["24 24",""],"verticalAlignBottom":["24 24",""],"verticalAlignBottom1":["24 24",""],"verticalAlignCenter":["24 24",""],"verticalAlignCenter1":["24 24",""],"verticalAlignTop":["24 24",""],"verticalAlignTop1":["24 24",""],"video":["24 24",""],"viewColumn":["24 24",""],"viewModule":["24 24",""],"viewStream":["24 24",""],"viewQuilt":["24 24",""],"voiceOverRecord":["24 24",""],"volumeHigh":["24 24",""],"volumeLow":["24 24",""],"volumeOff":["24 24",""],"vue":["24 24",""],"walk":["24 24",""],"wallet":["24 24",""],"wallpaper":["24 24",""],"warning":["24 24",""],"watch":["24 24",""],"wc":["24 24",""],"weightlifitng":["24 24",""],"wheelchair":["24 24",""],"wifiSignal0":["24 24",""],"wifiSignal1":["24 24",""],"wifiSignal2":["24 24",""],"wifiSignal4":["24 24",""],"wifiSignalOff":["24 24",""],"windowMaximize":["24 24",""],"windowMinimize":["24 24",""],"windowRestore":["24 24",""],"window":["24 24",""],"wrapText":["24 24",""],"xCircle":["24 24",""],"x":["24 24",""],"yen":["24 24",""],"zoomIn":["24 24",""],"zoomOut":["24 24",""]} \ No newline at end of file diff --git a/js/free/fridge.d.ts b/js/free/fridge.d.ts new file mode 100644 index 000000000..15bc3cde6 --- /dev/null +++ b/js/free/fridge.d.ts @@ -0,0 +1 @@ +export declare const fridge: string[]; \ No newline at end of file diff --git a/js/free/frown.d.ts b/js/free/frown.d.ts new file mode 100644 index 000000000..573911351 --- /dev/null +++ b/js/free/frown.d.ts @@ -0,0 +1 @@ +export declare const frown: string[]; \ No newline at end of file diff --git a/js/free/fullscreen-exit.d.ts b/js/free/fullscreen-exit.d.ts new file mode 100644 index 000000000..75cb8228e --- /dev/null +++ b/js/free/fullscreen-exit.d.ts @@ -0,0 +1 @@ +export declare const fullscreenExit: string[]; \ No newline at end of file diff --git a/js/free/fullscreen.d.ts b/js/free/fullscreen.d.ts new file mode 100644 index 000000000..90d9e05f6 --- /dev/null +++ b/js/free/fullscreen.d.ts @@ -0,0 +1 @@ +export declare const fullscreen: string[]; \ No newline at end of file diff --git a/js/free/functions-alt.d.ts b/js/free/functions-alt.d.ts new file mode 100644 index 000000000..c8651400c --- /dev/null +++ b/js/free/functions-alt.d.ts @@ -0,0 +1 @@ +export declare const functionsAlt: string[]; \ No newline at end of file diff --git a/js/free/functions.d.ts b/js/free/functions.d.ts new file mode 100644 index 000000000..7f7e85653 --- /dev/null +++ b/js/free/functions.d.ts @@ -0,0 +1 @@ +export declare const functions: string[]; \ No newline at end of file diff --git a/js/free/gamepad.d.ts b/js/free/gamepad.d.ts new file mode 100644 index 000000000..5cedb556e --- /dev/null +++ b/js/free/gamepad.d.ts @@ -0,0 +1 @@ +export declare const gamepad: string[]; \ No newline at end of file diff --git a/js/free/garage.d.ts b/js/free/garage.d.ts new file mode 100644 index 000000000..204725582 --- /dev/null +++ b/js/free/garage.d.ts @@ -0,0 +1 @@ +export declare const garage: string[]; \ No newline at end of file diff --git a/js/free/gem.d.ts b/js/free/gem.d.ts new file mode 100644 index 000000000..a623c4136 --- /dev/null +++ b/js/free/gem.d.ts @@ -0,0 +1 @@ +export declare const gem: string[]; \ No newline at end of file diff --git a/js/free/gif.d.ts b/js/free/gif.d.ts new file mode 100644 index 000000000..e406b1c04 --- /dev/null +++ b/js/free/gif.d.ts @@ -0,0 +1 @@ +export declare const gif: string[]; \ No newline at end of file diff --git a/js/free/gift.d.ts b/js/free/gift.d.ts new file mode 100644 index 000000000..5fddd16ff --- /dev/null +++ b/js/free/gift.d.ts @@ -0,0 +1 @@ +export declare const gift: string[]; \ No newline at end of file diff --git a/js/free/github-circle.d.ts b/js/free/github-circle.d.ts new file mode 100644 index 000000000..435abee97 --- /dev/null +++ b/js/free/github-circle.d.ts @@ -0,0 +1 @@ +export declare const githubCircle: string[]; \ No newline at end of file diff --git a/js/free/globe-alt.d.ts b/js/free/globe-alt.d.ts new file mode 100644 index 000000000..7cd5d2c8d --- /dev/null +++ b/js/free/globe-alt.d.ts @@ -0,0 +1 @@ +export declare const globeAlt: string[]; \ No newline at end of file diff --git a/js/free/golf-alt.d.ts b/js/free/golf-alt.d.ts new file mode 100644 index 000000000..41c606bd2 --- /dev/null +++ b/js/free/golf-alt.d.ts @@ -0,0 +1 @@ +export declare const golfAlt: string[]; \ No newline at end of file diff --git a/js/free/golf.d.ts b/js/free/golf.d.ts new file mode 100644 index 000000000..c19f342e1 --- /dev/null +++ b/js/free/golf.d.ts @@ -0,0 +1 @@ +export declare const golf: string[]; \ No newline at end of file diff --git a/js/free/gradient.d.ts b/js/free/gradient.d.ts new file mode 100644 index 000000000..ce7d249fb --- /dev/null +++ b/js/free/gradient.d.ts @@ -0,0 +1 @@ +export declare const gradient: string[]; \ No newline at end of file diff --git a/js/free/grain.d.ts b/js/free/grain.d.ts new file mode 100644 index 000000000..ab5d017c3 --- /dev/null +++ b/js/free/grain.d.ts @@ -0,0 +1 @@ +export declare const grain: string[]; \ No newline at end of file diff --git a/js/free/graph.d.ts b/js/free/graph.d.ts new file mode 100644 index 000000000..d4838bd08 --- /dev/null +++ b/js/free/graph.d.ts @@ -0,0 +1 @@ +export declare const graph: string[]; \ No newline at end of file diff --git a/js/free/grid-slash.d.ts b/js/free/grid-slash.d.ts new file mode 100644 index 000000000..c114f5e51 --- /dev/null +++ b/js/free/grid-slash.d.ts @@ -0,0 +1 @@ +export declare const gridSlash: string[]; \ No newline at end of file diff --git a/js/free/grid.d.ts b/js/free/grid.d.ts new file mode 100644 index 000000000..54856e612 --- /dev/null +++ b/js/free/grid.d.ts @@ -0,0 +1 @@ +export declare const grid: string[]; \ No newline at end of file diff --git a/js/free/hand-point-down.d.ts b/js/free/hand-point-down.d.ts new file mode 100644 index 000000000..cb6996b7c --- /dev/null +++ b/js/free/hand-point-down.d.ts @@ -0,0 +1 @@ +export declare const handPointDown: string[]; \ No newline at end of file diff --git a/js/free/hand-point-left.d.ts b/js/free/hand-point-left.d.ts new file mode 100644 index 000000000..3a3928fbc --- /dev/null +++ b/js/free/hand-point-left.d.ts @@ -0,0 +1 @@ +export declare const handPointLeft: string[]; \ No newline at end of file diff --git a/js/free/hand-point-right.d.ts b/js/free/hand-point-right.d.ts new file mode 100644 index 000000000..46c839840 --- /dev/null +++ b/js/free/hand-point-right.d.ts @@ -0,0 +1 @@ +export declare const handPointRight: string[]; \ No newline at end of file diff --git a/js/free/hand-point-up.d.ts b/js/free/hand-point-up.d.ts new file mode 100644 index 000000000..26be83441 --- /dev/null +++ b/js/free/hand-point-up.d.ts @@ -0,0 +1 @@ +export declare const handPointUp: string[]; \ No newline at end of file diff --git a/js/free/hd.d.ts b/js/free/hd.d.ts new file mode 100644 index 000000000..e1098484c --- /dev/null +++ b/js/free/hd.d.ts @@ -0,0 +1 @@ +export declare const hd: string[]; \ No newline at end of file diff --git a/js/free/hdr.d.ts b/js/free/hdr.d.ts new file mode 100644 index 000000000..4a4851c31 --- /dev/null +++ b/js/free/hdr.d.ts @@ -0,0 +1 @@ +export declare const hdr: string[]; \ No newline at end of file diff --git a/js/free/header.d.ts b/js/free/header.d.ts new file mode 100644 index 000000000..67e3254cb --- /dev/null +++ b/js/free/header.d.ts @@ -0,0 +1 @@ +export declare const header: string[]; \ No newline at end of file diff --git a/js/free/headphones.d.ts b/js/free/headphones.d.ts new file mode 100644 index 000000000..0a6c5d9f4 --- /dev/null +++ b/js/free/headphones.d.ts @@ -0,0 +1 @@ +export declare const headphones: string[]; \ No newline at end of file diff --git a/js/free/healing.d.ts b/js/free/healing.d.ts new file mode 100644 index 000000000..452f119b2 --- /dev/null +++ b/js/free/healing.d.ts @@ -0,0 +1 @@ +export declare const healing: string[]; \ No newline at end of file diff --git a/js/free/heart.d.ts b/js/free/heart.d.ts new file mode 100644 index 000000000..b2efa54da --- /dev/null +++ b/js/free/heart.d.ts @@ -0,0 +1 @@ +export declare const heart: string[]; \ No newline at end of file diff --git a/js/free/highlighter.d.ts b/js/free/highlighter.d.ts new file mode 100644 index 000000000..783efaa21 --- /dev/null +++ b/js/free/highlighter.d.ts @@ -0,0 +1 @@ +export declare const highlighter: string[]; \ No newline at end of file diff --git a/js/free/highligt.d.ts b/js/free/highligt.d.ts new file mode 100644 index 000000000..c8c38f9a8 --- /dev/null +++ b/js/free/highligt.d.ts @@ -0,0 +1 @@ +export declare const highligt: string[]; \ No newline at end of file diff --git a/js/free/history.d.ts b/js/free/history.d.ts new file mode 100644 index 000000000..82f1603b5 --- /dev/null +++ b/js/free/history.d.ts @@ -0,0 +1 @@ +export declare const history: string[]; \ No newline at end of file diff --git a/js/free/home.d.ts b/js/free/home.d.ts new file mode 100644 index 000000000..7e050da0b --- /dev/null +++ b/js/free/home.d.ts @@ -0,0 +1 @@ +export declare const home: string[]; \ No newline at end of file diff --git a/js/free/hospital.d.ts b/js/free/hospital.d.ts new file mode 100644 index 000000000..790f509c5 --- /dev/null +++ b/js/free/hospital.d.ts @@ -0,0 +1 @@ +export declare const hospital: string[]; \ No newline at end of file diff --git a/js/free/hot-tub.d.ts b/js/free/hot-tub.d.ts new file mode 100644 index 000000000..37b95b50f --- /dev/null +++ b/js/free/hot-tub.d.ts @@ -0,0 +1 @@ +export declare const hotTub: string[]; \ No newline at end of file diff --git a/js/free/house.d.ts b/js/free/house.d.ts new file mode 100644 index 000000000..f311d94fb --- /dev/null +++ b/js/free/house.d.ts @@ -0,0 +1 @@ +export declare const house: string[]; \ No newline at end of file diff --git a/js/free/https.d.ts b/js/free/https.d.ts new file mode 100644 index 000000000..d96a4e0d5 --- /dev/null +++ b/js/free/https.d.ts @@ -0,0 +1 @@ +export declare const https: string[]; \ No newline at end of file diff --git a/js/free/image-broken.d.ts b/js/free/image-broken.d.ts new file mode 100644 index 000000000..eb587ef16 --- /dev/null +++ b/js/free/image-broken.d.ts @@ -0,0 +1 @@ +export declare const imageBroken: string[]; \ No newline at end of file diff --git a/js/free/image-plus.d.ts b/js/free/image-plus.d.ts new file mode 100644 index 000000000..0d8c244e6 --- /dev/null +++ b/js/free/image-plus.d.ts @@ -0,0 +1 @@ +export declare const imagePlus: string[]; \ No newline at end of file diff --git a/js/free/image1.d.ts b/js/free/image1.d.ts new file mode 100644 index 000000000..f61fe69c2 --- /dev/null +++ b/js/free/image1.d.ts @@ -0,0 +1 @@ +export declare const image1: string[]; \ No newline at end of file diff --git a/js/free/inbox.d.ts b/js/free/inbox.d.ts new file mode 100644 index 000000000..31d237ef3 --- /dev/null +++ b/js/free/inbox.d.ts @@ -0,0 +1 @@ +export declare const inbox: string[]; \ No newline at end of file diff --git a/js/free/indent-decrease.d.ts b/js/free/indent-decrease.d.ts new file mode 100644 index 000000000..a4d984e1d --- /dev/null +++ b/js/free/indent-decrease.d.ts @@ -0,0 +1 @@ +export declare const indentDecrease: string[]; \ No newline at end of file diff --git a/js/free/indent-increase.d.ts b/js/free/indent-increase.d.ts new file mode 100644 index 000000000..ee883abc9 --- /dev/null +++ b/js/free/indent-increase.d.ts @@ -0,0 +1 @@ +export declare const indentIncrease: string[]; \ No newline at end of file diff --git a/js/free/index.d.ts b/js/free/index.d.ts index d0bd2161a..df7525072 100644 --- a/js/free/index.d.ts +++ b/js/free/index.d.ts @@ -1,836 +1,836 @@ +export declare const freeSet: { + "n3d": string[]; + "accountLogout": string[]; + "actionRedo": string[]; + "addressBook": string[]; + "actionUndo": string[]; + "n4k": string[]; + "airplaneModeOff": string[]; + "alarm": string[]; + "album": string[]; + "airplay": string[]; + "airplaneMode": string[]; + "alignCenter": string[]; + "alignLeft": string[]; + "alignRight": string[]; + "americanFootball": string[]; + "aperture": string[]; + "applicationsSettings": string[]; + "arrowCircleBottom": string[]; + "arrowBottom": string[]; + "applications": string[]; + "arrowCircleLeft": string[]; + "arrowLeft": string[]; + "arrowCircleTop": string[]; + "arrowRight": string[]; + "arrowCircleRight": string[]; + "arrowThickBottom": string[]; + "arrowThickFromLeft": string[]; + "arrowThickFromRight": string[]; + "arrowThickFromBottom": string[]; + "arrowThickFromTop": string[]; + "arrowThickLeft": string[]; + "arrowThickRight": string[]; + "arrowThickToLeft": string[]; + "arrowThickToBottom": string[]; + "arrowThickTop": string[]; + "arrowThickToRight": string[]; + "assistiveListeningSystem": string[]; + "arrowThickToTop": string[]; + "arrowTop": string[]; + "asteriskCircle": string[]; + "at": string[]; + "asterisk": string[]; + "audioSpectrum": string[]; + "audio": string[]; + "balanceScale": string[]; + "badge": string[]; + "avTimer": string[]; + "bank": string[]; + "audioDescription": string[]; + "barChart": string[]; + "ban": string[]; + "barcode": string[]; + "baseball": string[]; + "basketball": string[]; + "battery0": string[]; + "bath": string[]; + "battery3": string[]; + "battery5": string[]; + "batteryAlert": string[]; + "basket": string[]; + "beachAccess": string[]; + "batterySlash": string[]; + "beaker": string[]; + "bell": string[]; + "bed": string[]; + "birthdayCake": string[]; + "blind": string[]; + "blurCircular": string[]; + "blurLinear": string[]; + "blur": string[]; + "bike": string[]; + "boatAlt": string[]; + "bolt": string[]; + "borderAll": string[]; + "book": string[]; + "bold": string[]; + "borderHorizontal": string[]; + "bookmark": string[]; + "borderOuter": string[]; + "borderInner": string[]; + "borderClear": string[]; + "borderBottom": string[]; + "borderTop": string[]; + "borderStyle": string[]; + "borderRight": string[]; + "borderVertical": string[]; + "braille": string[]; + "borderLeft": string[]; + "brightness": string[]; + "briefcase": string[]; + "britishPound": string[]; + "bowling": string[]; + "browser": string[]; + "brush": string[]; + "brushAlt": string[]; + "building": string[]; + "bug": string[]; + "burger": string[]; + "busAlt": string[]; + "calculator": string[]; + "bullhorn": string[]; + "calendarCheck": string[]; + "cameraRoll": string[]; + "cameraControl": string[]; + "carAlt": string[]; + "camera": string[]; + "caretBottom": string[]; + "calendar": string[]; + "caretLeft": string[]; + "caretRight": string[]; + "cart": string[]; + "caretTop": string[]; + "cat": string[]; + "cast": string[]; + "casino": string[]; + "centerFocus": string[]; + "chartLine": string[]; + "chatBubble": string[]; + "check": string[]; + "chartPie": string[]; + "chevronBottom": string[]; + "chevronCircleDownAlt": string[]; + "chevronCircleRightAlt": string[]; + "chevronCircleLeftAlt": string[]; + "chart": string[]; + "chevronCircleUpAlt": string[]; + "chevronDoubleDown": string[]; + "chevronDoubleUpAlt": string[]; + "chevronDoubleLeft": string[]; + "chevronDoubleRight": string[]; + "chevronDoubleUp": string[]; + "chevronLeft": string[]; + "chevronRight": string[]; + "childFriendly": string[]; + "child": string[]; + "clearAll": string[]; + "chevronTop": string[]; + "clone": string[]; + "clock": string[]; + "clipboard": string[]; + "closedCaptioning": string[]; + "cloudDownload": string[]; + "cloudUpload": string[]; + "cloud": string[]; + "code": string[]; + "coffee": string[]; + "colorBorder": string[]; + "cloudy": string[]; + "colorFill": string[]; + "commentBubble": string[]; + "columns": string[]; + "colorPalette": string[]; + "commentSquare": string[]; + "compass": string[]; + "contrast": string[]; + "compress": string[]; + "copy": string[]; + "contact": string[]; + "copyright": string[]; + "creditCard": string[]; + "couch": string[]; + "crop": string[]; + "cursor": string[]; + "cursorMove": string[]; + "cropRotate": string[]; + "dataTransferDown": string[]; + "cut": string[]; + "dataTransferUp": string[]; + "deaf": string[]; + "description": string[]; + "devices": string[]; + "dinner": string[]; + "dog": string[]; + "dialpad": string[]; + "doubleQuoteSansLeft": string[]; + "doubleQuoteSansRight": string[]; + "dollar": string[]; + "door": string[]; + "drink": string[]; + "drop": string[]; + "drinkAlcohol": string[]; + "drop1": string[]; + "elevator": string[]; + "envelopeClosed": string[]; + "envelopeLetter": string[]; + "envelopeOpen": string[]; + "equalizer": string[]; + "euro": string[]; + "ethernet": string[]; + "exitToApp": string[]; + "excerpt": string[]; + "expandDown": string[]; + "expandLeft": string[]; + "expandUp": string[]; + "externalLink": string[]; + "expandRight": string[]; + "exposure": string[]; + "eyedropper": string[]; + "faceDead": string[]; + "fastfood": string[]; + "fax": string[]; + "file": string[]; + "featuredPlaylist": string[]; + "filterFrames": string[]; + "face": string[]; + "filterPhoto": string[]; + "findInPage": string[]; + "filter": string[]; + "flightTakeoff": string[]; + "fire": string[]; + "flipToBack": string[]; + "fingerprint": string[]; + "flagAlt": string[]; + "flip": string[]; + "flipToFront": string[]; + "folderOpen": string[]; + "flower": string[]; + "folder": string[]; + "font": string[]; + "fork": string[]; + "fridge": string[]; + "football": string[]; + "frown": string[]; + "fullscreenExit": string[]; + "functions": string[]; + "fullscreen": string[]; + "functionsAlt": string[]; + "gamepad": string[]; + "gif": string[]; + "gem": string[]; + "gift": string[]; + "githubCircle": string[]; + "garage": string[]; + "globeAlt": string[]; + "golf": string[]; + "golfAlt": string[]; + "gradient": string[]; + "graph": string[]; + "grain": string[]; + "grid": string[]; + "handPointDown": string[]; + "handPointLeft": string[]; + "gridSlash": string[]; + "hd": string[]; + "handPointRight": string[]; + "hdr": string[]; + "header": string[]; + "headphones": string[]; + "handPointUp": string[]; + "healing": string[]; + "highligt": string[]; + "highlighter": string[]; + "history": string[]; + "home": string[]; + "heart": string[]; + "hospital": string[]; + "hotTub": string[]; + "https": string[]; + "imagePlus": string[]; + "imageBroken": string[]; + "house": string[]; + "indentDecrease": string[]; + "infinity": string[]; + "industry": string[]; + "industrySlash": string[]; + "image1": string[]; + "inbox": string[]; + "indentIncrease": string[]; + "info": string[]; + "inputHdmi": string[]; + "inputPower": string[]; + "institution": string[]; + "italic": string[]; + "input": string[]; + "justifyCenter": string[]; + "justifyRight": string[]; + "justifyLeft": string[]; + "lan": string[]; + "keyboard": string[]; + "language": string[]; + "layers": string[]; + "leaf": string[]; + "levelDown": string[]; + "levelUp": string[]; + "laptop": string[]; + "lemon": string[]; + "libraryAdd": string[]; + "lifeRing": string[]; + "library": string[]; + "lineSpacing": string[]; + "lineWeight": string[]; + "linkAlt": string[]; + "linkBroken": string[]; + "lineStyle": string[]; + "link": string[]; + "listFilter": string[]; + "lightbulb": string[]; + "listHighPriority": string[]; + "listLowPriority": string[]; + "listNumbered": string[]; + "listRich": string[]; + "locationPin": string[]; + "lockLocked": string[]; + "lockUnlocked": string[]; + "locomotive": string[]; + "loop1": string[]; + "list": string[]; + "loop": string[]; + "loopCircular": string[]; + "lowVision": string[]; + "magnifyingGlass": string[]; + "map": string[]; + "mediaEject": string[]; + "mediaPause": string[]; + "mediaPlay": string[]; + "mediaSkipForward": string[]; + "mediaRecord": string[]; + "mediaStepBackward": string[]; + "mediaStepForward": string[]; + "mediaSkipBackward": string[]; + "mediaStop": string[]; + "medicalCross": string[]; + "meh": string[]; + "memory": string[]; + "microphone": string[]; + "mobileLandscape": string[]; + "minus": string[]; + "mobile": string[]; + "menu": string[]; + "money": string[]; + "monitor": string[]; + "moodBad": string[]; + "moodGood": string[]; + "moodVeryBad": string[]; + "moodVeryGood": string[]; + "moon": string[]; + "mouse": string[]; + "move": string[]; + "mouthSlash": string[]; + "mugTea": string[]; + "mug": string[]; + "newspaper": string[]; + "movie": string[]; + "musicNote": string[]; + "objectUngroup": string[]; + "objectGroup": string[]; + "opacity": string[]; + "notes": string[]; + "options": string[]; + "paintBucket": string[]; + "optionsHorizontal": string[]; + "paperPlane": string[]; + "paint": string[]; + "paragraph": string[]; + "paperclip": string[]; + "paw": string[]; + "penAlt": string[]; + "penNib": string[]; + "people": string[]; + "pencil": string[]; + "phone": string[]; + "pin": string[]; + "pizza": string[]; + "plus": string[]; + "playlistAdd": string[]; + "pool": string[]; + "polymer": string[]; + "powerStandby": string[]; + "pregnant": string[]; + "puzzle": string[]; + "print": string[]; + "qrCode": string[]; + "rectangle": string[]; + "rain": string[]; + "registered": string[]; + "resizeBoth": string[]; + "reload": string[]; + "remove": string[]; + "resizeWidth": string[]; + "room": string[]; + "resizeHeight": string[]; + "restaurant": string[]; + "running": string[]; + "rowing": string[]; + "satelite": string[]; + "save": string[]; + "school": string[]; + "screenDesktop": string[]; + "screenSmartphone": string[]; + "scrubber": string[]; + "shareAll": string[]; + "settings": string[]; + "shareAlt": string[]; + "shareBoxed": string[]; + "share": string[]; + "shieldAlt": string[]; + "shortText": string[]; + "signLanguage": string[]; + "shower": string[]; + "signalCellular0": string[]; + "signalCellular3": string[]; + "smilePlus": string[]; + "sim": string[]; + "signalCellular4": string[]; + "smokeFree": string[]; + "smile": string[]; + "sitemap": string[]; + "smokingRoom": string[]; + "snowflake": string[]; + "sortAlphaDown": string[]; + "sortAlphaUp": string[]; + "sortDescending": string[]; + "sortNumericUp": string[]; + "sortAscending": string[]; + "sortNumericDown": string[]; + "spa": string[]; + "spaceBar": string[]; + "speaker": string[]; + "speech": string[]; + "starHalf": string[]; + "spreadsheet": string[]; + "square": string[]; + "speedometer": string[]; + "star": string[]; + "storage": string[]; + "stream": string[]; + "sun": string[]; + "swapVertical": string[]; + "swapHorizontal": string[]; + "sync": string[]; + "tablet": string[]; + "swimming": string[]; + "tag": string[]; + "task": string[]; + "tags": string[]; + "taxi": string[]; + "tennisBall": string[]; + "tennis": string[]; + "terminal": string[]; + "terrain": string[]; + "textShapes": string[]; + "textStrike": string[]; + "textSize": string[]; + "text": string[]; + "textSquare": string[]; + "thumbDown": string[]; + "toggleOff": string[]; + "thumbUp": string[]; + "touchApp": string[]; + "toilet": string[]; + "transfer": string[]; + "trademark": string[]; + "translate": string[]; + "trash": string[]; + "triangle": string[]; + "truck": string[]; + "tv": string[]; + "underline": string[]; + "userFemale": string[]; + "userUnfollow": string[]; + "userFollow": string[]; + "vector": string[]; + "user": string[]; + "verticalAlignBottom": string[]; + "verticalAlignBottom1": string[]; + "verticalAlignCenter": string[]; + "verticalAlignCenter1": string[]; + "verticalAlignTop": string[]; + "verticalAlignTop1": string[]; + "video": string[]; + "viewColumn": string[]; + "viewModule": string[]; + "viewStream": string[]; + "viewQuilt": string[]; + "voiceOverRecord": string[]; + "volumeHigh": string[]; + "volumeLow": string[]; + "volumeOff": string[]; + "vue": string[]; + "walk": string[]; + "wallet": string[]; + "wallpaper": string[]; + "warning": string[]; + "watch": string[]; + "wc": string[]; + "weightlifitng": string[]; + "wheelchair": string[]; + "wifiSignal0": string[]; + "wifiSignal1": string[]; + "wifiSignal2": string[]; + "wifiSignal4": string[]; + "wifiSignalOff": string[]; + "windowMaximize": string[]; + "windowMinimize": string[]; + "windowRestore": string[]; + "window": string[]; + "wrapText": string[]; + "xCircle": string[]; + "x": string[]; + "yen": string[]; + "zoomIn": string[]; + "zoomOut": string[]; +} export declare const n3d: string[]; -export declare const n4k: string[]; export declare const accountLogout: string[]; export declare const actionRedo: string[]; -export declare const actionUndo: string[]; export declare const addressBook: string[]; +export declare const actionUndo: string[]; +export declare const n4k: string[]; export declare const airplaneModeOff: string[]; -export declare const airplaneMode: string[]; -export declare const airplay: string[]; export declare const alarm: string[]; export declare const album: string[]; +export declare const airplay: string[]; +export declare const airplaneMode: string[]; export declare const alignCenter: string[]; export declare const alignLeft: string[]; export declare const alignRight: string[]; export declare const americanFootball: string[]; export declare const aperture: string[]; export declare const applicationsSettings: string[]; -export declare const applications: string[]; -export declare const arrowBottom: string[]; export declare const arrowCircleBottom: string[]; +export declare const arrowBottom: string[]; +export declare const applications: string[]; export declare const arrowCircleLeft: string[]; -export declare const arrowCircleRight: string[]; -export declare const arrowCircleTop: string[]; export declare const arrowLeft: string[]; +export declare const arrowCircleTop: string[]; export declare const arrowRight: string[]; +export declare const arrowCircleRight: string[]; export declare const arrowThickBottom: string[]; -export declare const arrowThickFromBottom: string[]; export declare const arrowThickFromLeft: string[]; export declare const arrowThickFromRight: string[]; +export declare const arrowThickFromBottom: string[]; export declare const arrowThickFromTop: string[]; export declare const arrowThickLeft: string[]; export declare const arrowThickRight: string[]; -export declare const arrowThickToBottom: string[]; export declare const arrowThickToLeft: string[]; -export declare const arrowThickToRight: string[]; -export declare const arrowThickToTop: string[]; +export declare const arrowThickToBottom: string[]; export declare const arrowThickTop: string[]; -export declare const arrowTop: string[]; +export declare const arrowThickToRight: string[]; export declare const assistiveListeningSystem: string[]; +export declare const arrowThickToTop: string[]; +export declare const arrowTop: string[]; export declare const asteriskCircle: string[]; -export declare const asterisk: string[]; export declare const at: string[]; -export declare const audioDescription: string[]; +export declare const asterisk: string[]; export declare const audioSpectrum: string[]; export declare const audio: string[]; -export declare const avTimer: string[]; -export declare const badge: string[]; export declare const balanceScale: string[]; -export declare const ban: string[]; +export declare const badge: string[]; +export declare const avTimer: string[]; export declare const bank: string[]; +export declare const audioDescription: string[]; export declare const barChart: string[]; +export declare const ban: string[]; export declare const barcode: string[]; export declare const baseball: string[]; -export declare const basket: string[]; export declare const basketball: string[]; -export declare const bath: string[]; export declare const battery0: string[]; +export declare const bath: string[]; export declare const battery3: string[]; export declare const battery5: string[]; export declare const batteryAlert: string[]; -export declare const batterySlash: string[]; +export declare const basket: string[]; export declare const beachAccess: string[]; +export declare const batterySlash: string[]; export declare const beaker: string[]; -export declare const bed: string[]; export declare const bell: string[]; -export declare const bike: string[]; +export declare const bed: string[]; export declare const birthdayCake: string[]; export declare const blind: string[]; export declare const blurCircular: string[]; export declare const blurLinear: string[]; export declare const blur: string[]; +export declare const bike: string[]; export declare const boatAlt: string[]; -export declare const bold: string[]; export declare const bolt: string[]; -export declare const book: string[]; -export declare const bookmark: string[]; export declare const borderAll: string[]; -export declare const borderBottom: string[]; -export declare const borderClear: string[]; +export declare const book: string[]; +export declare const bold: string[]; export declare const borderHorizontal: string[]; -export declare const borderInner: string[]; -export declare const borderLeft: string[]; +export declare const bookmark: string[]; export declare const borderOuter: string[]; -export declare const borderRight: string[]; -export declare const borderStyle: string[]; +export declare const borderInner: string[]; +export declare const borderClear: string[]; +export declare const borderBottom: string[]; export declare const borderTop: string[]; +export declare const borderStyle: string[]; +export declare const borderRight: string[]; export declare const borderVertical: string[]; -export declare const bowling: string[]; export declare const braille: string[]; -export declare const briefcase: string[]; +export declare const borderLeft: string[]; export declare const brightness: string[]; +export declare const briefcase: string[]; export declare const britishPound: string[]; +export declare const bowling: string[]; export declare const browser: string[]; -export declare const brushAlt: string[]; export declare const brush: string[]; -export declare const bug: string[]; +export declare const brushAlt: string[]; export declare const building: string[]; -export declare const bullhorn: string[]; +export declare const bug: string[]; export declare const burger: string[]; export declare const busAlt: string[]; export declare const calculator: string[]; +export declare const bullhorn: string[]; export declare const calendarCheck: string[]; -export declare const calendar: string[]; -export declare const cameraControl: string[]; export declare const cameraRoll: string[]; -export declare const camera: string[]; +export declare const cameraControl: string[]; export declare const carAlt: string[]; +export declare const camera: string[]; export declare const caretBottom: string[]; +export declare const calendar: string[]; export declare const caretLeft: string[]; export declare const caretRight: string[]; -export declare const caretTop: string[]; export declare const cart: string[]; -export declare const casino: string[]; -export declare const cast: string[]; +export declare const caretTop: string[]; export declare const cat: string[]; +export declare const cast: string[]; +export declare const casino: string[]; export declare const centerFocus: string[]; export declare const chartLine: string[]; -export declare const chartPie: string[]; -export declare const chart: string[]; export declare const chatBubble: string[]; export declare const check: string[]; +export declare const chartPie: string[]; export declare const chevronBottom: string[]; export declare const chevronCircleDownAlt: string[]; -export declare const chevronCircleLeftAlt: string[]; export declare const chevronCircleRightAlt: string[]; +export declare const chevronCircleLeftAlt: string[]; +export declare const chart: string[]; export declare const chevronCircleUpAlt: string[]; export declare const chevronDoubleDown: string[]; +export declare const chevronDoubleUpAlt: string[]; export declare const chevronDoubleLeft: string[]; export declare const chevronDoubleRight: string[]; -export declare const chevronDoubleUpAlt: string[]; export declare const chevronDoubleUp: string[]; export declare const chevronLeft: string[]; export declare const chevronRight: string[]; -export declare const chevronTop: string[]; export declare const childFriendly: string[]; export declare const child: string[]; export declare const clearAll: string[]; -export declare const clipboard: string[]; -export declare const clock: string[]; +export declare const chevronTop: string[]; export declare const clone: string[]; +export declare const clock: string[]; +export declare const clipboard: string[]; export declare const closedCaptioning: string[]; export declare const cloudDownload: string[]; export declare const cloudUpload: string[]; export declare const cloud: string[]; -export declare const cloudy: string[]; export declare const code: string[]; export declare const coffee: string[]; export declare const colorBorder: string[]; +export declare const cloudy: string[]; export declare const colorFill: string[]; -export declare const colorPalette: string[]; -export declare const columns: string[]; export declare const commentBubble: string[]; +export declare const columns: string[]; +export declare const colorPalette: string[]; export declare const commentSquare: string[]; export declare const compass: string[]; -export declare const compress: string[]; -export declare const contact: string[]; export declare const contrast: string[]; +export declare const compress: string[]; export declare const copy: string[]; +export declare const contact: string[]; export declare const copyright: string[]; -export declare const couch: string[]; export declare const creditCard: string[]; -export declare const cropRotate: string[]; +export declare const couch: string[]; export declare const crop: string[]; -export declare const cursorMove: string[]; export declare const cursor: string[]; -export declare const cut: string[]; +export declare const cursorMove: string[]; +export declare const cropRotate: string[]; export declare const dataTransferDown: string[]; +export declare const cut: string[]; export declare const dataTransferUp: string[]; export declare const deaf: string[]; export declare const description: string[]; export declare const devices: string[]; -export declare const dialpad: string[]; export declare const dinner: string[]; export declare const dog: string[]; -export declare const dollar: string[]; -export declare const door: string[]; +export declare const dialpad: string[]; export declare const doubleQuoteSansLeft: string[]; export declare const doubleQuoteSansRight: string[]; -export declare const drinkAlcohol: string[]; +export declare const dollar: string[]; +export declare const door: string[]; export declare const drink: string[]; export declare const drop: string[]; +export declare const drinkAlcohol: string[]; export declare const drop1: string[]; export declare const elevator: string[]; export declare const envelopeClosed: string[]; export declare const envelopeLetter: string[]; export declare const envelopeOpen: string[]; export declare const equalizer: string[]; -export declare const ethernet: string[]; export declare const euro: string[]; -export declare const excerpt: string[]; +export declare const ethernet: string[]; export declare const exitToApp: string[]; +export declare const excerpt: string[]; export declare const expandDown: string[]; export declare const expandLeft: string[]; -export declare const expandRight: string[]; export declare const expandUp: string[]; -export declare const exposure: string[]; export declare const externalLink: string[]; +export declare const expandRight: string[]; +export declare const exposure: string[]; export declare const eyedropper: string[]; export declare const faceDead: string[]; -export declare const face: string[]; export declare const fastfood: string[]; export declare const fax: string[]; -export declare const featuredPlaylist: string[]; export declare const file: string[]; +export declare const featuredPlaylist: string[]; export declare const filterFrames: string[]; +export declare const face: string[]; export declare const filterPhoto: string[]; -export declare const filter: string[]; export declare const findInPage: string[]; -export declare const fingerprint: string[]; -export declare const fire: string[]; -export declare const flagAlt: string[]; +export declare const filter: string[]; export declare const flightTakeoff: string[]; +export declare const fire: string[]; export declare const flipToBack: string[]; -export declare const flipToFront: string[]; +export declare const fingerprint: string[]; +export declare const flagAlt: string[]; export declare const flip: string[]; -export declare const flower: string[]; +export declare const flipToFront: string[]; export declare const folderOpen: string[]; +export declare const flower: string[]; export declare const folder: string[]; export declare const font: string[]; -export declare const football: string[]; export declare const fork: string[]; -export declare const freeSet: { - "3d": string[]; - "4k": string[]; - "actionRedo": string[]; - "accountLogout": string[]; - "actionUndo": string[]; - "addressBook": string[]; - "airplaneMode": string[]; - "airplaneModeOff": string[]; - "airplay": string[]; - "alarm": string[]; - "album": string[]; - "alignCenter": string[]; - "alignLeft": string[]; - "alignRight": string[]; - "americanFootball": string[]; - "aperture": string[]; - "applicationsSettings": string[]; - "applications": string[]; - "arrowBottom": string[]; - "arrowCircleLeft": string[]; - "arrowRight": string[]; - "arrowCircleBottom": string[]; - "arrowCircleTop": string[]; - "arrowThickBottom": string[]; - "arrowThickFromLeft": string[]; - "arrowThickFromBottom": string[]; - "arrowThickFromRight": string[]; - "arrowThickFromTop": string[]; - "arrowThickLeft": string[]; - "arrowCircleRight": string[]; - "arrowThickRight": string[]; - "arrowThickToBottom": string[]; - "arrowThickToLeft": string[]; - "arrowLeft": string[]; - "arrowThickToRight": string[]; - "arrowThickToTop": string[]; - "arrowThickTop": string[]; - "arrowTop": string[]; - "assistiveListeningSystem": string[]; - "asteriskCircle": string[]; - "at": string[]; - "asterisk": string[]; - "audioDescription": string[]; - "audioSpectrum": string[]; - "audio": string[]; - "avTimer": string[]; - "badge": string[]; - "balanceScale": string[]; - "ban": string[]; - "bank": string[]; - "barChart": string[]; - "basket": string[]; - "baseball": string[]; - "barcode": string[]; - "bath": string[]; - "basketball": string[]; - "battery3": string[]; - "battery0": string[]; - "batteryAlert": string[]; - "battery5": string[]; - "batterySlash": string[]; - "beachAccess": string[]; - "beaker": string[]; - "bell": string[]; - "birthdayCake": string[]; - "bed": string[]; - "bike": string[]; - "blind": string[]; - "blur": string[]; - "blurCircular": string[]; - "boatAlt": string[]; - "blurLinear": string[]; - "bold": string[]; - "bolt": string[]; - "book": string[]; - "borderAll": string[]; - "bookmark": string[]; - "borderBottom": string[]; - "borderClear": string[]; - "borderHorizontal": string[]; - "borderLeft": string[]; - "borderInner": string[]; - "borderRight": string[]; - "borderOuter": string[]; - "borderTop": string[]; - "borderStyle": string[]; - "bowling": string[]; - "borderVertical": string[]; - "braille": string[]; - "briefcase": string[]; - "brightness": string[]; - "britishPound": string[]; - "browser": string[]; - "brushAlt": string[]; - "brush": string[]; - "bug": string[]; - "building": string[]; - "bullhorn": string[]; - "burger": string[]; - "busAlt": string[]; - "calculator": string[]; - "calendarCheck": string[]; - "cameraControl": string[]; - "calendar": string[]; - "caretBottom": string[]; - "carAlt": string[]; - "cameraRoll": string[]; - "camera": string[]; - "caretRight": string[]; - "caretLeft": string[]; - "caretTop": string[]; - "cart": string[]; - "casino": string[]; - "cast": string[]; - "cat": string[]; - "centerFocus": string[]; - "chartLine": string[]; - "chartPie": string[]; - "chart": string[]; - "chatBubble": string[]; - "chevronBottom": string[]; - "check": string[]; - "chevronCircleDownAlt": string[]; - "chevronCircleLeftAlt": string[]; - "chevronCircleUpAlt": string[]; - "chevronCircleRightAlt": string[]; - "chevronDoubleDown": string[]; - "chevronDoubleRight": string[]; - "chevronRight": string[]; - "chevronDoubleLeft": string[]; - "chevronDoubleUpAlt": string[]; - "chevronDoubleUp": string[]; - "chevronLeft": string[]; - "chevronTop": string[]; - "child": string[]; - "childFriendly": string[]; - "clipboard": string[]; - "clearAll": string[]; - "clock": string[]; - "cloudDownload": string[]; - "clone": string[]; - "closedCaptioning": string[]; - "cloud": string[]; - "cloudy": string[]; - "cloudUpload": string[]; - "code": string[]; - "coffee": string[]; - "colorFill": string[]; - "commentBubble": string[]; - "commentSquare": string[]; - "colorPalette": string[]; - "compass": string[]; - "compress": string[]; - "columns": string[]; - "contact": string[]; - "contrast": string[]; - "copyright": string[]; - "copy": string[]; - "colorBorder": string[]; - "couch": string[]; - "creditCard": string[]; - "cropRotate": string[]; - "cursor": string[]; - "crop": string[]; - "cut": string[]; - "cursorMove": string[]; - "dataTransferDown": string[]; - "dataTransferUp": string[]; - "description": string[]; - "devices": string[]; - "deaf": string[]; - "dialpad": string[]; - "dinner": string[]; - "dollar": string[]; - "dog": string[]; - "door": string[]; - "doubleQuoteSansRight": string[]; - "doubleQuoteSansLeft": string[]; - "drink": string[]; - "envelopeClosed": string[]; - "drinkAlcohol": string[]; - "drop": string[]; - "drop1": string[]; - "elevator": string[]; - "envelopeOpen": string[]; - "envelopeLetter": string[]; - "equalizer": string[]; - "ethernet": string[]; - "excerpt": string[]; - "exitToApp": string[]; - "euro": string[]; - "expandLeft": string[]; - "expandDown": string[]; - "exposure": string[]; - "expandUp": string[]; - "expandRight": string[]; - "externalLink": string[]; - "face": string[]; - "faceDead": string[]; - "eyedropper": string[]; - "fax": string[]; - "fastfood": string[]; - "file": string[]; - "featuredPlaylist": string[]; - "filterFrames": string[]; - "filterPhoto": string[]; - "findInPage": string[]; - "fingerprint": string[]; - "filter": string[]; - "fire": string[]; - "flagAlt": string[]; - "flipToFront": string[]; - "flipToBack": string[]; - "flightTakeoff": string[]; - "flower": string[]; - "folderOpen": string[]; - "flip": string[]; - "folder": string[]; - "font": string[]; - "football": string[]; - "fridge": string[]; - "fork": string[]; - "fullscreenExit": string[]; - "functionsAlt": string[]; - "frown": string[]; - "fullscreen": string[]; - "functions": string[]; - "gamepad": string[]; - "gem": string[]; - "garage": string[]; - "gif": string[]; - "githubCircle": string[]; - "gift": string[]; - "grain": string[]; - "golfAlt": string[]; - "golf": string[]; - "globeAlt": string[]; - "gradient": string[]; - "graph": string[]; - "gridSlash": string[]; - "handPointDown": string[]; - "handPointLeft": string[]; - "grid": string[]; - "hd": string[]; - "handPointRight": string[]; - "handPointUp": string[]; - "hdr": string[]; - "headphones": string[]; - "healing": string[]; - "header": string[]; - "heart": string[]; - "history": string[]; - "highlighter": string[]; - "highligt": string[]; - "home": string[]; - "hotTub": string[]; - "hospital": string[]; - "house": string[]; - "https": string[]; - "imagePlus": string[]; - "imageBroken": string[]; - "image1": string[]; - "inbox": string[]; - "indentDecrease": string[]; - "industrySlash": string[]; - "indentIncrease": string[]; - "industry": string[]; - "infinity": string[]; - "info": string[]; - "inputHdmi": string[]; - "inputPower": string[]; - "italic": string[]; - "justifyLeft": string[]; - "keyboard": string[]; - "justifyCenter": string[]; - "input": string[]; - "justifyRight": string[]; - "language": string[]; - "lan": string[]; - "institution": string[]; - "laptop": string[]; - "lemon": string[]; - "leaf": string[]; - "levelUp": string[]; - "layers": string[]; - "levelDown": string[]; - "lightbulb": string[]; - "libraryAdd": string[]; - "lifeRing": string[]; - "library": string[]; - "lineSpacing": string[]; - "lineStyle": string[]; - "linkBroken": string[]; - "lineWeight": string[]; - "link": string[]; - "listFilter": string[]; - "listHighPriority": string[]; - "listLowPriority": string[]; - "listRich": string[]; - "linkAlt": string[]; - "listNumbered": string[]; - "locationPin": string[]; - "list": string[]; - "lockLocked": string[]; - "locomotive": string[]; - "lockUnlocked": string[]; - "loop1": string[]; - "loopCircular": string[]; - "loop": string[]; - "mediaEject": string[]; - "lowVision": string[]; - "magnifyingGlass": string[]; - "mediaPause": string[]; - "mediaPlay": string[]; - "map": string[]; - "mediaRecord": string[]; - "mediaSkipBackward": string[]; - "mediaSkipForward": string[]; - "mediaStepForward": string[]; - "mediaStepBackward": string[]; - "medicalCross": string[]; - "mediaStop": string[]; - "memory": string[]; - "meh": string[]; - "microphone": string[]; - "menu": string[]; - "minus": string[]; - "mobileLandscape": string[]; - "mobile": string[]; - "money": string[]; - "moodBad": string[]; - "monitor": string[]; - "moodVeryBad": string[]; - "moon": string[]; - "moodVeryGood": string[]; - "moodGood": string[]; - "mouthSlash": string[]; - "mouse": string[]; - "move": string[]; - "mugTea": string[]; - "movie": string[]; - "mug": string[]; - "musicNote": string[]; - "newspaper": string[]; - "notes": string[]; - "objectGroup": string[]; - "objectUngroup": string[]; - "opacity": string[]; - "optionsHorizontal": string[]; - "paintBucket": string[]; - "options": string[]; - "paperPlane": string[]; - "paint": string[]; - "paperclip": string[]; - "paragraph": string[]; - "paw": string[]; - "penAlt": string[]; - "people": string[]; - "penNib": string[]; - "pencil": string[]; - "phone": string[]; - "pin": string[]; - "pizza": string[]; - "playlistAdd": string[]; - "plus": string[]; - "polymer": string[]; - "pool": string[]; - "print": string[]; - "powerStandby": string[]; - "pregnant": string[]; - "puzzle": string[]; - "rectangle": string[]; - "rain": string[]; - "qrCode": string[]; - "registered": string[]; - "reload": string[]; - "resizeBoth": string[]; - "remove": string[]; - "resizeWidth": string[]; - "room": string[]; - "resizeHeight": string[]; - "restaurant": string[]; - "rowing": string[]; - "satelite": string[]; - "running": string[]; - "save": string[]; - "school": string[]; - "screenDesktop": string[]; - "screenSmartphone": string[]; - "scrubber": string[]; - "settings": string[]; - "shareBoxed": string[]; - "shareAll": string[]; - "shieldAlt": string[]; - "shareAlt": string[]; - "shortText": string[]; - "share": string[]; - "shower": string[]; - "signLanguage": string[]; - "signalCellular0": string[]; - "signalCellular4": string[]; - "sim": string[]; - "signalCellular3": string[]; - "sitemap": string[]; - "smile": string[]; - "smilePlus": string[]; - "smokeFree": string[]; - "snowflake": string[]; - "sortAlphaUp": string[]; - "sortAlphaDown": string[]; - "sortDescending": string[]; - "smokingRoom": string[]; - "sortNumericDown": string[]; - "sortAscending": string[]; - "spa": string[]; - "sortNumericUp": string[]; - "speaker": string[]; - "spaceBar": string[]; - "speedometer": string[]; - "speech": string[]; - "starHalf": string[]; - "spreadsheet": string[]; - "square": string[]; - "star": string[]; - "storage": string[]; - "stream": string[]; - "sun": string[]; - "swapHorizontal": string[]; - "tablet": string[]; - "swimming": string[]; - "swapVertical": string[]; - "sync": string[]; - "tags": string[]; - "tag": string[]; - "taxi": string[]; - "task": string[]; - "tennisBall": string[]; - "terminal": string[]; - "tennis": string[]; - "terrain": string[]; - "textShapes": string[]; - "textStrike": string[]; - "textSize": string[]; - "text": string[]; - "textSquare": string[]; - "thumbUp": string[]; - "thumbDown": string[]; - "toggleOff": string[]; - "toilet": string[]; - "touchApp": string[]; - "trademark": string[]; - "transfer": string[]; - "translate": string[]; - "trash": string[]; - "truck": string[]; - "triangle": string[]; - "userFollow": string[]; - "userUnfollow": string[]; - "userFemale": string[]; - "user": string[]; - "verticalAlignBottom": string[]; - "vector": string[]; - "underline": string[]; - "verticalAlignBottom1": string[]; - "verticalAlignCenter": string[]; - "verticalAlignTop": string[]; - "verticalAlignTop1": string[]; - "verticalAlignCenter1": string[]; - "tv": string[]; - "viewModule": string[]; - "video": string[]; - "viewColumn": string[]; - "viewQuilt": string[]; - "viewStream": string[]; - "volumeHigh": string[]; - "voiceOverRecord": string[]; - "volumeLow": string[]; - "volumeOff": string[]; - "wallet": string[]; - "walk": string[]; - "vue": string[]; - "wallpaper": string[]; - "watch": string[]; - "warning": string[]; - "weightlifitng": string[]; - "wc": string[]; - "wifiSignal0": string[]; - "wheelchair": string[]; - "wifiSignal1": string[]; - "wifiSignal2": string[]; - "wifiSignalOff": string[]; - "wifiSignal4": string[]; - "window": string[]; - "windowMaximize": string[]; - "wrapText": string[]; - "windowMinimize": string[]; - "windowRestore": string[]; - "xCircle": string[]; - "yen": string[]; - "x": string[]; - "zoomIn": string[]; - "zoomOut": string[]; -}; export declare const fridge: string[]; +export declare const football: string[]; export declare const frown: string[]; export declare const fullscreenExit: string[]; +export declare const functions: string[]; export declare const fullscreen: string[]; export declare const functionsAlt: string[]; -export declare const functions: string[]; export declare const gamepad: string[]; -export declare const garage: string[]; -export declare const gem: string[]; export declare const gif: string[]; +export declare const gem: string[]; export declare const gift: string[]; export declare const githubCircle: string[]; +export declare const garage: string[]; export declare const globeAlt: string[]; -export declare const golfAlt: string[]; export declare const golf: string[]; +export declare const golfAlt: string[]; export declare const gradient: string[]; -export declare const grain: string[]; export declare const graph: string[]; -export declare const gridSlash: string[]; +export declare const grain: string[]; export declare const grid: string[]; export declare const handPointDown: string[]; export declare const handPointLeft: string[]; -export declare const handPointRight: string[]; -export declare const handPointUp: string[]; +export declare const gridSlash: string[]; export declare const hd: string[]; +export declare const handPointRight: string[]; export declare const hdr: string[]; export declare const header: string[]; export declare const headphones: string[]; +export declare const handPointUp: string[]; export declare const healing: string[]; -export declare const heart: string[]; -export declare const highlighter: string[]; export declare const highligt: string[]; +export declare const highlighter: string[]; export declare const history: string[]; export declare const home: string[]; +export declare const heart: string[]; export declare const hospital: string[]; export declare const hotTub: string[]; -export declare const house: string[]; export declare const https: string[]; -export declare const imageBroken: string[]; export declare const imagePlus: string[]; +export declare const imageBroken: string[]; +export declare const house: string[]; +export declare const indentDecrease: string[]; +export declare const infinity: string[]; +export declare const industry: string[]; +export declare const industrySlash: string[]; export declare const image1: string[]; export declare const inbox: string[]; -export declare const indentDecrease: string[]; export declare const indentIncrease: string[]; -export declare const industrySlash: string[]; -export declare const industry: string[]; -export declare const infinity: string[]; export declare const info: string[]; export declare const inputHdmi: string[]; export declare const inputPower: string[]; -export declare const input: string[]; export declare const institution: string[]; export declare const italic: string[]; +export declare const input: string[]; export declare const justifyCenter: string[]; -export declare const justifyLeft: string[]; export declare const justifyRight: string[]; -export declare const keyboard: string[]; +export declare const justifyLeft: string[]; export declare const lan: string[]; +export declare const keyboard: string[]; export declare const language: string[]; -export declare const laptop: string[]; export declare const layers: string[]; export declare const leaf: string[]; -export declare const lemon: string[]; export declare const levelDown: string[]; export declare const levelUp: string[]; +export declare const laptop: string[]; +export declare const lemon: string[]; export declare const libraryAdd: string[]; -export declare const library: string[]; export declare const lifeRing: string[]; -export declare const lightbulb: string[]; +export declare const library: string[]; export declare const lineSpacing: string[]; -export declare const lineStyle: string[]; export declare const lineWeight: string[]; export declare const linkAlt: string[]; export declare const linkBroken: string[]; +export declare const lineStyle: string[]; export declare const link: string[]; export declare const listFilter: string[]; +export declare const lightbulb: string[]; export declare const listHighPriority: string[]; export declare const listLowPriority: string[]; export declare const listNumbered: string[]; export declare const listRich: string[]; -export declare const list: string[]; export declare const locationPin: string[]; export declare const lockLocked: string[]; export declare const lockUnlocked: string[]; export declare const locomotive: string[]; export declare const loop1: string[]; -export declare const loopCircular: string[]; +export declare const list: string[]; export declare const loop: string[]; +export declare const loopCircular: string[]; export declare const lowVision: string[]; export declare const magnifyingGlass: string[]; export declare const map: string[]; export declare const mediaEject: string[]; export declare const mediaPause: string[]; export declare const mediaPlay: string[]; -export declare const mediaRecord: string[]; -export declare const mediaSkipBackward: string[]; export declare const mediaSkipForward: string[]; +export declare const mediaRecord: string[]; export declare const mediaStepBackward: string[]; export declare const mediaStepForward: string[]; +export declare const mediaSkipBackward: string[]; export declare const mediaStop: string[]; export declare const medicalCross: string[]; export declare const meh: string[]; export declare const memory: string[]; -export declare const menu: string[]; export declare const microphone: string[]; -export declare const minus: string[]; export declare const mobileLandscape: string[]; +export declare const minus: string[]; export declare const mobile: string[]; +export declare const menu: string[]; export declare const money: string[]; export declare const monitor: string[]; export declare const moodBad: string[]; @@ -839,121 +839,121 @@ export declare const moodVeryBad: string[]; export declare const moodVeryGood: string[]; export declare const moon: string[]; export declare const mouse: string[]; -export declare const mouthSlash: string[]; export declare const move: string[]; -export declare const movie: string[]; +export declare const mouthSlash: string[]; export declare const mugTea: string[]; export declare const mug: string[]; -export declare const musicNote: string[]; export declare const newspaper: string[]; -export declare const notes: string[]; -export declare const objectGroup: string[]; +export declare const movie: string[]; +export declare const musicNote: string[]; export declare const objectUngroup: string[]; +export declare const objectGroup: string[]; export declare const opacity: string[]; -export declare const optionsHorizontal: string[]; +export declare const notes: string[]; export declare const options: string[]; export declare const paintBucket: string[]; -export declare const paint: string[]; +export declare const optionsHorizontal: string[]; export declare const paperPlane: string[]; -export declare const paperclip: string[]; +export declare const paint: string[]; export declare const paragraph: string[]; +export declare const paperclip: string[]; export declare const paw: string[]; export declare const penAlt: string[]; export declare const penNib: string[]; -export declare const pencil: string[]; export declare const people: string[]; +export declare const pencil: string[]; export declare const phone: string[]; export declare const pin: string[]; export declare const pizza: string[]; -export declare const playlistAdd: string[]; export declare const plus: string[]; -export declare const polymer: string[]; +export declare const playlistAdd: string[]; export declare const pool: string[]; +export declare const polymer: string[]; export declare const powerStandby: string[]; export declare const pregnant: string[]; -export declare const print: string[]; export declare const puzzle: string[]; +export declare const print: string[]; export declare const qrCode: string[]; -export declare const rain: string[]; export declare const rectangle: string[]; +export declare const rain: string[]; export declare const registered: string[]; +export declare const resizeBoth: string[]; export declare const reload: string[]; export declare const remove: string[]; -export declare const resizeBoth: string[]; -export declare const resizeHeight: string[]; export declare const resizeWidth: string[]; -export declare const restaurant: string[]; export declare const room: string[]; -export declare const rowing: string[]; +export declare const resizeHeight: string[]; +export declare const restaurant: string[]; export declare const running: string[]; +export declare const rowing: string[]; export declare const satelite: string[]; export declare const save: string[]; export declare const school: string[]; export declare const screenDesktop: string[]; export declare const screenSmartphone: string[]; export declare const scrubber: string[]; -export declare const settings: string[]; export declare const shareAll: string[]; +export declare const settings: string[]; export declare const shareAlt: string[]; export declare const shareBoxed: string[]; export declare const share: string[]; export declare const shieldAlt: string[]; export declare const shortText: string[]; -export declare const shower: string[]; export declare const signLanguage: string[]; +export declare const shower: string[]; export declare const signalCellular0: string[]; export declare const signalCellular3: string[]; -export declare const signalCellular4: string[]; -export declare const sim: string[]; -export declare const sitemap: string[]; export declare const smilePlus: string[]; -export declare const smile: string[]; +export declare const sim: string[]; +export declare const signalCellular4: string[]; export declare const smokeFree: string[]; +export declare const smile: string[]; +export declare const sitemap: string[]; export declare const smokingRoom: string[]; export declare const snowflake: string[]; export declare const sortAlphaDown: string[]; export declare const sortAlphaUp: string[]; -export declare const sortAscending: string[]; export declare const sortDescending: string[]; -export declare const sortNumericDown: string[]; export declare const sortNumericUp: string[]; +export declare const sortAscending: string[]; +export declare const sortNumericDown: string[]; export declare const spa: string[]; export declare const spaceBar: string[]; export declare const speaker: string[]; export declare const speech: string[]; -export declare const speedometer: string[]; +export declare const starHalf: string[]; export declare const spreadsheet: string[]; export declare const square: string[]; -export declare const starHalf: string[]; +export declare const speedometer: string[]; export declare const star: string[]; export declare const storage: string[]; export declare const stream: string[]; export declare const sun: string[]; -export declare const swapHorizontal: string[]; export declare const swapVertical: string[]; -export declare const swimming: string[]; +export declare const swapHorizontal: string[]; export declare const sync: string[]; export declare const tablet: string[]; +export declare const swimming: string[]; export declare const tag: string[]; -export declare const tags: string[]; export declare const task: string[]; +export declare const tags: string[]; export declare const taxi: string[]; export declare const tennisBall: string[]; export declare const tennis: string[]; export declare const terminal: string[]; export declare const terrain: string[]; export declare const textShapes: string[]; -export declare const textSize: string[]; -export declare const textSquare: string[]; export declare const textStrike: string[]; +export declare const textSize: string[]; export declare const text: string[]; +export declare const textSquare: string[]; export declare const thumbDown: string[]; -export declare const thumbUp: string[]; export declare const toggleOff: string[]; -export declare const toilet: string[]; +export declare const thumbUp: string[]; export declare const touchApp: string[]; -export declare const trademark: string[]; +export declare const toilet: string[]; export declare const transfer: string[]; +export declare const trademark: string[]; export declare const translate: string[]; export declare const trash: string[]; export declare const triangle: string[]; @@ -961,10 +961,10 @@ export declare const truck: string[]; export declare const tv: string[]; export declare const underline: string[]; export declare const userFemale: string[]; -export declare const userFollow: string[]; export declare const userUnfollow: string[]; -export declare const user: string[]; +export declare const userFollow: string[]; export declare const vector: string[]; +export declare const user: string[]; export declare const verticalAlignBottom: string[]; export declare const verticalAlignBottom1: string[]; export declare const verticalAlignCenter: string[]; @@ -974,8 +974,8 @@ export declare const verticalAlignTop1: string[]; export declare const video: string[]; export declare const viewColumn: string[]; export declare const viewModule: string[]; -export declare const viewQuilt: string[]; export declare const viewStream: string[]; +export declare const viewQuilt: string[]; export declare const voiceOverRecord: string[]; export declare const volumeHigh: string[]; export declare const volumeLow: string[]; @@ -1003,4 +1003,4 @@ export declare const xCircle: string[]; export declare const x: string[]; export declare const yen: string[]; export declare const zoomIn: string[]; -export declare const zoomOut: string[]; +export declare const zoomOut: string[]; \ No newline at end of file diff --git a/js/free/index.js b/js/free/index.js index 110a9399f..a7b6118e6 100644 --- a/js/free/index.js +++ b/js/free/index.js @@ -2,1006 +2,1006 @@ import { freeSet } from './free-set.js' export { freeSet } import { n3d } from './3d.js' -import { n4k } from './4k.js' import { accountLogout } from './account-logout.js' import { actionRedo } from './action-redo.js' -import { actionUndo } from './action-undo.js' -import { airplaneModeOff } from './airplane-mode-off.js' import { addressBook } from './address-book.js' -import { airplaneMode } from './airplane-mode.js' +import { actionUndo } from './action-undo.js' +import { n4k } from './4k.js' +import { airplaneModeOff } from './airplane-mode-off.js' import { alarm } from './alarm.js' -import { airplay } from './airplay.js' -import { alignLeft } from './align-left.js' import { album } from './album.js' +import { airplay } from './airplay.js' +import { airplaneMode } from './airplane-mode.js' +import { alignCenter } from './align-center.js' +import { alignLeft } from './align-left.js' import { alignRight } from './align-right.js' import { americanFootball } from './american-football.js' -import { alignCenter } from './align-center.js' import { aperture } from './aperture.js' -import { applications } from './applications.js' import { applicationsSettings } from './applications-settings.js' -import { arrowBottom } from './arrow-bottom.js' -import { arrowCircleLeft } from './arrow-circle-left.js' import { arrowCircleBottom } from './arrow-circle-bottom.js' -import { arrowCircleTop } from './arrow-circle-top.js' +import { arrowBottom } from './arrow-bottom.js' +import { applications } from './applications.js' +import { arrowCircleLeft } from './arrow-circle-left.js' import { arrowLeft } from './arrow-left.js' +import { arrowCircleTop } from './arrow-circle-top.js' import { arrowRight } from './arrow-right.js' import { arrowCircleRight } from './arrow-circle-right.js' -import { arrowThickFromRight } from './arrow-thick-from-right.js' -import { arrowThickFromBottom } from './arrow-thick-from-bottom.js' import { arrowThickBottom } from './arrow-thick-bottom.js' import { arrowThickFromLeft } from './arrow-thick-from-left.js' +import { arrowThickFromRight } from './arrow-thick-from-right.js' +import { arrowThickFromBottom } from './arrow-thick-from-bottom.js' import { arrowThickFromTop } from './arrow-thick-from-top.js' -import { arrowThickToRight } from './arrow-thick-to-right.js' -import { arrowThickRight } from './arrow-thick-right.js' import { arrowThickLeft } from './arrow-thick-left.js' -import { arrowThickToBottom } from './arrow-thick-to-bottom.js' +import { arrowThickRight } from './arrow-thick-right.js' import { arrowThickToLeft } from './arrow-thick-to-left.js' -import { arrowThickToTop } from './arrow-thick-to-top.js' -import { assistiveListeningSystem } from './assistive-listening-system.js' +import { arrowThickToBottom } from './arrow-thick-to-bottom.js' import { arrowThickTop } from './arrow-thick-top.js' +import { arrowThickToRight } from './arrow-thick-to-right.js' +import { assistiveListeningSystem } from './assistive-listening-system.js' +import { arrowThickToTop } from './arrow-thick-to-top.js' import { arrowTop } from './arrow-top.js' -import { asterisk } from './asterisk.js' import { asteriskCircle } from './asterisk-circle.js' -import { audioSpectrum } from './audio-spectrum.js' import { at } from './at.js' -import { avTimer } from './av-timer.js' -import { audioDescription } from './audio-description.js' +import { asterisk } from './asterisk.js' +import { audioSpectrum } from './audio-spectrum.js' import { audio } from './audio.js' -import { badge } from './badge.js' -import { ban } from './ban.js' -import { bank } from './bank.js' import { balanceScale } from './balance-scale.js' -import { barcode } from './barcode.js' +import { badge } from './badge.js' +import { avTimer } from './av-timer.js' +import { bank } from './bank.js' +import { audioDescription } from './audio-description.js' import { barChart } from './bar-chart.js' +import { ban } from './ban.js' +import { barcode } from './barcode.js' import { baseball } from './baseball.js' import { basketball } from './basketball.js' -import { basket } from './basket.js' -import { batteryAlert } from './battery-alert.js' -import { bath } from './bath.js' import { battery0 } from './battery-0.js' -import { batterySlash } from './battery-slash.js' -import { battery5 } from './battery-5.js' -import { beaker } from './beaker.js' +import { bath } from './bath.js' import { battery3 } from './battery-3.js' -import { bell } from './bell.js' -import { bike } from './bike.js' +import { battery5 } from './battery-5.js' +import { batteryAlert } from './battery-alert.js' +import { basket } from './basket.js' import { beachAccess } from './beach-access.js' -import { blind } from './blind.js' +import { batterySlash } from './battery-slash.js' +import { beaker } from './beaker.js' +import { bell } from './bell.js' import { bed } from './bed.js' import { birthdayCake } from './birthday-cake.js' -import { blur } from './blur.js' +import { blind } from './blind.js' import { blurCircular } from './blur-circular.js' import { blurLinear } from './blur-linear.js' -import { bold } from './bold.js' -import { bolt } from './bolt.js' -import { bookmark } from './bookmark.js' +import { blur } from './blur.js' +import { bike } from './bike.js' import { boatAlt } from './boat-alt.js' -import { book } from './book.js' +import { bolt } from './bolt.js' import { borderAll } from './border-all.js' +import { book } from './book.js' +import { bold } from './bold.js' +import { borderHorizontal } from './border-horizontal.js' +import { bookmark } from './bookmark.js' +import { borderOuter } from './border-outer.js' +import { borderInner } from './border-inner.js' import { borderClear } from './border-clear.js' import { borderBottom } from './border-bottom.js' -import { borderHorizontal } from './border-horizontal.js' -import { borderInner } from './border-inner.js' -import { borderLeft } from './border-left.js' -import { borderStyle } from './border-style.js' -import { borderOuter } from './border-outer.js' -import { borderRight } from './border-right.js' import { borderTop } from './border-top.js' -import { bowling } from './bowling.js' -import { briefcase } from './briefcase.js' -import { braille } from './braille.js' +import { borderStyle } from './border-style.js' +import { borderRight } from './border-right.js' import { borderVertical } from './border-vertical.js' -import { brush } from './brush.js' -import { browser } from './browser.js' -import { bug } from './bug.js' +import { braille } from './braille.js' +import { borderLeft } from './border-left.js' import { brightness } from './brightness.js' -import { building } from './building.js' -import { burger } from './burger.js' -import { bullhorn } from './bullhorn.js' -import { calculator } from './calculator.js' -import { busAlt } from './bus-alt.js' +import { briefcase } from './briefcase.js' +import { britishPound } from './british-pound.js' +import { bowling } from './bowling.js' +import { browser } from './browser.js' +import { brush } from './brush.js' import { brushAlt } from './brush-alt.js' -import { cameraControl } from './camera-control.js' +import { building } from './building.js' +import { bug } from './bug.js' +import { burger } from './burger.js' +import { busAlt } from './bus-alt.js' +import { calculator } from './calculator.js' +import { bullhorn } from './bullhorn.js' import { calendarCheck } from './calendar-check.js' import { cameraRoll } from './camera-roll.js' -import { britishPound } from './british-pound.js' -import { calendar } from './calendar.js' +import { cameraControl } from './camera-control.js' +import { carAlt } from './car-alt.js' import { camera } from './camera.js' import { caretBottom } from './caret-bottom.js' -import { caretTop } from './caret-top.js' -import { carAlt } from './car-alt.js' +import { calendar } from './calendar.js' import { caretLeft } from './caret-left.js' import { caretRight } from './caret-right.js' -import { cast } from './cast.js' -import { cat } from './cat.js' import { cart } from './cart.js' -import { centerFocus } from './center-focus.js' +import { caretTop } from './caret-top.js' +import { cat } from './cat.js' +import { cast } from './cast.js' import { casino } from './casino.js' -import { chart } from './chart.js' -import { chartPie } from './chart-pie.js' -import { check } from './check.js' +import { centerFocus } from './center-focus.js' import { chartLine } from './chart-line.js' import { chatBubble } from './chat-bubble.js' -import { chevronCircleDownAlt } from './chevron-circle-down-alt.js' +import { check } from './check.js' +import { chartPie } from './chart-pie.js' import { chevronBottom } from './chevron-bottom.js' +import { chevronCircleDownAlt } from './chevron-circle-down-alt.js' import { chevronCircleRightAlt } from './chevron-circle-right-alt.js' -import { chevronDoubleDown } from './chevron-double-down.js' -import { chevronDoubleLeft } from './chevron-double-left.js' import { chevronCircleLeftAlt } from './chevron-circle-left-alt.js' -import { chevronDoubleRight } from './chevron-double-right.js' +import { chart } from './chart.js' import { chevronCircleUpAlt } from './chevron-circle-up-alt.js' +import { chevronDoubleDown } from './chevron-double-down.js' +import { chevronDoubleUpAlt } from './chevron-double-up-alt.js' +import { chevronDoubleLeft } from './chevron-double-left.js' +import { chevronDoubleRight } from './chevron-double-right.js' import { chevronDoubleUp } from './chevron-double-up.js' import { chevronLeft } from './chevron-left.js' -import { chevronDoubleUpAlt } from './chevron-double-up-alt.js' +import { chevronRight } from './chevron-right.js' import { childFriendly } from './child-friendly.js' -import { chevronTop } from './chevron-top.js' import { child } from './child.js' import { clearAll } from './clear-all.js' -import { chevronRight } from './chevron-right.js' -import { clipboard } from './clipboard.js' -import { clock } from './clock.js' -import { cloudUpload } from './cloud-upload.js' +import { chevronTop } from './chevron-top.js' import { clone } from './clone.js' +import { clock } from './clock.js' +import { clipboard } from './clipboard.js' import { closedCaptioning } from './closed-captioning.js' import { cloudDownload } from './cloud-download.js' +import { cloudUpload } from './cloud-upload.js' import { cloud } from './cloud.js' import { code } from './code.js' -import { colorFill } from './color-fill.js' -import { cloudy } from './cloudy.js' -import { colorPalette } from './color-palette.js' import { coffee } from './coffee.js' -import { commentBubble } from './comment-bubble.js' import { colorBorder } from './color-border.js' +import { cloudy } from './cloudy.js' +import { colorFill } from './color-fill.js' +import { commentBubble } from './comment-bubble.js' import { columns } from './columns.js' +import { colorPalette } from './color-palette.js' import { commentSquare } from './comment-square.js' -import { contact } from './contact.js' import { compass } from './compass.js' -import { compress } from './compress.js' import { contrast } from './contrast.js' -import { copyright } from './copyright.js' +import { compress } from './compress.js' import { copy } from './copy.js' +import { contact } from './contact.js' +import { copyright } from './copyright.js' import { creditCard } from './credit-card.js' import { couch } from './couch.js' -import { cropRotate } from './crop-rotate.js' import { crop } from './crop.js' -import { dataTransferDown } from './data-transfer-down.js' import { cursor } from './cursor.js' import { cursorMove } from './cursor-move.js' +import { cropRotate } from './crop-rotate.js' +import { dataTransferDown } from './data-transfer-down.js' import { cut } from './cut.js' -import { description } from './description.js' -import { deaf } from './deaf.js' import { dataTransferUp } from './data-transfer-up.js' -import { dinner } from './dinner.js' -import { dialpad } from './dialpad.js' -import { dog } from './dog.js' -import { drinkAlcohol } from './drink-alcohol.js' -import { dollar } from './dollar.js' +import { deaf } from './deaf.js' +import { description } from './description.js' import { devices } from './devices.js' -import { door } from './door.js' +import { dinner } from './dinner.js' +import { dog } from './dog.js' +import { dialpad } from './dialpad.js' import { doubleQuoteSansLeft } from './double-quote-sans-left.js' -import { drink } from './drink.js' import { doubleQuoteSansRight } from './double-quote-sans-right.js' -import { elevator } from './elevator.js' +import { dollar } from './dollar.js' +import { door } from './door.js' +import { drink } from './drink.js' import { drop } from './drop.js' +import { drinkAlcohol } from './drink-alcohol.js' import { drop1 } from './drop1.js' -import { envelopeLetter } from './envelope-letter.js' +import { elevator } from './elevator.js' import { envelopeClosed } from './envelope-closed.js' -import { equalizer } from './equalizer.js' -import { ethernet } from './ethernet.js' -import { excerpt } from './excerpt.js' +import { envelopeLetter } from './envelope-letter.js' import { envelopeOpen } from './envelope-open.js' +import { equalizer } from './equalizer.js' import { euro } from './euro.js' +import { ethernet } from './ethernet.js' import { exitToApp } from './exit-to-app.js' -import { expandLeft } from './expand-left.js' +import { excerpt } from './excerpt.js' import { expandDown } from './expand-down.js' -import { exposure } from './exposure.js' -import { expandRight } from './expand-right.js' +import { expandLeft } from './expand-left.js' import { expandUp } from './expand-up.js' import { externalLink } from './external-link.js' -import { fastfood } from './fastfood.js' -import { face } from './face.js' -import { faceDead } from './face-dead.js' -import { featuredPlaylist } from './featured-playlist.js' +import { expandRight } from './expand-right.js' +import { exposure } from './exposure.js' import { eyedropper } from './eyedropper.js' -import { file } from './file.js' +import { faceDead } from './face-dead.js' +import { fastfood } from './fastfood.js' import { fax } from './fax.js' -import { filter } from './filter.js' -import { filterPhoto } from './filter-photo.js' +import { file } from './file.js' +import { featuredPlaylist } from './featured-playlist.js' import { filterFrames } from './filter-frames.js' +import { face } from './face.js' +import { filterPhoto } from './filter-photo.js' import { findInPage } from './find-in-page.js' +import { filter } from './filter.js' import { flightTakeoff } from './flight-takeoff.js' -import { fingerprint } from './fingerprint.js' import { fire } from './fire.js' import { flipToBack } from './flip-to-back.js' +import { fingerprint } from './fingerprint.js' import { flagAlt } from './flag-alt.js' import { flip } from './flip.js' -import { folder } from './folder.js' +import { flipToFront } from './flip-to-front.js' import { folderOpen } from './folder-open.js' import { flower } from './flower.js' +import { folder } from './folder.js' import { font } from './font.js' -import { football } from './football.js' -import { fridge } from './fridge.js' import { fork } from './fork.js' +import { fridge } from './fridge.js' +import { football } from './football.js' import { frown } from './frown.js' -import { flipToFront } from './flip-to-front.js' import { fullscreenExit } from './fullscreen-exit.js' -import { gamepad } from './gamepad.js' import { functions } from './functions.js' import { fullscreen } from './fullscreen.js' import { functionsAlt } from './functions-alt.js' -import { garage } from './garage.js' +import { gamepad } from './gamepad.js' import { gif } from './gif.js' import { gem } from './gem.js' -import { githubCircle } from './github-circle.js' -import { globeAlt } from './globe-alt.js' import { gift } from './gift.js' +import { githubCircle } from './github-circle.js' +import { garage } from './garage.js' +import { globeAlt } from './globe-alt.js' import { golf } from './golf.js' -import { grain } from './grain.js' import { golfAlt } from './golf-alt.js' import { gradient } from './gradient.js' -import { handPointRight } from './hand-point-right.js' -import { handPointDown } from './hand-point-down.js' -import { gridSlash } from './grid-slash.js' -import { handPointLeft } from './hand-point-left.js' -import { handPointUp } from './hand-point-up.js' -import { hd } from './hd.js' -import { healing } from './healing.js' import { graph } from './graph.js' -import { hdr } from './hdr.js' +import { grain } from './grain.js' import { grid } from './grid.js' +import { handPointDown } from './hand-point-down.js' +import { handPointLeft } from './hand-point-left.js' +import { gridSlash } from './grid-slash.js' +import { hd } from './hd.js' +import { handPointRight } from './hand-point-right.js' +import { hdr } from './hdr.js' import { header } from './header.js' -import { heart } from './heart.js' import { headphones } from './headphones.js' +import { handPointUp } from './hand-point-up.js' +import { healing } from './healing.js' import { highligt } from './highligt.js' import { highlighter } from './highlighter.js' import { history } from './history.js' import { home } from './home.js' +import { heart } from './heart.js' import { hospital } from './hospital.js' import { hotTub } from './hot-tub.js' import { https } from './https.js' -import { house } from './house.js' -import { inbox } from './inbox.js' -import { imageBroken } from './image-broken.js' import { imagePlus } from './image-plus.js' -import { image1 } from './image1.js' -import { indentIncrease } from './indent-increase.js' +import { imageBroken } from './image-broken.js' +import { house } from './house.js' import { indentDecrease } from './indent-decrease.js' +import { infinity } from './infinity.js' +import { industry } from './industry.js' import { industrySlash } from './industry-slash.js' +import { image1 } from './image1.js' +import { inbox } from './inbox.js' +import { indentIncrease } from './indent-increase.js' import { info } from './info.js' import { inputHdmi } from './input-hdmi.js' import { inputPower } from './input-power.js' -import { italic } from './italic.js' import { institution } from './institution.js' +import { italic } from './italic.js' import { input } from './input.js' import { justifyCenter } from './justify-center.js' -import { keyboard } from './keyboard.js' -import { justifyLeft } from './justify-left.js' import { justifyRight } from './justify-right.js' -import { language } from './language.js' -import { laptop } from './laptop.js' -import { layers } from './layers.js' +import { justifyLeft } from './justify-left.js' import { lan } from './lan.js' +import { keyboard } from './keyboard.js' +import { language } from './language.js' +import { layers } from './layers.js' import { leaf } from './leaf.js' -import { lemon } from './lemon.js' -import { lifeRing } from './life-ring.js' -import { libraryAdd } from './library-add.js' import { levelDown } from './level-down.js' import { levelUp } from './level-up.js' -import { lightbulb } from './lightbulb.js' -import { lineSpacing } from './line-spacing.js' +import { laptop } from './laptop.js' +import { lemon } from './lemon.js' +import { libraryAdd } from './library-add.js' +import { lifeRing } from './life-ring.js' import { library } from './library.js' -import { lineStyle } from './line-style.js' +import { lineSpacing } from './line-spacing.js' import { lineWeight } from './line-weight.js' import { linkAlt } from './link-alt.js' import { linkBroken } from './link-broken.js' +import { lineStyle } from './line-style.js' import { link } from './link.js' -import { infinity } from './infinity.js' import { listFilter } from './list-filter.js' -import { industry } from './industry.js' -import { listRich } from './list-rich.js' +import { lightbulb } from './lightbulb.js' import { listHighPriority } from './list-high-priority.js' import { listLowPriority } from './list-low-priority.js' -import { list } from './list.js' import { listNumbered } from './list-numbered.js' +import { listRich } from './list-rich.js' import { locationPin } from './location-pin.js' -import { lockUnlocked } from './lock-unlocked.js' import { lockLocked } from './lock-locked.js' +import { lockUnlocked } from './lock-unlocked.js' import { locomotive } from './locomotive.js' -import { lowVision } from './low-vision.js' import { loop1 } from './loop-1.js' +import { list } from './list.js' import { loop } from './loop.js' import { loopCircular } from './loop-circular.js' +import { lowVision } from './low-vision.js' import { magnifyingGlass } from './magnifying-glass.js' -import { mediaEject } from './media-eject.js' import { map } from './map.js' +import { mediaEject } from './media-eject.js' import { mediaPause } from './media-pause.js' import { mediaPlay } from './media-play.js' -import { mediaRecord } from './media-record.js' import { mediaSkipForward } from './media-skip-forward.js' -import { mediaSkipBackward } from './media-skip-backward.js' +import { mediaRecord } from './media-record.js' import { mediaStepBackward } from './media-step-backward.js' import { mediaStepForward } from './media-step-forward.js' -import { memory } from './memory.js' -import { menu } from './menu.js' +import { mediaSkipBackward } from './media-skip-backward.js' import { mediaStop } from './media-stop.js' import { medicalCross } from './medical-cross.js' import { meh } from './meh.js' -import { minus } from './minus.js' -import { mobileLandscape } from './mobile-landscape.js' +import { memory } from './memory.js' import { microphone } from './microphone.js' +import { mobileLandscape } from './mobile-landscape.js' +import { minus } from './minus.js' import { mobile } from './mobile.js' -import { moodGood } from './mood-good.js' +import { menu } from './menu.js' +import { money } from './money.js' import { monitor } from './monitor.js' import { moodBad } from './mood-bad.js' -import { money } from './money.js' +import { moodGood } from './mood-good.js' +import { moodVeryBad } from './mood-very-bad.js' import { moodVeryGood } from './mood-very-good.js' import { moon } from './moon.js' -import { move } from './move.js' -import { moodVeryBad } from './mood-very-bad.js' -import { mouthSlash } from './mouth-slash.js' -import { movie } from './movie.js' import { mouse } from './mouse.js' -import { mug } from './mug.js' +import { move } from './move.js' +import { mouthSlash } from './mouth-slash.js' import { mugTea } from './mug-tea.js' -import { objectUngroup } from './object-ungroup.js' -import { notes } from './notes.js' -import { objectGroup } from './object-group.js' -import { musicNote } from './music-note.js' +import { mug } from './mug.js' import { newspaper } from './newspaper.js' -import { optionsHorizontal } from './options-horizontal.js' +import { movie } from './movie.js' +import { musicNote } from './music-note.js' +import { objectUngroup } from './object-ungroup.js' +import { objectGroup } from './object-group.js' import { opacity } from './opacity.js' +import { notes } from './notes.js' import { options } from './options.js' -import { paperPlane } from './paper-plane.js' import { paintBucket } from './paint-bucket.js' +import { optionsHorizontal } from './options-horizontal.js' +import { paperPlane } from './paper-plane.js' import { paint } from './paint.js' -import { paperclip } from './paperclip.js' import { paragraph } from './paragraph.js' -import { pencil } from './pencil.js' -import { penAlt } from './pen-alt.js' -import { phone } from './phone.js' -import { penNib } from './pen-nib.js' +import { paperclip } from './paperclip.js' import { paw } from './paw.js' +import { penAlt } from './pen-alt.js' +import { penNib } from './pen-nib.js' import { people } from './people.js' +import { pencil } from './pencil.js' +import { phone } from './phone.js' import { pin } from './pin.js' import { pizza } from './pizza.js' +import { plus } from './plus.js' import { playlistAdd } from './playlist-add.js' import { pool } from './pool.js' -import { plus } from './plus.js' -import { powerStandby } from './power-standby.js' -import { puzzle } from './puzzle.js' import { polymer } from './polymer.js' +import { powerStandby } from './power-standby.js' import { pregnant } from './pregnant.js' -import { rain } from './rain.js' -import { reload } from './reload.js' +import { puzzle } from './puzzle.js' import { print } from './print.js' -import { rectangle } from './rectangle.js' import { qrCode } from './qr-code.js' +import { rectangle } from './rectangle.js' +import { rain } from './rain.js' import { registered } from './registered.js' -import { restaurant } from './restaurant.js' import { resizeBoth } from './resize-both.js' -import { resizeWidth } from './resize-width.js' -import { resizeHeight } from './resize-height.js' -import { rowing } from './rowing.js' -import { running } from './running.js' +import { reload } from './reload.js' import { remove } from './remove.js' +import { resizeWidth } from './resize-width.js' import { room } from './room.js' +import { resizeHeight } from './resize-height.js' +import { restaurant } from './restaurant.js' +import { running } from './running.js' +import { rowing } from './rowing.js' import { satelite } from './satelite.js' import { save } from './save.js' -import { scrubber } from './scrubber.js' import { school } from './school.js' -import { settings } from './settings.js' +import { screenDesktop } from './screen-desktop.js' +import { screenSmartphone } from './screen-smartphone.js' +import { scrubber } from './scrubber.js' import { shareAll } from './share-all.js' +import { settings } from './settings.js' import { shareAlt } from './share-alt.js' import { shareBoxed } from './share-boxed.js' -import { screenDesktop } from './screen-desktop.js' -import { shieldAlt } from './shield-alt.js' import { share } from './share.js' +import { shieldAlt } from './shield-alt.js' import { shortText } from './short-text.js' -import { signalCellular0 } from './signal-cellular-0.js' -import { shower } from './shower.js' import { signLanguage } from './sign-language.js' -import { screenSmartphone } from './screen-smartphone.js' -import { signalCellular4 } from './signal-cellular-4.js' -import { sitemap } from './sitemap.js' +import { shower } from './shower.js' +import { signalCellular0 } from './signal-cellular-0.js' import { signalCellular3 } from './signal-cellular-3.js' -import { sim } from './sim.js' import { smilePlus } from './smile-plus.js' +import { sim } from './sim.js' +import { signalCellular4 } from './signal-cellular-4.js' import { smokeFree } from './smoke-free.js' -import { sortAlphaDown } from './sort-alpha-down.js' import { smile } from './smile.js' +import { sitemap } from './sitemap.js' import { smokingRoom } from './smoking-room.js' -import { sortAscending } from './sort-ascending.js' import { snowflake } from './snowflake.js' -import { sortDescending } from './sort-descending.js' +import { sortAlphaDown } from './sort-alpha-down.js' import { sortAlphaUp } from './sort-alpha-up.js' -import { sortNumericDown } from './sort-numeric-down.js' +import { sortDescending } from './sort-descending.js' import { sortNumericUp } from './sort-numeric-up.js' +import { sortAscending } from './sort-ascending.js' +import { sortNumericDown } from './sort-numeric-down.js' import { spa } from './spa.js' import { spaceBar } from './space-bar.js' -import { speedometer } from './speedometer.js' -import { square } from './square.js' import { speaker } from './speaker.js' -import { spreadsheet } from './spreadsheet.js' import { speech } from './speech.js' import { starHalf } from './star-half.js' +import { spreadsheet } from './spreadsheet.js' +import { square } from './square.js' +import { speedometer } from './speedometer.js' import { star } from './star.js' -import { sun } from './sun.js' -import { stream } from './stream.js' import { storage } from './storage.js' +import { stream } from './stream.js' +import { sun } from './sun.js' import { swapVertical } from './swap-vertical.js' import { swapHorizontal } from './swap-horizontal.js' -import { swimming } from './swimming.js' -import { tablet } from './tablet.js' -import { tag } from './tag.js' import { sync } from './sync.js' +import { tablet } from './tablet.js' +import { swimming } from './swimming.js' +import { tag } from './tag.js' +import { task } from './task.js' import { tags } from './tags.js' import { taxi } from './taxi.js' -import { task } from './task.js' -import { terminal } from './terminal.js' import { tennisBall } from './tennis-ball.js' import { tennis } from './tennis.js' -import { textSize } from './text-size.js' +import { terminal } from './terminal.js' import { terrain } from './terrain.js' -import { text } from './text.js' -import { thumbUp } from './thumb-up.js' import { textShapes } from './text-shapes.js' import { textStrike } from './text-strike.js' +import { textSize } from './text-size.js' +import { text } from './text.js' import { textSquare } from './text-square.js' import { thumbDown } from './thumb-down.js' -import { toilet } from './toilet.js' import { toggleOff } from './toggle-off.js' +import { thumbUp } from './thumb-up.js' import { touchApp } from './touch-app.js' -import { trademark } from './trademark.js' +import { toilet } from './toilet.js' import { transfer } from './transfer.js' -import { trash } from './trash.js' +import { trademark } from './trademark.js' import { translate } from './translate.js' -import { underline } from './underline.js' +import { trash } from './trash.js' import { triangle } from './triangle.js' -import { tv } from './tv.js' import { truck } from './truck.js' +import { tv } from './tv.js' +import { underline } from './underline.js' +import { userFemale } from './user-female.js' import { userUnfollow } from './user-unfollow.js' import { userFollow } from './user-follow.js' import { vector } from './vector.js' -import { verticalAlignCenter } from './vertical-align-center.js' -import { userFemale } from './user-female.js' -import { verticalAlignBottom1 } from './vertical-align-bottom1.js' import { user } from './user.js' import { verticalAlignBottom } from './vertical-align-bottom.js' +import { verticalAlignBottom1 } from './vertical-align-bottom1.js' +import { verticalAlignCenter } from './vertical-align-center.js' import { verticalAlignCenter1 } from './vertical-align-center1.js' import { verticalAlignTop } from './vertical-align-top.js' import { verticalAlignTop1 } from './vertical-align-top1.js' import { video } from './video.js' import { viewColumn } from './view-column.js' import { viewModule } from './view-module.js' -import { viewQuilt } from './view-quilt.js' import { viewStream } from './view-stream.js' +import { viewQuilt } from './view-quilt.js' import { voiceOverRecord } from './voice-over-record.js' import { volumeHigh } from './volume-high.js' -import { volumeOff } from './volume-off.js' -import { walk } from './walk.js' import { volumeLow } from './volume-low.js' +import { volumeOff } from './volume-off.js' import { vue } from './vue.js' -import { watch } from './watch.js' -import { warning } from './warning.js' -import { wallpaper } from './wallpaper.js' +import { walk } from './walk.js' import { wallet } from './wallet.js' -import { wifiSignal0 } from './wifi-signal-0.js' +import { wallpaper } from './wallpaper.js' +import { warning } from './warning.js' +import { watch } from './watch.js' +import { wc } from './wc.js' import { weightlifitng } from './weightlifitng.js' import { wheelchair } from './wheelchair.js' -import { wc } from './wc.js' +import { wifiSignal0 } from './wifi-signal-0.js' import { wifiSignal1 } from './wifi-signal-1.js' -import { windowMinimize } from './window-minimize.js' -import { wifiSignalOff } from './wifi-signal-off.js' -import { wifiSignal4 } from './wifi-signal-4.js' import { wifiSignal2 } from './wifi-signal-2.js' +import { wifiSignal4 } from './wifi-signal-4.js' +import { wifiSignalOff } from './wifi-signal-off.js' import { windowMaximize } from './window-maximize.js' +import { windowMinimize } from './window-minimize.js' import { windowRestore } from './window-restore.js' -import { wrapText } from './wrap-text.js' import { window } from './window.js' +import { wrapText } from './wrap-text.js' import { xCircle } from './x-circle.js' import { x } from './x.js' -import { zoomOut } from './zoom-out.js' import { yen } from './yen.js' import { zoomIn } from './zoom-in.js' +import { zoomOut } from './zoom-out.js' export { n3d } -export { n4k } export { accountLogout } export { actionRedo } -export { actionUndo } -export { airplaneModeOff } export { addressBook } -export { airplaneMode } +export { actionUndo } +export { n4k } +export { airplaneModeOff } export { alarm } -export { airplay } -export { alignLeft } export { album } +export { airplay } +export { airplaneMode } +export { alignCenter } +export { alignLeft } export { alignRight } export { americanFootball } -export { alignCenter } export { aperture } -export { applications } export { applicationsSettings } -export { arrowBottom } -export { arrowCircleLeft } export { arrowCircleBottom } -export { arrowCircleTop } +export { arrowBottom } +export { applications } +export { arrowCircleLeft } export { arrowLeft } +export { arrowCircleTop } export { arrowRight } export { arrowCircleRight } -export { arrowThickFromRight } -export { arrowThickFromBottom } export { arrowThickBottom } export { arrowThickFromLeft } +export { arrowThickFromRight } +export { arrowThickFromBottom } export { arrowThickFromTop } -export { arrowThickToRight } -export { arrowThickRight } export { arrowThickLeft } -export { arrowThickToBottom } +export { arrowThickRight } export { arrowThickToLeft } -export { arrowThickToTop } -export { assistiveListeningSystem } +export { arrowThickToBottom } export { arrowThickTop } +export { arrowThickToRight } +export { assistiveListeningSystem } +export { arrowThickToTop } export { arrowTop } -export { asterisk } export { asteriskCircle } -export { audioSpectrum } export { at } -export { avTimer } -export { audioDescription } +export { asterisk } +export { audioSpectrum } export { audio } -export { badge } -export { ban } -export { bank } export { balanceScale } -export { barcode } +export { badge } +export { avTimer } +export { bank } +export { audioDescription } export { barChart } +export { ban } +export { barcode } export { baseball } export { basketball } -export { basket } -export { batteryAlert } -export { bath } export { battery0 } -export { batterySlash } -export { battery5 } -export { beaker } +export { bath } export { battery3 } -export { bell } -export { bike } +export { battery5 } +export { batteryAlert } +export { basket } export { beachAccess } -export { blind } +export { batterySlash } +export { beaker } +export { bell } export { bed } export { birthdayCake } -export { blur } +export { blind } export { blurCircular } export { blurLinear } -export { bold } -export { bolt } -export { bookmark } +export { blur } +export { bike } export { boatAlt } -export { book } +export { bolt } export { borderAll } +export { book } +export { bold } +export { borderHorizontal } +export { bookmark } +export { borderOuter } +export { borderInner } export { borderClear } export { borderBottom } -export { borderHorizontal } -export { borderInner } -export { borderLeft } -export { borderStyle } -export { borderOuter } -export { borderRight } export { borderTop } -export { bowling } -export { briefcase } -export { braille } +export { borderStyle } +export { borderRight } export { borderVertical } -export { brush } -export { browser } -export { bug } +export { braille } +export { borderLeft } export { brightness } -export { building } -export { burger } -export { bullhorn } -export { calculator } -export { busAlt } +export { briefcase } +export { britishPound } +export { bowling } +export { browser } +export { brush } export { brushAlt } -export { cameraControl } +export { building } +export { bug } +export { burger } +export { busAlt } +export { calculator } +export { bullhorn } export { calendarCheck } export { cameraRoll } -export { britishPound } -export { calendar } +export { cameraControl } +export { carAlt } export { camera } export { caretBottom } -export { caretTop } -export { carAlt } +export { calendar } export { caretLeft } export { caretRight } -export { cast } -export { cat } export { cart } -export { centerFocus } +export { caretTop } +export { cat } +export { cast } export { casino } -export { chart } -export { chartPie } -export { check } +export { centerFocus } export { chartLine } export { chatBubble } -export { chevronCircleDownAlt } +export { check } +export { chartPie } export { chevronBottom } +export { chevronCircleDownAlt } export { chevronCircleRightAlt } -export { chevronDoubleDown } -export { chevronDoubleLeft } export { chevronCircleLeftAlt } -export { chevronDoubleRight } +export { chart } export { chevronCircleUpAlt } +export { chevronDoubleDown } +export { chevronDoubleUpAlt } +export { chevronDoubleLeft } +export { chevronDoubleRight } export { chevronDoubleUp } export { chevronLeft } -export { chevronDoubleUpAlt } +export { chevronRight } export { childFriendly } -export { chevronTop } export { child } export { clearAll } -export { chevronRight } -export { clipboard } -export { clock } -export { cloudUpload } +export { chevronTop } export { clone } +export { clock } +export { clipboard } export { closedCaptioning } export { cloudDownload } +export { cloudUpload } export { cloud } export { code } -export { colorFill } -export { cloudy } -export { colorPalette } export { coffee } -export { commentBubble } export { colorBorder } +export { cloudy } +export { colorFill } +export { commentBubble } export { columns } +export { colorPalette } export { commentSquare } -export { contact } export { compass } -export { compress } export { contrast } -export { copyright } +export { compress } export { copy } +export { contact } +export { copyright } export { creditCard } export { couch } -export { cropRotate } export { crop } -export { dataTransferDown } export { cursor } export { cursorMove } +export { cropRotate } +export { dataTransferDown } export { cut } -export { description } -export { deaf } export { dataTransferUp } -export { dinner } -export { dialpad } -export { dog } -export { drinkAlcohol } -export { dollar } +export { deaf } +export { description } export { devices } -export { door } +export { dinner } +export { dog } +export { dialpad } export { doubleQuoteSansLeft } -export { drink } export { doubleQuoteSansRight } -export { elevator } +export { dollar } +export { door } +export { drink } export { drop } +export { drinkAlcohol } export { drop1 } -export { envelopeLetter } +export { elevator } export { envelopeClosed } -export { equalizer } -export { ethernet } -export { excerpt } +export { envelopeLetter } export { envelopeOpen } +export { equalizer } export { euro } +export { ethernet } export { exitToApp } -export { expandLeft } +export { excerpt } export { expandDown } -export { exposure } -export { expandRight } +export { expandLeft } export { expandUp } export { externalLink } -export { fastfood } -export { face } -export { faceDead } -export { featuredPlaylist } +export { expandRight } +export { exposure } export { eyedropper } -export { file } +export { faceDead } +export { fastfood } export { fax } -export { filter } -export { filterPhoto } +export { file } +export { featuredPlaylist } export { filterFrames } +export { face } +export { filterPhoto } export { findInPage } +export { filter } export { flightTakeoff } -export { fingerprint } export { fire } export { flipToBack } +export { fingerprint } export { flagAlt } export { flip } -export { folder } +export { flipToFront } export { folderOpen } export { flower } +export { folder } export { font } -export { football } -export { fridge } export { fork } +export { fridge } +export { football } export { frown } -export { flipToFront } export { fullscreenExit } -export { gamepad } export { functions } export { fullscreen } export { functionsAlt } -export { garage } +export { gamepad } export { gif } export { gem } -export { githubCircle } -export { globeAlt } export { gift } +export { githubCircle } +export { garage } +export { globeAlt } export { golf } -export { grain } export { golfAlt } export { gradient } -export { handPointRight } -export { handPointDown } -export { gridSlash } -export { handPointLeft } -export { handPointUp } -export { hd } -export { healing } export { graph } -export { hdr } +export { grain } export { grid } +export { handPointDown } +export { handPointLeft } +export { gridSlash } +export { hd } +export { handPointRight } +export { hdr } export { header } -export { heart } export { headphones } +export { handPointUp } +export { healing } export { highligt } export { highlighter } export { history } export { home } +export { heart } export { hospital } export { hotTub } export { https } -export { house } -export { inbox } -export { imageBroken } export { imagePlus } -export { image1 } -export { indentIncrease } +export { imageBroken } +export { house } export { indentDecrease } +export { infinity } +export { industry } export { industrySlash } +export { image1 } +export { inbox } +export { indentIncrease } export { info } export { inputHdmi } export { inputPower } -export { italic } export { institution } +export { italic } export { input } export { justifyCenter } -export { keyboard } -export { justifyLeft } export { justifyRight } -export { language } -export { laptop } -export { layers } +export { justifyLeft } export { lan } +export { keyboard } +export { language } +export { layers } export { leaf } -export { lemon } -export { lifeRing } -export { libraryAdd } export { levelDown } export { levelUp } -export { lightbulb } -export { lineSpacing } +export { laptop } +export { lemon } +export { libraryAdd } +export { lifeRing } export { library } -export { lineStyle } +export { lineSpacing } export { lineWeight } export { linkAlt } export { linkBroken } +export { lineStyle } export { link } -export { infinity } export { listFilter } -export { industry } -export { listRich } +export { lightbulb } export { listHighPriority } export { listLowPriority } -export { list } export { listNumbered } +export { listRich } export { locationPin } -export { lockUnlocked } export { lockLocked } +export { lockUnlocked } export { locomotive } -export { lowVision } export { loop1 } +export { list } export { loop } export { loopCircular } +export { lowVision } export { magnifyingGlass } -export { mediaEject } export { map } +export { mediaEject } export { mediaPause } export { mediaPlay } -export { mediaRecord } export { mediaSkipForward } -export { mediaSkipBackward } +export { mediaRecord } export { mediaStepBackward } export { mediaStepForward } -export { memory } -export { menu } +export { mediaSkipBackward } export { mediaStop } export { medicalCross } export { meh } -export { minus } -export { mobileLandscape } +export { memory } export { microphone } +export { mobileLandscape } +export { minus } export { mobile } -export { moodGood } +export { menu } +export { money } export { monitor } export { moodBad } -export { money } +export { moodGood } +export { moodVeryBad } export { moodVeryGood } export { moon } -export { move } -export { moodVeryBad } -export { mouthSlash } -export { movie } export { mouse } -export { mug } +export { move } +export { mouthSlash } export { mugTea } -export { objectUngroup } -export { notes } -export { objectGroup } -export { musicNote } +export { mug } export { newspaper } -export { optionsHorizontal } +export { movie } +export { musicNote } +export { objectUngroup } +export { objectGroup } export { opacity } +export { notes } export { options } -export { paperPlane } export { paintBucket } +export { optionsHorizontal } +export { paperPlane } export { paint } -export { paperclip } export { paragraph } -export { pencil } -export { penAlt } -export { phone } -export { penNib } +export { paperclip } export { paw } +export { penAlt } +export { penNib } export { people } +export { pencil } +export { phone } export { pin } export { pizza } +export { plus } export { playlistAdd } export { pool } -export { plus } -export { powerStandby } -export { puzzle } export { polymer } +export { powerStandby } export { pregnant } -export { rain } -export { reload } +export { puzzle } export { print } -export { rectangle } export { qrCode } +export { rectangle } +export { rain } export { registered } -export { restaurant } export { resizeBoth } -export { resizeWidth } -export { resizeHeight } -export { rowing } -export { running } +export { reload } export { remove } +export { resizeWidth } export { room } +export { resizeHeight } +export { restaurant } +export { running } +export { rowing } export { satelite } export { save } -export { scrubber } export { school } -export { settings } +export { screenDesktop } +export { screenSmartphone } +export { scrubber } export { shareAll } +export { settings } export { shareAlt } export { shareBoxed } -export { screenDesktop } -export { shieldAlt } export { share } +export { shieldAlt } export { shortText } -export { signalCellular0 } -export { shower } export { signLanguage } -export { screenSmartphone } -export { signalCellular4 } -export { sitemap } +export { shower } +export { signalCellular0 } export { signalCellular3 } -export { sim } export { smilePlus } +export { sim } +export { signalCellular4 } export { smokeFree } -export { sortAlphaDown } export { smile } +export { sitemap } export { smokingRoom } -export { sortAscending } export { snowflake } -export { sortDescending } +export { sortAlphaDown } export { sortAlphaUp } -export { sortNumericDown } +export { sortDescending } export { sortNumericUp } +export { sortAscending } +export { sortNumericDown } export { spa } export { spaceBar } -export { speedometer } -export { square } export { speaker } -export { spreadsheet } export { speech } export { starHalf } +export { spreadsheet } +export { square } +export { speedometer } export { star } -export { sun } -export { stream } export { storage } +export { stream } +export { sun } export { swapVertical } export { swapHorizontal } -export { swimming } -export { tablet } -export { tag } export { sync } +export { tablet } +export { swimming } +export { tag } +export { task } export { tags } export { taxi } -export { task } -export { terminal } export { tennisBall } export { tennis } -export { textSize } +export { terminal } export { terrain } -export { text } -export { thumbUp } export { textShapes } export { textStrike } +export { textSize } +export { text } export { textSquare } export { thumbDown } -export { toilet } export { toggleOff } +export { thumbUp } export { touchApp } -export { trademark } +export { toilet } export { transfer } -export { trash } +export { trademark } export { translate } -export { underline } +export { trash } export { triangle } -export { tv } export { truck } +export { tv } +export { underline } +export { userFemale } export { userUnfollow } export { userFollow } export { vector } -export { verticalAlignCenter } -export { userFemale } -export { verticalAlignBottom1 } export { user } export { verticalAlignBottom } +export { verticalAlignBottom1 } +export { verticalAlignCenter } export { verticalAlignCenter1 } export { verticalAlignTop } export { verticalAlignTop1 } export { video } export { viewColumn } export { viewModule } -export { viewQuilt } export { viewStream } +export { viewQuilt } export { voiceOverRecord } export { volumeHigh } -export { volumeOff } -export { walk } export { volumeLow } +export { volumeOff } export { vue } -export { watch } -export { warning } -export { wallpaper } +export { walk } export { wallet } -export { wifiSignal0 } +export { wallpaper } +export { warning } +export { watch } +export { wc } export { weightlifitng } export { wheelchair } -export { wc } +export { wifiSignal0 } export { wifiSignal1 } -export { windowMinimize } -export { wifiSignalOff } -export { wifiSignal4 } export { wifiSignal2 } +export { wifiSignal4 } +export { wifiSignalOff } export { windowMaximize } +export { windowMinimize } export { windowRestore } -export { wrapText } export { window } +export { wrapText } export { xCircle } export { x } -export { zoomOut } export { yen } -export { zoomIn } \ No newline at end of file +export { zoomIn } +export { zoomOut } \ No newline at end of file diff --git a/js/free/industry-slash.d.ts b/js/free/industry-slash.d.ts new file mode 100644 index 000000000..87746b511 --- /dev/null +++ b/js/free/industry-slash.d.ts @@ -0,0 +1 @@ +export declare const industrySlash: string[]; \ No newline at end of file diff --git a/js/free/industry.d.ts b/js/free/industry.d.ts new file mode 100644 index 000000000..637a0e74a --- /dev/null +++ b/js/free/industry.d.ts @@ -0,0 +1 @@ +export declare const industry: string[]; \ No newline at end of file diff --git a/js/free/infinity.d.ts b/js/free/infinity.d.ts new file mode 100644 index 000000000..b63044ad3 --- /dev/null +++ b/js/free/infinity.d.ts @@ -0,0 +1 @@ +export declare const infinity: string[]; \ No newline at end of file diff --git a/js/free/info.d.ts b/js/free/info.d.ts new file mode 100644 index 000000000..f1d04624d --- /dev/null +++ b/js/free/info.d.ts @@ -0,0 +1 @@ +export declare const info: string[]; \ No newline at end of file diff --git a/js/free/input-hdmi.d.ts b/js/free/input-hdmi.d.ts new file mode 100644 index 000000000..eabbc10bf --- /dev/null +++ b/js/free/input-hdmi.d.ts @@ -0,0 +1 @@ +export declare const inputHdmi: string[]; \ No newline at end of file diff --git a/js/free/input-power.d.ts b/js/free/input-power.d.ts new file mode 100644 index 000000000..830bd9595 --- /dev/null +++ b/js/free/input-power.d.ts @@ -0,0 +1 @@ +export declare const inputPower: string[]; \ No newline at end of file diff --git a/js/free/input.d.ts b/js/free/input.d.ts new file mode 100644 index 000000000..671206fa4 --- /dev/null +++ b/js/free/input.d.ts @@ -0,0 +1 @@ +export declare const input: string[]; \ No newline at end of file diff --git a/js/free/institution.d.ts b/js/free/institution.d.ts new file mode 100644 index 000000000..ba7c50416 --- /dev/null +++ b/js/free/institution.d.ts @@ -0,0 +1 @@ +export declare const institution: string[]; \ No newline at end of file diff --git a/js/free/italic.d.ts b/js/free/italic.d.ts new file mode 100644 index 000000000..f92a3c2e0 --- /dev/null +++ b/js/free/italic.d.ts @@ -0,0 +1 @@ +export declare const italic: string[]; \ No newline at end of file diff --git a/js/free/justify-center.d.ts b/js/free/justify-center.d.ts new file mode 100644 index 000000000..367ad5ab9 --- /dev/null +++ b/js/free/justify-center.d.ts @@ -0,0 +1 @@ +export declare const justifyCenter: string[]; \ No newline at end of file diff --git a/js/free/justify-left.d.ts b/js/free/justify-left.d.ts new file mode 100644 index 000000000..eb0afdc36 --- /dev/null +++ b/js/free/justify-left.d.ts @@ -0,0 +1 @@ +export declare const justifyLeft: string[]; \ No newline at end of file diff --git a/js/free/justify-right.d.ts b/js/free/justify-right.d.ts new file mode 100644 index 000000000..8b433f7af --- /dev/null +++ b/js/free/justify-right.d.ts @@ -0,0 +1 @@ +export declare const justifyRight: string[]; \ No newline at end of file diff --git a/js/free/keyboard.d.ts b/js/free/keyboard.d.ts new file mode 100644 index 000000000..f1b1adf05 --- /dev/null +++ b/js/free/keyboard.d.ts @@ -0,0 +1 @@ +export declare const keyboard: string[]; \ No newline at end of file diff --git a/js/free/lan.d.ts b/js/free/lan.d.ts new file mode 100644 index 000000000..7ccf9cf5f --- /dev/null +++ b/js/free/lan.d.ts @@ -0,0 +1 @@ +export declare const lan: string[]; \ No newline at end of file diff --git a/js/free/language.d.ts b/js/free/language.d.ts new file mode 100644 index 000000000..d42eb28d7 --- /dev/null +++ b/js/free/language.d.ts @@ -0,0 +1 @@ +export declare const language: string[]; \ No newline at end of file diff --git a/js/free/laptop.d.ts b/js/free/laptop.d.ts new file mode 100644 index 000000000..d732750b2 --- /dev/null +++ b/js/free/laptop.d.ts @@ -0,0 +1 @@ +export declare const laptop: string[]; \ No newline at end of file diff --git a/js/free/layers.d.ts b/js/free/layers.d.ts new file mode 100644 index 000000000..660f49dca --- /dev/null +++ b/js/free/layers.d.ts @@ -0,0 +1 @@ +export declare const layers: string[]; \ No newline at end of file diff --git a/js/free/leaf.d.ts b/js/free/leaf.d.ts new file mode 100644 index 000000000..e2c4cc57a --- /dev/null +++ b/js/free/leaf.d.ts @@ -0,0 +1 @@ +export declare const leaf: string[]; \ No newline at end of file diff --git a/js/free/lemon.d.ts b/js/free/lemon.d.ts new file mode 100644 index 000000000..8c1fe651c --- /dev/null +++ b/js/free/lemon.d.ts @@ -0,0 +1 @@ +export declare const lemon: string[]; \ No newline at end of file diff --git a/js/free/level-down.d.ts b/js/free/level-down.d.ts new file mode 100644 index 000000000..b28b11452 --- /dev/null +++ b/js/free/level-down.d.ts @@ -0,0 +1 @@ +export declare const levelDown: string[]; \ No newline at end of file diff --git a/js/free/level-up.d.ts b/js/free/level-up.d.ts new file mode 100644 index 000000000..590faba2d --- /dev/null +++ b/js/free/level-up.d.ts @@ -0,0 +1 @@ +export declare const levelUp: string[]; \ No newline at end of file diff --git a/js/free/library-add.d.ts b/js/free/library-add.d.ts new file mode 100644 index 000000000..ba796559c --- /dev/null +++ b/js/free/library-add.d.ts @@ -0,0 +1 @@ +export declare const libraryAdd: string[]; \ No newline at end of file diff --git a/js/free/library.d.ts b/js/free/library.d.ts new file mode 100644 index 000000000..d7a2032ee --- /dev/null +++ b/js/free/library.d.ts @@ -0,0 +1 @@ +export declare const library: string[]; \ No newline at end of file diff --git a/js/free/life-ring.d.ts b/js/free/life-ring.d.ts new file mode 100644 index 000000000..a35ef7574 --- /dev/null +++ b/js/free/life-ring.d.ts @@ -0,0 +1 @@ +export declare const lifeRing: string[]; \ No newline at end of file diff --git a/js/free/lightbulb.d.ts b/js/free/lightbulb.d.ts new file mode 100644 index 000000000..56c1ad1da --- /dev/null +++ b/js/free/lightbulb.d.ts @@ -0,0 +1 @@ +export declare const lightbulb: string[]; \ No newline at end of file diff --git a/js/free/line-spacing.d.ts b/js/free/line-spacing.d.ts new file mode 100644 index 000000000..adb0bc46f --- /dev/null +++ b/js/free/line-spacing.d.ts @@ -0,0 +1 @@ +export declare const lineSpacing: string[]; \ No newline at end of file diff --git a/js/free/line-style.d.ts b/js/free/line-style.d.ts new file mode 100644 index 000000000..6ee1e2124 --- /dev/null +++ b/js/free/line-style.d.ts @@ -0,0 +1 @@ +export declare const lineStyle: string[]; \ No newline at end of file diff --git a/js/free/line-weight.d.ts b/js/free/line-weight.d.ts new file mode 100644 index 000000000..e881bff1c --- /dev/null +++ b/js/free/line-weight.d.ts @@ -0,0 +1 @@ +export declare const lineWeight: string[]; \ No newline at end of file diff --git a/js/free/link-alt.d.ts b/js/free/link-alt.d.ts new file mode 100644 index 000000000..d63dd6c57 --- /dev/null +++ b/js/free/link-alt.d.ts @@ -0,0 +1 @@ +export declare const linkAlt: string[]; \ No newline at end of file diff --git a/js/free/link-broken.d.ts b/js/free/link-broken.d.ts new file mode 100644 index 000000000..d732a5e68 --- /dev/null +++ b/js/free/link-broken.d.ts @@ -0,0 +1 @@ +export declare const linkBroken: string[]; \ No newline at end of file diff --git a/js/free/link.d.ts b/js/free/link.d.ts new file mode 100644 index 000000000..edf030c94 --- /dev/null +++ b/js/free/link.d.ts @@ -0,0 +1 @@ +export declare const link: string[]; \ No newline at end of file diff --git a/js/free/list-filter.d.ts b/js/free/list-filter.d.ts new file mode 100644 index 000000000..f0d42b44a --- /dev/null +++ b/js/free/list-filter.d.ts @@ -0,0 +1 @@ +export declare const listFilter: string[]; \ No newline at end of file diff --git a/js/free/list-high-priority.d.ts b/js/free/list-high-priority.d.ts new file mode 100644 index 000000000..e2bdb6205 --- /dev/null +++ b/js/free/list-high-priority.d.ts @@ -0,0 +1 @@ +export declare const listHighPriority: string[]; \ No newline at end of file diff --git a/js/free/list-low-priority.d.ts b/js/free/list-low-priority.d.ts new file mode 100644 index 000000000..8bd09bf99 --- /dev/null +++ b/js/free/list-low-priority.d.ts @@ -0,0 +1 @@ +export declare const listLowPriority: string[]; \ No newline at end of file diff --git a/js/free/list-numbered.d.ts b/js/free/list-numbered.d.ts new file mode 100644 index 000000000..f001420c7 --- /dev/null +++ b/js/free/list-numbered.d.ts @@ -0,0 +1 @@ +export declare const listNumbered: string[]; \ No newline at end of file diff --git a/js/free/list-rich.d.ts b/js/free/list-rich.d.ts new file mode 100644 index 000000000..8ce007451 --- /dev/null +++ b/js/free/list-rich.d.ts @@ -0,0 +1 @@ +export declare const listRich: string[]; \ No newline at end of file diff --git a/js/free/list.d.ts b/js/free/list.d.ts new file mode 100644 index 000000000..88ab1f90b --- /dev/null +++ b/js/free/list.d.ts @@ -0,0 +1 @@ +export declare const list: string[]; \ No newline at end of file diff --git a/js/free/location-pin.d.ts b/js/free/location-pin.d.ts new file mode 100644 index 000000000..2160d3854 --- /dev/null +++ b/js/free/location-pin.d.ts @@ -0,0 +1 @@ +export declare const locationPin: string[]; \ No newline at end of file diff --git a/js/free/lock-locked.d.ts b/js/free/lock-locked.d.ts new file mode 100644 index 000000000..619c14cee --- /dev/null +++ b/js/free/lock-locked.d.ts @@ -0,0 +1 @@ +export declare const lockLocked: string[]; \ No newline at end of file diff --git a/js/free/lock-unlocked.d.ts b/js/free/lock-unlocked.d.ts new file mode 100644 index 000000000..f4b627155 --- /dev/null +++ b/js/free/lock-unlocked.d.ts @@ -0,0 +1 @@ +export declare const lockUnlocked: string[]; \ No newline at end of file diff --git a/js/free/locomotive.d.ts b/js/free/locomotive.d.ts new file mode 100644 index 000000000..19849f1e5 --- /dev/null +++ b/js/free/locomotive.d.ts @@ -0,0 +1 @@ +export declare const locomotive: string[]; \ No newline at end of file diff --git a/js/free/loop-1.d.ts b/js/free/loop-1.d.ts new file mode 100644 index 000000000..9b17cd2aa --- /dev/null +++ b/js/free/loop-1.d.ts @@ -0,0 +1 @@ +export declare const loop1: string[]; \ No newline at end of file diff --git a/js/free/loop-circular.d.ts b/js/free/loop-circular.d.ts new file mode 100644 index 000000000..6a1def859 --- /dev/null +++ b/js/free/loop-circular.d.ts @@ -0,0 +1 @@ +export declare const loopCircular: string[]; \ No newline at end of file diff --git a/js/free/loop.d.ts b/js/free/loop.d.ts new file mode 100644 index 000000000..8c21c4df7 --- /dev/null +++ b/js/free/loop.d.ts @@ -0,0 +1 @@ +export declare const loop: string[]; \ No newline at end of file diff --git a/js/free/low-vision.d.ts b/js/free/low-vision.d.ts new file mode 100644 index 000000000..dee8af779 --- /dev/null +++ b/js/free/low-vision.d.ts @@ -0,0 +1 @@ +export declare const lowVision: string[]; \ No newline at end of file diff --git a/js/free/magnifying-glass.d.ts b/js/free/magnifying-glass.d.ts new file mode 100644 index 000000000..f070fcd31 --- /dev/null +++ b/js/free/magnifying-glass.d.ts @@ -0,0 +1 @@ +export declare const magnifyingGlass: string[]; \ No newline at end of file diff --git a/js/free/map.d.ts b/js/free/map.d.ts new file mode 100644 index 000000000..88c8edac2 --- /dev/null +++ b/js/free/map.d.ts @@ -0,0 +1 @@ +export declare const map: string[]; \ No newline at end of file diff --git a/js/free/media-eject.d.ts b/js/free/media-eject.d.ts new file mode 100644 index 000000000..c826f4508 --- /dev/null +++ b/js/free/media-eject.d.ts @@ -0,0 +1 @@ +export declare const mediaEject: string[]; \ No newline at end of file diff --git a/js/free/media-pause.d.ts b/js/free/media-pause.d.ts new file mode 100644 index 000000000..33f659665 --- /dev/null +++ b/js/free/media-pause.d.ts @@ -0,0 +1 @@ +export declare const mediaPause: string[]; \ No newline at end of file diff --git a/js/free/media-play.d.ts b/js/free/media-play.d.ts new file mode 100644 index 000000000..cd696a59e --- /dev/null +++ b/js/free/media-play.d.ts @@ -0,0 +1 @@ +export declare const mediaPlay: string[]; \ No newline at end of file diff --git a/js/free/media-record.d.ts b/js/free/media-record.d.ts new file mode 100644 index 000000000..deb69d0f5 --- /dev/null +++ b/js/free/media-record.d.ts @@ -0,0 +1 @@ +export declare const mediaRecord: string[]; \ No newline at end of file diff --git a/js/free/media-skip-backward.d.ts b/js/free/media-skip-backward.d.ts new file mode 100644 index 000000000..48e620c82 --- /dev/null +++ b/js/free/media-skip-backward.d.ts @@ -0,0 +1 @@ +export declare const mediaSkipBackward: string[]; \ No newline at end of file diff --git a/js/free/media-skip-forward.d.ts b/js/free/media-skip-forward.d.ts new file mode 100644 index 000000000..c5a27822a --- /dev/null +++ b/js/free/media-skip-forward.d.ts @@ -0,0 +1 @@ +export declare const mediaSkipForward: string[]; \ No newline at end of file diff --git a/js/free/media-step-backward.d.ts b/js/free/media-step-backward.d.ts new file mode 100644 index 000000000..4dea311e5 --- /dev/null +++ b/js/free/media-step-backward.d.ts @@ -0,0 +1 @@ +export declare const mediaStepBackward: string[]; \ No newline at end of file diff --git a/js/free/media-step-forward.d.ts b/js/free/media-step-forward.d.ts new file mode 100644 index 000000000..0b4706bdb --- /dev/null +++ b/js/free/media-step-forward.d.ts @@ -0,0 +1 @@ +export declare const mediaStepForward: string[]; \ No newline at end of file diff --git a/js/free/media-stop.d.ts b/js/free/media-stop.d.ts new file mode 100644 index 000000000..8cc6d15c8 --- /dev/null +++ b/js/free/media-stop.d.ts @@ -0,0 +1 @@ +export declare const mediaStop: string[]; \ No newline at end of file diff --git a/js/free/medical-cross.d.ts b/js/free/medical-cross.d.ts new file mode 100644 index 000000000..3a277846b --- /dev/null +++ b/js/free/medical-cross.d.ts @@ -0,0 +1 @@ +export declare const medicalCross: string[]; \ No newline at end of file diff --git a/js/free/meh.d.ts b/js/free/meh.d.ts new file mode 100644 index 000000000..76393d56c --- /dev/null +++ b/js/free/meh.d.ts @@ -0,0 +1 @@ +export declare const meh: string[]; \ No newline at end of file diff --git a/js/free/memory.d.ts b/js/free/memory.d.ts new file mode 100644 index 000000000..75abd7ade --- /dev/null +++ b/js/free/memory.d.ts @@ -0,0 +1 @@ +export declare const memory: string[]; \ No newline at end of file diff --git a/js/free/menu.d.ts b/js/free/menu.d.ts new file mode 100644 index 000000000..f28b3f094 --- /dev/null +++ b/js/free/menu.d.ts @@ -0,0 +1 @@ +export declare const menu: string[]; \ No newline at end of file diff --git a/js/free/microphone.d.ts b/js/free/microphone.d.ts new file mode 100644 index 000000000..caeeed567 --- /dev/null +++ b/js/free/microphone.d.ts @@ -0,0 +1 @@ +export declare const microphone: string[]; \ No newline at end of file diff --git a/js/free/minus.d.ts b/js/free/minus.d.ts new file mode 100644 index 000000000..0f2328d55 --- /dev/null +++ b/js/free/minus.d.ts @@ -0,0 +1 @@ +export declare const minus: string[]; \ No newline at end of file diff --git a/js/free/mobile-landscape.d.ts b/js/free/mobile-landscape.d.ts new file mode 100644 index 000000000..4b0329849 --- /dev/null +++ b/js/free/mobile-landscape.d.ts @@ -0,0 +1 @@ +export declare const mobileLandscape: string[]; \ No newline at end of file diff --git a/js/free/mobile.d.ts b/js/free/mobile.d.ts new file mode 100644 index 000000000..de1ad2e85 --- /dev/null +++ b/js/free/mobile.d.ts @@ -0,0 +1 @@ +export declare const mobile: string[]; \ No newline at end of file diff --git a/js/free/money.d.ts b/js/free/money.d.ts new file mode 100644 index 000000000..d5c870c55 --- /dev/null +++ b/js/free/money.d.ts @@ -0,0 +1 @@ +export declare const money: string[]; \ No newline at end of file diff --git a/js/free/monitor.d.ts b/js/free/monitor.d.ts new file mode 100644 index 000000000..7b489c5f8 --- /dev/null +++ b/js/free/monitor.d.ts @@ -0,0 +1 @@ +export declare const monitor: string[]; \ No newline at end of file diff --git a/js/free/mood-bad.d.ts b/js/free/mood-bad.d.ts new file mode 100644 index 000000000..cdace1547 --- /dev/null +++ b/js/free/mood-bad.d.ts @@ -0,0 +1 @@ +export declare const moodBad: string[]; \ No newline at end of file diff --git a/js/free/mood-good.d.ts b/js/free/mood-good.d.ts new file mode 100644 index 000000000..f3bd85ae0 --- /dev/null +++ b/js/free/mood-good.d.ts @@ -0,0 +1 @@ +export declare const moodGood: string[]; \ No newline at end of file diff --git a/js/free/mood-very-bad.d.ts b/js/free/mood-very-bad.d.ts new file mode 100644 index 000000000..2d8ab202c --- /dev/null +++ b/js/free/mood-very-bad.d.ts @@ -0,0 +1 @@ +export declare const moodVeryBad: string[]; \ No newline at end of file diff --git a/js/free/mood-very-good.d.ts b/js/free/mood-very-good.d.ts new file mode 100644 index 000000000..7b94af957 --- /dev/null +++ b/js/free/mood-very-good.d.ts @@ -0,0 +1 @@ +export declare const moodVeryGood: string[]; \ No newline at end of file diff --git a/js/free/moon.d.ts b/js/free/moon.d.ts new file mode 100644 index 000000000..b0774bea5 --- /dev/null +++ b/js/free/moon.d.ts @@ -0,0 +1 @@ +export declare const moon: string[]; \ No newline at end of file diff --git a/js/free/mouse.d.ts b/js/free/mouse.d.ts new file mode 100644 index 000000000..0ce1181e0 --- /dev/null +++ b/js/free/mouse.d.ts @@ -0,0 +1 @@ +export declare const mouse: string[]; \ No newline at end of file diff --git a/js/free/mouth-slash.d.ts b/js/free/mouth-slash.d.ts new file mode 100644 index 000000000..5bc6e0b21 --- /dev/null +++ b/js/free/mouth-slash.d.ts @@ -0,0 +1 @@ +export declare const mouthSlash: string[]; \ No newline at end of file diff --git a/js/free/move.d.ts b/js/free/move.d.ts new file mode 100644 index 000000000..a14dc383c --- /dev/null +++ b/js/free/move.d.ts @@ -0,0 +1 @@ +export declare const move: string[]; \ No newline at end of file diff --git a/js/free/movie.d.ts b/js/free/movie.d.ts new file mode 100644 index 000000000..40ad167fa --- /dev/null +++ b/js/free/movie.d.ts @@ -0,0 +1 @@ +export declare const movie: string[]; \ No newline at end of file diff --git a/js/free/mug-tea.d.ts b/js/free/mug-tea.d.ts new file mode 100644 index 000000000..35faf8081 --- /dev/null +++ b/js/free/mug-tea.d.ts @@ -0,0 +1 @@ +export declare const mugTea: string[]; \ No newline at end of file diff --git a/js/free/mug.d.ts b/js/free/mug.d.ts new file mode 100644 index 000000000..a6a6f8270 --- /dev/null +++ b/js/free/mug.d.ts @@ -0,0 +1 @@ +export declare const mug: string[]; \ No newline at end of file diff --git a/js/free/music-note.d.ts b/js/free/music-note.d.ts new file mode 100644 index 000000000..0c1e288a2 --- /dev/null +++ b/js/free/music-note.d.ts @@ -0,0 +1 @@ +export declare const musicNote: string[]; \ No newline at end of file diff --git a/js/free/newspaper.d.ts b/js/free/newspaper.d.ts new file mode 100644 index 000000000..e980870b8 --- /dev/null +++ b/js/free/newspaper.d.ts @@ -0,0 +1 @@ +export declare const newspaper: string[]; \ No newline at end of file diff --git a/js/free/notes.d.ts b/js/free/notes.d.ts new file mode 100644 index 000000000..ef6dbbec1 --- /dev/null +++ b/js/free/notes.d.ts @@ -0,0 +1 @@ +export declare const notes: string[]; \ No newline at end of file diff --git a/js/free/object-group.d.ts b/js/free/object-group.d.ts new file mode 100644 index 000000000..0aec7005e --- /dev/null +++ b/js/free/object-group.d.ts @@ -0,0 +1 @@ +export declare const objectGroup: string[]; \ No newline at end of file diff --git a/js/free/object-ungroup.d.ts b/js/free/object-ungroup.d.ts new file mode 100644 index 000000000..7df65a501 --- /dev/null +++ b/js/free/object-ungroup.d.ts @@ -0,0 +1 @@ +export declare const objectUngroup: string[]; \ No newline at end of file diff --git a/js/free/opacity.d.ts b/js/free/opacity.d.ts new file mode 100644 index 000000000..a6b0cfcee --- /dev/null +++ b/js/free/opacity.d.ts @@ -0,0 +1 @@ +export declare const opacity: string[]; \ No newline at end of file diff --git a/js/free/options-horizontal.d.ts b/js/free/options-horizontal.d.ts new file mode 100644 index 000000000..5f8a4472b --- /dev/null +++ b/js/free/options-horizontal.d.ts @@ -0,0 +1 @@ +export declare const optionsHorizontal: string[]; \ No newline at end of file diff --git a/js/free/options.d.ts b/js/free/options.d.ts new file mode 100644 index 000000000..2f0244b5d --- /dev/null +++ b/js/free/options.d.ts @@ -0,0 +1 @@ +export declare const options: string[]; \ No newline at end of file diff --git a/js/free/paint-bucket.d.ts b/js/free/paint-bucket.d.ts new file mode 100644 index 000000000..5c3a9df1f --- /dev/null +++ b/js/free/paint-bucket.d.ts @@ -0,0 +1 @@ +export declare const paintBucket: string[]; \ No newline at end of file diff --git a/js/free/paint.d.ts b/js/free/paint.d.ts new file mode 100644 index 000000000..a61132162 --- /dev/null +++ b/js/free/paint.d.ts @@ -0,0 +1 @@ +export declare const paint: string[]; \ No newline at end of file diff --git a/js/free/paper-plane.d.ts b/js/free/paper-plane.d.ts new file mode 100644 index 000000000..703bb8121 --- /dev/null +++ b/js/free/paper-plane.d.ts @@ -0,0 +1 @@ +export declare const paperPlane: string[]; \ No newline at end of file diff --git a/js/free/paperclip.d.ts b/js/free/paperclip.d.ts new file mode 100644 index 000000000..dde5ffa3a --- /dev/null +++ b/js/free/paperclip.d.ts @@ -0,0 +1 @@ +export declare const paperclip: string[]; \ No newline at end of file diff --git a/js/free/paragraph.d.ts b/js/free/paragraph.d.ts new file mode 100644 index 000000000..77f30b7b3 --- /dev/null +++ b/js/free/paragraph.d.ts @@ -0,0 +1 @@ +export declare const paragraph: string[]; \ No newline at end of file diff --git a/js/free/paw.d.ts b/js/free/paw.d.ts new file mode 100644 index 000000000..a02880d41 --- /dev/null +++ b/js/free/paw.d.ts @@ -0,0 +1 @@ +export declare const paw: string[]; \ No newline at end of file diff --git a/js/free/pen-alt.d.ts b/js/free/pen-alt.d.ts new file mode 100644 index 000000000..02a91f1b3 --- /dev/null +++ b/js/free/pen-alt.d.ts @@ -0,0 +1 @@ +export declare const penAlt: string[]; \ No newline at end of file diff --git a/js/free/pen-nib.d.ts b/js/free/pen-nib.d.ts new file mode 100644 index 000000000..4ee401448 --- /dev/null +++ b/js/free/pen-nib.d.ts @@ -0,0 +1 @@ +export declare const penNib: string[]; \ No newline at end of file diff --git a/js/free/pencil.d.ts b/js/free/pencil.d.ts new file mode 100644 index 000000000..5885dcd62 --- /dev/null +++ b/js/free/pencil.d.ts @@ -0,0 +1 @@ +export declare const pencil: string[]; \ No newline at end of file diff --git a/js/free/people.d.ts b/js/free/people.d.ts new file mode 100644 index 000000000..8db91bbfb --- /dev/null +++ b/js/free/people.d.ts @@ -0,0 +1 @@ +export declare const people: string[]; \ No newline at end of file diff --git a/js/free/phone.d.ts b/js/free/phone.d.ts new file mode 100644 index 000000000..96385c4f5 --- /dev/null +++ b/js/free/phone.d.ts @@ -0,0 +1 @@ +export declare const phone: string[]; \ No newline at end of file diff --git a/js/free/pin.d.ts b/js/free/pin.d.ts new file mode 100644 index 000000000..6d6256530 --- /dev/null +++ b/js/free/pin.d.ts @@ -0,0 +1 @@ +export declare const pin: string[]; \ No newline at end of file diff --git a/js/free/pizza.d.ts b/js/free/pizza.d.ts new file mode 100644 index 000000000..36aeb81c9 --- /dev/null +++ b/js/free/pizza.d.ts @@ -0,0 +1 @@ +export declare const pizza: string[]; \ No newline at end of file diff --git a/js/free/playlist-add.d.ts b/js/free/playlist-add.d.ts new file mode 100644 index 000000000..21bae96ea --- /dev/null +++ b/js/free/playlist-add.d.ts @@ -0,0 +1 @@ +export declare const playlistAdd: string[]; \ No newline at end of file diff --git a/js/free/plus.d.ts b/js/free/plus.d.ts new file mode 100644 index 000000000..20342c72c --- /dev/null +++ b/js/free/plus.d.ts @@ -0,0 +1 @@ +export declare const plus: string[]; \ No newline at end of file diff --git a/js/free/polymer.d.ts b/js/free/polymer.d.ts new file mode 100644 index 000000000..a952cffa5 --- /dev/null +++ b/js/free/polymer.d.ts @@ -0,0 +1 @@ +export declare const polymer: string[]; \ No newline at end of file diff --git a/js/free/pool.d.ts b/js/free/pool.d.ts new file mode 100644 index 000000000..b87772d4f --- /dev/null +++ b/js/free/pool.d.ts @@ -0,0 +1 @@ +export declare const pool: string[]; \ No newline at end of file diff --git a/js/free/power-standby.d.ts b/js/free/power-standby.d.ts new file mode 100644 index 000000000..37cfd7c09 --- /dev/null +++ b/js/free/power-standby.d.ts @@ -0,0 +1 @@ +export declare const powerStandby: string[]; \ No newline at end of file diff --git a/js/free/pregnant.d.ts b/js/free/pregnant.d.ts new file mode 100644 index 000000000..e5ff0e528 --- /dev/null +++ b/js/free/pregnant.d.ts @@ -0,0 +1 @@ +export declare const pregnant: string[]; \ No newline at end of file diff --git a/js/free/print.d.ts b/js/free/print.d.ts new file mode 100644 index 000000000..d9ebf26dd --- /dev/null +++ b/js/free/print.d.ts @@ -0,0 +1 @@ +export declare const print: string[]; \ No newline at end of file diff --git a/js/free/puzzle.d.ts b/js/free/puzzle.d.ts new file mode 100644 index 000000000..99af6e80a --- /dev/null +++ b/js/free/puzzle.d.ts @@ -0,0 +1 @@ +export declare const puzzle: string[]; \ No newline at end of file diff --git a/js/free/qr-code.d.ts b/js/free/qr-code.d.ts new file mode 100644 index 000000000..263e6b4cf --- /dev/null +++ b/js/free/qr-code.d.ts @@ -0,0 +1 @@ +export declare const qrCode: string[]; \ No newline at end of file diff --git a/js/free/rain.d.ts b/js/free/rain.d.ts new file mode 100644 index 000000000..5bda5f610 --- /dev/null +++ b/js/free/rain.d.ts @@ -0,0 +1 @@ +export declare const rain: string[]; \ No newline at end of file diff --git a/js/free/rectangle.d.ts b/js/free/rectangle.d.ts new file mode 100644 index 000000000..c5ba3b2a7 --- /dev/null +++ b/js/free/rectangle.d.ts @@ -0,0 +1 @@ +export declare const rectangle: string[]; \ No newline at end of file diff --git a/js/free/registered.d.ts b/js/free/registered.d.ts new file mode 100644 index 000000000..2439cb572 --- /dev/null +++ b/js/free/registered.d.ts @@ -0,0 +1 @@ +export declare const registered: string[]; \ No newline at end of file diff --git a/js/free/reload.d.ts b/js/free/reload.d.ts new file mode 100644 index 000000000..bda4063ce --- /dev/null +++ b/js/free/reload.d.ts @@ -0,0 +1 @@ +export declare const reload: string[]; \ No newline at end of file diff --git a/js/free/remove.d.ts b/js/free/remove.d.ts new file mode 100644 index 000000000..bf713ef78 --- /dev/null +++ b/js/free/remove.d.ts @@ -0,0 +1 @@ +export declare const remove: string[]; \ No newline at end of file diff --git a/js/free/resize-both.d.ts b/js/free/resize-both.d.ts new file mode 100644 index 000000000..0dc0f3ea4 --- /dev/null +++ b/js/free/resize-both.d.ts @@ -0,0 +1 @@ +export declare const resizeBoth: string[]; \ No newline at end of file diff --git a/js/free/resize-height.d.ts b/js/free/resize-height.d.ts new file mode 100644 index 000000000..815f99b37 --- /dev/null +++ b/js/free/resize-height.d.ts @@ -0,0 +1 @@ +export declare const resizeHeight: string[]; \ No newline at end of file diff --git a/js/free/resize-width.d.ts b/js/free/resize-width.d.ts new file mode 100644 index 000000000..cd8110915 --- /dev/null +++ b/js/free/resize-width.d.ts @@ -0,0 +1 @@ +export declare const resizeWidth: string[]; \ No newline at end of file diff --git a/js/free/restaurant.d.ts b/js/free/restaurant.d.ts new file mode 100644 index 000000000..efff40d02 --- /dev/null +++ b/js/free/restaurant.d.ts @@ -0,0 +1 @@ +export declare const restaurant: string[]; \ No newline at end of file diff --git a/js/free/room.d.ts b/js/free/room.d.ts new file mode 100644 index 000000000..079e52434 --- /dev/null +++ b/js/free/room.d.ts @@ -0,0 +1 @@ +export declare const room: string[]; \ No newline at end of file diff --git a/js/free/rowing.d.ts b/js/free/rowing.d.ts new file mode 100644 index 000000000..469b79b66 --- /dev/null +++ b/js/free/rowing.d.ts @@ -0,0 +1 @@ +export declare const rowing: string[]; \ No newline at end of file diff --git a/js/free/running.d.ts b/js/free/running.d.ts new file mode 100644 index 000000000..f52e55443 --- /dev/null +++ b/js/free/running.d.ts @@ -0,0 +1 @@ +export declare const running: string[]; \ No newline at end of file diff --git a/js/free/satelite.d.ts b/js/free/satelite.d.ts new file mode 100644 index 000000000..ba194d58f --- /dev/null +++ b/js/free/satelite.d.ts @@ -0,0 +1 @@ +export declare const satelite: string[]; \ No newline at end of file diff --git a/js/free/save.d.ts b/js/free/save.d.ts new file mode 100644 index 000000000..1004e3214 --- /dev/null +++ b/js/free/save.d.ts @@ -0,0 +1 @@ +export declare const save: string[]; \ No newline at end of file diff --git a/js/free/school.d.ts b/js/free/school.d.ts new file mode 100644 index 000000000..c26ecac70 --- /dev/null +++ b/js/free/school.d.ts @@ -0,0 +1 @@ +export declare const school: string[]; \ No newline at end of file diff --git a/js/free/screen-desktop.d.ts b/js/free/screen-desktop.d.ts new file mode 100644 index 000000000..68920e6c0 --- /dev/null +++ b/js/free/screen-desktop.d.ts @@ -0,0 +1 @@ +export declare const screenDesktop: string[]; \ No newline at end of file diff --git a/js/free/screen-smartphone.d.ts b/js/free/screen-smartphone.d.ts new file mode 100644 index 000000000..8c17f0c5b --- /dev/null +++ b/js/free/screen-smartphone.d.ts @@ -0,0 +1 @@ +export declare const screenSmartphone: string[]; \ No newline at end of file diff --git a/js/free/scrubber.d.ts b/js/free/scrubber.d.ts new file mode 100644 index 000000000..a3d7f8909 --- /dev/null +++ b/js/free/scrubber.d.ts @@ -0,0 +1 @@ +export declare const scrubber: string[]; \ No newline at end of file diff --git a/js/free/settings.d.ts b/js/free/settings.d.ts new file mode 100644 index 000000000..c083c68b6 --- /dev/null +++ b/js/free/settings.d.ts @@ -0,0 +1 @@ +export declare const settings: string[]; \ No newline at end of file diff --git a/js/free/share-all.d.ts b/js/free/share-all.d.ts new file mode 100644 index 000000000..373574f30 --- /dev/null +++ b/js/free/share-all.d.ts @@ -0,0 +1 @@ +export declare const shareAll: string[]; \ No newline at end of file diff --git a/js/free/share-alt.d.ts b/js/free/share-alt.d.ts new file mode 100644 index 000000000..d81c2a0b2 --- /dev/null +++ b/js/free/share-alt.d.ts @@ -0,0 +1 @@ +export declare const shareAlt: string[]; \ No newline at end of file diff --git a/js/free/share-boxed.d.ts b/js/free/share-boxed.d.ts new file mode 100644 index 000000000..d1b881e1e --- /dev/null +++ b/js/free/share-boxed.d.ts @@ -0,0 +1 @@ +export declare const shareBoxed: string[]; \ No newline at end of file diff --git a/js/free/share.d.ts b/js/free/share.d.ts new file mode 100644 index 000000000..e0e0ead35 --- /dev/null +++ b/js/free/share.d.ts @@ -0,0 +1 @@ +export declare const share: string[]; \ No newline at end of file diff --git a/js/free/shield-alt.d.ts b/js/free/shield-alt.d.ts new file mode 100644 index 000000000..a4187ea24 --- /dev/null +++ b/js/free/shield-alt.d.ts @@ -0,0 +1 @@ +export declare const shieldAlt: string[]; \ No newline at end of file diff --git a/js/free/short-text.d.ts b/js/free/short-text.d.ts new file mode 100644 index 000000000..b02c316b3 --- /dev/null +++ b/js/free/short-text.d.ts @@ -0,0 +1 @@ +export declare const shortText: string[]; \ No newline at end of file diff --git a/js/free/shower.d.ts b/js/free/shower.d.ts new file mode 100644 index 000000000..21d15b28b --- /dev/null +++ b/js/free/shower.d.ts @@ -0,0 +1 @@ +export declare const shower: string[]; \ No newline at end of file diff --git a/js/free/sign-language.d.ts b/js/free/sign-language.d.ts new file mode 100644 index 000000000..771bfcb39 --- /dev/null +++ b/js/free/sign-language.d.ts @@ -0,0 +1 @@ +export declare const signLanguage: string[]; \ No newline at end of file diff --git a/js/free/signal-cellular-0.d.ts b/js/free/signal-cellular-0.d.ts new file mode 100644 index 000000000..e48976de7 --- /dev/null +++ b/js/free/signal-cellular-0.d.ts @@ -0,0 +1 @@ +export declare const signalCellular0: string[]; \ No newline at end of file diff --git a/js/free/signal-cellular-3.d.ts b/js/free/signal-cellular-3.d.ts new file mode 100644 index 000000000..6a5f4fcac --- /dev/null +++ b/js/free/signal-cellular-3.d.ts @@ -0,0 +1 @@ +export declare const signalCellular3: string[]; \ No newline at end of file diff --git a/js/free/signal-cellular-4.d.ts b/js/free/signal-cellular-4.d.ts new file mode 100644 index 000000000..078dd9397 --- /dev/null +++ b/js/free/signal-cellular-4.d.ts @@ -0,0 +1 @@ +export declare const signalCellular4: string[]; \ No newline at end of file diff --git a/js/free/sim.d.ts b/js/free/sim.d.ts new file mode 100644 index 000000000..559e24ccf --- /dev/null +++ b/js/free/sim.d.ts @@ -0,0 +1 @@ +export declare const sim: string[]; \ No newline at end of file diff --git a/js/free/sitemap.d.ts b/js/free/sitemap.d.ts new file mode 100644 index 000000000..dfd7b24a5 --- /dev/null +++ b/js/free/sitemap.d.ts @@ -0,0 +1 @@ +export declare const sitemap: string[]; \ No newline at end of file diff --git a/js/free/smile-plus.d.ts b/js/free/smile-plus.d.ts new file mode 100644 index 000000000..41adac248 --- /dev/null +++ b/js/free/smile-plus.d.ts @@ -0,0 +1 @@ +export declare const smilePlus: string[]; \ No newline at end of file diff --git a/js/free/smile.d.ts b/js/free/smile.d.ts new file mode 100644 index 000000000..ae677f5ec --- /dev/null +++ b/js/free/smile.d.ts @@ -0,0 +1 @@ +export declare const smile: string[]; \ No newline at end of file diff --git a/js/free/smoke-free.d.ts b/js/free/smoke-free.d.ts new file mode 100644 index 000000000..254351466 --- /dev/null +++ b/js/free/smoke-free.d.ts @@ -0,0 +1 @@ +export declare const smokeFree: string[]; \ No newline at end of file diff --git a/js/free/smoking-room.d.ts b/js/free/smoking-room.d.ts new file mode 100644 index 000000000..55168e1a2 --- /dev/null +++ b/js/free/smoking-room.d.ts @@ -0,0 +1 @@ +export declare const smokingRoom: string[]; \ No newline at end of file diff --git a/js/free/snowflake.d.ts b/js/free/snowflake.d.ts new file mode 100644 index 000000000..22be7c1f5 --- /dev/null +++ b/js/free/snowflake.d.ts @@ -0,0 +1 @@ +export declare const snowflake: string[]; \ No newline at end of file diff --git a/js/free/sort-alpha-down.d.ts b/js/free/sort-alpha-down.d.ts new file mode 100644 index 000000000..e25ea26f4 --- /dev/null +++ b/js/free/sort-alpha-down.d.ts @@ -0,0 +1 @@ +export declare const sortAlphaDown: string[]; \ No newline at end of file diff --git a/js/free/sort-alpha-up.d.ts b/js/free/sort-alpha-up.d.ts new file mode 100644 index 000000000..e34277844 --- /dev/null +++ b/js/free/sort-alpha-up.d.ts @@ -0,0 +1 @@ +export declare const sortAlphaUp: string[]; \ No newline at end of file diff --git a/js/free/sort-ascending.d.ts b/js/free/sort-ascending.d.ts new file mode 100644 index 000000000..13493c677 --- /dev/null +++ b/js/free/sort-ascending.d.ts @@ -0,0 +1 @@ +export declare const sortAscending: string[]; \ No newline at end of file diff --git a/js/free/sort-descending.d.ts b/js/free/sort-descending.d.ts new file mode 100644 index 000000000..c40d6546a --- /dev/null +++ b/js/free/sort-descending.d.ts @@ -0,0 +1 @@ +export declare const sortDescending: string[]; \ No newline at end of file diff --git a/js/free/sort-numeric-down.d.ts b/js/free/sort-numeric-down.d.ts new file mode 100644 index 000000000..440279d2b --- /dev/null +++ b/js/free/sort-numeric-down.d.ts @@ -0,0 +1 @@ +export declare const sortNumericDown: string[]; \ No newline at end of file diff --git a/js/free/sort-numeric-up.d.ts b/js/free/sort-numeric-up.d.ts new file mode 100644 index 000000000..d5b0aee41 --- /dev/null +++ b/js/free/sort-numeric-up.d.ts @@ -0,0 +1 @@ +export declare const sortNumericUp: string[]; \ No newline at end of file diff --git a/js/free/spa.d.ts b/js/free/spa.d.ts new file mode 100644 index 000000000..34e248faa --- /dev/null +++ b/js/free/spa.d.ts @@ -0,0 +1 @@ +export declare const spa: string[]; \ No newline at end of file diff --git a/js/free/space-bar.d.ts b/js/free/space-bar.d.ts new file mode 100644 index 000000000..906509268 --- /dev/null +++ b/js/free/space-bar.d.ts @@ -0,0 +1 @@ +export declare const spaceBar: string[]; \ No newline at end of file diff --git a/js/free/speaker.d.ts b/js/free/speaker.d.ts new file mode 100644 index 000000000..86ab33717 --- /dev/null +++ b/js/free/speaker.d.ts @@ -0,0 +1 @@ +export declare const speaker: string[]; \ No newline at end of file diff --git a/js/free/speech.d.ts b/js/free/speech.d.ts new file mode 100644 index 000000000..5ccb6a91d --- /dev/null +++ b/js/free/speech.d.ts @@ -0,0 +1 @@ +export declare const speech: string[]; \ No newline at end of file diff --git a/js/free/speedometer.d.ts b/js/free/speedometer.d.ts new file mode 100644 index 000000000..faa435ed4 --- /dev/null +++ b/js/free/speedometer.d.ts @@ -0,0 +1 @@ +export declare const speedometer: string[]; \ No newline at end of file diff --git a/js/free/spreadsheet.d.ts b/js/free/spreadsheet.d.ts new file mode 100644 index 000000000..81121eb8c --- /dev/null +++ b/js/free/spreadsheet.d.ts @@ -0,0 +1 @@ +export declare const spreadsheet: string[]; \ No newline at end of file diff --git a/js/free/square.d.ts b/js/free/square.d.ts new file mode 100644 index 000000000..90134dd4b --- /dev/null +++ b/js/free/square.d.ts @@ -0,0 +1 @@ +export declare const square: string[]; \ No newline at end of file diff --git a/js/free/star-half.d.ts b/js/free/star-half.d.ts new file mode 100644 index 000000000..3de7fb374 --- /dev/null +++ b/js/free/star-half.d.ts @@ -0,0 +1 @@ +export declare const starHalf: string[]; \ No newline at end of file diff --git a/js/free/star.d.ts b/js/free/star.d.ts new file mode 100644 index 000000000..a176375e7 --- /dev/null +++ b/js/free/star.d.ts @@ -0,0 +1 @@ +export declare const star: string[]; \ No newline at end of file diff --git a/js/free/storage.d.ts b/js/free/storage.d.ts new file mode 100644 index 000000000..14ac1d080 --- /dev/null +++ b/js/free/storage.d.ts @@ -0,0 +1 @@ +export declare const storage: string[]; \ No newline at end of file diff --git a/js/free/stream.d.ts b/js/free/stream.d.ts new file mode 100644 index 000000000..dcbbfce83 --- /dev/null +++ b/js/free/stream.d.ts @@ -0,0 +1 @@ +export declare const stream: string[]; \ No newline at end of file diff --git a/js/free/sun.d.ts b/js/free/sun.d.ts new file mode 100644 index 000000000..609e85179 --- /dev/null +++ b/js/free/sun.d.ts @@ -0,0 +1 @@ +export declare const sun: string[]; \ No newline at end of file diff --git a/js/free/swap-horizontal.d.ts b/js/free/swap-horizontal.d.ts new file mode 100644 index 000000000..f2d252d00 --- /dev/null +++ b/js/free/swap-horizontal.d.ts @@ -0,0 +1 @@ +export declare const swapHorizontal: string[]; \ No newline at end of file diff --git a/js/free/swap-vertical.d.ts b/js/free/swap-vertical.d.ts new file mode 100644 index 000000000..092e95cb4 --- /dev/null +++ b/js/free/swap-vertical.d.ts @@ -0,0 +1 @@ +export declare const swapVertical: string[]; \ No newline at end of file diff --git a/js/free/swimming.d.ts b/js/free/swimming.d.ts new file mode 100644 index 000000000..a877da1e4 --- /dev/null +++ b/js/free/swimming.d.ts @@ -0,0 +1 @@ +export declare const swimming: string[]; \ No newline at end of file diff --git a/js/free/sync.d.ts b/js/free/sync.d.ts new file mode 100644 index 000000000..f2da012e6 --- /dev/null +++ b/js/free/sync.d.ts @@ -0,0 +1 @@ +export declare const sync: string[]; \ No newline at end of file diff --git a/js/free/tablet.d.ts b/js/free/tablet.d.ts new file mode 100644 index 000000000..6a18af762 --- /dev/null +++ b/js/free/tablet.d.ts @@ -0,0 +1 @@ +export declare const tablet: string[]; \ No newline at end of file diff --git a/js/free/tag.d.ts b/js/free/tag.d.ts new file mode 100644 index 000000000..e15b2b1a5 --- /dev/null +++ b/js/free/tag.d.ts @@ -0,0 +1 @@ +export declare const tag: string[]; \ No newline at end of file diff --git a/js/free/tags.d.ts b/js/free/tags.d.ts new file mode 100644 index 000000000..1c462db55 --- /dev/null +++ b/js/free/tags.d.ts @@ -0,0 +1 @@ +export declare const tags: string[]; \ No newline at end of file diff --git a/js/free/task.d.ts b/js/free/task.d.ts new file mode 100644 index 000000000..de9563fa2 --- /dev/null +++ b/js/free/task.d.ts @@ -0,0 +1 @@ +export declare const task: string[]; \ No newline at end of file diff --git a/js/free/taxi.d.ts b/js/free/taxi.d.ts new file mode 100644 index 000000000..b9b2b494f --- /dev/null +++ b/js/free/taxi.d.ts @@ -0,0 +1 @@ +export declare const taxi: string[]; \ No newline at end of file diff --git a/js/free/tennis-ball.d.ts b/js/free/tennis-ball.d.ts new file mode 100644 index 000000000..17df41415 --- /dev/null +++ b/js/free/tennis-ball.d.ts @@ -0,0 +1 @@ +export declare const tennisBall: string[]; \ No newline at end of file diff --git a/js/free/tennis.d.ts b/js/free/tennis.d.ts new file mode 100644 index 000000000..9f9931e19 --- /dev/null +++ b/js/free/tennis.d.ts @@ -0,0 +1 @@ +export declare const tennis: string[]; \ No newline at end of file diff --git a/js/free/terminal.d.ts b/js/free/terminal.d.ts new file mode 100644 index 000000000..2acd64ec9 --- /dev/null +++ b/js/free/terminal.d.ts @@ -0,0 +1 @@ +export declare const terminal: string[]; \ No newline at end of file diff --git a/js/free/terrain.d.ts b/js/free/terrain.d.ts new file mode 100644 index 000000000..c2d0fa7e5 --- /dev/null +++ b/js/free/terrain.d.ts @@ -0,0 +1 @@ +export declare const terrain: string[]; \ No newline at end of file diff --git a/js/free/text-shapes.d.ts b/js/free/text-shapes.d.ts new file mode 100644 index 000000000..3c90156c2 --- /dev/null +++ b/js/free/text-shapes.d.ts @@ -0,0 +1 @@ +export declare const textShapes: string[]; \ No newline at end of file diff --git a/js/free/text-size.d.ts b/js/free/text-size.d.ts new file mode 100644 index 000000000..ea732e7eb --- /dev/null +++ b/js/free/text-size.d.ts @@ -0,0 +1 @@ +export declare const textSize: string[]; \ No newline at end of file diff --git a/js/free/text-square.d.ts b/js/free/text-square.d.ts new file mode 100644 index 000000000..0fe732835 --- /dev/null +++ b/js/free/text-square.d.ts @@ -0,0 +1 @@ +export declare const textSquare: string[]; \ No newline at end of file diff --git a/js/free/text-strike.d.ts b/js/free/text-strike.d.ts new file mode 100644 index 000000000..5e85583de --- /dev/null +++ b/js/free/text-strike.d.ts @@ -0,0 +1 @@ +export declare const textStrike: string[]; \ No newline at end of file diff --git a/js/free/text.d.ts b/js/free/text.d.ts new file mode 100644 index 000000000..bf3e800e6 --- /dev/null +++ b/js/free/text.d.ts @@ -0,0 +1 @@ +export declare const text: string[]; \ No newline at end of file diff --git a/js/free/thumb-down.d.ts b/js/free/thumb-down.d.ts new file mode 100644 index 000000000..0fcbe77c3 --- /dev/null +++ b/js/free/thumb-down.d.ts @@ -0,0 +1 @@ +export declare const thumbDown: string[]; \ No newline at end of file diff --git a/js/free/thumb-up.d.ts b/js/free/thumb-up.d.ts new file mode 100644 index 000000000..8855419d1 --- /dev/null +++ b/js/free/thumb-up.d.ts @@ -0,0 +1 @@ +export declare const thumbUp: string[]; \ No newline at end of file diff --git a/js/free/toggle-off.d.ts b/js/free/toggle-off.d.ts new file mode 100644 index 000000000..3292d66b0 --- /dev/null +++ b/js/free/toggle-off.d.ts @@ -0,0 +1 @@ +export declare const toggleOff: string[]; \ No newline at end of file diff --git a/js/free/toilet.d.ts b/js/free/toilet.d.ts new file mode 100644 index 000000000..4f29f3bf3 --- /dev/null +++ b/js/free/toilet.d.ts @@ -0,0 +1 @@ +export declare const toilet: string[]; \ No newline at end of file diff --git a/js/free/touch-app.d.ts b/js/free/touch-app.d.ts new file mode 100644 index 000000000..5130f322e --- /dev/null +++ b/js/free/touch-app.d.ts @@ -0,0 +1 @@ +export declare const touchApp: string[]; \ No newline at end of file diff --git a/js/free/trademark.d.ts b/js/free/trademark.d.ts new file mode 100644 index 000000000..ee5555a53 --- /dev/null +++ b/js/free/trademark.d.ts @@ -0,0 +1 @@ +export declare const trademark: string[]; \ No newline at end of file diff --git a/js/free/transfer.d.ts b/js/free/transfer.d.ts new file mode 100644 index 000000000..30de22c00 --- /dev/null +++ b/js/free/transfer.d.ts @@ -0,0 +1 @@ +export declare const transfer: string[]; \ No newline at end of file diff --git a/js/free/translate.d.ts b/js/free/translate.d.ts new file mode 100644 index 000000000..0d20eb942 --- /dev/null +++ b/js/free/translate.d.ts @@ -0,0 +1 @@ +export declare const translate: string[]; \ No newline at end of file diff --git a/js/free/trash.d.ts b/js/free/trash.d.ts new file mode 100644 index 000000000..d0dfc8398 --- /dev/null +++ b/js/free/trash.d.ts @@ -0,0 +1 @@ +export declare const trash: string[]; \ No newline at end of file diff --git a/js/free/triangle.d.ts b/js/free/triangle.d.ts new file mode 100644 index 000000000..4015be96a --- /dev/null +++ b/js/free/triangle.d.ts @@ -0,0 +1 @@ +export declare const triangle: string[]; \ No newline at end of file diff --git a/js/free/truck.d.ts b/js/free/truck.d.ts new file mode 100644 index 000000000..5a6cd3700 --- /dev/null +++ b/js/free/truck.d.ts @@ -0,0 +1 @@ +export declare const truck: string[]; \ No newline at end of file diff --git a/js/free/tv.d.ts b/js/free/tv.d.ts new file mode 100644 index 000000000..32e244f15 --- /dev/null +++ b/js/free/tv.d.ts @@ -0,0 +1 @@ +export declare const tv: string[]; \ No newline at end of file diff --git a/js/free/underline.d.ts b/js/free/underline.d.ts new file mode 100644 index 000000000..48a33a0a4 --- /dev/null +++ b/js/free/underline.d.ts @@ -0,0 +1 @@ +export declare const underline: string[]; \ No newline at end of file diff --git a/js/free/user-female.d.ts b/js/free/user-female.d.ts new file mode 100644 index 000000000..3a069f88d --- /dev/null +++ b/js/free/user-female.d.ts @@ -0,0 +1 @@ +export declare const userFemale: string[]; \ No newline at end of file diff --git a/js/free/user-follow.d.ts b/js/free/user-follow.d.ts new file mode 100644 index 000000000..f983ea81e --- /dev/null +++ b/js/free/user-follow.d.ts @@ -0,0 +1 @@ +export declare const userFollow: string[]; \ No newline at end of file diff --git a/js/free/user-unfollow.d.ts b/js/free/user-unfollow.d.ts new file mode 100644 index 000000000..c2c534766 --- /dev/null +++ b/js/free/user-unfollow.d.ts @@ -0,0 +1 @@ +export declare const userUnfollow: string[]; \ No newline at end of file diff --git a/js/free/user.d.ts b/js/free/user.d.ts new file mode 100644 index 000000000..322369fff --- /dev/null +++ b/js/free/user.d.ts @@ -0,0 +1 @@ +export declare const user: string[]; \ No newline at end of file diff --git a/js/free/vector.d.ts b/js/free/vector.d.ts new file mode 100644 index 000000000..557a57995 --- /dev/null +++ b/js/free/vector.d.ts @@ -0,0 +1 @@ +export declare const vector: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-bottom.d.ts b/js/free/vertical-align-bottom.d.ts new file mode 100644 index 000000000..9a119bc27 --- /dev/null +++ b/js/free/vertical-align-bottom.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignBottom: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-bottom1.d.ts b/js/free/vertical-align-bottom1.d.ts new file mode 100644 index 000000000..4ce5c5c1a --- /dev/null +++ b/js/free/vertical-align-bottom1.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignBottom1: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-center.d.ts b/js/free/vertical-align-center.d.ts new file mode 100644 index 000000000..87b0266df --- /dev/null +++ b/js/free/vertical-align-center.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignCenter: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-center1.d.ts b/js/free/vertical-align-center1.d.ts new file mode 100644 index 000000000..9fd80b980 --- /dev/null +++ b/js/free/vertical-align-center1.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignCenter1: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-top.d.ts b/js/free/vertical-align-top.d.ts new file mode 100644 index 000000000..1147d7436 --- /dev/null +++ b/js/free/vertical-align-top.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignTop: string[]; \ No newline at end of file diff --git a/js/free/vertical-align-top1.d.ts b/js/free/vertical-align-top1.d.ts new file mode 100644 index 000000000..f0f16d4b4 --- /dev/null +++ b/js/free/vertical-align-top1.d.ts @@ -0,0 +1 @@ +export declare const verticalAlignTop1: string[]; \ No newline at end of file diff --git a/js/free/video.d.ts b/js/free/video.d.ts new file mode 100644 index 000000000..c6f952b96 --- /dev/null +++ b/js/free/video.d.ts @@ -0,0 +1 @@ +export declare const video: string[]; \ No newline at end of file diff --git a/js/free/view-column.d.ts b/js/free/view-column.d.ts new file mode 100644 index 000000000..dd435dcbf --- /dev/null +++ b/js/free/view-column.d.ts @@ -0,0 +1 @@ +export declare const viewColumn: string[]; \ No newline at end of file diff --git a/js/free/view-module.d.ts b/js/free/view-module.d.ts new file mode 100644 index 000000000..459b35b80 --- /dev/null +++ b/js/free/view-module.d.ts @@ -0,0 +1 @@ +export declare const viewModule: string[]; \ No newline at end of file diff --git a/js/free/view-quilt.d.ts b/js/free/view-quilt.d.ts new file mode 100644 index 000000000..bcb7fcbd5 --- /dev/null +++ b/js/free/view-quilt.d.ts @@ -0,0 +1 @@ +export declare const viewQuilt: string[]; \ No newline at end of file diff --git a/js/free/view-stream.d.ts b/js/free/view-stream.d.ts new file mode 100644 index 000000000..42fdeab53 --- /dev/null +++ b/js/free/view-stream.d.ts @@ -0,0 +1 @@ +export declare const viewStream: string[]; \ No newline at end of file diff --git a/js/free/voice-over-record.d.ts b/js/free/voice-over-record.d.ts new file mode 100644 index 000000000..505ecc6fd --- /dev/null +++ b/js/free/voice-over-record.d.ts @@ -0,0 +1 @@ +export declare const voiceOverRecord: string[]; \ No newline at end of file diff --git a/js/free/volume-high.d.ts b/js/free/volume-high.d.ts new file mode 100644 index 000000000..4840db52f --- /dev/null +++ b/js/free/volume-high.d.ts @@ -0,0 +1 @@ +export declare const volumeHigh: string[]; \ No newline at end of file diff --git a/js/free/volume-low.d.ts b/js/free/volume-low.d.ts new file mode 100644 index 000000000..81631decc --- /dev/null +++ b/js/free/volume-low.d.ts @@ -0,0 +1 @@ +export declare const volumeLow: string[]; \ No newline at end of file diff --git a/js/free/volume-off.d.ts b/js/free/volume-off.d.ts new file mode 100644 index 000000000..c401b534b --- /dev/null +++ b/js/free/volume-off.d.ts @@ -0,0 +1 @@ +export declare const volumeOff: string[]; \ No newline at end of file diff --git a/js/free/vue.d.ts b/js/free/vue.d.ts new file mode 100644 index 000000000..bb3189a88 --- /dev/null +++ b/js/free/vue.d.ts @@ -0,0 +1 @@ +export declare const vue: string[]; \ No newline at end of file diff --git a/js/free/walk.d.ts b/js/free/walk.d.ts new file mode 100644 index 000000000..0248e4d64 --- /dev/null +++ b/js/free/walk.d.ts @@ -0,0 +1 @@ +export declare const walk: string[]; \ No newline at end of file diff --git a/js/free/wallet.d.ts b/js/free/wallet.d.ts new file mode 100644 index 000000000..267c15e5f --- /dev/null +++ b/js/free/wallet.d.ts @@ -0,0 +1 @@ +export declare const wallet: string[]; \ No newline at end of file diff --git a/js/free/wallpaper.d.ts b/js/free/wallpaper.d.ts new file mode 100644 index 000000000..73ef5535f --- /dev/null +++ b/js/free/wallpaper.d.ts @@ -0,0 +1 @@ +export declare const wallpaper: string[]; \ No newline at end of file diff --git a/js/free/warning.d.ts b/js/free/warning.d.ts new file mode 100644 index 000000000..98693331b --- /dev/null +++ b/js/free/warning.d.ts @@ -0,0 +1 @@ +export declare const warning: string[]; \ No newline at end of file diff --git a/js/free/watch.d.ts b/js/free/watch.d.ts new file mode 100644 index 000000000..7cf2e05cd --- /dev/null +++ b/js/free/watch.d.ts @@ -0,0 +1 @@ +export declare const watch: string[]; \ No newline at end of file diff --git a/js/free/wc.d.ts b/js/free/wc.d.ts new file mode 100644 index 000000000..f333f274b --- /dev/null +++ b/js/free/wc.d.ts @@ -0,0 +1 @@ +export declare const wc: string[]; \ No newline at end of file diff --git a/js/free/weightlifitng.d.ts b/js/free/weightlifitng.d.ts new file mode 100644 index 000000000..460dd62b1 --- /dev/null +++ b/js/free/weightlifitng.d.ts @@ -0,0 +1 @@ +export declare const weightlifitng: string[]; \ No newline at end of file diff --git a/js/free/wheelchair.d.ts b/js/free/wheelchair.d.ts new file mode 100644 index 000000000..f5adc5a05 --- /dev/null +++ b/js/free/wheelchair.d.ts @@ -0,0 +1 @@ +export declare const wheelchair: string[]; \ No newline at end of file diff --git a/js/free/wifi-signal-0.d.ts b/js/free/wifi-signal-0.d.ts new file mode 100644 index 000000000..7a29f5345 --- /dev/null +++ b/js/free/wifi-signal-0.d.ts @@ -0,0 +1 @@ +export declare const wifiSignal0: string[]; \ No newline at end of file diff --git a/js/free/wifi-signal-1.d.ts b/js/free/wifi-signal-1.d.ts new file mode 100644 index 000000000..649fcce77 --- /dev/null +++ b/js/free/wifi-signal-1.d.ts @@ -0,0 +1 @@ +export declare const wifiSignal1: string[]; \ No newline at end of file diff --git a/js/free/wifi-signal-2.d.ts b/js/free/wifi-signal-2.d.ts new file mode 100644 index 000000000..cdadfaba4 --- /dev/null +++ b/js/free/wifi-signal-2.d.ts @@ -0,0 +1 @@ +export declare const wifiSignal2: string[]; \ No newline at end of file diff --git a/js/free/wifi-signal-4.d.ts b/js/free/wifi-signal-4.d.ts new file mode 100644 index 000000000..6b66b2878 --- /dev/null +++ b/js/free/wifi-signal-4.d.ts @@ -0,0 +1 @@ +export declare const wifiSignal4: string[]; \ No newline at end of file diff --git a/js/free/wifi-signal-off.d.ts b/js/free/wifi-signal-off.d.ts new file mode 100644 index 000000000..96f6d6168 --- /dev/null +++ b/js/free/wifi-signal-off.d.ts @@ -0,0 +1 @@ +export declare const wifiSignalOff: string[]; \ No newline at end of file diff --git a/js/free/window-maximize.d.ts b/js/free/window-maximize.d.ts new file mode 100644 index 000000000..0def0a322 --- /dev/null +++ b/js/free/window-maximize.d.ts @@ -0,0 +1 @@ +export declare const windowMaximize: string[]; \ No newline at end of file diff --git a/js/free/window-minimize.d.ts b/js/free/window-minimize.d.ts new file mode 100644 index 000000000..a0bbea7f3 --- /dev/null +++ b/js/free/window-minimize.d.ts @@ -0,0 +1 @@ +export declare const windowMinimize: string[]; \ No newline at end of file diff --git a/js/free/window-restore.d.ts b/js/free/window-restore.d.ts new file mode 100644 index 000000000..f191b7f4b --- /dev/null +++ b/js/free/window-restore.d.ts @@ -0,0 +1 @@ +export declare const windowRestore: string[]; \ No newline at end of file diff --git a/js/free/window.d.ts b/js/free/window.d.ts new file mode 100644 index 000000000..f52ebb0ae --- /dev/null +++ b/js/free/window.d.ts @@ -0,0 +1 @@ +export declare const window: string[]; \ No newline at end of file diff --git a/js/free/wrap-text.d.ts b/js/free/wrap-text.d.ts new file mode 100644 index 000000000..d4fdaaf58 --- /dev/null +++ b/js/free/wrap-text.d.ts @@ -0,0 +1 @@ +export declare const wrapText: string[]; \ No newline at end of file diff --git a/js/free/x-circle.d.ts b/js/free/x-circle.d.ts new file mode 100644 index 000000000..5a874c5a3 --- /dev/null +++ b/js/free/x-circle.d.ts @@ -0,0 +1 @@ +export declare const xCircle: string[]; \ No newline at end of file diff --git a/js/free/x.d.ts b/js/free/x.d.ts new file mode 100644 index 000000000..f31600ec5 --- /dev/null +++ b/js/free/x.d.ts @@ -0,0 +1 @@ +export declare const x: string[]; \ No newline at end of file diff --git a/js/free/yen.d.ts b/js/free/yen.d.ts new file mode 100644 index 000000000..e06c24733 --- /dev/null +++ b/js/free/yen.d.ts @@ -0,0 +1 @@ +export declare const yen: string[]; \ No newline at end of file diff --git a/js/free/zoom-in.d.ts b/js/free/zoom-in.d.ts new file mode 100644 index 000000000..0ba95ed6d --- /dev/null +++ b/js/free/zoom-in.d.ts @@ -0,0 +1 @@ +export declare const zoomIn: string[]; \ No newline at end of file diff --git a/js/free/zoom-out.d.ts b/js/free/zoom-out.d.ts new file mode 100644 index 000000000..a88293196 --- /dev/null +++ b/js/free/zoom-out.d.ts @@ -0,0 +1 @@ +export declare const zoomOut: string[]; \ No newline at end of file