├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── release.yml │ └── scan.yml ├── .gitignore ├── .goreleaser.yaml ├── CONTRIBUTING.md ├── CONVENTIONS-OF-CODE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── build ├── build.go ├── builder │ ├── editor.go │ ├── favicon.go │ ├── guide.go │ ├── io.go │ ├── mdi.go │ ├── simple-icon.go │ ├── style.go │ └── template.go ├── docker-image-build.sh ├── docker-image-push-latest.sh └── docker-image-push.sh ├── cmd ├── cli.go ├── cli_test.go ├── cmd.go ├── cmd_test.go ├── define.go ├── env.go ├── env_test.go ├── envfile.go └── envfile_test.go ├── config ├── data │ ├── bookmark.go │ ├── bookmark_test.go │ ├── config.go │ ├── config_test.go │ ├── editor.go │ ├── editor_test.go │ ├── fs.go │ ├── fs_test.go │ ├── serializer.go │ ├── serializer_test.go │ ├── settings.go │ └── settings_test.go ├── define │ ├── cmd.go │ ├── docs.go │ ├── router.go │ ├── style.go │ └── theme.go └── model │ ├── application.go │ ├── bookmark.go │ ├── cmd.go │ ├── doc.go │ ├── route.go │ ├── theme.go │ └── weather.go ├── doc.go ├── docker ├── goreleaser │ ├── Dockerfile.amd64 │ ├── Dockerfile.arm32v6 │ ├── Dockerfile.arm32v7 │ └── Dockerfile.arm64v8 └── manual │ ├── Dockerfile.amd64 │ ├── Dockerfile.arm32v7 │ ├── Dockerfile.arm64v8 │ └── Dockerfile.base ├── embed ├── assets │ ├── css │ │ ├── base.css │ │ ├── home │ │ │ ├── apps.css │ │ │ ├── bookmarks.css │ │ │ ├── hero.css │ │ │ ├── search.css │ │ │ └── toolbar.css │ │ └── settings │ │ │ ├── layout.css │ │ │ ├── sidebar.css │ │ │ └── theme.css │ ├── favicon.ico │ ├── icons │ │ └── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ └── apple-touch-icon.png │ └── vendor │ │ ├── editor-assets │ │ ├── handsontable.full.min.css │ │ ├── handsontable.full.min.js │ │ └── zh-CN.min.js │ │ ├── guide-assets │ │ ├── app.css │ │ ├── app.js │ │ ├── intro.min.js │ │ └── introjs.min.css │ │ ├── mdi-cheat-sheets │ │ ├── css │ │ │ └── materialdesignicons.min.css │ │ ├── fonts │ │ │ └── materialdesignicons-webfont.woff2 │ │ └── index.html │ │ ├── mdi │ │ └── mdi.js │ │ └── simple-icons │ │ ├── 1001tracklists.svg │ │ ├── 1password.svg │ │ ├── 3m.svg │ │ ├── 42.svg │ │ ├── 4chan.svg │ │ ├── 4d.svg │ │ ├── 500px.svg │ │ ├── abbott.svg │ │ ├── abbrobotstudio.svg │ │ ├── abbvie.svg │ │ ├── abletonlive.svg │ │ ├── aboutdotme.svg │ │ ├── abstract.svg │ │ ├── academia.svg │ │ ├── accenture.svg │ │ ├── acclaim.svg │ │ ├── accusoft.svg │ │ ├── acer.svg │ │ ├── acm.svg │ │ ├── actigraph.svg │ │ ├── activision.svg │ │ ├── adafruit.svg │ │ ├── adblock.svg │ │ ├── adblockplus.svg │ │ ├── addthis.svg │ │ ├── adguard.svg │ │ ├── adidas.svg │ │ ├── adobe.svg │ │ ├── adobeacrobatreader.svg │ │ ├── adobeaftereffects.svg │ │ ├── adobeaudition.svg │ │ ├── adobecreativecloud.svg │ │ ├── adobedreamweaver.svg │ │ ├── adobefonts.svg │ │ ├── adobeillustrator.svg │ │ ├── adobeindesign.svg │ │ ├── adobelightroom.svg │ │ ├── adobelightroomclassic.svg │ │ ├── adobephotoshop.svg │ │ ├── adobepremierepro.svg │ │ ├── adobexd.svg │ │ ├── adonisjs.svg │ │ ├── adyen.svg │ │ ├── aerlingus.svg │ │ ├── aeroflot.svg │ │ ├── aeromexico.svg │ │ ├── aerospike.svg │ │ ├── aew.svg │ │ ├── affinity.svg │ │ ├── affinitydesigner.svg │ │ ├── affinityphoto.svg │ │ ├── affinitypublisher.svg │ │ ├── aframe.svg │ │ ├── aib.svg │ │ ├── aidungeon.svg │ │ ├── aiohttp.svg │ │ ├── aiqfome.svg │ │ ├── airasia.svg │ │ ├── airbnb.svg │ │ ├── airbus.svg │ │ ├── aircall.svg │ │ ├── aircanada.svg │ │ ├── airchina.svg │ │ ├── airfrance.svg │ │ ├── airplayaudio.svg │ │ ├── airplayvideo.svg │ │ ├── airtable.svg │ │ ├── ajv.svg │ │ ├── alacritty.svg │ │ ├── albertheijn.svg │ │ ├── aldinord.svg │ │ ├── aldisud.svg │ │ ├── alfaromeo.svg │ │ ├── alfred.svg │ │ ├── algolia.svg │ │ ├── alibabacloud.svg │ │ ├── alibabadotcom.svg │ │ ├── aliexpress.svg │ │ ├── alipay.svg │ │ ├── alitalia.svg │ │ ├── allegro.svg │ │ ├── alliedmodders.svg │ │ ├── allocine.svg │ │ ├── alltrails.svg │ │ ├── alpinedotjs.svg │ │ ├── alpinelinux.svg │ │ ├── altiumdesigner.svg │ │ ├── amazon.svg │ │ ├── amazonalexa.svg │ │ ├── amazonaws.svg │ │ ├── amazondynamodb.svg │ │ ├── amazonfiretv.svg │ │ ├── amazonlumberyard.svg │ │ ├── amazonpay.svg │ │ ├── amazonprime.svg │ │ ├── amazons3.svg │ │ ├── amd.svg │ │ ├── americanairlines.svg │ │ ├── americanexpress.svg │ │ ├── amg.svg │ │ ├── amp.svg │ │ ├── amul.svg │ │ ├── ana.svg │ │ ├── anaconda.svg │ │ ├── analogue.svg │ │ ├── anchor.svg │ │ ├── andela.svg │ │ ├── android.svg │ │ ├── androidauto.svg │ │ ├── androidstudio.svg │ │ ├── angellist.svg │ │ ├── angular.svg │ │ ├── angularjs.svg │ │ ├── angularuniversal.svg │ │ ├── anilist.svg │ │ ├── ansible.svg │ │ ├── ansys.svg │ │ ├── anta.svg │ │ ├── antdesign.svg │ │ ├── antena3.svg │ │ ├── anydesk.svg │ │ ├── aol.svg │ │ ├── apache.svg │ │ ├── apacheairflow.svg │ │ ├── apacheant.svg │ │ ├── apachecassandra.svg │ │ ├── apachecloudstack.svg │ │ ├── apachecordova.svg │ │ ├── apachecouchdb.svg │ │ ├── apachedruid.svg │ │ ├── apacheecharts.svg │ │ ├── apacheflink.svg │ │ ├── apachegroovy.svg │ │ ├── apachehadoop.svg │ │ ├── apachehive.svg │ │ ├── apachejmeter.svg │ │ ├── apachekafka.svg │ │ ├── apachekylin.svg │ │ ├── apachemaven.svg │ │ ├── apachenetbeanside.svg │ │ ├── apacheopenoffice.svg │ │ ├── apachepulsar.svg │ │ ├── apacherocketmq.svg │ │ ├── apachesolr.svg │ │ ├── apachespark.svg │ │ ├── apachetomcat.svg │ │ ├── aparat.svg │ │ ├── apollographql.svg │ │ ├── apostrophe.svg │ │ ├── appannie.svg │ │ ├── appian.svg │ │ ├── apple.svg │ │ ├── applearcade.svg │ │ ├── applemusic.svg │ │ ├── applepay.svg │ │ ├── applepodcasts.svg │ │ ├── appletv.svg │ │ ├── appsignal.svg │ │ ├── appstore.svg │ │ ├── appveyor.svg │ │ ├── appwrite.svg │ │ ├── aqua.svg │ │ ├── aral.svg │ │ ├── arangodb.svg │ │ ├── archicad.svg │ │ ├── archiveofourown.svg │ │ ├── archlinux.svg │ │ ├── ardour.svg │ │ ├── arduino.svg │ │ ├── arkecosystem.svg │ │ ├── arlo.svg │ │ ├── arm.svg │ │ ├── artifacthub.svg │ │ ├── artixlinux.svg │ │ ├── artstation.svg │ │ ├── arxiv.svg │ │ ├── asana.svg │ │ ├── asciidoctor.svg │ │ ├── asciinema.svg │ │ ├── asda.svg │ │ ├── aseprite.svg │ │ ├── askfm.svg │ │ ├── askubuntu.svg │ │ ├── assemblyscript.svg │ │ ├── astonmartin.svg │ │ ├── astro.svg │ │ ├── asus.svg │ │ ├── atandt.svg │ │ ├── atari.svg │ │ ├── atlassian.svg │ │ ├── atom.svg │ │ ├── auchan.svg │ │ ├── audacity.svg │ │ ├── audi.svg │ │ ├── audible.svg │ │ ├── audioboom.svg │ │ ├── audiomack.svg │ │ ├── audiotechnica.svg │ │ ├── aurelia.svg │ │ ├── auth0.svg │ │ ├── authy.svg │ │ ├── autodesk.svg │ │ ├── autohotkey.svg │ │ ├── automattic.svg │ │ ├── autoprefixer.svg │ │ ├── avast.svg │ │ ├── awesomelists.svg │ │ ├── awesomewm.svg │ │ ├── awsamplify.svg │ │ ├── azureartifacts.svg │ │ ├── azuredataexplorer.svg │ │ ├── azuredevops.svg │ │ ├── azurefunctions.svg │ │ ├── azurepipelines.svg │ │ ├── babel.svg │ │ ├── backbonedotjs.svg │ │ ├── badgr.svg │ │ ├── badoo.svg │ │ ├── baidu.svg │ │ ├── bamboo.svg │ │ ├── bandcamp.svg │ │ ├── bandlab.svg │ │ ├── bandrautomation.svg │ │ ├── bandsintown.svg │ │ ├── bankofamerica.svg │ │ ├── barclays.svg │ │ ├── baremetrics.svg │ │ ├── basecamp.svg │ │ ├── bata.svg │ │ ├── bathasu.svg │ │ ├── battledotnet.svg │ │ ├── bbc.svg │ │ ├── bbciplayer.svg │ │ ├── beatport.svg │ │ ├── beats.svg │ │ ├── beatsbydre.svg │ │ ├── behance.svg │ │ ├── beijingsubway.svg │ │ ├── bem.svg │ │ ├── bentley.svg │ │ ├── betfair.svg │ │ ├── bigbasket.svg │ │ ├── bigbluebutton.svg │ │ ├── bigcartel.svg │ │ ├── bigcommerce.svg │ │ ├── bilibili.svg │ │ ├── binance.svg │ │ ├── biolink.svg │ │ ├── bit.svg │ │ ├── bitbucket.svg │ │ ├── bitcoin.svg │ │ ├── bitcoincash.svg │ │ ├── bitcoinsv.svg │ │ ├── bitdefender.svg │ │ ├── bitly.svg │ │ ├── bitrise.svg │ │ ├── bitwarden.svg │ │ ├── bitwig.svg │ │ ├── blackberry.svg │ │ ├── blazemeter.svg │ │ ├── blazor.svg │ │ ├── blender.svg │ │ ├── blockchaindotcom.svg │ │ ├── blogger.svg │ │ ├── bloglovin.svg │ │ ├── blueprint.svg │ │ ├── bluetooth.svg │ │ ├── bmcsoftware.svg │ │ ├── bmw.svg │ │ ├── boehringeringelheim.svg │ │ ├── boeing.svg │ │ ├── bookbub.svg │ │ ├── bookmeter.svg │ │ ├── bookstack.svg │ │ ├── boost.svg │ │ ├── boots.svg │ │ ├── bootstrap.svg │ │ ├── bosch.svg │ │ ├── bose.svg │ │ ├── boulanger.svg │ │ ├── bower.svg │ │ ├── box.svg │ │ ├── brandfolder.svg │ │ ├── brave.svg │ │ ├── breaker.svg │ │ ├── britishairways.svg │ │ ├── broadcom.svg │ │ ├── bt.svg │ │ ├── buddy.svg │ │ ├── buefy.svg │ │ ├── buffer.svg │ │ ├── bugatti.svg │ │ ├── bugcrowd.svg │ │ ├── bugsnag.svg │ │ ├── buildkite.svg │ │ ├── bukalapak.svg │ │ ├── bulma.svg │ │ ├── bunq.svg │ │ ├── burgerking.svg │ │ ├── buymeacoffee.svg │ │ ├── buzzfeed.svg │ │ ├── byjus.svg │ │ ├── byte.svg │ │ ├── bytedance.svg │ │ ├── c.svg │ │ ├── cachet.svg │ │ ├── caffeine.svg │ │ ├── cairometro.svg │ │ ├── cakephp.svg │ │ ├── campaignmonitor.svg │ │ ├── canonical.svg │ │ ├── canva.svg │ │ ├── capacitor.svg │ │ ├── carrefour.svg │ │ ├── carthrottle.svg │ │ ├── carto.svg │ │ ├── cashapp.svg │ │ ├── castbox.svg │ │ ├── castorama.svg │ │ ├── castro.svg │ │ ├── caterpillar.svg │ │ ├── cbs.svg │ │ ├── cdprojekt.svg │ │ ├── celery.svg │ │ ├── centos.svg │ │ ├── ceph.svg │ │ ├── cesium.svg │ │ ├── chai.svg │ │ ├── chainlink.svg │ │ ├── chakraui.svg │ │ ├── chartdotjs.svg │ │ ├── chartmogul.svg │ │ ├── chase.svg │ │ ├── chatbot.svg │ │ ├── checkio.svg │ │ ├── checkmarx.svg │ │ ├── chef.svg │ │ ├── chevrolet.svg │ │ ├── chinaeasternairlines.svg │ │ ├── chinasouthernairlines.svg │ │ ├── chocolatey.svg │ │ ├── chromecast.svg │ │ ├── chrysler.svg │ │ ├── chupachups.svg │ │ ├── cinema4d.svg │ │ ├── circle.svg │ │ ├── circleci.svg │ │ ├── cirrusci.svg │ │ ├── cisco.svg │ │ ├── citrix.svg │ │ ├── citroen.svg │ │ ├── civicrm.svg │ │ ├── civo.svg │ │ ├── ckeditor4.svg │ │ ├── claris.svg │ │ ├── clickup.svg │ │ ├── clion.svg │ │ ├── cliqz.svg │ │ ├── clockify.svg │ │ ├── clojure.svg │ │ ├── cloud66.svg │ │ ├── cloudbees.svg │ │ ├── cloudcannon.svg │ │ ├── cloudera.svg │ │ ├── cloudflare.svg │ │ ├── cloudfoundry.svg │ │ ├── cloudsmith.svg │ │ ├── cloudways.svg │ │ ├── clubhouse.svg │ │ ├── clyp.svg │ │ ├── cmake.svg │ │ ├── cncf.svg │ │ ├── cnn.svg │ │ ├── cockpit.svg │ │ ├── cockroachlabs.svg │ │ ├── cocoapods.svg │ │ ├── cocos.svg │ │ ├── coda.svg │ │ ├── codacy.svg │ │ ├── codeberg.svg │ │ ├── codecademy.svg │ │ ├── codeceptjs.svg │ │ ├── codechef.svg │ │ ├── codeclimate.svg │ │ ├── codecov.svg │ │ ├── codefactor.svg │ │ ├── codeforces.svg │ │ ├── codeigniter.svg │ │ ├── codemagic.svg │ │ ├── codemirror.svg │ │ ├── codenewbie.svg │ │ ├── codepen.svg │ │ ├── codeproject.svg │ │ ├── codereview.svg │ │ ├── codersrank.svg │ │ ├── coderwall.svg │ │ ├── codesandbox.svg │ │ ├── codeship.svg │ │ ├── codewars.svg │ │ ├── codingame.svg │ │ ├── codingninjas.svg │ │ ├── codio.svg │ │ ├── coffeescript.svg │ │ ├── cognizant.svg │ │ ├── coil.svg │ │ ├── coinbase.svg │ │ ├── commerzbank.svg │ │ ├── commonworkflowlanguage.svg │ │ ├── composer.svg │ │ ├── comsol.svg │ │ ├── conan.svg │ │ ├── concourse.svg │ │ ├── condaforge.svg │ │ ├── conekta.svg │ │ ├── confluence.svg │ │ ├── construct3.svg │ │ ├── consul.svg │ │ ├── contactlesspayment.svg │ │ ├── containerd.svg │ │ ├── contentful.svg │ │ ├── convertio.svg │ │ ├── cookiecutter.svg │ │ ├── coop.svg │ │ ├── cora.svg │ │ ├── coronaengine.svg │ │ ├── coronarenderer.svg │ │ ├── corsair.svg │ │ ├── couchbase.svg │ │ ├── counterstrike.svg │ │ ├── countingworkspro.svg │ │ ├── coursera.svg │ │ ├── coveralls.svg │ │ ├── cpanel.svg │ │ ├── cplusplus.svg │ │ ├── craftcms.svg │ │ ├── createreactapp.svg │ │ ├── creativecommons.svg │ │ ├── credly.svg │ │ ├── crehana.svg │ │ ├── crowdin.svg │ │ ├── crowdsource.svg │ │ ├── crunchbase.svg │ │ ├── crunchyroll.svg │ │ ├── cryengine.svg │ │ ├── crystal.svg │ │ ├── csharp.svg │ │ ├── css3.svg │ │ ├── csswizardry.svg │ │ ├── cucumber.svg │ │ ├── curl.svg │ │ ├── curseforge.svg │ │ ├── cycling74.svg │ │ ├── cypress.svg │ │ ├── cytoscapedotjs.svg │ │ ├── d3dotjs.svg │ │ ├── dacia.svg │ │ ├── daf.svg │ │ ├── dailymotion.svg │ │ ├── daimler.svg │ │ ├── darkreader.svg │ │ ├── dart.svg │ │ ├── darty.svg │ │ ├── daserste.svg │ │ ├── dash.svg │ │ ├── dashlane.svg │ │ ├── dassaultsystemes.svg │ │ ├── databricks.svg │ │ ├── datacamp.svg │ │ ├── datadog.svg │ │ ├── datadotai.svg │ │ ├── datagrip.svg │ │ ├── dataiku.svg │ │ ├── datastax.svg │ │ ├── dataversioncontrol.svg │ │ ├── datocms.svg │ │ ├── datto.svg │ │ ├── dazn.svg │ │ ├── dblp.svg │ │ ├── dbt.svg │ │ ├── dcentertainment.svg │ │ ├── debian.svg │ │ ├── dedge.svg │ │ ├── deepin.svg │ │ ├── deepnote.svg │ │ ├── deezer.svg │ │ ├── delicious.svg │ │ ├── deliveroo.svg │ │ ├── dell.svg │ │ ├── delonghi.svg │ │ ├── delphi.svg │ │ ├── delta.svg │ │ ├── deno.svg │ │ ├── dependabot.svg │ │ ├── derspiegel.svg │ │ ├── designernews.svg │ │ ├── deutschebahn.svg │ │ ├── deutschebank.svg │ │ ├── devdotto.svg │ │ ├── devexpress.svg │ │ ├── deviantart.svg │ │ ├── devpost.svg │ │ ├── devrant.svg │ │ ├── dgraph.svg │ │ ├── dhl.svg │ │ ├── diagramsdotnet.svg │ │ ├── dialogflow.svg │ │ ├── diaspora.svg │ │ ├── digg.svg │ │ ├── digikeyelectronics.svg │ │ ├── digitalocean.svg │ │ ├── dior.svg │ │ ├── directus.svg │ │ ├── discogs.svg │ │ ├── discord.svg │ │ ├── discourse.svg │ │ ├── discover.svg │ │ ├── disqus.svg │ │ ├── disroot.svg │ │ ├── django.svg │ │ ├── dlib.svg │ │ ├── dlna.svg │ │ ├── dm.svg │ │ ├── docker.svg │ │ ├── docusign.svg │ │ ├── dogecoin.svg │ │ ├── dolby.svg │ │ ├── doordash.svg │ │ ├── dotnet.svg │ │ ├── douban.svg │ │ ├── doubanread.svg │ │ ├── dpd.svg │ │ ├── draugiemdotlv.svg │ │ ├── dribbble.svg │ │ ├── drone.svg │ │ ├── drooble.svg │ │ ├── dropbox.svg │ │ ├── drupal.svg │ │ ├── dsautomobiles.svg │ │ ├── dtube.svg │ │ ├── duckduckgo.svg │ │ ├── dungeonsanddragons.svg │ │ ├── dunked.svg │ │ ├── duolingo.svg │ │ ├── dwavesystems.svg │ │ ├── dwm.svg │ │ ├── dynamics365.svg │ │ ├── dynatrace.svg │ │ ├── e.svg │ │ ├── ea.svg │ │ ├── eagle.svg │ │ ├── easyjet.svg │ │ ├── ebay.svg │ │ ├── eclipseche.svg │ │ ├── eclipseide.svg │ │ ├── eclipsejetty.svg │ │ ├── eclipsemosquitto.svg │ │ ├── eclipsevertdotx.svg │ │ ├── edeka.svg │ │ ├── editorconfig.svg │ │ ├── edotleclerc.svg │ │ ├── edx.svg │ │ ├── egghead.svg │ │ ├── egnyte.svg │ │ ├── eightsleep.svg │ │ ├── elastic.svg │ │ ├── elasticcloud.svg │ │ ├── elasticsearch.svg │ │ ├── elasticstack.svg │ │ ├── electron.svg │ │ ├── element.svg │ │ ├── elementary.svg │ │ ├── eleventy.svg │ │ ├── elixir.svg │ │ ├── eljueves.svg │ │ ├── ello.svg │ │ ├── elm.svg │ │ ├── elsevier.svg │ │ ├── embarcadero.svg │ │ ├── emberdotjs.svg │ │ ├── emby.svg │ │ ├── emirates.svg │ │ ├── emlakjet.svg │ │ ├── empirekred.svg │ │ ├── enpass.svg │ │ ├── envato.svg │ │ ├── epel.svg │ │ ├── epicgames.svg │ │ ├── epson.svg │ │ ├── equinixmetal.svg │ │ ├── erlang.svg │ │ ├── esbuild.svg │ │ ├── esea.svg │ │ ├── eslgaming.svg │ │ ├── eslint.svg │ │ ├── esphome.svg │ │ ├── espressif.svg │ │ ├── etcd.svg │ │ ├── ethereum.svg │ │ ├── ethiopianairlines.svg │ │ ├── etihadairways.svg │ │ ├── etsy.svg │ │ ├── eventbrite.svg │ │ ├── eventstore.svg │ │ ├── evernote.svg │ │ ├── exercism.svg │ │ ├── exordo.svg │ │ ├── exoscale.svg │ │ ├── expensify.svg │ │ ├── expertsexchange.svg │ │ ├── expo.svg │ │ ├── express.svg │ │ ├── expressvpn.svg │ │ ├── eyeem.svg │ │ ├── facebook.svg │ │ ├── facebookgaming.svg │ │ ├── facebooklive.svg │ │ ├── faceit.svg │ │ ├── facepunch.svg │ │ ├── falcon.svg │ │ ├── fampay.svg │ │ ├── fandango.svg │ │ ├── fandom.svg │ │ ├── farfetch.svg │ │ ├── fastapi.svg │ │ ├── fastify.svg │ │ ├── fastlane.svg │ │ ├── fastly.svg │ │ ├── fathom.svg │ │ ├── favro.svg │ │ ├── fdroid.svg │ │ ├── feathub.svg │ │ ├── fedex.svg │ │ ├── fedora.svg │ │ ├── feedly.svg │ │ ├── ferrari.svg │ │ ├── ferrarinv.svg │ │ ├── ffmpeg.svg │ │ ├── fiat.svg │ │ ├── fidoalliance.svg │ │ ├── fifa.svg │ │ ├── figma.svg │ │ ├── figshare.svg │ │ ├── fila.svg │ │ ├── files.svg │ │ ├── filezilla.svg │ │ ├── fing.svg │ │ ├── firebase.svg │ │ ├── firefox.svg │ │ ├── firefoxbrowser.svg │ │ ├── first.svg │ │ ├── fitbit.svg │ │ ├── fite.svg │ │ ├── fivem.svg │ │ ├── fiverr.svg │ │ ├── flask.svg │ │ ├── flat.svg │ │ ├── flathub.svg │ │ ├── flattr.svg │ │ ├── flickr.svg │ │ ├── flipboard.svg │ │ ├── flipkart.svg │ │ ├── floatplane.svg │ │ ├── flood.svg │ │ ├── fluentbit.svg │ │ ├── fluentd.svg │ │ ├── flutter.svg │ │ ├── flyway.svg │ │ ├── fmod.svg │ │ ├── fnac.svg │ │ ├── folium.svg │ │ ├── fonoma.svg │ │ ├── fontawesome.svg │ │ ├── fontbase.svg │ │ ├── foodpanda.svg │ │ ├── ford.svg │ │ ├── forestry.svg │ │ ├── formstack.svg │ │ ├── fortinet.svg │ │ ├── fortran.svg │ │ ├── fossa.svg │ │ ├── fossilscm.svg │ │ ├── foursquare.svg │ │ ├── foursquarecityguide.svg │ │ ├── foxtel.svg │ │ ├── fozzy.svg │ │ ├── framer.svg │ │ ├── framework7.svg │ │ ├── franprix.svg │ │ ├── fraunhofergesellschaft.svg │ │ ├── freebsd.svg │ │ ├── freecodecamp.svg │ │ ├── freedesktopdotorg.svg │ │ ├── freelancer.svg │ │ ├── freenas.svg │ │ ├── frontendmentor.svg │ │ ├── fsecure.svg │ │ ├── fujifilm.svg │ │ ├── fujitsu.svg │ │ ├── funimation.svg │ │ ├── furaffinity.svg │ │ ├── furrynetwork.svg │ │ ├── futurelearn.svg │ │ ├── g2.svg │ │ ├── g2a.svg │ │ ├── gameandwatch.svg │ │ ├── gamejolt.svg │ │ ├── garmin.svg │ │ ├── gatling.svg │ │ ├── gatsby.svg │ │ ├── geant.svg │ │ ├── geeksforgeeks.svg │ │ ├── generalelectric.svg │ │ ├── generalmotors.svg │ │ ├── genius.svg │ │ ├── gentoo.svg │ │ ├── geocaching.svg │ │ ├── gerrit.svg │ │ ├── ghost.svg │ │ ├── ghostery.svg │ │ ├── gimp.svg │ │ ├── giphy.svg │ │ ├── git.svg │ │ ├── gitbook.svg │ │ ├── gitea.svg │ │ ├── gitee.svg │ │ ├── gitextensions.svg │ │ ├── github.svg │ │ ├── githubactions.svg │ │ ├── githubpages.svg │ │ ├── githubsponsors.svg │ │ ├── gitignoredotio.svg │ │ ├── gitkraken.svg │ │ ├── gitlab.svg │ │ ├── gitlfs.svg │ │ ├── gitpod.svg │ │ ├── gitter.svg │ │ ├── glassdoor.svg │ │ ├── glitch.svg │ │ ├── globus.svg │ │ ├── gmail.svg │ │ ├── gnome.svg │ │ ├── gnu.svg │ │ ├── gnubash.svg │ │ ├── gnuemacs.svg │ │ ├── gnuicecat.svg │ │ ├── gnuprivacyguard.svg │ │ ├── gnusocial.svg │ │ ├── go.svg │ │ ├── gocd.svg │ │ ├── godaddy.svg │ │ ├── godotengine.svg │ │ ├── gofundme.svg │ │ ├── gogdotcom.svg │ │ ├── goland.svg │ │ ├── goldenline.svg │ │ ├── goodreads.svg │ │ ├── google.svg │ │ ├── googleads.svg │ │ ├── googleadsense.svg │ │ ├── googleanalytics.svg │ │ ├── googleassistant.svg │ │ ├── googlecalendar.svg │ │ ├── googlecardboard.svg │ │ ├── googlechat.svg │ │ ├── googlechrome.svg │ │ ├── googleclassroom.svg │ │ ├── googlecloud.svg │ │ ├── googlecolab.svg │ │ ├── googledomains.svg │ │ ├── googledrive.svg │ │ ├── googleearth.svg │ │ ├── googlefit.svg │ │ ├── googlefonts.svg │ │ ├── googlehangouts.svg │ │ ├── googlekeep.svg │ │ ├── googlelens.svg │ │ ├── googlemaps.svg │ │ ├── googlemarketingplatform.svg │ │ ├── googlemeet.svg │ │ ├── googlemessages.svg │ │ ├── googlemybusiness.svg │ │ ├── googlenearby.svg │ │ ├── googlenews.svg │ │ ├── googleoptimize.svg │ │ ├── googlepay.svg │ │ ├── googlephotos.svg │ │ ├── googleplay.svg │ │ ├── googlepodcasts.svg │ │ ├── googlescholar.svg │ │ ├── googlesearchconsole.svg │ │ ├── googlesheets.svg │ │ ├── googlestreetview.svg │ │ ├── googletagmanager.svg │ │ ├── googletranslate.svg │ │ ├── gotomeeting.svg │ │ ├── grab.svg │ │ ├── gradle.svg │ │ ├── grafana.svg │ │ ├── grammarly.svg │ │ ├── graphql.svg │ │ ├── grav.svg │ │ ├── gravatar.svg │ │ ├── graylog.svg │ │ ├── greensock.svg │ │ ├── griddotai.svg │ │ ├── gridsome.svg │ │ ├── groupme.svg │ │ ├── groupon.svg │ │ ├── grubhub.svg │ │ ├── grunt.svg │ │ ├── guangzhoumetro.svg │ │ ├── guilded.svg │ │ ├── gulp.svg │ │ ├── gumroad.svg │ │ ├── gumtree.svg │ │ ├── gunicorn.svg │ │ ├── gutenberg.svg │ │ ├── habr.svg │ │ ├── hackaday.svg │ │ ├── hackclub.svg │ │ ├── hackerearth.svg │ │ ├── hackernoon.svg │ │ ├── hackerone.svg │ │ ├── hackerrank.svg │ │ ├── hackster.svg │ │ ├── hackthebox.svg │ │ ├── handlebarsdotjs.svg │ │ ├── handshake.svg │ │ ├── handshake_protocol.svg │ │ ├── happycow.svg │ │ ├── harbor.svg │ │ ├── hashnode.svg │ │ ├── haskell.svg │ │ ├── hasura.svg │ │ ├── hatenabookmark.svg │ │ ├── haveibeenpwned.svg │ │ ├── haxe.svg │ │ ├── hbo.svg │ │ ├── hcl.svg │ │ ├── headspace.svg │ │ ├── hellofresh.svg │ │ ├── hellyhansen.svg │ │ ├── helm.svg │ │ ├── helpdesk.svg │ │ ├── helpscout.svg │ │ ├── here.svg │ │ ├── heroku.svg │ │ ├── hetzner.svg │ │ ├── hexo.svg │ │ ├── hey.svg │ │ ├── hibernate.svg │ │ ├── hilton.svg │ │ ├── hitachi.svg │ │ ├── hive.svg │ │ ├── hive_blockchain.svg │ │ ├── homeadvisor.svg │ │ ├── homeassistant.svg │ │ ├── homeassistantcommunitystore.svg │ │ ├── homebrew.svg │ │ ├── homebridge.svg │ │ ├── homify.svg │ │ ├── honda.svg │ │ ├── hootsuite.svg │ │ ├── hoppscotch.svg │ │ ├── hotelsdotcom.svg │ │ ├── hotjar.svg │ │ ├── houdini.svg │ │ ├── houzz.svg │ │ ├── hp.svg │ │ ├── html5.svg │ │ ├── htmlacademy.svg │ │ ├── huawei.svg │ │ ├── hubspot.svg │ │ ├── hugo.svg │ │ ├── hulu.svg │ │ ├── humblebundle.svg │ │ ├── hungryjacks.svg │ │ ├── hurriyetemlak.svg │ │ ├── husqvarna.svg │ │ ├── hyper.svg │ │ ├── hyperledger.svg │ │ ├── hypothesis.svg │ │ ├── hyundai.svg │ │ ├── i18next.svg │ │ ├── iata.svg │ │ ├── ibeacon.svg │ │ ├── ibm.svg │ │ ├── ibmcloud.svg │ │ ├── ibmwatson.svg │ │ ├── iceland.svg │ │ ├── icinga.svg │ │ ├── icloud.svg │ │ ├── icomoon.svg │ │ ├── icon.svg │ │ ├── iconfinder.svg │ │ ├── iconify.svg │ │ ├── iconjar.svg │ │ ├── icons8.svg │ │ ├── icq.svg │ │ ├── ieee.svg │ │ ├── ifixit.svg │ │ ├── ifood.svg │ │ ├── ifttt.svg │ │ ├── iheartradio.svg │ │ ├── ikea.svg │ │ ├── imagej.svg │ │ ├── imdb.svg │ │ ├── imgur.svg │ │ ├── immer.svg │ │ ├── imou.svg │ │ ├── indeed.svg │ │ ├── infiniti.svg │ │ ├── influxdb.svg │ │ ├── informatica.svg │ │ ├── infosys.svg │ │ ├── ingress.svg │ │ ├── inkscape.svg │ │ ├── insomnia.svg │ │ ├── instacart.svg │ │ ├── instagram.svg │ │ ├── instapaper.svg │ │ ├── instatus.svg │ │ ├── instructables.svg │ │ ├── integromat.svg │ │ ├── intel.svg │ │ ├── intellijidea.svg │ │ ├── interactjs.svg │ │ ├── intercom.svg │ │ ├── intermarche.svg │ │ ├── internetarchive.svg │ │ ├── internetexplorer.svg │ │ ├── intigriti.svg │ │ ├── invision.svg │ │ ├── invoiceninja.svg │ │ ├── iobroker.svg │ │ ├── ionic.svg │ │ ├── ios.svg │ │ ├── iota.svg │ │ ├── ipfs.svg │ │ ├── issuu.svg │ │ ├── istio.svg │ │ ├── itchdotio.svg │ │ ├── iterm2.svg │ │ ├── itunes.svg │ │ ├── iveco.svg │ │ ├── jabber.svg │ │ ├── jaguar.svg │ │ ├── jamboard.svg │ │ ├── jameson.svg │ │ ├── jamstack.svg │ │ ├── jasmine.svg │ │ ├── java.svg │ │ ├── javascript.svg │ │ ├── jbl.svg │ │ ├── jcb.svg │ │ ├── jeep.svg │ │ ├── jekyll.svg │ │ ├── jellyfin.svg │ │ ├── jenkins.svg │ │ ├── jenkinsx.svg │ │ ├── jest.svg │ │ ├── jet.svg │ │ ├── jetbrains.svg │ │ ├── jetpackcompose.svg │ │ ├── jfrog.svg │ │ ├── jfrogbintray.svg │ │ ├── jinja.svg │ │ ├── jira.svg │ │ ├── jirasoftware.svg │ │ ├── jitsi.svg │ │ ├── johndeere.svg │ │ ├── joomla.svg │ │ ├── joplin.svg │ │ ├── jordan.svg │ │ ├── jpeg.svg │ │ ├── jquery.svg │ │ ├── jrgroup.svg │ │ ├── jsdelivr.svg │ │ ├── jsfiddle.svg │ │ ├── json.svg │ │ ├── jsonwebtokens.svg │ │ ├── jss.svg │ │ ├── julia.svg │ │ ├── junipernetworks.svg │ │ ├── junit5.svg │ │ ├── jupyter.svg │ │ ├── justeat.svg │ │ ├── justgiving.svg │ │ ├── kaggle.svg │ │ ├── kahoot.svg │ │ ├── kaios.svg │ │ ├── kakao.svg │ │ ├── kakaotalk.svg │ │ ├── kalilinux.svg │ │ ├── karlsruherverkehrsverbund.svg │ │ ├── kasasmart.svg │ │ ├── kashflow.svg │ │ ├── kaspersky.svg │ │ ├── katacoda.svg │ │ ├── katana.svg │ │ ├── kaufland.svg │ │ ├── kde.svg │ │ ├── kdenlive.svg │ │ ├── keepassxc.svg │ │ ├── kentico.svg │ │ ├── keras.svg │ │ ├── keybase.svg │ │ ├── keycdn.svg │ │ ├── kfc.svg │ │ ├── khanacademy.svg │ │ ├── khronosgroup.svg │ │ ├── kia.svg │ │ ├── kibana.svg │ │ ├── kickstarter.svg │ │ ├── kik.svg │ │ ├── kingstontechnology.svg │ │ ├── kinopoisk.svg │ │ ├── kirby.svg │ │ ├── kitsu.svg │ │ ├── klarna.svg │ │ ├── klm.svg │ │ ├── klook.svg │ │ ├── knowledgebase.svg │ │ ├── known.svg │ │ ├── koa.svg │ │ ├── koc.svg │ │ ├── kodi.svg │ │ ├── kofax.svg │ │ ├── kofi.svg │ │ ├── komoot.svg │ │ ├── konami.svg │ │ ├── kongregate.svg │ │ ├── konva.svg │ │ ├── kotlin.svg │ │ ├── krita.svg │ │ ├── ktm.svg │ │ ├── kuaishou.svg │ │ ├── kubernetes.svg │ │ ├── kubuntu.svg │ │ ├── kuma.svg │ │ ├── kyocera.svg │ │ ├── labview.svg │ │ ├── lada.svg │ │ ├── lamborghini.svg │ │ ├── landrover.svg │ │ ├── laragon.svg │ │ ├── laravel.svg │ │ ├── laravelhorizon.svg │ │ ├── laravelnova.svg │ │ ├── lastdotfm.svg │ │ ├── lastpass.svg │ │ ├── latex.svg │ │ ├── launchpad.svg │ │ ├── lbry.svg │ │ ├── leaderprice.svg │ │ ├── leaflet.svg │ │ ├── leanpub.svg │ │ ├── leetcode.svg │ │ ├── lemmy.svg │ │ ├── lenovo.svg │ │ ├── lerna.svg │ │ ├── leroymerlin.svg │ │ ├── less.svg │ │ ├── letsencrypt.svg │ │ ├── letterboxd.svg │ │ ├── lg.svg │ │ ├── lgtm.svg │ │ ├── liberapay.svg │ │ ├── librariesdotio.svg │ │ ├── librarything.svg │ │ ├── libreoffice.svg │ │ ├── libuv.svg │ │ ├── lichess.svg │ │ ├── lidl.svg │ │ ├── lifx.svg │ │ ├── lighthouse.svg │ │ ├── line.svg │ │ ├── lineageos.svg │ │ ├── linkedin.svg │ │ ├── linkfire.svg │ │ ├── linktree.svg │ │ ├── linode.svg │ │ ├── linux.svg │ │ ├── linuxcontainers.svg │ │ ├── linuxfoundation.svg │ │ ├── linuxmint.svg │ │ ├── lionair.svg │ │ ├── lit.svg │ │ ├── litecoin.svg │ │ ├── livechat.svg │ │ ├── livejournal.svg │ │ ├── livewire.svg │ │ ├── llvm.svg │ │ ├── lmms.svg │ │ ├── lodash.svg │ │ ├── logitech.svg │ │ ├── logmein.svg │ │ ├── logstash.svg │ │ ├── looker.svg │ │ ├── loom.svg │ │ ├── loop.svg │ │ ├── lospec.svg │ │ ├── lotpolishairlines.svg │ │ ├── lua.svg │ │ ├── lubuntu.svg │ │ ├── lufthansa.svg │ │ ├── lumen.svg │ │ ├── lunacy.svg │ │ ├── lydia.svg │ │ ├── lyft.svg │ │ ├── maas.svg │ │ ├── macos.svg │ │ ├── macys.svg │ │ ├── magasinsu.svg │ │ ├── magento.svg │ │ ├── magisk.svg │ │ ├── mailchimp.svg │ │ ├── maildotru.svg │ │ ├── majorleaguehacking.svg │ │ ├── makerbot.svg │ │ ├── mamp.svg │ │ ├── man.svg │ │ ├── manageiq.svg │ │ ├── manjaro.svg │ │ ├── mapbox.svg │ │ ├── mariadb.svg │ │ ├── mariadbfoundation.svg │ │ ├── markdown.svg │ │ ├── marketo.svg │ │ ├── marriott.svg │ │ ├── maserati.svg │ │ ├── mastercard.svg │ │ ├── mastercomfig.svg │ │ ├── mastodon.svg │ │ ├── materialdesign.svg │ │ ├── materialdesignicons.svg │ │ ├── matomo.svg │ │ ├── matrix.svg │ │ ├── mattermost.svg │ │ ├── matternet.svg │ │ ├── max.svg │ │ ├── maxplanckgesellschaft.svg │ │ ├── maytag.svg │ │ ├── mazda.svg │ │ ├── mcafee.svg │ │ ├── mcdonalds.svg │ │ ├── mclaren.svg │ │ ├── mdnwebdocs.svg │ │ ├── mediafire.svg │ │ ├── mediamarkt.svg │ │ ├── mediatek.svg │ │ ├── mediatemple.svg │ │ ├── medium.svg │ │ ├── meetup.svg │ │ ├── mega.svg │ │ ├── mendeley.svg │ │ ├── mercedes.svg │ │ ├── merck.svg │ │ ├── mercurial.svg │ │ ├── messenger.svg │ │ ├── metabase.svg │ │ ├── metafilter.svg │ │ ├── meteor.svg │ │ ├── metro.svg │ │ ├── metrodelaciudaddemexico.svg │ │ ├── metrodemadrid.svg │ │ ├── metrodeparis.svg │ │ ├── mewe.svg │ │ ├── microbit.svg │ │ ├── microdotblog.svg │ │ ├── microgenetics.svg │ │ ├── micropython.svg │ │ ├── microsoft.svg │ │ ├── microsoftacademic.svg │ │ ├── microsoftaccess.svg │ │ ├── microsoftazure.svg │ │ ├── microsoftbing.svg │ │ ├── microsoftedge.svg │ │ ├── microsoftexcel.svg │ │ ├── microsoftexchange.svg │ │ ├── microsoftoffice.svg │ │ ├── microsoftonedrive.svg │ │ ├── microsoftonenote.svg │ │ ├── microsoftoutlook.svg │ │ ├── microsoftpowerpoint.svg │ │ ├── microsoftsharepoint.svg │ │ ├── microsoftsqlserver.svg │ │ ├── microsoftteams.svg │ │ ├── microsofttranslator.svg │ │ ├── microsoftvisio.svg │ │ ├── microsoftword.svg │ │ ├── microstrategy.svg │ │ ├── midi.svg │ │ ├── minds.svg │ │ ├── minecraft.svg │ │ ├── minetest.svg │ │ ├── mini.svg │ │ ├── minutemailer.svg │ │ ├── miro.svg │ │ ├── mitsubishi.svg │ │ ├── mix.svg │ │ ├── mixcloud.svg │ │ ├── mlb.svg │ │ ├── mobx.svg │ │ ├── mobxstatetree.svg │ │ ├── mocha.svg │ │ ├── modx.svg │ │ ├── mojangstudios.svg │ │ ├── moleculer.svg │ │ ├── momenteo.svg │ │ ├── monero.svg │ │ ├── moneygram.svg │ │ ├── mongodb.svg │ │ ├── monkeytie.svg │ │ ├── monoprix.svg │ │ ├── monster.svg │ │ ├── monzo.svg │ │ ├── moo.svg │ │ ├── morrisons.svg │ │ ├── moscowmetro.svg │ │ ├── motorola.svg │ │ ├── mozilla.svg │ │ ├── msi.svg │ │ ├── mta.svg │ │ ├── mtr.svg │ │ ├── mui.svg │ │ ├── mulesoft.svg │ │ ├── muller.svg │ │ ├── mumble.svg │ │ ├── musescore.svg │ │ ├── musicbrainz.svg │ │ ├── mxlinux.svg │ │ ├── myanimelist.svg │ │ ├── myob.svg │ │ ├── myspace.svg │ │ ├── mysql.svg │ │ ├── n26.svg │ │ ├── namebase.svg │ │ ├── namecheap.svg │ │ ├── nano.svg │ │ ├── nasa.svg │ │ ├── nationalgrid.svg │ │ ├── nativescript.svg │ │ ├── naver.svg │ │ ├── nba.svg │ │ ├── nbb.svg │ │ ├── ndr.svg │ │ ├── nec.svg │ │ ├── neo4j.svg │ │ ├── neovim.svg │ │ ├── nestjs.svg │ │ ├── netapp.svg │ │ ├── netbsd.svg │ │ ├── netflix.svg │ │ ├── netlify.svg │ │ ├── nette.svg │ │ ├── netto.svg │ │ ├── newbalance.svg │ │ ├── newjapanprowrestling.svg │ │ ├── newrelic.svg │ │ ├── newyorktimes.svg │ │ ├── nextcloud.svg │ │ ├── nextdoor.svg │ │ ├── nextdotjs.svg │ │ ├── nfc.svg │ │ ├── nginx.svg │ │ ├── ngrok.svg │ │ ├── niconico.svg │ │ ├── nike.svg │ │ ├── nim.svg │ │ ├── nintendo.svg │ │ ├── nintendo3ds.svg │ │ ├── nintendogamecube.svg │ │ ├── nintendonetwork.svg │ │ ├── nintendoswitch.svg │ │ ├── nissan.svg │ │ ├── nixos.svg │ │ ├── nodedotjs.svg │ │ ├── nodemon.svg │ │ ├── nodered.svg │ │ ├── nokia.svg │ │ ├── norco.svg │ │ ├── nordvpn.svg │ │ ├── norwegian.svg │ │ ├── notepadplusplus.svg │ │ ├── notion.svg │ │ ├── notist.svg │ │ ├── nounproject.svg │ │ ├── now.svg │ │ ├── npm.svg │ │ ├── nrwl.svg │ │ ├── nubank.svg │ │ ├── nucleo.svg │ │ ├── nuget.svg │ │ ├── nuke.svg │ │ ├── numba.svg │ │ ├── numpy.svg │ │ ├── nutanix.svg │ │ ├── nuxtdotjs.svg │ │ ├── nvidia.svg │ │ ├── nx.svg │ │ ├── nzxt.svg │ │ ├── observable.svg │ │ ├── obsidian.svg │ │ ├── obsstudio.svg │ │ ├── ocaml.svg │ │ ├── octanerender.svg │ │ ├── octave.svg │ │ ├── octopusdeploy.svg │ │ ├── oculus.svg │ │ ├── odnoklassniki.svg │ │ ├── odysee.svg │ │ ├── ohdear.svg │ │ ├── okcupid.svg │ │ ├── okta.svg │ │ ├── oneplus.svg │ │ ├── onlyfans.svg │ │ ├── onnx.svg │ │ ├── onstar.svg │ │ ├── opel.svg │ │ ├── openaccess.svg │ │ ├── openai.svg │ │ ├── openaigym.svg │ │ ├── openapiinitiative.svg │ │ ├── openbadges.svg │ │ ├── openbsd.svg │ │ ├── openbugbounty.svg │ │ ├── opencollective.svg │ │ ├── opencontainersinitiative.svg │ │ ├── opencv.svg │ │ ├── openfaas.svg │ │ ├── opengl.svg │ │ ├── openid.svg │ │ ├── openlayers.svg │ │ ├── openmined.svg │ │ ├── opennebula.svg │ │ ├── opensea.svg │ │ ├── opensourceinitiative.svg │ │ ├── openssl.svg │ │ ├── openstack.svg │ │ ├── openstreetmap.svg │ │ ├── opensuse.svg │ │ ├── opentelemetry.svg │ │ ├── openvpn.svg │ │ ├── openwrt.svg │ │ ├── openzfs.svg │ │ ├── opera.svg │ │ ├── opnsense.svg │ │ ├── opsgenie.svg │ │ ├── opslevel.svg │ │ ├── oracle.svg │ │ ├── orcid.svg │ │ ├── oreilly.svg │ │ ├── org.svg │ │ ├── origin.svg │ │ ├── osano.svg │ │ ├── oshkosh.svg │ │ ├── osmc.svg │ │ ├── osu.svg │ │ ├── otto.svg │ │ ├── overcast.svg │ │ ├── overleaf.svg │ │ ├── ovh.svg │ │ ├── owasp.svg │ │ ├── oxygen.svg │ │ ├── oyo.svg │ │ ├── p5dotjs.svg │ │ ├── packagist.svg │ │ ├── packer.svg │ │ ├── paddypower.svg │ │ ├── pagekit.svg │ │ ├── pagerduty.svg │ │ ├── pagespeedinsights.svg │ │ ├── pagseguro.svg │ │ ├── palantir.svg │ │ ├── paloaltosoftware.svg │ │ ├── pandas.svg │ │ ├── pandora.svg │ │ ├── pantheon.svg │ │ ├── paritysubstrate.svg │ │ ├── parsedotly.svg │ │ ├── passport.svg │ │ ├── pastebin.svg │ │ ├── patreon.svg │ │ ├── payoneer.svg │ │ ├── paypal.svg │ │ ├── paytm.svg │ │ ├── pcgamingwiki.svg │ │ ├── peakdesign.svg │ │ ├── peertube.svg │ │ ├── pegasusairlines.svg │ │ ├── pelican.svg │ │ ├── peloton.svg │ │ ├── penny.svg │ │ ├── pepsi.svg │ │ ├── percy.svg │ │ ├── perforce.svg │ │ ├── perl.svg │ │ ├── personio.svg │ │ ├── peugeot.svg │ │ ├── pexels.svg │ │ ├── pfsense.svg │ │ ├── phabricator.svg │ │ ├── philipshue.svg │ │ ├── phonepe.svg │ │ ├── photobucket.svg │ │ ├── photocrowd.svg │ │ ├── photopea.svg │ │ ├── php.svg │ │ ├── phpmyadmin.svg │ │ ├── phpstorm.svg │ │ ├── picardsurgeles.svg │ │ ├── picartodottv.svg │ │ ├── picnic.svg │ │ ├── picpay.svg │ │ ├── pihole.svg │ │ ├── pimcore.svg │ │ ├── pinboard.svg │ │ ├── pingdom.svg │ │ ├── pinterest.svg │ │ ├── pioneerdj.svg │ │ ├── pivotaltracker.svg │ │ ├── piwigo.svg │ │ ├── pix.svg │ │ ├── pixabay.svg │ │ ├── pixiv.svg │ │ ├── pkgsrc.svg │ │ ├── planet.svg │ │ ├── plangrid.svg │ │ ├── platformdotsh.svg │ │ ├── platzi.svg │ │ ├── plausibleanalytics.svg │ │ ├── playcanvas.svg │ │ ├── playerdotme.svg │ │ ├── playerfm.svg │ │ ├── playstation.svg │ │ ├── playstation2.svg │ │ ├── playstation3.svg │ │ ├── playstation4.svg │ │ ├── playstation5.svg │ │ ├── playstationvita.svg │ │ ├── pleroma.svg │ │ ├── plesk.svg │ │ ├── plex.svg │ │ ├── plotly.svg │ │ ├── pluralsight.svg │ │ ├── plurk.svg │ │ ├── pluscodes.svg │ │ ├── pm2.svg │ │ ├── pnpm.svg │ │ ├── pocket.svg │ │ ├── pocketcasts.svg │ │ ├── podcastaddict.svg │ │ ├── podman.svg │ │ ├── pointy.svg │ │ ├── pokemon.svg │ │ ├── polkadot.svg │ │ ├── poly.svg │ │ ├── polymerproject.svg │ │ ├── polywork.svg │ │ ├── popos.svg │ │ ├── porsche.svg │ │ ├── portainer.svg │ │ ├── postcss.svg │ │ ├── postgresql.svg │ │ ├── postman.svg │ │ ├── postmates.svg │ │ ├── powerapps.svg │ │ ├── powerautomate.svg │ │ ├── powerbi.svg │ │ ├── powers.svg │ │ ├── powershell.svg │ │ ├── powervirtualagents.svg │ │ ├── prdotco.svg │ │ ├── precommit.svg │ │ ├── premierleague.svg │ │ ├── prestashop.svg │ │ ├── presto.svg │ │ ├── prettier.svg │ │ ├── prezi.svg │ │ ├── prime.svg │ │ ├── primevideo.svg │ │ ├── prisma.svg │ │ ├── prismic.svg │ │ ├── privateinternetaccess.svg │ │ ├── probot.svg │ │ ├── processingfoundation.svg │ │ ├── processwire.svg │ │ ├── producthunt.svg │ │ ├── progate.svg │ │ ├── progress.svg │ │ ├── prometheus.svg │ │ ├── prosieben.svg │ │ ├── protocolsdotio.svg │ │ ├── protodotio.svg │ │ ├── protondb.svg │ │ ├── protonmail.svg │ │ ├── protonvpn.svg │ │ ├── protools.svg │ │ ├── protractor.svg │ │ ├── proxmox.svg │ │ ├── pubg.svg │ │ ├── publons.svg │ │ ├── pubmed.svg │ │ ├── pug.svg │ │ ├── pulumi.svg │ │ ├── puma.svg │ │ ├── puppet.svg │ │ ├── puppeteer.svg │ │ ├── purescript.svg │ │ ├── purgecss.svg │ │ ├── purism.svg │ │ ├── pusher.svg │ │ ├── pwa.svg │ │ ├── pycharm.svg │ │ ├── pypi.svg │ │ ├── pypy.svg │ │ ├── pyscaffold.svg │ │ ├── pytest.svg │ │ ├── python.svg │ │ ├── pytorch.svg │ │ ├── pytorchlightning.svg │ │ ├── pyup.svg │ │ ├── qantas.svg │ │ ├── qatarairways.svg │ │ ├── qemu.svg │ │ ├── qgis.svg │ │ ├── qi.svg │ │ ├── qiita.svg │ │ ├── qiskit.svg │ │ ├── qiwi.svg │ │ ├── qt.svg │ │ ├── qualcomm.svg │ │ ├── qualtrics.svg │ │ ├── qualys.svg │ │ ├── quantcast.svg │ │ ├── quantconnect.svg │ │ ├── quarkus.svg │ │ ├── quasar.svg │ │ ├── qubesos.svg │ │ ├── quest.svg │ │ ├── quickbooks.svg │ │ ├── quicklook.svg │ │ ├── quicktime.svg │ │ ├── quip.svg │ │ ├── quora.svg │ │ ├── qwiklabs.svg │ │ ├── qzone.svg │ │ ├── r.svg │ │ ├── r3.svg │ │ ├── rabbitmq.svg │ │ ├── racket.svg │ │ ├── radar.svg │ │ ├── radiopublic.svg │ │ ├── railway.svg │ │ ├── rainmeter.svg │ │ ├── rakuten.svg │ │ ├── ram.svg │ │ ├── rancher.svg │ │ ├── rarible.svg │ │ ├── raspberrypi.svg │ │ ├── ray.svg │ │ ├── razer.svg │ │ ├── razorpay.svg │ │ ├── react.svg │ │ ├── reactivex.svg │ │ ├── reactos.svg │ │ ├── reactquery.svg │ │ ├── reactrouter.svg │ │ ├── reacttable.svg │ │ ├── readthedocs.svg │ │ ├── realm.svg │ │ ├── reason.svg │ │ ├── reasonstudios.svg │ │ ├── redbubble.svg │ │ ├── reddit.svg │ │ ├── redhat.svg │ │ ├── redhatopenshift.svg │ │ ├── redis.svg │ │ ├── redmine.svg │ │ ├── redux.svg │ │ ├── reduxsaga.svg │ │ ├── redwoodjs.svg │ │ ├── reebok.svg │ │ ├── relianceindustrieslimited.svg │ │ ├── renault.svg │ │ ├── renovatebot.svg │ │ ├── renpy.svg │ │ ├── renren.svg │ │ ├── replit.svg │ │ ├── republicofgamers.svg │ │ ├── rescript.svg │ │ ├── rescuetime.svg │ │ ├── researchgate.svg │ │ ├── resurrectionremixos.svg │ │ ├── retroarch.svg │ │ ├── retropie.svg │ │ ├── revealdotjs.svg │ │ ├── reverbnation.svg │ │ ├── revolut.svg │ │ ├── revue.svg │ │ ├── rewe.svg │ │ ├── rezgo.svg │ │ ├── rhinoceros.svg │ │ ├── rider.svg │ │ ├── rimacautomobili.svg │ │ ├── ring.svg │ │ ├── riotgames.svg │ │ ├── ripple.svg │ │ ├── riseup.svg │ │ ├── roamresearch.svg │ │ ├── roblox.svg │ │ ├── robotframework.svg │ │ ├── rocketdotchat.svg │ │ ├── rocksdb.svg │ │ ├── rockylinux.svg │ │ ├── roku.svg │ │ ├── rollsroyce.svg │ │ ├── rollupdotjs.svg │ │ ├── rome.svg │ │ ├── roots.svg │ │ ├── rootsbedrock.svg │ │ ├── rootssage.svg │ │ ├── ros.svg │ │ ├── rossmann.svg │ │ ├── rotaryinternational.svg │ │ ├── rottentomatoes.svg │ │ ├── roundcube.svg │ │ ├── rss.svg │ │ ├── rstudio.svg │ │ ├── rte.svg │ │ ├── rtl.svg │ │ ├── rtlzwei.svg │ │ ├── ruby.svg │ │ ├── rubygems.svg │ │ ├── rubyonrails.svg │ │ ├── rubysinatra.svg │ │ ├── runkeeper.svg │ │ ├── runkit.svg │ │ ├── rust.svg │ │ ├── rxdb.svg │ │ ├── ryanair.svg │ │ ├── s7airlines.svg │ │ ├── sabanci.svg │ │ ├── safari.svg │ │ ├── sahibinden.svg │ │ ├── salesforce.svg │ │ ├── saltproject.svg │ │ ├── samsung.svg │ │ ├── samsungpay.svg │ │ ├── sandisk.svg │ │ ├── sanfranciscomunicipalrailway.svg │ │ ├── saopaulometro.svg │ │ ├── sap.svg │ │ ├── sass.svg │ │ ├── sat1.svg │ │ ├── saturn.svg │ │ ├── saucelabs.svg │ │ ├── scala.svg │ │ ├── scaleway.svg │ │ ├── scania.svg │ │ ├── schneiderelectric.svg │ │ ├── scikitlearn.svg │ │ ├── scipy.svg │ │ ├── scopus.svg │ │ ├── scpfoundation.svg │ │ ├── scratch.svg │ │ ├── screencastify.svg │ │ ├── scribd.svg │ │ ├── scrimba.svg │ │ ├── scrollreveal.svg │ │ ├── scrumalliance.svg │ │ ├── scrutinizerci.svg │ │ ├── seagate.svg │ │ ├── seat.svg │ │ ├── sefaria.svg │ │ ├── sega.svg │ │ ├── selenium.svg │ │ ├── sellfy.svg │ │ ├── semanticrelease.svg │ │ ├── semanticuireact.svg │ │ ├── semanticweb.svg │ │ ├── semaphoreci.svg │ │ ├── semver.svg │ │ ├── sencha.svg │ │ ├── sennheiser.svg │ │ ├── sensu.svg │ │ ├── sentry.svg │ │ ├── sepa.svg │ │ ├── sequelize.svg │ │ ├── serverfault.svg │ │ ├── serverless.svg │ │ ├── sfml.svg │ │ ├── shadow.svg │ │ ├── shanghaimetro.svg │ │ ├── sharp.svg │ │ ├── shazam.svg │ │ ├── shell.svg │ │ ├── shelly.svg │ │ ├── shenzhenmetro.svg │ │ ├── shieldsdotio.svg │ │ ├── shikimori.svg │ │ ├── shopify.svg │ │ ├── shopware.svg │ │ ├── shotcut.svg │ │ ├── showpad.svg │ │ ├── showtime.svg │ │ ├── shutterstock.svg │ │ ├── siemens.svg │ │ ├── signal.svg │ │ ├── simkl.svg │ │ ├── simpleanalytics.svg │ │ ├── simpleicons.svg │ │ ├── simplenote.svg │ │ ├── sinaweibo.svg │ │ ├── singlestore.svg │ │ ├── sitepoint.svg │ │ ├── sketch.svg │ │ ├── sketchfab.svg │ │ ├── sketchup.svg │ │ ├── skillshare.svg │ │ ├── skoda.svg │ │ ├── sky.svg │ │ ├── skynet.svg │ │ ├── skypack.svg │ │ ├── skype.svg │ │ ├── skypeforbusiness.svg │ │ ├── slack.svg │ │ ├── slackware.svg │ │ ├── slashdot.svg │ │ ├── slickpic.svg │ │ ├── slides.svg │ │ ├── slideshare.svg │ │ ├── smart.svg │ │ ├── smartthings.svg │ │ ├── smashdotgg.svg │ │ ├── smashingmagazine.svg │ │ ├── smrt.svg │ │ ├── smugmug.svg │ │ ├── snapchat.svg │ │ ├── snapcraft.svg │ │ ├── snowflake.svg │ │ ├── snowpack.svg │ │ ├── snyk.svg │ │ ├── socialblade.svg │ │ ├── society6.svg │ │ ├── socketdotio.svg │ │ ├── sogou.svg │ │ ├── solid.svg │ │ ├── solidity.svg │ │ ├── sololearn.svg │ │ ├── solus.svg │ │ ├── sonarcloud.svg │ │ ├── sonarlint.svg │ │ ├── sonarqube.svg │ │ ├── sonarsource.svg │ │ ├── songkick.svg │ │ ├── songoda.svg │ │ ├── sonicwall.svg │ │ ├── sonos.svg │ │ ├── sony.svg │ │ ├── soundcloud.svg │ │ ├── sourceengine.svg │ │ ├── sourceforge.svg │ │ ├── sourcegraph.svg │ │ ├── sourcetree.svg │ │ ├── southwestairlines.svg │ │ ├── spacemacs.svg │ │ ├── spacex.svg │ │ ├── sparkar.svg │ │ ├── sparkasse.svg │ │ ├── sparkfun.svg │ │ ├── sparkpost.svg │ │ ├── spdx.svg │ │ ├── speakerdeck.svg │ │ ├── spectrum.svg │ │ ├── speedtest.svg │ │ ├── spinnaker.svg │ │ ├── spinrilla.svg │ │ ├── splunk.svg │ │ ├── spond.svg │ │ ├── spotify.svg │ │ ├── spotlight.svg │ │ ├── spreadshirt.svg │ │ ├── spreaker.svg │ │ ├── spring.svg │ │ ├── spring_creators.svg │ │ ├── springboot.svg │ │ ├── springsecurity.svg │ │ ├── spyderide.svg │ │ ├── sqlite.svg │ │ ├── square.svg │ │ ├── squareenix.svg │ │ ├── squarespace.svg │ │ ├── ssrn.svg │ │ ├── stackbit.svg │ │ ├── stackedit.svg │ │ ├── stackexchange.svg │ │ ├── stackoverflow.svg │ │ ├── stackpath.svg │ │ ├── stackshare.svg │ │ ├── stadia.svg │ │ ├── staffbase.svg │ │ ├── starbucks.svg │ │ ├── starlingbank.svg │ │ ├── starship.svg │ │ ├── startrek.svg │ │ ├── starz.svg │ │ ├── statamic.svg │ │ ├── statuspage.svg │ │ ├── statuspal.svg │ │ ├── steam.svg │ │ ├── steamdb.svg │ │ ├── steamworks.svg │ │ ├── steelseries.svg │ │ ├── steem.svg │ │ ├── steemit.svg │ │ ├── steinberg.svg │ │ ├── stellar.svg │ │ ├── stencyl.svg │ │ ├── stimulus.svg │ │ ├── stitcher.svg │ │ ├── stmicroelectronics.svg │ │ ├── stopstalk.svg │ │ ├── storyblok.svg │ │ ├── storybook.svg │ │ ├── strapi.svg │ │ ├── strava.svg │ │ ├── streamlit.svg │ │ ├── stripe.svg │ │ ├── strongswan.svg │ │ ├── stubhub.svg │ │ ├── styledcomponents.svg │ │ ├── stylelint.svg │ │ ├── styleshare.svg │ │ ├── stylus.svg │ │ ├── subaru.svg │ │ ├── sublimetext.svg │ │ ├── substack.svg │ │ ├── subversion.svg │ │ ├── suckless.svg │ │ ├── sumologic.svg │ │ ├── supabase.svg │ │ ├── superuser.svg │ │ ├── surveymonkey.svg │ │ ├── suse.svg │ │ ├── suzuki.svg │ │ ├── svelte.svg │ │ ├── svg.svg │ │ ├── svgo.svg │ │ ├── swagger.svg │ │ ├── swarm.svg │ │ ├── swc.svg │ │ ├── swift.svg │ │ ├── swiggy.svg │ │ ├── swiper.svg │ │ ├── symantec.svg │ │ ├── symfony.svg │ │ ├── symphony.svg │ │ ├── sympy.svg │ │ ├── synology.svg │ │ ├── tableau.svg │ │ ├── tado.svg │ │ ├── tails.svg │ │ ├── tailwindcss.svg │ │ ├── talend.svg │ │ ├── talenthouse.svg │ │ ├── tampermonkey.svg │ │ ├── taobao.svg │ │ ├── tapas.svg │ │ ├── target.svg │ │ ├── tasmota.svg │ │ ├── tata.svg │ │ ├── tauri.svg │ │ ├── taxbuzz.svg │ │ ├── teamcity.svg │ │ ├── teamspeak.svg │ │ ├── teamviewer.svg │ │ ├── ted.svg │ │ ├── teespring.svg │ │ ├── tekton.svg │ │ ├── tele5.svg │ │ ├── telegram.svg │ │ ├── telegraph.svg │ │ ├── temporal.svg │ │ ├── tencentqq.svg │ │ ├── tensorflow.svg │ │ ├── teradata.svg │ │ ├── teratail.svg │ │ ├── terraform.svg │ │ ├── tesco.svg │ │ ├── tesla.svg │ │ ├── testcafe.svg │ │ ├── testin.svg │ │ ├── testinglibrary.svg │ │ ├── tether.svg │ │ ├── textpattern.svg │ │ ├── thealgorithms.svg │ │ ├── theconversation.svg │ │ ├── theirishtimes.svg │ │ ├── themighty.svg │ │ ├── themodelsresource.svg │ │ ├── themoviedatabase.svg │ │ ├── thenorthface.svg │ │ ├── theregister.svg │ │ ├── thesoundsresource.svg │ │ ├── thespritersresource.svg │ │ ├── thewashingtonpost.svg │ │ ├── thingiverse.svg │ │ ├── thinkpad.svg │ │ ├── threadless.svg │ │ ├── threedotjs.svg │ │ ├── threema.svg │ │ ├── thumbtack.svg │ │ ├── thunderbird.svg │ │ ├── thymeleaf.svg │ │ ├── ticketmaster.svg │ │ ├── tidal.svg │ │ ├── tide.svg │ │ ├── tietoevry.svg │ │ ├── tiktok.svg │ │ ├── tile.svg │ │ ├── timescale.svg │ │ ├── tinder.svg │ │ ├── tinyletter.svg │ │ ├── tmobile.svg │ │ ├── tmux.svg │ │ ├── todoist.svg │ │ ├── toggl.svg │ │ ├── tokyometro.svg │ │ ├── tomorrowland.svg │ │ ├── topcoder.svg │ │ ├── toptal.svg │ │ ├── torbrowser.svg │ │ ├── torproject.svg │ │ ├── toshiba.svg │ │ ├── toyota.svg │ │ ├── tplink.svg │ │ ├── tqdm.svg │ │ ├── traefikmesh.svg │ │ ├── trainerroad.svg │ │ ├── trakt.svg │ │ ├── transferwise.svg │ │ ├── transportforireland.svg │ │ ├── transportforlondon.svg │ │ ├── travisci.svg │ │ ├── treehouse.svg │ │ ├── trello.svg │ │ ├── trendmicro.svg │ │ ├── treyarch.svg │ │ ├── triller.svg │ │ ├── trino.svg │ │ ├── tripadvisor.svg │ │ ├── tripdotcom.svg │ │ ├── trove.svg │ │ ├── truenas.svg │ │ ├── trulia.svg │ │ ├── trustedshops.svg │ │ ├── trustpilot.svg │ │ ├── tryhackme.svg │ │ ├── tryitonline.svg │ │ ├── tsnode.svg │ │ ├── tubi.svg │ │ ├── tui.svg │ │ ├── tumblr.svg │ │ ├── tunein.svg │ │ ├── turbosquid.svg │ │ ├── turkishairlines.svg │ │ ├── tutanota.svg │ │ ├── tvtime.svg │ │ ├── twilio.svg │ │ ├── twitch.svg │ │ ├── twitter.svg │ │ ├── twoo.svg │ │ ├── typeform.svg │ │ ├── typescript.svg │ │ ├── typo3.svg │ │ ├── uber.svg │ │ ├── ubereats.svg │ │ ├── ubiquiti.svg │ │ ├── ubisoft.svg │ │ ├── ublockorigin.svg │ │ ├── ubuntu.svg │ │ ├── udacity.svg │ │ ├── udemy.svg │ │ ├── ufc.svg │ │ ├── uikit.svg │ │ ├── ulule.svg │ │ ├── umbraco.svg │ │ ├── unacademy.svg │ │ ├── underarmour.svg │ │ ├── underscoredotjs.svg │ │ ├── undertale.svg │ │ ├── unicode.svg │ │ ├── unilever.svg │ │ ├── unitedairlines.svg │ │ ├── unity.svg │ │ ├── unraid.svg │ │ ├── unrealengine.svg │ │ ├── unsplash.svg │ │ ├── untangle.svg │ │ ├── untappd.svg │ │ ├── upcloud.svg │ │ ├── uplabs.svg │ │ ├── uploaded.svg │ │ ├── ups.svg │ │ ├── uptobox.svg │ │ ├── upwork.svg │ │ ├── usps.svg │ │ ├── v.svg │ │ ├── v8.svg │ │ ├── vaadin.svg │ │ ├── vagrant.svg │ │ ├── valve.svg │ │ ├── vapor.svg │ │ ├── vault.svg │ │ ├── vauxhall.svg │ │ ├── vbulletin.svg │ │ ├── vectorlogozone.svg │ │ ├── vectorworks.svg │ │ ├── veeam.svg │ │ ├── veepee.svg │ │ ├── velog.svg │ │ ├── venmo.svg │ │ ├── vercel.svg │ │ ├── verdaccio.svg │ │ ├── veritas.svg │ │ ├── verizon.svg │ │ ├── vfairs.svg │ │ ├── viadeo.svg │ │ ├── viber.svg │ │ ├── vim.svg │ │ ├── vimeo.svg │ │ ├── vimeolivestream.svg │ │ ├── virgin.svg │ │ ├── virtualbox.svg │ │ ├── virustotal.svg │ │ ├── visa.svg │ │ ├── visualstudio.svg │ │ ├── visualstudiocode.svg │ │ ├── vite.svg │ │ ├── vivaldi.svg │ │ ├── vivino.svg │ │ ├── vk.svg │ │ ├── vlcmediaplayer.svg │ │ ├── vmware.svg │ │ ├── vodafone.svg │ │ ├── volkswagen.svg │ │ ├── volvo.svg │ │ ├── vonage.svg │ │ ├── vox.svg │ │ ├── vsco.svg │ │ ├── vtex.svg │ │ ├── vuedotjs.svg │ │ ├── vuetify.svg │ │ ├── vulkan.svg │ │ ├── vultr.svg │ │ ├── w3c.svg │ │ ├── wagtail.svg │ │ ├── wakatime.svg │ │ ├── walkman.svg │ │ ├── wallabag.svg │ │ ├── walmart.svg │ │ ├── wappalyzer.svg │ │ ├── warnerbros.svg │ │ ├── wattpad.svg │ │ ├── waze.svg │ │ ├── wearos.svg │ │ ├── weasyl.svg │ │ ├── web3dotjs.svg │ │ ├── webassembly.svg │ │ ├── webauthn.svg │ │ ├── webcomponentsdotorg.svg │ │ ├── webdriverio.svg │ │ ├── webflow.svg │ │ ├── webgl.svg │ │ ├── webhint.svg │ │ ├── weblate.svg │ │ ├── webmin.svg │ │ ├── webmoney.svg │ │ ├── webpack.svg │ │ ├── webrtc.svg │ │ ├── webstorm.svg │ │ ├── webtoon.svg │ │ ├── wechat.svg │ │ ├── wegame.svg │ │ ├── weightsandbiases.svg │ │ ├── welcometothejungle.svg │ │ ├── wemo.svg │ │ ├── westerndigital.svg │ │ ├── wetransfer.svg │ │ ├── whatsapp.svg │ │ ├── wheniwork.svg │ │ ├── whitesource.svg │ │ ├── wii.svg │ │ ├── wiiu.svg │ │ ├── wikidata.svg │ │ ├── wikidotjs.svg │ │ ├── wikimediacommons.svg │ │ ├── wikipedia.svg │ │ ├── wikiquote.svg │ │ ├── wikivoyage.svg │ │ ├── winamp.svg │ │ ├── windicss.svg │ │ ├── windows.svg │ │ ├── windows95.svg │ │ ├── windowsterminal.svg │ │ ├── windowsxp.svg │ │ ├── winmate.svg │ │ ├── wipro.svg │ │ ├── wire.svg │ │ ├── wireguard.svg │ │ ├── wireshark.svg │ │ ├── wish.svg │ │ ├── wistia.svg │ │ ├── wix.svg │ │ ├── wizzair.svg │ │ ├── wolfram.svg │ │ ├── wolframlanguage.svg │ │ ├── wolframmathematica.svg │ │ ├── woo.svg │ │ ├── woocommerce.svg │ │ ├── wordpress.svg │ │ ├── workplace.svg │ │ ├── worldhealthorganization.svg │ │ ├── wpengine.svg │ │ ├── wprocket.svg │ │ ├── writedotas.svg │ │ ├── wwe.svg │ │ ├── wwise.svg │ │ ├── xamarin.svg │ │ ├── xaml.svg │ │ ├── xampp.svg │ │ ├── xbox.svg │ │ ├── xcode.svg │ │ ├── xdadevelopers.svg │ │ ├── xdotorg.svg │ │ ├── xero.svg │ │ ├── xfce.svg │ │ ├── xiaomi.svg │ │ ├── xilinx.svg │ │ ├── xing.svg │ │ ├── xmpp.svg │ │ ├── xrp.svg │ │ ├── xsplit.svg │ │ ├── xstate.svg │ │ ├── yahoo.svg │ │ ├── yale.svg │ │ ├── yamahacorporation.svg │ │ ├── yamahamotorcorporation.svg │ │ ├── yammer.svg │ │ ├── yarn.svg │ │ ├── ycombinator.svg │ │ ├── yelp.svg │ │ ├── yoast.svg │ │ ├── yolo.svg │ │ ├── yourtraveldottv.svg │ │ ├── youtube.svg │ │ ├── youtubegaming.svg │ │ ├── youtubemusic.svg │ │ ├── youtubestudio.svg │ │ ├── youtubetv.svg │ │ ├── zalando.svg │ │ ├── zalo.svg │ │ ├── zapier.svg │ │ ├── zara.svg │ │ ├── zazzle.svg │ │ ├── zcash.svg │ │ ├── zdf.svg │ │ ├── zelle.svg │ │ ├── zend.svg │ │ ├── zendesk.svg │ │ ├── zendframework.svg │ │ ├── zenn.svg │ │ ├── zenodo.svg │ │ ├── zerodha.svg │ │ ├── zeromq.svg │ │ ├── zerply.svg │ │ ├── zhihu.svg │ │ ├── zig.svg │ │ ├── zigbee.svg │ │ ├── zillow.svg │ │ ├── zingat.svg │ │ ├── zoho.svg │ │ ├── zoiper.svg │ │ ├── zomato.svg │ │ ├── zoom.svg │ │ ├── zorin.svg │ │ ├── zotero.svg │ │ ├── zulip.svg │ │ ├── zwave.svg │ │ └── zyte.svg └── templates │ ├── editor.html │ ├── home.html │ ├── settings-appearance.html │ ├── settings-header.html │ ├── settings-others.html │ ├── settings-search.html │ ├── settings-sidebar.html │ ├── settings-theme.html │ ├── settings-weather.html │ └── settings.html ├── go.mod ├── go.sum ├── internal ├── auth │ └── auth.go ├── fn │ ├── favicon.go │ ├── fn.go │ ├── network.go │ └── url.go ├── logger │ ├── gin-handler.go │ ├── handler.go │ └── logger.go ├── misc │ ├── deprecated │ │ └── deprecated.go │ ├── health │ │ └── health.go │ └── redir │ │ └── redir.go ├── pages │ ├── editor │ │ └── editor.go │ ├── guide │ │ └── guide.go │ └── home │ │ ├── application.go │ │ ├── bookmark.go │ │ ├── help.go │ │ └── home.go ├── resources │ ├── assets │ │ ├── assets.go │ │ └── favicon.ico │ ├── mdi │ │ ├── icons.go │ │ ├── mdi-cheat-sheets │ │ │ ├── css │ │ │ │ └── materialdesignicons.min.css │ │ │ ├── fonts │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ └── index.html │ │ └── mdi.go │ └── templates │ │ ├── html │ │ ├── editor.html │ │ ├── home.html │ │ ├── settings-appearance.html │ │ ├── settings-header.html │ │ ├── settings-others.html │ │ ├── settings-search.html │ │ ├── settings-sidebar.html │ │ ├── settings-theme.html │ │ ├── settings-weather.html │ │ └── settings.html │ │ └── templates.go ├── server │ └── server.go ├── settings │ ├── appearance │ │ └── appearance.go │ ├── others │ │ └── others.go │ ├── search │ │ └── search.go │ ├── settings.go │ ├── theme │ │ └── theme.go │ └── weather │ │ └── weather.go └── version │ └── version.go └── main.go /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | All versions are currently being actively maintained. 6 | 7 | | Version | Supported | 8 | | ------- | ------------------ | 9 | | < 0.x | :white_check_mark: | 10 | 11 | ## Reporting a Vulnerability 12 | 13 | If you find any risks and vulnerabilities, 14 | you are welcome to directly disclose them in the issue, thank you! 15 | -------------------------------------------------------------------------------- /build/builder/editor.go: -------------------------------------------------------------------------------- 1 | package builder 2 | 3 | import "log" 4 | 5 | func TaskForEditorAssets(src string, dest string) { 6 | _PrepareDirectory(dest) 7 | if err := _CopyDirectoryWithoutSymlink(src, dest); err != nil { 8 | log.Fatal(err) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /build/builder/favicon.go: -------------------------------------------------------------------------------- 1 | package builder 2 | 3 | import ( 4 | "fmt" 5 | "log" 6 | ) 7 | 8 | func TaskForFavicon(src string, dest string) { 9 | if err := _Copy(src, dest); err != nil { 10 | log.Fatal(err) 11 | } 12 | fmt.Println("复制静态资源 ... [OK]") 13 | } 14 | -------------------------------------------------------------------------------- /build/builder/guide.go: -------------------------------------------------------------------------------- 1 | package builder 2 | 3 | import "log" 4 | 5 | func TaskForGuideAssets(src string, dest string) { 6 | _PrepareDirectory(dest) 7 | if err := _CopyDirectoryWithoutSymlink(src, dest); err != nil { 8 | log.Fatal(err) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /build/builder/simple-icon.go: -------------------------------------------------------------------------------- 1 | package builder 2 | 3 | func TaskForSimpleIcons(dest string) { 4 | _PrepareDirectory(dest) 5 | } 6 | -------------------------------------------------------------------------------- /config/define/docs.go: -------------------------------------------------------------------------------- 1 | /* 2 | Flare 3 | 4 | Define all program define (consts) 5 | */ 6 | package FlareDefine 7 | -------------------------------------------------------------------------------- /config/model/doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Flare 3 | 4 | Define all program data models 5 | */ 6 | package FlareModel 7 | -------------------------------------------------------------------------------- /config/model/theme.go: -------------------------------------------------------------------------------- 1 | package FlareModel 2 | 3 | // Theme color Data Model 4 | type Palette struct { 5 | Background string `json:"background"` 6 | Primary string `json:"primary"` 7 | Accent string `json:"accent"` 8 | } 9 | 10 | // Theme Data Model 11 | type Theme struct { 12 | Name string `json:"name"` 13 | Colors Palette `json:"colors"` 14 | } 15 | -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- 1 | /* 2 | Flare 3 | 4 | Challenge all bookmarking apps and websites directories, Aim to Be a best performance monster. 5 | */ 6 | package main 7 | -------------------------------------------------------------------------------- /embed/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulteary/flare/38b484626ead876a02cfdbfb372b9ef4de4e0c59/embed/assets/favicon.ico -------------------------------------------------------------------------------- /embed/assets/icons/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulteary/flare/38b484626ead876a02cfdbfb372b9ef4de4e0c59/embed/assets/icons/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /embed/assets/icons/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulteary/flare/38b484626ead876a02cfdbfb372b9ef4de4e0c59/embed/assets/icons/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /embed/assets/icons/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulteary/flare/38b484626ead876a02cfdbfb372b9ef4de4e0c59/embed/assets/icons/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /embed/assets/vendor/guide-assets/app.css: -------------------------------------------------------------------------------- 1 | .introjs-tooltip-title,.introjs-tooltiptext {color: #000;} 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/mdi-cheat-sheets/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulteary/flare/38b484626ead876a02cfdbfb372b9ef4de4e0c59/embed/assets/vendor/mdi-cheat-sheets/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/42.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/abbott.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/abbrobotstudio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/abletonlive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/abstract.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/accenture.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/addthis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/adguard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/adonisjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/aerospike.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/affinity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/affinitydesigner.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/affinitypublisher.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/aframe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/airfrance.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/alacritty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/alfred.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/alitalia.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/alpinedotjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/amp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/analogue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/androidauto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/angularjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/anilist.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ansible.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/anydesk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/appian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/arkecosystem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/artixlinux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/asana.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/asciinema.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/aseprite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/auth0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/awesomelists.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/awesomewm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/awsamplify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/azuredevops.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bandsintown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bbciplayer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/beats.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/beatsbydre.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/betfair.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bigcartel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/blockchaindotcom.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bookmeter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/buddy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/buffer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bulma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/buzzfeed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/bytedance.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/cakephp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/campaignmonitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/canonical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/capacitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/carthrottle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/castro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/chainlink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/chakraui.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/chartmogul.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/chase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/clickup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/clion.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/cloudera.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/clubhouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/cmake.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/cncf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/codeberg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/codeclimate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/codeforces.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/codesandbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/codio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/commonworkflowlanguage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/containerd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/crehana.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/crunchyroll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/daf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/daserste.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/databricks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/datacamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/datadotai.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dataiku.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/datocms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dedge.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/deezer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/delicious.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/designernews.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/deutschebank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/devexpress.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/devpost.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/digikeyelectronics.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/digitalocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/docusign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dogecoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dolby.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/doordash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/douban.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/doubanread.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/drone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dunked.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dwm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/dynamics365.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ea.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/eclipseche.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/elasticstack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/elixir.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ello.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/elm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/envato.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/equinixmetal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/esbuild.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/esea.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/eslgaming.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/exoscale.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/expertsexchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/expo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/facebookgaming.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/faceit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/farfetch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/fastapi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/feathub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ffmpeg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/fifa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/firebase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/flattr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/flutter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/fontbase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/framer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/framework7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/franprix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/freelancer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/funimation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/futurelearn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/giphy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/gitlfs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/glassdoor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/gmail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/gocd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/goldenline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlechat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlefonts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlehangouts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlenearby.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googleplay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlescholar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/googlesheets.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/gravatar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/griddotai.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/guangzhoumetro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/guilded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hackclub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hackernoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hashnode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/haskell.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/headspace.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hetzner.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hexo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hibernate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/homeadvisor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hurriyetemlak.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/hyper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/icloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/icons8.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ifttt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/informatica.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/instapaper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/interactjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/istio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jamboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jamstack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jellyfin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jfrogbintray.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jirasoftware.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/jrgroup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/julia.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/justgiving.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kahoot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kasasmart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kaufland.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kdenlive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/keras.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kibana.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kirby.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/klarna.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/komoot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kongregate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/konva.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kotlin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ktm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/kyocera.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/laravelhorizon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lbry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/leaflet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/letterboxd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/libreoffice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lighthouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/linuxfoundation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/litecoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lmms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/logstash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lospec.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/lydia.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/macys.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/manjaro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mapbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/marketo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/marriott.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/materialdesignicons.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mcafee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mcdonalds.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mercedes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/merck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/metafilter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/micropython.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/microstrategy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/midi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/minutemailer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/miro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mitsubishi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/mixcloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/monoprix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/monster.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/namebase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/naver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/neovim.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/netapp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/netflix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nginx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nike.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nintendo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/norco.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nordvpn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nounproject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nuget.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nuxtdotjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/nzxt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/obsidian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/okta.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/oneplus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/opencollective.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/opencontainersinitiative.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/openmined.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/oracle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/osano.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ovh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/packer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pagekit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pagerduty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/palantir.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pandas.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pandora.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/passport.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/peakdesign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/peertube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pepsi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pexels.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/picpay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pinboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pkgsrc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/platformdotsh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/platzi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/playcanvas.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/playerdotme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/playstation2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pleroma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/plex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pnpm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/polymerproject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/powerautomate.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/powerbi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/producthunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/prosieben.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/protonvpn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pubmed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/puppet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/purescript.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/purism.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pytorch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pytorchlightning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/pyup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/quicktime.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/quora.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/radar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rakuten.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rarible.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/razorpay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/reason.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/reasonstudios.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/renault.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/retroarch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/reverbnation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/riotgames.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/riseup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/roblox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rockylinux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rootsbedrock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rootssage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/roundcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rtlzwei.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rubygems.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/runkit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/rxdb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/saltproject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/saopaulometro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/scala.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/scrimba.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/semanticweb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sencha.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sennheiser.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/serverless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/shadow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/shotcut.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/shutterstock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/simpleanalytics.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/slashdot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/slickpic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/snapcraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/snowpack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/socialblade.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/solidity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sonarqube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sonarsource.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spacex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sparkar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/sparkpost.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spdx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spectrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/speedtest.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spinnaker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spinrilla.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spreadshirt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/spreaker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/squareenix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/stackexchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/stackoverflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/starlingbank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/statuspage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/stitcher.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/strapi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/streamlit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/substack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/suckless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/supabase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/suzuki.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/target.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tasmota.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ted.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/telegraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tensorflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/teradata.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/teratail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/terraform.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/testcafe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/theconversation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/thumbtack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tidal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tmux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/toptal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/torbrowser.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tplink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/transferwise.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/transportforireland.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/transportforlondon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/truenas.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/trustpilot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tryitonline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tumblr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/tvtime.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/typo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/udemy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/undertale.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/unraid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vagrant.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vault.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vbulletin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vectorlogozone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/verdaccio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/verizon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/virustotal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vodafone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vonage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vuedotjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/vuetify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/wappalyzer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/wikidata.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/winamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/xdadevelopers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/xilinx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/xsplit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/xstate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/ycombinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/youtubegaming.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/youtubemusic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zcash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zend.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zendesk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zenn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zerodha.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zig.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zorin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/assets/vendor/simple-icons/zotero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /embed/templates/settings-header.html: -------------------------------------------------------------------------------- 1 | {{ define "settings-header.html" }} 2 | 3 |