├── .gitignore ├── .vscode └── launch.json ├── README.md ├── SECURITY.md ├── dist ├── 9p1j8s7ccwwt_us_en-us.html ├── badge │ └── ms-store-badge.bundled.js ├── iframe.html ├── images │ ├── af dark.svg │ ├── af light.svg │ ├── am dark.svg │ ├── am light.svg │ ├── ar dark.svg │ ├── ar light.svg │ ├── as dark.svg │ ├── as light.svg │ ├── az dark.svg │ ├── az light.svg │ ├── bg dark.svg │ ├── bg light.svg │ ├── bn dark.svg │ ├── bn light.svg │ ├── bs dark.svg │ ├── bs light.svg │ ├── ca dark.svg │ ├── ca light.svg │ ├── cs dark.svg │ ├── cs light.svg │ ├── cy dark.svg │ ├── cy light.svg │ ├── da dark.svg │ ├── da light.svg │ ├── de dark.svg │ ├── de light.svg │ ├── el dark.svg │ ├── el light.svg │ ├── en-us dark.svg │ ├── en-us light.svg │ ├── es dark.svg │ ├── es light.svg │ ├── et dark.svg │ ├── et light.svg │ ├── fa dark.svg │ ├── fa light.svg │ ├── fi dark.svg │ ├── fi light.svg │ ├── fil dark.svg │ ├── fil light.svg │ ├── fr dark.svg │ ├── fr light.svg │ ├── ga dark.svg │ ├── ga light.svg │ ├── gd dark.svg │ ├── gd light.svg │ ├── gl dark.svg │ ├── gl light.svg │ ├── gu dark.svg │ ├── gu light.svg │ ├── he dark.svg │ ├── he light.svg │ ├── hi dark.svg │ ├── hi light.svg │ ├── hr dark.svg │ ├── hr light.svg │ ├── hu dark.svg │ ├── hu light.svg │ ├── hy dark.svg │ ├── hy light.svg │ ├── id dark.svg │ ├── id light.svg │ ├── is dark.svg │ ├── is light.svg │ ├── it dark.svg │ ├── it light.svg │ ├── ja dark.svg │ ├── ja light.svg │ ├── ka dark.svg │ ├── ka light.svg │ ├── kk dark.svg │ ├── kk light.svg │ ├── km dark.svg │ ├── km light.svg │ ├── kn dark.svg │ ├── kn light.svg │ ├── ko dark.svg │ ├── ko light.svg │ ├── kok dark.svg │ ├── kok light.svg │ ├── lb dark.svg │ ├── lb light.svg │ ├── lo dark.svg │ ├── lo light.svg │ ├── lt dark.svg │ ├── lt light.svg │ ├── lv dark.svg │ ├── lv light.svg │ ├── mi dark.svg │ ├── mi light.svg │ ├── mk dark.svg │ ├── mk light.svg │ ├── ml dark.svg │ ├── ml light.svg │ ├── mr dark.svg │ ├── mr light.svg │ ├── ms dark.svg │ ├── ms light.svg │ ├── mt dark.svg │ ├── mt light.svg │ ├── ne dark.svg │ ├── ne light.svg │ ├── nl dark.svg │ ├── nl light.svg │ ├── nn dark.svg │ ├── nn light.svg │ ├── or dark.svg │ ├── or light.svg │ ├── pa dark.svg │ ├── pa light.svg │ ├── pl dark.svg │ ├── pl light.svg │ ├── pt-br dark.svg │ ├── pt-br light.svg │ ├── pt-pt dark.svg │ ├── pt-pt light.svg │ ├── quz dark.svg │ ├── quz light.svg │ ├── ro dark.svg │ ├── ro light.svg │ ├── ru dark.svg │ ├── ru light.svg │ ├── sk dark.svg │ ├── sk light.svg │ ├── sl dark.svg │ ├── sl light.svg │ ├── sq dark.svg │ ├── sq light.svg │ ├── sr dark.svg │ ├── sr light.svg │ ├── sv dark.svg │ ├── sv light.svg │ ├── ta dark.svg │ ├── ta light.svg │ ├── te dark.svg │ ├── te light.svg │ ├── th dark.svg │ ├── th light.svg │ ├── tr dark.svg │ ├── tr light.svg │ ├── ug dark.svg │ ├── ug light.svg │ ├── uk dark.svg │ ├── uk light.svg │ ├── ur dark.svg │ ├── ur light.svg │ ├── uz dark.svg │ ├── uz light.svg │ ├── vi dark.svg │ ├── vi light.svg │ ├── zh-cn dark.svg │ ├── zh-cn light.svg │ ├── zh-tw dark.svg │ └── zh-tw light.svg ├── index.html ├── ms-store-badge.bundled.js └── staticwebapp.config.json ├── images └── discord-psi.png ├── package.json ├── release.yml ├── rollup.config.js ├── src ├── 9p1j8s7ccwwt_us_en-us.html ├── iframe.html ├── images │ ├── af dark.svg │ ├── af light.svg │ ├── am dark.svg │ ├── am light.svg │ ├── ar dark.svg │ ├── ar light.svg │ ├── as dark.svg │ ├── as light.svg │ ├── az dark.svg │ ├── az light.svg │ ├── bg dark.svg │ ├── bg light.svg │ ├── bn dark.svg │ ├── bn light.svg │ ├── bs dark.svg │ ├── bs light.svg │ ├── ca dark.svg │ ├── ca light.svg │ ├── cs dark.svg │ ├── cs light.svg │ ├── cy dark.svg │ ├── cy light.svg │ ├── da dark.svg │ ├── da light.svg │ ├── de dark.svg │ ├── de light.svg │ ├── el dark.svg │ ├── el light.svg │ ├── en-us dark.svg │ ├── en-us light.svg │ ├── es dark.svg │ ├── es light.svg │ ├── et dark.svg │ ├── et light.svg │ ├── fa dark.svg │ ├── fa light.svg │ ├── fi dark.svg │ ├── fi light.svg │ ├── fil dark.svg │ ├── fil light.svg │ ├── fr dark.svg │ ├── fr light.svg │ ├── ga dark.svg │ ├── ga light.svg │ ├── gd dark.svg │ ├── gd light.svg │ ├── gl dark.svg │ ├── gl light.svg │ ├── gu dark.svg │ ├── gu light.svg │ ├── he dark.svg │ ├── he light.svg │ ├── hi dark.svg │ ├── hi light.svg │ ├── hr dark.svg │ ├── hr light.svg │ ├── hu dark.svg │ ├── hu light.svg │ ├── hy dark.svg │ ├── hy light.svg │ ├── id dark.svg │ ├── id light.svg │ ├── is dark.svg │ ├── is light.svg │ ├── it dark.svg │ ├── it light.svg │ ├── ja dark.svg │ ├── ja light.svg │ ├── ka dark.svg │ ├── ka light.svg │ ├── kk dark.svg │ ├── kk light.svg │ ├── km dark.svg │ ├── km light.svg │ ├── kn dark.svg │ ├── kn light.svg │ ├── ko dark.svg │ ├── ko light.svg │ ├── kok dark.svg │ ├── kok light.svg │ ├── lb dark.svg │ ├── lb light.svg │ ├── lo dark.svg │ ├── lo light.svg │ ├── lt dark.svg │ ├── lt light.svg │ ├── lv dark.svg │ ├── lv light.svg │ ├── mi dark.svg │ ├── mi light.svg │ ├── mk dark.svg │ ├── mk light.svg │ ├── ml dark.svg │ ├── ml light.svg │ ├── mr dark.svg │ ├── mr light.svg │ ├── ms dark.svg │ ├── ms light.svg │ ├── mt dark.svg │ ├── mt light.svg │ ├── ne dark.svg │ ├── ne light.svg │ ├── nl dark.svg │ ├── nl light.svg │ ├── nn dark.svg │ ├── nn light.svg │ ├── or dark.svg │ ├── or light.svg │ ├── pa dark.svg │ ├── pa light.svg │ ├── pl dark.svg │ ├── pl light.svg │ ├── pt-br dark.svg │ ├── pt-br light.svg │ ├── pt-pt dark.svg │ ├── pt-pt light.svg │ ├── quz dark.svg │ ├── quz light.svg │ ├── ro dark.svg │ ├── ro light.svg │ ├── ru dark.svg │ ├── ru light.svg │ ├── sk dark.svg │ ├── sk light.svg │ ├── sl dark.svg │ ├── sl light.svg │ ├── sq dark.svg │ ├── sq light.svg │ ├── sr dark.svg │ ├── sr light.svg │ ├── sv dark.svg │ ├── sv light.svg │ ├── ta dark.svg │ ├── ta light.svg │ ├── te dark.svg │ ├── te light.svg │ ├── th dark.svg │ ├── th light.svg │ ├── tr dark.svg │ ├── tr light.svg │ ├── ug dark.svg │ ├── ug light.svg │ ├── uk dark.svg │ ├── uk light.svg │ ├── ur dark.svg │ ├── ur light.svg │ ├── uz dark.svg │ ├── uz light.svg │ ├── vi dark.svg │ ├── vi light.svg │ ├── zh-cn dark.svg │ ├── zh-cn light.svg │ ├── zh-tw dark.svg │ └── zh-tw light.svg ├── index.html ├── ms-store-badge.d.ts ├── ms-store-badge.ts ├── psi-service.d.ts ├── psi-service.d.ts.map ├── psi-service.js ├── psi-service.js.map ├── psi-service.ts ├── staticwebapp.config.json ├── throttle-async.d.ts ├── throttle-async.d.ts.map ├── throttle-async.js ├── throttle-async.js.map └── throttle-async.ts ├── tsconfig.json └── web-dev-server.config.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dist/9p1j8s7ccwwt_us_en-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/9p1j8s7ccwwt_us_en-us.html -------------------------------------------------------------------------------- /dist/badge/ms-store-badge.bundled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/badge/ms-store-badge.bundled.js -------------------------------------------------------------------------------- /dist/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/iframe.html -------------------------------------------------------------------------------- /dist/images/af dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/af dark.svg -------------------------------------------------------------------------------- /dist/images/af light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/af light.svg -------------------------------------------------------------------------------- /dist/images/am dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/am dark.svg -------------------------------------------------------------------------------- /dist/images/am light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/am light.svg -------------------------------------------------------------------------------- /dist/images/ar dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ar dark.svg -------------------------------------------------------------------------------- /dist/images/ar light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ar light.svg -------------------------------------------------------------------------------- /dist/images/as dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/as dark.svg -------------------------------------------------------------------------------- /dist/images/as light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/as light.svg -------------------------------------------------------------------------------- /dist/images/az dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/az dark.svg -------------------------------------------------------------------------------- /dist/images/az light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/az light.svg -------------------------------------------------------------------------------- /dist/images/bg dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bg dark.svg -------------------------------------------------------------------------------- /dist/images/bg light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bg light.svg -------------------------------------------------------------------------------- /dist/images/bn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bn dark.svg -------------------------------------------------------------------------------- /dist/images/bn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bn light.svg -------------------------------------------------------------------------------- /dist/images/bs dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bs dark.svg -------------------------------------------------------------------------------- /dist/images/bs light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/bs light.svg -------------------------------------------------------------------------------- /dist/images/ca dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ca dark.svg -------------------------------------------------------------------------------- /dist/images/ca light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ca light.svg -------------------------------------------------------------------------------- /dist/images/cs dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/cs dark.svg -------------------------------------------------------------------------------- /dist/images/cs light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/cs light.svg -------------------------------------------------------------------------------- /dist/images/cy dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/cy dark.svg -------------------------------------------------------------------------------- /dist/images/cy light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/cy light.svg -------------------------------------------------------------------------------- /dist/images/da dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/da dark.svg -------------------------------------------------------------------------------- /dist/images/da light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/da light.svg -------------------------------------------------------------------------------- /dist/images/de dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/de dark.svg -------------------------------------------------------------------------------- /dist/images/de light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/de light.svg -------------------------------------------------------------------------------- /dist/images/el dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/el dark.svg -------------------------------------------------------------------------------- /dist/images/el light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/el light.svg -------------------------------------------------------------------------------- /dist/images/en-us dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/en-us dark.svg -------------------------------------------------------------------------------- /dist/images/en-us light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/en-us light.svg -------------------------------------------------------------------------------- /dist/images/es dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/es dark.svg -------------------------------------------------------------------------------- /dist/images/es light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/es light.svg -------------------------------------------------------------------------------- /dist/images/et dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/et dark.svg -------------------------------------------------------------------------------- /dist/images/et light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/et light.svg -------------------------------------------------------------------------------- /dist/images/fa dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fa dark.svg -------------------------------------------------------------------------------- /dist/images/fa light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fa light.svg -------------------------------------------------------------------------------- /dist/images/fi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fi dark.svg -------------------------------------------------------------------------------- /dist/images/fi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fi light.svg -------------------------------------------------------------------------------- /dist/images/fil dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fil dark.svg -------------------------------------------------------------------------------- /dist/images/fil light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fil light.svg -------------------------------------------------------------------------------- /dist/images/fr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fr dark.svg -------------------------------------------------------------------------------- /dist/images/fr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/fr light.svg -------------------------------------------------------------------------------- /dist/images/ga dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ga dark.svg -------------------------------------------------------------------------------- /dist/images/ga light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ga light.svg -------------------------------------------------------------------------------- /dist/images/gd dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gd dark.svg -------------------------------------------------------------------------------- /dist/images/gd light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gd light.svg -------------------------------------------------------------------------------- /dist/images/gl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gl dark.svg -------------------------------------------------------------------------------- /dist/images/gl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gl light.svg -------------------------------------------------------------------------------- /dist/images/gu dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gu dark.svg -------------------------------------------------------------------------------- /dist/images/gu light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/gu light.svg -------------------------------------------------------------------------------- /dist/images/he dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/he dark.svg -------------------------------------------------------------------------------- /dist/images/he light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/he light.svg -------------------------------------------------------------------------------- /dist/images/hi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hi dark.svg -------------------------------------------------------------------------------- /dist/images/hi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hi light.svg -------------------------------------------------------------------------------- /dist/images/hr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hr dark.svg -------------------------------------------------------------------------------- /dist/images/hr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hr light.svg -------------------------------------------------------------------------------- /dist/images/hu dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hu dark.svg -------------------------------------------------------------------------------- /dist/images/hu light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hu light.svg -------------------------------------------------------------------------------- /dist/images/hy dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hy dark.svg -------------------------------------------------------------------------------- /dist/images/hy light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/hy light.svg -------------------------------------------------------------------------------- /dist/images/id dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/id dark.svg -------------------------------------------------------------------------------- /dist/images/id light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/id light.svg -------------------------------------------------------------------------------- /dist/images/is dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/is dark.svg -------------------------------------------------------------------------------- /dist/images/is light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/is light.svg -------------------------------------------------------------------------------- /dist/images/it dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/it dark.svg -------------------------------------------------------------------------------- /dist/images/it light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/it light.svg -------------------------------------------------------------------------------- /dist/images/ja dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ja dark.svg -------------------------------------------------------------------------------- /dist/images/ja light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ja light.svg -------------------------------------------------------------------------------- /dist/images/ka dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ka dark.svg -------------------------------------------------------------------------------- /dist/images/ka light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ka light.svg -------------------------------------------------------------------------------- /dist/images/kk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kk dark.svg -------------------------------------------------------------------------------- /dist/images/kk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kk light.svg -------------------------------------------------------------------------------- /dist/images/km dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/km dark.svg -------------------------------------------------------------------------------- /dist/images/km light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/km light.svg -------------------------------------------------------------------------------- /dist/images/kn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kn dark.svg -------------------------------------------------------------------------------- /dist/images/kn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kn light.svg -------------------------------------------------------------------------------- /dist/images/ko dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ko dark.svg -------------------------------------------------------------------------------- /dist/images/ko light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ko light.svg -------------------------------------------------------------------------------- /dist/images/kok dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kok dark.svg -------------------------------------------------------------------------------- /dist/images/kok light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/kok light.svg -------------------------------------------------------------------------------- /dist/images/lb dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lb dark.svg -------------------------------------------------------------------------------- /dist/images/lb light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lb light.svg -------------------------------------------------------------------------------- /dist/images/lo dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lo dark.svg -------------------------------------------------------------------------------- /dist/images/lo light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lo light.svg -------------------------------------------------------------------------------- /dist/images/lt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lt dark.svg -------------------------------------------------------------------------------- /dist/images/lt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lt light.svg -------------------------------------------------------------------------------- /dist/images/lv dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lv dark.svg -------------------------------------------------------------------------------- /dist/images/lv light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/lv light.svg -------------------------------------------------------------------------------- /dist/images/mi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mi dark.svg -------------------------------------------------------------------------------- /dist/images/mi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mi light.svg -------------------------------------------------------------------------------- /dist/images/mk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mk dark.svg -------------------------------------------------------------------------------- /dist/images/mk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mk light.svg -------------------------------------------------------------------------------- /dist/images/ml dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ml dark.svg -------------------------------------------------------------------------------- /dist/images/ml light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ml light.svg -------------------------------------------------------------------------------- /dist/images/mr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mr dark.svg -------------------------------------------------------------------------------- /dist/images/mr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mr light.svg -------------------------------------------------------------------------------- /dist/images/ms dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ms dark.svg -------------------------------------------------------------------------------- /dist/images/ms light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ms light.svg -------------------------------------------------------------------------------- /dist/images/mt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mt dark.svg -------------------------------------------------------------------------------- /dist/images/mt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/mt light.svg -------------------------------------------------------------------------------- /dist/images/ne dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ne dark.svg -------------------------------------------------------------------------------- /dist/images/ne light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ne light.svg -------------------------------------------------------------------------------- /dist/images/nl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/nl dark.svg -------------------------------------------------------------------------------- /dist/images/nl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/nl light.svg -------------------------------------------------------------------------------- /dist/images/nn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/nn dark.svg -------------------------------------------------------------------------------- /dist/images/nn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/nn light.svg -------------------------------------------------------------------------------- /dist/images/or dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/or dark.svg -------------------------------------------------------------------------------- /dist/images/or light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/or light.svg -------------------------------------------------------------------------------- /dist/images/pa dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pa dark.svg -------------------------------------------------------------------------------- /dist/images/pa light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pa light.svg -------------------------------------------------------------------------------- /dist/images/pl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pl dark.svg -------------------------------------------------------------------------------- /dist/images/pl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pl light.svg -------------------------------------------------------------------------------- /dist/images/pt-br dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pt-br dark.svg -------------------------------------------------------------------------------- /dist/images/pt-br light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pt-br light.svg -------------------------------------------------------------------------------- /dist/images/pt-pt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pt-pt dark.svg -------------------------------------------------------------------------------- /dist/images/pt-pt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/pt-pt light.svg -------------------------------------------------------------------------------- /dist/images/quz dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/quz dark.svg -------------------------------------------------------------------------------- /dist/images/quz light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/quz light.svg -------------------------------------------------------------------------------- /dist/images/ro dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ro dark.svg -------------------------------------------------------------------------------- /dist/images/ro light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ro light.svg -------------------------------------------------------------------------------- /dist/images/ru dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ru dark.svg -------------------------------------------------------------------------------- /dist/images/ru light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ru light.svg -------------------------------------------------------------------------------- /dist/images/sk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sk dark.svg -------------------------------------------------------------------------------- /dist/images/sk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sk light.svg -------------------------------------------------------------------------------- /dist/images/sl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sl dark.svg -------------------------------------------------------------------------------- /dist/images/sl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sl light.svg -------------------------------------------------------------------------------- /dist/images/sq dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sq dark.svg -------------------------------------------------------------------------------- /dist/images/sq light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sq light.svg -------------------------------------------------------------------------------- /dist/images/sr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sr dark.svg -------------------------------------------------------------------------------- /dist/images/sr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sr light.svg -------------------------------------------------------------------------------- /dist/images/sv dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sv dark.svg -------------------------------------------------------------------------------- /dist/images/sv light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/sv light.svg -------------------------------------------------------------------------------- /dist/images/ta dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ta dark.svg -------------------------------------------------------------------------------- /dist/images/ta light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ta light.svg -------------------------------------------------------------------------------- /dist/images/te dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/te dark.svg -------------------------------------------------------------------------------- /dist/images/te light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/te light.svg -------------------------------------------------------------------------------- /dist/images/th dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/th dark.svg -------------------------------------------------------------------------------- /dist/images/th light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/th light.svg -------------------------------------------------------------------------------- /dist/images/tr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/tr dark.svg -------------------------------------------------------------------------------- /dist/images/tr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/tr light.svg -------------------------------------------------------------------------------- /dist/images/ug dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ug dark.svg -------------------------------------------------------------------------------- /dist/images/ug light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ug light.svg -------------------------------------------------------------------------------- /dist/images/uk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/uk dark.svg -------------------------------------------------------------------------------- /dist/images/uk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/uk light.svg -------------------------------------------------------------------------------- /dist/images/ur dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ur dark.svg -------------------------------------------------------------------------------- /dist/images/ur light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/ur light.svg -------------------------------------------------------------------------------- /dist/images/uz dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/uz dark.svg -------------------------------------------------------------------------------- /dist/images/uz light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/uz light.svg -------------------------------------------------------------------------------- /dist/images/vi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/vi dark.svg -------------------------------------------------------------------------------- /dist/images/vi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/vi light.svg -------------------------------------------------------------------------------- /dist/images/zh-cn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/zh-cn dark.svg -------------------------------------------------------------------------------- /dist/images/zh-cn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/zh-cn light.svg -------------------------------------------------------------------------------- /dist/images/zh-tw dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/zh-tw dark.svg -------------------------------------------------------------------------------- /dist/images/zh-tw light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/images/zh-tw light.svg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/ms-store-badge.bundled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/ms-store-badge.bundled.js -------------------------------------------------------------------------------- /dist/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/dist/staticwebapp.config.json -------------------------------------------------------------------------------- /images/discord-psi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/images/discord-psi.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/package.json -------------------------------------------------------------------------------- /release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/release.yml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/9p1j8s7ccwwt_us_en-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/9p1j8s7ccwwt_us_en-us.html -------------------------------------------------------------------------------- /src/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/iframe.html -------------------------------------------------------------------------------- /src/images/af dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/af dark.svg -------------------------------------------------------------------------------- /src/images/af light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/af light.svg -------------------------------------------------------------------------------- /src/images/am dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/am dark.svg -------------------------------------------------------------------------------- /src/images/am light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/am light.svg -------------------------------------------------------------------------------- /src/images/ar dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ar dark.svg -------------------------------------------------------------------------------- /src/images/ar light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ar light.svg -------------------------------------------------------------------------------- /src/images/as dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/as dark.svg -------------------------------------------------------------------------------- /src/images/as light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/as light.svg -------------------------------------------------------------------------------- /src/images/az dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/az dark.svg -------------------------------------------------------------------------------- /src/images/az light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/az light.svg -------------------------------------------------------------------------------- /src/images/bg dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bg dark.svg -------------------------------------------------------------------------------- /src/images/bg light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bg light.svg -------------------------------------------------------------------------------- /src/images/bn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bn dark.svg -------------------------------------------------------------------------------- /src/images/bn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bn light.svg -------------------------------------------------------------------------------- /src/images/bs dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bs dark.svg -------------------------------------------------------------------------------- /src/images/bs light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/bs light.svg -------------------------------------------------------------------------------- /src/images/ca dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ca dark.svg -------------------------------------------------------------------------------- /src/images/ca light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ca light.svg -------------------------------------------------------------------------------- /src/images/cs dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/cs dark.svg -------------------------------------------------------------------------------- /src/images/cs light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/cs light.svg -------------------------------------------------------------------------------- /src/images/cy dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/cy dark.svg -------------------------------------------------------------------------------- /src/images/cy light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/cy light.svg -------------------------------------------------------------------------------- /src/images/da dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/da dark.svg -------------------------------------------------------------------------------- /src/images/da light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/da light.svg -------------------------------------------------------------------------------- /src/images/de dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/de dark.svg -------------------------------------------------------------------------------- /src/images/de light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/de light.svg -------------------------------------------------------------------------------- /src/images/el dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/el dark.svg -------------------------------------------------------------------------------- /src/images/el light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/el light.svg -------------------------------------------------------------------------------- /src/images/en-us dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/en-us dark.svg -------------------------------------------------------------------------------- /src/images/en-us light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/en-us light.svg -------------------------------------------------------------------------------- /src/images/es dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/es dark.svg -------------------------------------------------------------------------------- /src/images/es light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/es light.svg -------------------------------------------------------------------------------- /src/images/et dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/et dark.svg -------------------------------------------------------------------------------- /src/images/et light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/et light.svg -------------------------------------------------------------------------------- /src/images/fa dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fa dark.svg -------------------------------------------------------------------------------- /src/images/fa light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fa light.svg -------------------------------------------------------------------------------- /src/images/fi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fi dark.svg -------------------------------------------------------------------------------- /src/images/fi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fi light.svg -------------------------------------------------------------------------------- /src/images/fil dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fil dark.svg -------------------------------------------------------------------------------- /src/images/fil light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fil light.svg -------------------------------------------------------------------------------- /src/images/fr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fr dark.svg -------------------------------------------------------------------------------- /src/images/fr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/fr light.svg -------------------------------------------------------------------------------- /src/images/ga dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ga dark.svg -------------------------------------------------------------------------------- /src/images/ga light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ga light.svg -------------------------------------------------------------------------------- /src/images/gd dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gd dark.svg -------------------------------------------------------------------------------- /src/images/gd light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gd light.svg -------------------------------------------------------------------------------- /src/images/gl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gl dark.svg -------------------------------------------------------------------------------- /src/images/gl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gl light.svg -------------------------------------------------------------------------------- /src/images/gu dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gu dark.svg -------------------------------------------------------------------------------- /src/images/gu light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/gu light.svg -------------------------------------------------------------------------------- /src/images/he dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/he dark.svg -------------------------------------------------------------------------------- /src/images/he light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/he light.svg -------------------------------------------------------------------------------- /src/images/hi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hi dark.svg -------------------------------------------------------------------------------- /src/images/hi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hi light.svg -------------------------------------------------------------------------------- /src/images/hr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hr dark.svg -------------------------------------------------------------------------------- /src/images/hr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hr light.svg -------------------------------------------------------------------------------- /src/images/hu dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hu dark.svg -------------------------------------------------------------------------------- /src/images/hu light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hu light.svg -------------------------------------------------------------------------------- /src/images/hy dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hy dark.svg -------------------------------------------------------------------------------- /src/images/hy light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/hy light.svg -------------------------------------------------------------------------------- /src/images/id dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/id dark.svg -------------------------------------------------------------------------------- /src/images/id light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/id light.svg -------------------------------------------------------------------------------- /src/images/is dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/is dark.svg -------------------------------------------------------------------------------- /src/images/is light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/is light.svg -------------------------------------------------------------------------------- /src/images/it dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/it dark.svg -------------------------------------------------------------------------------- /src/images/it light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/it light.svg -------------------------------------------------------------------------------- /src/images/ja dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ja dark.svg -------------------------------------------------------------------------------- /src/images/ja light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ja light.svg -------------------------------------------------------------------------------- /src/images/ka dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ka dark.svg -------------------------------------------------------------------------------- /src/images/ka light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ka light.svg -------------------------------------------------------------------------------- /src/images/kk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kk dark.svg -------------------------------------------------------------------------------- /src/images/kk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kk light.svg -------------------------------------------------------------------------------- /src/images/km dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/km dark.svg -------------------------------------------------------------------------------- /src/images/km light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/km light.svg -------------------------------------------------------------------------------- /src/images/kn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kn dark.svg -------------------------------------------------------------------------------- /src/images/kn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kn light.svg -------------------------------------------------------------------------------- /src/images/ko dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ko dark.svg -------------------------------------------------------------------------------- /src/images/ko light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ko light.svg -------------------------------------------------------------------------------- /src/images/kok dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kok dark.svg -------------------------------------------------------------------------------- /src/images/kok light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/kok light.svg -------------------------------------------------------------------------------- /src/images/lb dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lb dark.svg -------------------------------------------------------------------------------- /src/images/lb light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lb light.svg -------------------------------------------------------------------------------- /src/images/lo dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lo dark.svg -------------------------------------------------------------------------------- /src/images/lo light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lo light.svg -------------------------------------------------------------------------------- /src/images/lt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lt dark.svg -------------------------------------------------------------------------------- /src/images/lt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lt light.svg -------------------------------------------------------------------------------- /src/images/lv dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lv dark.svg -------------------------------------------------------------------------------- /src/images/lv light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/lv light.svg -------------------------------------------------------------------------------- /src/images/mi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mi dark.svg -------------------------------------------------------------------------------- /src/images/mi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mi light.svg -------------------------------------------------------------------------------- /src/images/mk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mk dark.svg -------------------------------------------------------------------------------- /src/images/mk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mk light.svg -------------------------------------------------------------------------------- /src/images/ml dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ml dark.svg -------------------------------------------------------------------------------- /src/images/ml light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ml light.svg -------------------------------------------------------------------------------- /src/images/mr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mr dark.svg -------------------------------------------------------------------------------- /src/images/mr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mr light.svg -------------------------------------------------------------------------------- /src/images/ms dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ms dark.svg -------------------------------------------------------------------------------- /src/images/ms light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ms light.svg -------------------------------------------------------------------------------- /src/images/mt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mt dark.svg -------------------------------------------------------------------------------- /src/images/mt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/mt light.svg -------------------------------------------------------------------------------- /src/images/ne dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ne dark.svg -------------------------------------------------------------------------------- /src/images/ne light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ne light.svg -------------------------------------------------------------------------------- /src/images/nl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/nl dark.svg -------------------------------------------------------------------------------- /src/images/nl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/nl light.svg -------------------------------------------------------------------------------- /src/images/nn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/nn dark.svg -------------------------------------------------------------------------------- /src/images/nn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/nn light.svg -------------------------------------------------------------------------------- /src/images/or dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/or dark.svg -------------------------------------------------------------------------------- /src/images/or light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/or light.svg -------------------------------------------------------------------------------- /src/images/pa dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pa dark.svg -------------------------------------------------------------------------------- /src/images/pa light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pa light.svg -------------------------------------------------------------------------------- /src/images/pl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pl dark.svg -------------------------------------------------------------------------------- /src/images/pl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pl light.svg -------------------------------------------------------------------------------- /src/images/pt-br dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pt-br dark.svg -------------------------------------------------------------------------------- /src/images/pt-br light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pt-br light.svg -------------------------------------------------------------------------------- /src/images/pt-pt dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pt-pt dark.svg -------------------------------------------------------------------------------- /src/images/pt-pt light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/pt-pt light.svg -------------------------------------------------------------------------------- /src/images/quz dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/quz dark.svg -------------------------------------------------------------------------------- /src/images/quz light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/quz light.svg -------------------------------------------------------------------------------- /src/images/ro dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ro dark.svg -------------------------------------------------------------------------------- /src/images/ro light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ro light.svg -------------------------------------------------------------------------------- /src/images/ru dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ru dark.svg -------------------------------------------------------------------------------- /src/images/ru light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ru light.svg -------------------------------------------------------------------------------- /src/images/sk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sk dark.svg -------------------------------------------------------------------------------- /src/images/sk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sk light.svg -------------------------------------------------------------------------------- /src/images/sl dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sl dark.svg -------------------------------------------------------------------------------- /src/images/sl light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sl light.svg -------------------------------------------------------------------------------- /src/images/sq dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sq dark.svg -------------------------------------------------------------------------------- /src/images/sq light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sq light.svg -------------------------------------------------------------------------------- /src/images/sr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sr dark.svg -------------------------------------------------------------------------------- /src/images/sr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sr light.svg -------------------------------------------------------------------------------- /src/images/sv dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sv dark.svg -------------------------------------------------------------------------------- /src/images/sv light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/sv light.svg -------------------------------------------------------------------------------- /src/images/ta dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ta dark.svg -------------------------------------------------------------------------------- /src/images/ta light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ta light.svg -------------------------------------------------------------------------------- /src/images/te dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/te dark.svg -------------------------------------------------------------------------------- /src/images/te light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/te light.svg -------------------------------------------------------------------------------- /src/images/th dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/th dark.svg -------------------------------------------------------------------------------- /src/images/th light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/th light.svg -------------------------------------------------------------------------------- /src/images/tr dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/tr dark.svg -------------------------------------------------------------------------------- /src/images/tr light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/tr light.svg -------------------------------------------------------------------------------- /src/images/ug dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ug dark.svg -------------------------------------------------------------------------------- /src/images/ug light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ug light.svg -------------------------------------------------------------------------------- /src/images/uk dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/uk dark.svg -------------------------------------------------------------------------------- /src/images/uk light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/uk light.svg -------------------------------------------------------------------------------- /src/images/ur dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ur dark.svg -------------------------------------------------------------------------------- /src/images/ur light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/ur light.svg -------------------------------------------------------------------------------- /src/images/uz dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/uz dark.svg -------------------------------------------------------------------------------- /src/images/uz light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/uz light.svg -------------------------------------------------------------------------------- /src/images/vi dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/vi dark.svg -------------------------------------------------------------------------------- /src/images/vi light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/vi light.svg -------------------------------------------------------------------------------- /src/images/zh-cn dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/zh-cn dark.svg -------------------------------------------------------------------------------- /src/images/zh-cn light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/zh-cn light.svg -------------------------------------------------------------------------------- /src/images/zh-tw dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/zh-tw dark.svg -------------------------------------------------------------------------------- /src/images/zh-tw light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/images/zh-tw light.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/index.html -------------------------------------------------------------------------------- /src/ms-store-badge.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=ms-store-badge.d.ts.map -------------------------------------------------------------------------------- /src/ms-store-badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/ms-store-badge.ts -------------------------------------------------------------------------------- /src/psi-service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/psi-service.d.ts -------------------------------------------------------------------------------- /src/psi-service.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/psi-service.d.ts.map -------------------------------------------------------------------------------- /src/psi-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/psi-service.js -------------------------------------------------------------------------------- /src/psi-service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/psi-service.js.map -------------------------------------------------------------------------------- /src/psi-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/psi-service.ts -------------------------------------------------------------------------------- /src/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/staticwebapp.config.json -------------------------------------------------------------------------------- /src/throttle-async.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/throttle-async.d.ts -------------------------------------------------------------------------------- /src/throttle-async.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/throttle-async.d.ts.map -------------------------------------------------------------------------------- /src/throttle-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/throttle-async.js -------------------------------------------------------------------------------- /src/throttle-async.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/throttle-async.js.map -------------------------------------------------------------------------------- /src/throttle-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/src/throttle-async.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web-dev-server.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/app-store-badge/HEAD/web-dev-server.config.mjs --------------------------------------------------------------------------------