├── .gitignore
├── 404.html
├── README.md
├── account.html
├── assets
├── css
│ └── portal.css
├── images
│ ├── app-logo.svg
│ ├── background
│ │ ├── background-1.jpg
│ │ ├── background-2.jpg
│ │ └── background-3.jpg
│ ├── doc-thumb-1.jpg
│ ├── doc-thumb-2.jpg
│ ├── portal-logo.svg
│ ├── profiles
│ │ ├── profile-1.png
│ │ ├── profile-2.png
│ │ ├── profile-3.png
│ │ ├── profile-4.png
│ │ ├── profile-5.png
│ │ └── profile-6.png
│ ├── user.png
│ └── users
│ │ ├── user-1.jpg
│ │ ├── user-2.jpg
│ │ ├── user-3.jpg
│ │ ├── user-4.jpg
│ │ ├── user-5.jpg
│ │ ├── user-6.jpg
│ │ ├── user-7.jpg
│ │ ├── user-8.jpg
│ │ └── user-9.jpg
├── js
│ ├── app.js
│ ├── charts-demo.js
│ └── index-charts.js
├── plugins
│ ├── bootstrap
│ │ ├── css
│ │ │ ├── bootstrap-grid.css
│ │ │ ├── bootstrap-grid.css.map
│ │ │ ├── bootstrap-grid.min.css
│ │ │ ├── bootstrap-grid.min.css.map
│ │ │ ├── bootstrap-grid.rtl.css
│ │ │ ├── bootstrap-grid.rtl.css.map
│ │ │ ├── bootstrap-grid.rtl.min.css
│ │ │ ├── bootstrap-grid.rtl.min.css.map
│ │ │ ├── bootstrap-reboot.css
│ │ │ ├── bootstrap-reboot.css.map
│ │ │ ├── bootstrap-reboot.min.css
│ │ │ ├── bootstrap-reboot.min.css.map
│ │ │ ├── bootstrap-reboot.rtl.css
│ │ │ ├── bootstrap-reboot.rtl.css.map
│ │ │ ├── bootstrap-reboot.rtl.min.css
│ │ │ ├── bootstrap-reboot.rtl.min.css.map
│ │ │ ├── bootstrap-utilities.css
│ │ │ ├── bootstrap-utilities.css.map
│ │ │ ├── bootstrap-utilities.min.css
│ │ │ ├── bootstrap-utilities.min.css.map
│ │ │ ├── bootstrap-utilities.rtl.css
│ │ │ ├── bootstrap-utilities.rtl.css.map
│ │ │ ├── bootstrap-utilities.rtl.min.css
│ │ │ ├── bootstrap-utilities.rtl.min.css.map
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.css.map
│ │ │ ├── bootstrap.rtl.css
│ │ │ ├── bootstrap.rtl.css.map
│ │ │ ├── bootstrap.rtl.min.css
│ │ │ └── bootstrap.rtl.min.css.map
│ │ └── js
│ │ │ ├── bootstrap.bundle.js
│ │ │ ├── bootstrap.bundle.js.map
│ │ │ ├── bootstrap.bundle.min.js
│ │ │ ├── bootstrap.bundle.min.js.map
│ │ │ ├── bootstrap.esm.js
│ │ │ ├── bootstrap.esm.js.map
│ │ │ ├── bootstrap.esm.min.js
│ │ │ ├── bootstrap.esm.min.js.map
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.js.map
│ │ │ ├── bootstrap.min.js
│ │ │ └── bootstrap.min.js.map
│ ├── chart.js
│ │ └── chart.min.js
│ ├── fontawesome
│ │ ├── LICENSE.txt
│ │ ├── css
│ │ │ ├── all.css
│ │ │ ├── all.min.css
│ │ │ ├── brands.css
│ │ │ ├── brands.min.css
│ │ │ ├── fontawesome.css
│ │ │ ├── fontawesome.min.css
│ │ │ ├── regular.css
│ │ │ ├── regular.min.css
│ │ │ ├── solid.css
│ │ │ ├── solid.min.css
│ │ │ ├── svg-with-js.css
│ │ │ ├── svg-with-js.min.css
│ │ │ ├── v4-font-face.css
│ │ │ ├── v4-font-face.min.css
│ │ │ ├── v4-shims.css
│ │ │ ├── v4-shims.min.css
│ │ │ ├── v5-font-face.css
│ │ │ └── v5-font-face.min.css
│ │ ├── js
│ │ │ ├── all.js
│ │ │ ├── all.min.js
│ │ │ ├── brands.js
│ │ │ ├── brands.min.js
│ │ │ ├── conflict-detection.js
│ │ │ ├── conflict-detection.min.js
│ │ │ ├── fontawesome.js
│ │ │ ├── fontawesome.min.js
│ │ │ ├── regular.js
│ │ │ ├── regular.min.js
│ │ │ ├── solid.js
│ │ │ ├── solid.min.js
│ │ │ ├── v4-shims.js
│ │ │ └── v4-shims.min.js
│ │ ├── less
│ │ │ ├── _animated.less
│ │ │ ├── _bordered-pulled.less
│ │ │ ├── _core.less
│ │ │ ├── _fixed-width.less
│ │ │ ├── _icons.less
│ │ │ ├── _list.less
│ │ │ ├── _mixins.less
│ │ │ ├── _rotated-flipped.less
│ │ │ ├── _screen-reader.less
│ │ │ ├── _shims.less
│ │ │ ├── _sizing.less
│ │ │ ├── _stacked.less
│ │ │ ├── _variables.less
│ │ │ ├── brands.less
│ │ │ ├── fontawesome.less
│ │ │ ├── regular.less
│ │ │ ├── solid.less
│ │ │ └── v4-shims.less
│ │ ├── metadata
│ │ │ ├── categories.yml
│ │ │ ├── icon-families.json
│ │ │ ├── icon-families.yml
│ │ │ ├── icons.json
│ │ │ ├── icons.yml
│ │ │ ├── shims.json
│ │ │ ├── shims.yml
│ │ │ └── sponsors.yml
│ │ ├── scss
│ │ │ ├── _animated.scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _core.scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _functions.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _list.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _screen-reader.scss
│ │ │ ├── _shims.scss
│ │ │ ├── _sizing.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _variables.scss
│ │ │ ├── brands.scss
│ │ │ ├── fontawesome.scss
│ │ │ ├── regular.scss
│ │ │ ├── solid.scss
│ │ │ └── v4-shims.scss
│ │ ├── sprites
│ │ │ ├── brands.svg
│ │ │ ├── regular.svg
│ │ │ └── solid.svg
│ │ ├── svgs
│ │ │ ├── brands
│ │ │ │ ├── 42-group.svg
│ │ │ │ ├── 500px.svg
│ │ │ │ ├── accessible-icon.svg
│ │ │ │ ├── accusoft.svg
│ │ │ │ ├── adn.svg
│ │ │ │ ├── adversal.svg
│ │ │ │ ├── affiliatetheme.svg
│ │ │ │ ├── airbnb.svg
│ │ │ │ ├── algolia.svg
│ │ │ │ ├── alipay.svg
│ │ │ │ ├── amazon-pay.svg
│ │ │ │ ├── amazon.svg
│ │ │ │ ├── amilia.svg
│ │ │ │ ├── android.svg
│ │ │ │ ├── angellist.svg
│ │ │ │ ├── angrycreative.svg
│ │ │ │ ├── angular.svg
│ │ │ │ ├── app-store-ios.svg
│ │ │ │ ├── app-store.svg
│ │ │ │ ├── apper.svg
│ │ │ │ ├── apple-pay.svg
│ │ │ │ ├── apple.svg
│ │ │ │ ├── artstation.svg
│ │ │ │ ├── asymmetrik.svg
│ │ │ │ ├── atlassian.svg
│ │ │ │ ├── audible.svg
│ │ │ │ ├── autoprefixer.svg
│ │ │ │ ├── avianex.svg
│ │ │ │ ├── aviato.svg
│ │ │ │ ├── aws.svg
│ │ │ │ ├── bandcamp.svg
│ │ │ │ ├── battle-net.svg
│ │ │ │ ├── behance.svg
│ │ │ │ ├── bilibili.svg
│ │ │ │ ├── bimobject.svg
│ │ │ │ ├── bitbucket.svg
│ │ │ │ ├── bitcoin.svg
│ │ │ │ ├── bity.svg
│ │ │ │ ├── black-tie.svg
│ │ │ │ ├── blackberry.svg
│ │ │ │ ├── blogger-b.svg
│ │ │ │ ├── blogger.svg
│ │ │ │ ├── bluesky.svg
│ │ │ │ ├── bluetooth-b.svg
│ │ │ │ ├── bluetooth.svg
│ │ │ │ ├── bootstrap.svg
│ │ │ │ ├── bots.svg
│ │ │ │ ├── brave-reverse.svg
│ │ │ │ ├── brave.svg
│ │ │ │ ├── btc.svg
│ │ │ │ ├── buffer.svg
│ │ │ │ ├── buromobelexperte.svg
│ │ │ │ ├── buy-n-large.svg
│ │ │ │ ├── buysellads.svg
│ │ │ │ ├── canadian-maple-leaf.svg
│ │ │ │ ├── cc-amazon-pay.svg
│ │ │ │ ├── cc-amex.svg
│ │ │ │ ├── cc-apple-pay.svg
│ │ │ │ ├── cc-diners-club.svg
│ │ │ │ ├── cc-discover.svg
│ │ │ │ ├── cc-jcb.svg
│ │ │ │ ├── cc-mastercard.svg
│ │ │ │ ├── cc-paypal.svg
│ │ │ │ ├── cc-stripe.svg
│ │ │ │ ├── cc-visa.svg
│ │ │ │ ├── centercode.svg
│ │ │ │ ├── centos.svg
│ │ │ │ ├── chrome.svg
│ │ │ │ ├── chromecast.svg
│ │ │ │ ├── cloudflare.svg
│ │ │ │ ├── cloudscale.svg
│ │ │ │ ├── cloudsmith.svg
│ │ │ │ ├── cloudversify.svg
│ │ │ │ ├── cmplid.svg
│ │ │ │ ├── codepen.svg
│ │ │ │ ├── codiepie.svg
│ │ │ │ ├── confluence.svg
│ │ │ │ ├── connectdevelop.svg
│ │ │ │ ├── contao.svg
│ │ │ │ ├── cotton-bureau.svg
│ │ │ │ ├── cpanel.svg
│ │ │ │ ├── creative-commons-by.svg
│ │ │ │ ├── creative-commons-nc-eu.svg
│ │ │ │ ├── creative-commons-nc-jp.svg
│ │ │ │ ├── creative-commons-nc.svg
│ │ │ │ ├── creative-commons-nd.svg
│ │ │ │ ├── creative-commons-pd-alt.svg
│ │ │ │ ├── creative-commons-pd.svg
│ │ │ │ ├── creative-commons-remix.svg
│ │ │ │ ├── creative-commons-sa.svg
│ │ │ │ ├── creative-commons-sampling-plus.svg
│ │ │ │ ├── creative-commons-sampling.svg
│ │ │ │ ├── creative-commons-share.svg
│ │ │ │ ├── creative-commons-zero.svg
│ │ │ │ ├── creative-commons.svg
│ │ │ │ ├── critical-role.svg
│ │ │ │ ├── css3-alt.svg
│ │ │ │ ├── css3.svg
│ │ │ │ ├── cuttlefish.svg
│ │ │ │ ├── d-and-d-beyond.svg
│ │ │ │ ├── d-and-d.svg
│ │ │ │ ├── dailymotion.svg
│ │ │ │ ├── dart-lang.svg
│ │ │ │ ├── dashcube.svg
│ │ │ │ ├── debian.svg
│ │ │ │ ├── deezer.svg
│ │ │ │ ├── delicious.svg
│ │ │ │ ├── deploydog.svg
│ │ │ │ ├── deskpro.svg
│ │ │ │ ├── dev.svg
│ │ │ │ ├── deviantart.svg
│ │ │ │ ├── dhl.svg
│ │ │ │ ├── diaspora.svg
│ │ │ │ ├── digg.svg
│ │ │ │ ├── digital-ocean.svg
│ │ │ │ ├── discord.svg
│ │ │ │ ├── discourse.svg
│ │ │ │ ├── dochub.svg
│ │ │ │ ├── docker.svg
│ │ │ │ ├── draft2digital.svg
│ │ │ │ ├── dribbble.svg
│ │ │ │ ├── dropbox.svg
│ │ │ │ ├── drupal.svg
│ │ │ │ ├── dyalog.svg
│ │ │ │ ├── earlybirds.svg
│ │ │ │ ├── ebay.svg
│ │ │ │ ├── edge-legacy.svg
│ │ │ │ ├── edge.svg
│ │ │ │ ├── elementor.svg
│ │ │ │ ├── ello.svg
│ │ │ │ ├── ember.svg
│ │ │ │ ├── empire.svg
│ │ │ │ ├── envira.svg
│ │ │ │ ├── erlang.svg
│ │ │ │ ├── ethereum.svg
│ │ │ │ ├── etsy.svg
│ │ │ │ ├── evernote.svg
│ │ │ │ ├── expeditedssl.svg
│ │ │ │ ├── facebook-f.svg
│ │ │ │ ├── facebook-messenger.svg
│ │ │ │ ├── facebook.svg
│ │ │ │ ├── fantasy-flight-games.svg
│ │ │ │ ├── fedex.svg
│ │ │ │ ├── fedora.svg
│ │ │ │ ├── figma.svg
│ │ │ │ ├── firefox-browser.svg
│ │ │ │ ├── firefox.svg
│ │ │ │ ├── first-order-alt.svg
│ │ │ │ ├── first-order.svg
│ │ │ │ ├── firstdraft.svg
│ │ │ │ ├── flickr.svg
│ │ │ │ ├── flipboard.svg
│ │ │ │ ├── flutter.svg
│ │ │ │ ├── fly.svg
│ │ │ │ ├── font-awesome.svg
│ │ │ │ ├── fonticons-fi.svg
│ │ │ │ ├── fonticons.svg
│ │ │ │ ├── fort-awesome-alt.svg
│ │ │ │ ├── fort-awesome.svg
│ │ │ │ ├── forumbee.svg
│ │ │ │ ├── foursquare.svg
│ │ │ │ ├── free-code-camp.svg
│ │ │ │ ├── freebsd.svg
│ │ │ │ ├── fulcrum.svg
│ │ │ │ ├── galactic-republic.svg
│ │ │ │ ├── galactic-senate.svg
│ │ │ │ ├── get-pocket.svg
│ │ │ │ ├── gg-circle.svg
│ │ │ │ ├── gg.svg
│ │ │ │ ├── git-alt.svg
│ │ │ │ ├── git.svg
│ │ │ │ ├── github-alt.svg
│ │ │ │ ├── github.svg
│ │ │ │ ├── gitkraken.svg
│ │ │ │ ├── gitlab.svg
│ │ │ │ ├── gitter.svg
│ │ │ │ ├── glide-g.svg
│ │ │ │ ├── glide.svg
│ │ │ │ ├── gofore.svg
│ │ │ │ ├── golang.svg
│ │ │ │ ├── goodreads-g.svg
│ │ │ │ ├── goodreads.svg
│ │ │ │ ├── google-drive.svg
│ │ │ │ ├── google-pay.svg
│ │ │ │ ├── google-play.svg
│ │ │ │ ├── google-plus-g.svg
│ │ │ │ ├── google-plus.svg
│ │ │ │ ├── google-scholar.svg
│ │ │ │ ├── google-wallet.svg
│ │ │ │ ├── google.svg
│ │ │ │ ├── gratipay.svg
│ │ │ │ ├── grav.svg
│ │ │ │ ├── gripfire.svg
│ │ │ │ ├── grunt.svg
│ │ │ │ ├── guilded.svg
│ │ │ │ ├── gulp.svg
│ │ │ │ ├── hacker-news.svg
│ │ │ │ ├── hackerrank.svg
│ │ │ │ ├── hashnode.svg
│ │ │ │ ├── hips.svg
│ │ │ │ ├── hire-a-helper.svg
│ │ │ │ ├── hive.svg
│ │ │ │ ├── hooli.svg
│ │ │ │ ├── hornbill.svg
│ │ │ │ ├── hotjar.svg
│ │ │ │ ├── houzz.svg
│ │ │ │ ├── html5.svg
│ │ │ │ ├── hubspot.svg
│ │ │ │ ├── ideal.svg
│ │ │ │ ├── imdb.svg
│ │ │ │ ├── instagram.svg
│ │ │ │ ├── instalod.svg
│ │ │ │ ├── intercom.svg
│ │ │ │ ├── internet-explorer.svg
│ │ │ │ ├── invision.svg
│ │ │ │ ├── ioxhost.svg
│ │ │ │ ├── itch-io.svg
│ │ │ │ ├── itunes-note.svg
│ │ │ │ ├── itunes.svg
│ │ │ │ ├── java.svg
│ │ │ │ ├── jedi-order.svg
│ │ │ │ ├── jenkins.svg
│ │ │ │ ├── jira.svg
│ │ │ │ ├── joget.svg
│ │ │ │ ├── joomla.svg
│ │ │ │ ├── js.svg
│ │ │ │ ├── jsfiddle.svg
│ │ │ │ ├── jxl.svg
│ │ │ │ ├── kaggle.svg
│ │ │ │ ├── keybase.svg
│ │ │ │ ├── keycdn.svg
│ │ │ │ ├── kickstarter-k.svg
│ │ │ │ ├── kickstarter.svg
│ │ │ │ ├── korvue.svg
│ │ │ │ ├── laravel.svg
│ │ │ │ ├── lastfm.svg
│ │ │ │ ├── leanpub.svg
│ │ │ │ ├── less.svg
│ │ │ │ ├── letterboxd.svg
│ │ │ │ ├── line.svg
│ │ │ │ ├── linkedin-in.svg
│ │ │ │ ├── linkedin.svg
│ │ │ │ ├── linode.svg
│ │ │ │ ├── linux.svg
│ │ │ │ ├── lyft.svg
│ │ │ │ ├── magento.svg
│ │ │ │ ├── mailchimp.svg
│ │ │ │ ├── mandalorian.svg
│ │ │ │ ├── markdown.svg
│ │ │ │ ├── mastodon.svg
│ │ │ │ ├── maxcdn.svg
│ │ │ │ ├── mdb.svg
│ │ │ │ ├── medapps.svg
│ │ │ │ ├── medium.svg
│ │ │ │ ├── medrt.svg
│ │ │ │ ├── meetup.svg
│ │ │ │ ├── megaport.svg
│ │ │ │ ├── mendeley.svg
│ │ │ │ ├── meta.svg
│ │ │ │ ├── microblog.svg
│ │ │ │ ├── microsoft.svg
│ │ │ │ ├── mintbit.svg
│ │ │ │ ├── mix.svg
│ │ │ │ ├── mixcloud.svg
│ │ │ │ ├── mixer.svg
│ │ │ │ ├── mizuni.svg
│ │ │ │ ├── modx.svg
│ │ │ │ ├── monero.svg
│ │ │ │ ├── napster.svg
│ │ │ │ ├── neos.svg
│ │ │ │ ├── nfc-directional.svg
│ │ │ │ ├── nfc-symbol.svg
│ │ │ │ ├── nimblr.svg
│ │ │ │ ├── node-js.svg
│ │ │ │ ├── node.svg
│ │ │ │ ├── npm.svg
│ │ │ │ ├── ns8.svg
│ │ │ │ ├── nutritionix.svg
│ │ │ │ ├── octopus-deploy.svg
│ │ │ │ ├── odnoklassniki.svg
│ │ │ │ ├── odysee.svg
│ │ │ │ ├── old-republic.svg
│ │ │ │ ├── opencart.svg
│ │ │ │ ├── openid.svg
│ │ │ │ ├── opensuse.svg
│ │ │ │ ├── opera.svg
│ │ │ │ ├── optin-monster.svg
│ │ │ │ ├── orcid.svg
│ │ │ │ ├── osi.svg
│ │ │ │ ├── padlet.svg
│ │ │ │ ├── page4.svg
│ │ │ │ ├── pagelines.svg
│ │ │ │ ├── palfed.svg
│ │ │ │ ├── patreon.svg
│ │ │ │ ├── paypal.svg
│ │ │ │ ├── perbyte.svg
│ │ │ │ ├── periscope.svg
│ │ │ │ ├── phabricator.svg
│ │ │ │ ├── phoenix-framework.svg
│ │ │ │ ├── phoenix-squadron.svg
│ │ │ │ ├── php.svg
│ │ │ │ ├── pied-piper-alt.svg
│ │ │ │ ├── pied-piper-hat.svg
│ │ │ │ ├── pied-piper-pp.svg
│ │ │ │ ├── pied-piper.svg
│ │ │ │ ├── pinterest-p.svg
│ │ │ │ ├── pinterest.svg
│ │ │ │ ├── pix.svg
│ │ │ │ ├── pixiv.svg
│ │ │ │ ├── playstation.svg
│ │ │ │ ├── product-hunt.svg
│ │ │ │ ├── pushed.svg
│ │ │ │ ├── python.svg
│ │ │ │ ├── qq.svg
│ │ │ │ ├── quinscape.svg
│ │ │ │ ├── quora.svg
│ │ │ │ ├── r-project.svg
│ │ │ │ ├── raspberry-pi.svg
│ │ │ │ ├── ravelry.svg
│ │ │ │ ├── react.svg
│ │ │ │ ├── reacteurope.svg
│ │ │ │ ├── readme.svg
│ │ │ │ ├── rebel.svg
│ │ │ │ ├── red-river.svg
│ │ │ │ ├── reddit-alien.svg
│ │ │ │ ├── reddit.svg
│ │ │ │ ├── redhat.svg
│ │ │ │ ├── renren.svg
│ │ │ │ ├── replyd.svg
│ │ │ │ ├── researchgate.svg
│ │ │ │ ├── resolving.svg
│ │ │ │ ├── rev.svg
│ │ │ │ ├── rocketchat.svg
│ │ │ │ ├── rockrms.svg
│ │ │ │ ├── rust.svg
│ │ │ │ ├── safari.svg
│ │ │ │ ├── salesforce.svg
│ │ │ │ ├── sass.svg
│ │ │ │ ├── schlix.svg
│ │ │ │ ├── screenpal.svg
│ │ │ │ ├── scribd.svg
│ │ │ │ ├── searchengin.svg
│ │ │ │ ├── sellcast.svg
│ │ │ │ ├── sellsy.svg
│ │ │ │ ├── servicestack.svg
│ │ │ │ ├── shirtsinbulk.svg
│ │ │ │ ├── shoelace.svg
│ │ │ │ ├── shopify.svg
│ │ │ │ ├── shopware.svg
│ │ │ │ ├── signal-messenger.svg
│ │ │ │ ├── simplybuilt.svg
│ │ │ │ ├── sistrix.svg
│ │ │ │ ├── sith.svg
│ │ │ │ ├── sitrox.svg
│ │ │ │ ├── sketch.svg
│ │ │ │ ├── skyatlas.svg
│ │ │ │ ├── skype.svg
│ │ │ │ ├── slack.svg
│ │ │ │ ├── slideshare.svg
│ │ │ │ ├── snapchat.svg
│ │ │ │ ├── soundcloud.svg
│ │ │ │ ├── sourcetree.svg
│ │ │ │ ├── space-awesome.svg
│ │ │ │ ├── speakap.svg
│ │ │ │ ├── speaker-deck.svg
│ │ │ │ ├── spotify.svg
│ │ │ │ ├── square-behance.svg
│ │ │ │ ├── square-dribbble.svg
│ │ │ │ ├── square-facebook.svg
│ │ │ │ ├── square-font-awesome-stroke.svg
│ │ │ │ ├── square-font-awesome.svg
│ │ │ │ ├── square-git.svg
│ │ │ │ ├── square-github.svg
│ │ │ │ ├── square-gitlab.svg
│ │ │ │ ├── square-google-plus.svg
│ │ │ │ ├── square-hacker-news.svg
│ │ │ │ ├── square-instagram.svg
│ │ │ │ ├── square-js.svg
│ │ │ │ ├── square-lastfm.svg
│ │ │ │ ├── square-letterboxd.svg
│ │ │ │ ├── square-odnoklassniki.svg
│ │ │ │ ├── square-pied-piper.svg
│ │ │ │ ├── square-pinterest.svg
│ │ │ │ ├── square-reddit.svg
│ │ │ │ ├── square-snapchat.svg
│ │ │ │ ├── square-steam.svg
│ │ │ │ ├── square-threads.svg
│ │ │ │ ├── square-tumblr.svg
│ │ │ │ ├── square-twitter.svg
│ │ │ │ ├── square-upwork.svg
│ │ │ │ ├── square-viadeo.svg
│ │ │ │ ├── square-vimeo.svg
│ │ │ │ ├── square-web-awesome-stroke.svg
│ │ │ │ ├── square-web-awesome.svg
│ │ │ │ ├── square-whatsapp.svg
│ │ │ │ ├── square-x-twitter.svg
│ │ │ │ ├── square-xing.svg
│ │ │ │ ├── square-youtube.svg
│ │ │ │ ├── squarespace.svg
│ │ │ │ ├── stack-exchange.svg
│ │ │ │ ├── stack-overflow.svg
│ │ │ │ ├── stackpath.svg
│ │ │ │ ├── staylinked.svg
│ │ │ │ ├── steam-symbol.svg
│ │ │ │ ├── steam.svg
│ │ │ │ ├── sticker-mule.svg
│ │ │ │ ├── strava.svg
│ │ │ │ ├── stripe-s.svg
│ │ │ │ ├── stripe.svg
│ │ │ │ ├── stubber.svg
│ │ │ │ ├── studiovinari.svg
│ │ │ │ ├── stumbleupon-circle.svg
│ │ │ │ ├── stumbleupon.svg
│ │ │ │ ├── superpowers.svg
│ │ │ │ ├── supple.svg
│ │ │ │ ├── suse.svg
│ │ │ │ ├── swift.svg
│ │ │ │ ├── symfony.svg
│ │ │ │ ├── teamspeak.svg
│ │ │ │ ├── telegram.svg
│ │ │ │ ├── tencent-weibo.svg
│ │ │ │ ├── the-red-yeti.svg
│ │ │ │ ├── themeco.svg
│ │ │ │ ├── themeisle.svg
│ │ │ │ ├── think-peaks.svg
│ │ │ │ ├── threads.svg
│ │ │ │ ├── tiktok.svg
│ │ │ │ ├── trade-federation.svg
│ │ │ │ ├── trello.svg
│ │ │ │ ├── tumblr.svg
│ │ │ │ ├── twitch.svg
│ │ │ │ ├── twitter.svg
│ │ │ │ ├── typo3.svg
│ │ │ │ ├── uber.svg
│ │ │ │ ├── ubuntu.svg
│ │ │ │ ├── uikit.svg
│ │ │ │ ├── umbraco.svg
│ │ │ │ ├── uncharted.svg
│ │ │ │ ├── uniregistry.svg
│ │ │ │ ├── unity.svg
│ │ │ │ ├── unsplash.svg
│ │ │ │ ├── untappd.svg
│ │ │ │ ├── ups.svg
│ │ │ │ ├── upwork.svg
│ │ │ │ ├── usb.svg
│ │ │ │ ├── usps.svg
│ │ │ │ ├── ussunnah.svg
│ │ │ │ ├── vaadin.svg
│ │ │ │ ├── viacoin.svg
│ │ │ │ ├── viadeo.svg
│ │ │ │ ├── viber.svg
│ │ │ │ ├── vimeo-v.svg
│ │ │ │ ├── vimeo.svg
│ │ │ │ ├── vine.svg
│ │ │ │ ├── vk.svg
│ │ │ │ ├── vnv.svg
│ │ │ │ ├── vuejs.svg
│ │ │ │ ├── watchman-monitoring.svg
│ │ │ │ ├── waze.svg
│ │ │ │ ├── web-awesome.svg
│ │ │ │ ├── webflow.svg
│ │ │ │ ├── weebly.svg
│ │ │ │ ├── weibo.svg
│ │ │ │ ├── weixin.svg
│ │ │ │ ├── whatsapp.svg
│ │ │ │ ├── whmcs.svg
│ │ │ │ ├── wikipedia-w.svg
│ │ │ │ ├── windows.svg
│ │ │ │ ├── wirsindhandwerk.svg
│ │ │ │ ├── wix.svg
│ │ │ │ ├── wizards-of-the-coast.svg
│ │ │ │ ├── wodu.svg
│ │ │ │ ├── wolf-pack-battalion.svg
│ │ │ │ ├── wordpress-simple.svg
│ │ │ │ ├── wordpress.svg
│ │ │ │ ├── wpbeginner.svg
│ │ │ │ ├── wpexplorer.svg
│ │ │ │ ├── wpforms.svg
│ │ │ │ ├── wpressr.svg
│ │ │ │ ├── x-twitter.svg
│ │ │ │ ├── xbox.svg
│ │ │ │ ├── xing.svg
│ │ │ │ ├── y-combinator.svg
│ │ │ │ ├── yahoo.svg
│ │ │ │ ├── yammer.svg
│ │ │ │ ├── yandex-international.svg
│ │ │ │ ├── yandex.svg
│ │ │ │ ├── yarn.svg
│ │ │ │ ├── yelp.svg
│ │ │ │ ├── yoast.svg
│ │ │ │ ├── youtube.svg
│ │ │ │ └── zhihu.svg
│ │ │ ├── regular
│ │ │ │ ├── address-book.svg
│ │ │ │ ├── address-card.svg
│ │ │ │ ├── bell-slash.svg
│ │ │ │ ├── bell.svg
│ │ │ │ ├── bookmark.svg
│ │ │ │ ├── building.svg
│ │ │ │ ├── calendar-check.svg
│ │ │ │ ├── calendar-days.svg
│ │ │ │ ├── calendar-minus.svg
│ │ │ │ ├── calendar-plus.svg
│ │ │ │ ├── calendar-xmark.svg
│ │ │ │ ├── calendar.svg
│ │ │ │ ├── chart-bar.svg
│ │ │ │ ├── chess-bishop.svg
│ │ │ │ ├── chess-king.svg
│ │ │ │ ├── chess-knight.svg
│ │ │ │ ├── chess-pawn.svg
│ │ │ │ ├── chess-queen.svg
│ │ │ │ ├── chess-rook.svg
│ │ │ │ ├── circle-check.svg
│ │ │ │ ├── circle-dot.svg
│ │ │ │ ├── circle-down.svg
│ │ │ │ ├── circle-left.svg
│ │ │ │ ├── circle-pause.svg
│ │ │ │ ├── circle-play.svg
│ │ │ │ ├── circle-question.svg
│ │ │ │ ├── circle-right.svg
│ │ │ │ ├── circle-stop.svg
│ │ │ │ ├── circle-up.svg
│ │ │ │ ├── circle-user.svg
│ │ │ │ ├── circle-xmark.svg
│ │ │ │ ├── circle.svg
│ │ │ │ ├── clipboard.svg
│ │ │ │ ├── clock.svg
│ │ │ │ ├── clone.svg
│ │ │ │ ├── closed-captioning.svg
│ │ │ │ ├── comment-dots.svg
│ │ │ │ ├── comment.svg
│ │ │ │ ├── comments.svg
│ │ │ │ ├── compass.svg
│ │ │ │ ├── copy.svg
│ │ │ │ ├── copyright.svg
│ │ │ │ ├── credit-card.svg
│ │ │ │ ├── envelope-open.svg
│ │ │ │ ├── envelope.svg
│ │ │ │ ├── eye-slash.svg
│ │ │ │ ├── eye.svg
│ │ │ │ ├── face-angry.svg
│ │ │ │ ├── face-dizzy.svg
│ │ │ │ ├── face-flushed.svg
│ │ │ │ ├── face-frown-open.svg
│ │ │ │ ├── face-frown.svg
│ │ │ │ ├── face-grimace.svg
│ │ │ │ ├── face-grin-beam-sweat.svg
│ │ │ │ ├── face-grin-beam.svg
│ │ │ │ ├── face-grin-hearts.svg
│ │ │ │ ├── face-grin-squint-tears.svg
│ │ │ │ ├── face-grin-squint.svg
│ │ │ │ ├── face-grin-stars.svg
│ │ │ │ ├── face-grin-tears.svg
│ │ │ │ ├── face-grin-tongue-squint.svg
│ │ │ │ ├── face-grin-tongue-wink.svg
│ │ │ │ ├── face-grin-tongue.svg
│ │ │ │ ├── face-grin-wide.svg
│ │ │ │ ├── face-grin-wink.svg
│ │ │ │ ├── face-grin.svg
│ │ │ │ ├── face-kiss-beam.svg
│ │ │ │ ├── face-kiss-wink-heart.svg
│ │ │ │ ├── face-kiss.svg
│ │ │ │ ├── face-laugh-beam.svg
│ │ │ │ ├── face-laugh-squint.svg
│ │ │ │ ├── face-laugh-wink.svg
│ │ │ │ ├── face-laugh.svg
│ │ │ │ ├── face-meh-blank.svg
│ │ │ │ ├── face-meh.svg
│ │ │ │ ├── face-rolling-eyes.svg
│ │ │ │ ├── face-sad-cry.svg
│ │ │ │ ├── face-sad-tear.svg
│ │ │ │ ├── face-smile-beam.svg
│ │ │ │ ├── face-smile-wink.svg
│ │ │ │ ├── face-smile.svg
│ │ │ │ ├── face-surprise.svg
│ │ │ │ ├── face-tired.svg
│ │ │ │ ├── file-audio.svg
│ │ │ │ ├── file-code.svg
│ │ │ │ ├── file-excel.svg
│ │ │ │ ├── file-image.svg
│ │ │ │ ├── file-lines.svg
│ │ │ │ ├── file-pdf.svg
│ │ │ │ ├── file-powerpoint.svg
│ │ │ │ ├── file-video.svg
│ │ │ │ ├── file-word.svg
│ │ │ │ ├── file-zipper.svg
│ │ │ │ ├── file.svg
│ │ │ │ ├── flag.svg
│ │ │ │ ├── floppy-disk.svg
│ │ │ │ ├── folder-closed.svg
│ │ │ │ ├── folder-open.svg
│ │ │ │ ├── folder.svg
│ │ │ │ ├── font-awesome.svg
│ │ │ │ ├── futbol.svg
│ │ │ │ ├── gem.svg
│ │ │ │ ├── hand-back-fist.svg
│ │ │ │ ├── hand-lizard.svg
│ │ │ │ ├── hand-peace.svg
│ │ │ │ ├── hand-point-down.svg
│ │ │ │ ├── hand-point-left.svg
│ │ │ │ ├── hand-point-right.svg
│ │ │ │ ├── hand-point-up.svg
│ │ │ │ ├── hand-pointer.svg
│ │ │ │ ├── hand-scissors.svg
│ │ │ │ ├── hand-spock.svg
│ │ │ │ ├── hand.svg
│ │ │ │ ├── handshake.svg
│ │ │ │ ├── hard-drive.svg
│ │ │ │ ├── heart.svg
│ │ │ │ ├── hospital.svg
│ │ │ │ ├── hourglass-half.svg
│ │ │ │ ├── hourglass.svg
│ │ │ │ ├── id-badge.svg
│ │ │ │ ├── id-card.svg
│ │ │ │ ├── image.svg
│ │ │ │ ├── images.svg
│ │ │ │ ├── keyboard.svg
│ │ │ │ ├── lemon.svg
│ │ │ │ ├── life-ring.svg
│ │ │ │ ├── lightbulb.svg
│ │ │ │ ├── map.svg
│ │ │ │ ├── message.svg
│ │ │ │ ├── money-bill-1.svg
│ │ │ │ ├── moon.svg
│ │ │ │ ├── newspaper.svg
│ │ │ │ ├── note-sticky.svg
│ │ │ │ ├── object-group.svg
│ │ │ │ ├── object-ungroup.svg
│ │ │ │ ├── paper-plane.svg
│ │ │ │ ├── paste.svg
│ │ │ │ ├── pen-to-square.svg
│ │ │ │ ├── rectangle-list.svg
│ │ │ │ ├── rectangle-xmark.svg
│ │ │ │ ├── registered.svg
│ │ │ │ ├── share-from-square.svg
│ │ │ │ ├── snowflake.svg
│ │ │ │ ├── square-caret-down.svg
│ │ │ │ ├── square-caret-left.svg
│ │ │ │ ├── square-caret-right.svg
│ │ │ │ ├── square-caret-up.svg
│ │ │ │ ├── square-check.svg
│ │ │ │ ├── square-full.svg
│ │ │ │ ├── square-minus.svg
│ │ │ │ ├── square-plus.svg
│ │ │ │ ├── square.svg
│ │ │ │ ├── star-half-stroke.svg
│ │ │ │ ├── star-half.svg
│ │ │ │ ├── star.svg
│ │ │ │ ├── sun.svg
│ │ │ │ ├── thumbs-down.svg
│ │ │ │ ├── thumbs-up.svg
│ │ │ │ ├── trash-can.svg
│ │ │ │ ├── user.svg
│ │ │ │ ├── window-maximize.svg
│ │ │ │ ├── window-minimize.svg
│ │ │ │ └── window-restore.svg
│ │ │ └── solid
│ │ │ │ ├── 0.svg
│ │ │ │ ├── 1.svg
│ │ │ │ ├── 2.svg
│ │ │ │ ├── 3.svg
│ │ │ │ ├── 4.svg
│ │ │ │ ├── 5.svg
│ │ │ │ ├── 6.svg
│ │ │ │ ├── 7.svg
│ │ │ │ ├── 8.svg
│ │ │ │ ├── 9.svg
│ │ │ │ ├── a.svg
│ │ │ │ ├── address-book.svg
│ │ │ │ ├── address-card.svg
│ │ │ │ ├── align-center.svg
│ │ │ │ ├── align-justify.svg
│ │ │ │ ├── align-left.svg
│ │ │ │ ├── align-right.svg
│ │ │ │ ├── anchor-circle-check.svg
│ │ │ │ ├── anchor-circle-exclamation.svg
│ │ │ │ ├── anchor-circle-xmark.svg
│ │ │ │ ├── anchor-lock.svg
│ │ │ │ ├── anchor.svg
│ │ │ │ ├── angle-down.svg
│ │ │ │ ├── angle-left.svg
│ │ │ │ ├── angle-right.svg
│ │ │ │ ├── angle-up.svg
│ │ │ │ ├── angles-down.svg
│ │ │ │ ├── angles-left.svg
│ │ │ │ ├── angles-right.svg
│ │ │ │ ├── angles-up.svg
│ │ │ │ ├── ankh.svg
│ │ │ │ ├── apple-whole.svg
│ │ │ │ ├── archway.svg
│ │ │ │ ├── arrow-down-1-9.svg
│ │ │ │ ├── arrow-down-9-1.svg
│ │ │ │ ├── arrow-down-a-z.svg
│ │ │ │ ├── arrow-down-long.svg
│ │ │ │ ├── arrow-down-short-wide.svg
│ │ │ │ ├── arrow-down-up-across-line.svg
│ │ │ │ ├── arrow-down-up-lock.svg
│ │ │ │ ├── arrow-down-wide-short.svg
│ │ │ │ ├── arrow-down-z-a.svg
│ │ │ │ ├── arrow-down.svg
│ │ │ │ ├── arrow-left-long.svg
│ │ │ │ ├── arrow-left.svg
│ │ │ │ ├── arrow-pointer.svg
│ │ │ │ ├── arrow-right-arrow-left.svg
│ │ │ │ ├── arrow-right-from-bracket.svg
│ │ │ │ ├── arrow-right-long.svg
│ │ │ │ ├── arrow-right-to-bracket.svg
│ │ │ │ ├── arrow-right-to-city.svg
│ │ │ │ ├── arrow-right.svg
│ │ │ │ ├── arrow-rotate-left.svg
│ │ │ │ ├── arrow-rotate-right.svg
│ │ │ │ ├── arrow-trend-down.svg
│ │ │ │ ├── arrow-trend-up.svg
│ │ │ │ ├── arrow-turn-down.svg
│ │ │ │ ├── arrow-turn-up.svg
│ │ │ │ ├── arrow-up-1-9.svg
│ │ │ │ ├── arrow-up-9-1.svg
│ │ │ │ ├── arrow-up-a-z.svg
│ │ │ │ ├── arrow-up-from-bracket.svg
│ │ │ │ ├── arrow-up-from-ground-water.svg
│ │ │ │ ├── arrow-up-from-water-pump.svg
│ │ │ │ ├── arrow-up-long.svg
│ │ │ │ ├── arrow-up-right-dots.svg
│ │ │ │ ├── arrow-up-right-from-square.svg
│ │ │ │ ├── arrow-up-short-wide.svg
│ │ │ │ ├── arrow-up-wide-short.svg
│ │ │ │ ├── arrow-up-z-a.svg
│ │ │ │ ├── arrow-up.svg
│ │ │ │ ├── arrows-down-to-line.svg
│ │ │ │ ├── arrows-down-to-people.svg
│ │ │ │ ├── arrows-left-right-to-line.svg
│ │ │ │ ├── arrows-left-right.svg
│ │ │ │ ├── arrows-rotate.svg
│ │ │ │ ├── arrows-spin.svg
│ │ │ │ ├── arrows-split-up-and-left.svg
│ │ │ │ ├── arrows-to-circle.svg
│ │ │ │ ├── arrows-to-dot.svg
│ │ │ │ ├── arrows-to-eye.svg
│ │ │ │ ├── arrows-turn-right.svg
│ │ │ │ ├── arrows-turn-to-dots.svg
│ │ │ │ ├── arrows-up-down-left-right.svg
│ │ │ │ ├── arrows-up-down.svg
│ │ │ │ ├── arrows-up-to-line.svg
│ │ │ │ ├── asterisk.svg
│ │ │ │ ├── at.svg
│ │ │ │ ├── atom.svg
│ │ │ │ ├── audio-description.svg
│ │ │ │ ├── austral-sign.svg
│ │ │ │ ├── award.svg
│ │ │ │ ├── b.svg
│ │ │ │ ├── baby-carriage.svg
│ │ │ │ ├── baby.svg
│ │ │ │ ├── backward-fast.svg
│ │ │ │ ├── backward-step.svg
│ │ │ │ ├── backward.svg
│ │ │ │ ├── bacon.svg
│ │ │ │ ├── bacteria.svg
│ │ │ │ ├── bacterium.svg
│ │ │ │ ├── bag-shopping.svg
│ │ │ │ ├── bahai.svg
│ │ │ │ ├── baht-sign.svg
│ │ │ │ ├── ban-smoking.svg
│ │ │ │ ├── ban.svg
│ │ │ │ ├── bandage.svg
│ │ │ │ ├── bangladeshi-taka-sign.svg
│ │ │ │ ├── barcode.svg
│ │ │ │ ├── bars-progress.svg
│ │ │ │ ├── bars-staggered.svg
│ │ │ │ ├── bars.svg
│ │ │ │ ├── baseball-bat-ball.svg
│ │ │ │ ├── baseball.svg
│ │ │ │ ├── basket-shopping.svg
│ │ │ │ ├── basketball.svg
│ │ │ │ ├── bath.svg
│ │ │ │ ├── battery-empty.svg
│ │ │ │ ├── battery-full.svg
│ │ │ │ ├── battery-half.svg
│ │ │ │ ├── battery-quarter.svg
│ │ │ │ ├── battery-three-quarters.svg
│ │ │ │ ├── bed-pulse.svg
│ │ │ │ ├── bed.svg
│ │ │ │ ├── beer-mug-empty.svg
│ │ │ │ ├── bell-concierge.svg
│ │ │ │ ├── bell-slash.svg
│ │ │ │ ├── bell.svg
│ │ │ │ ├── bezier-curve.svg
│ │ │ │ ├── bicycle.svg
│ │ │ │ ├── binoculars.svg
│ │ │ │ ├── biohazard.svg
│ │ │ │ ├── bitcoin-sign.svg
│ │ │ │ ├── blender-phone.svg
│ │ │ │ ├── blender.svg
│ │ │ │ ├── blog.svg
│ │ │ │ ├── bold.svg
│ │ │ │ ├── bolt-lightning.svg
│ │ │ │ ├── bolt.svg
│ │ │ │ ├── bomb.svg
│ │ │ │ ├── bone.svg
│ │ │ │ ├── bong.svg
│ │ │ │ ├── book-atlas.svg
│ │ │ │ ├── book-bible.svg
│ │ │ │ ├── book-bookmark.svg
│ │ │ │ ├── book-journal-whills.svg
│ │ │ │ ├── book-medical.svg
│ │ │ │ ├── book-open-reader.svg
│ │ │ │ ├── book-open.svg
│ │ │ │ ├── book-quran.svg
│ │ │ │ ├── book-skull.svg
│ │ │ │ ├── book-tanakh.svg
│ │ │ │ ├── book.svg
│ │ │ │ ├── bookmark.svg
│ │ │ │ ├── border-all.svg
│ │ │ │ ├── border-none.svg
│ │ │ │ ├── border-top-left.svg
│ │ │ │ ├── bore-hole.svg
│ │ │ │ ├── bottle-droplet.svg
│ │ │ │ ├── bottle-water.svg
│ │ │ │ ├── bowl-food.svg
│ │ │ │ ├── bowl-rice.svg
│ │ │ │ ├── bowling-ball.svg
│ │ │ │ ├── box-archive.svg
│ │ │ │ ├── box-open.svg
│ │ │ │ ├── box-tissue.svg
│ │ │ │ ├── box.svg
│ │ │ │ ├── boxes-packing.svg
│ │ │ │ ├── boxes-stacked.svg
│ │ │ │ ├── braille.svg
│ │ │ │ ├── brain.svg
│ │ │ │ ├── brazilian-real-sign.svg
│ │ │ │ ├── bread-slice.svg
│ │ │ │ ├── bridge-circle-check.svg
│ │ │ │ ├── bridge-circle-exclamation.svg
│ │ │ │ ├── bridge-circle-xmark.svg
│ │ │ │ ├── bridge-lock.svg
│ │ │ │ ├── bridge-water.svg
│ │ │ │ ├── bridge.svg
│ │ │ │ ├── briefcase-medical.svg
│ │ │ │ ├── briefcase.svg
│ │ │ │ ├── broom-ball.svg
│ │ │ │ ├── broom.svg
│ │ │ │ ├── brush.svg
│ │ │ │ ├── bucket.svg
│ │ │ │ ├── bug-slash.svg
│ │ │ │ ├── bug.svg
│ │ │ │ ├── bugs.svg
│ │ │ │ ├── building-circle-arrow-right.svg
│ │ │ │ ├── building-circle-check.svg
│ │ │ │ ├── building-circle-exclamation.svg
│ │ │ │ ├── building-circle-xmark.svg
│ │ │ │ ├── building-columns.svg
│ │ │ │ ├── building-flag.svg
│ │ │ │ ├── building-lock.svg
│ │ │ │ ├── building-ngo.svg
│ │ │ │ ├── building-shield.svg
│ │ │ │ ├── building-un.svg
│ │ │ │ ├── building-user.svg
│ │ │ │ ├── building-wheat.svg
│ │ │ │ ├── building.svg
│ │ │ │ ├── bullhorn.svg
│ │ │ │ ├── bullseye.svg
│ │ │ │ ├── burger.svg
│ │ │ │ ├── burst.svg
│ │ │ │ ├── bus-simple.svg
│ │ │ │ ├── bus.svg
│ │ │ │ ├── business-time.svg
│ │ │ │ ├── c.svg
│ │ │ │ ├── cable-car.svg
│ │ │ │ ├── cake-candles.svg
│ │ │ │ ├── calculator.svg
│ │ │ │ ├── calendar-check.svg
│ │ │ │ ├── calendar-day.svg
│ │ │ │ ├── calendar-days.svg
│ │ │ │ ├── calendar-minus.svg
│ │ │ │ ├── calendar-plus.svg
│ │ │ │ ├── calendar-week.svg
│ │ │ │ ├── calendar-xmark.svg
│ │ │ │ ├── calendar.svg
│ │ │ │ ├── camera-retro.svg
│ │ │ │ ├── camera-rotate.svg
│ │ │ │ ├── camera.svg
│ │ │ │ ├── campground.svg
│ │ │ │ ├── candy-cane.svg
│ │ │ │ ├── cannabis.svg
│ │ │ │ ├── capsules.svg
│ │ │ │ ├── car-battery.svg
│ │ │ │ ├── car-burst.svg
│ │ │ │ ├── car-on.svg
│ │ │ │ ├── car-rear.svg
│ │ │ │ ├── car-side.svg
│ │ │ │ ├── car-tunnel.svg
│ │ │ │ ├── car.svg
│ │ │ │ ├── caravan.svg
│ │ │ │ ├── caret-down.svg
│ │ │ │ ├── caret-left.svg
│ │ │ │ ├── caret-right.svg
│ │ │ │ ├── caret-up.svg
│ │ │ │ ├── carrot.svg
│ │ │ │ ├── cart-arrow-down.svg
│ │ │ │ ├── cart-flatbed-suitcase.svg
│ │ │ │ ├── cart-flatbed.svg
│ │ │ │ ├── cart-plus.svg
│ │ │ │ ├── cart-shopping.svg
│ │ │ │ ├── cash-register.svg
│ │ │ │ ├── cat.svg
│ │ │ │ ├── cedi-sign.svg
│ │ │ │ ├── cent-sign.svg
│ │ │ │ ├── certificate.svg
│ │ │ │ ├── chair.svg
│ │ │ │ ├── chalkboard-user.svg
│ │ │ │ ├── chalkboard.svg
│ │ │ │ ├── champagne-glasses.svg
│ │ │ │ ├── charging-station.svg
│ │ │ │ ├── chart-area.svg
│ │ │ │ ├── chart-bar.svg
│ │ │ │ ├── chart-column.svg
│ │ │ │ ├── chart-gantt.svg
│ │ │ │ ├── chart-line.svg
│ │ │ │ ├── chart-pie.svg
│ │ │ │ ├── chart-simple.svg
│ │ │ │ ├── check-double.svg
│ │ │ │ ├── check-to-slot.svg
│ │ │ │ ├── check.svg
│ │ │ │ ├── cheese.svg
│ │ │ │ ├── chess-bishop.svg
│ │ │ │ ├── chess-board.svg
│ │ │ │ ├── chess-king.svg
│ │ │ │ ├── chess-knight.svg
│ │ │ │ ├── chess-pawn.svg
│ │ │ │ ├── chess-queen.svg
│ │ │ │ ├── chess-rook.svg
│ │ │ │ ├── chess.svg
│ │ │ │ ├── chevron-down.svg
│ │ │ │ ├── chevron-left.svg
│ │ │ │ ├── chevron-right.svg
│ │ │ │ ├── chevron-up.svg
│ │ │ │ ├── child-combatant.svg
│ │ │ │ ├── child-dress.svg
│ │ │ │ ├── child-reaching.svg
│ │ │ │ ├── child.svg
│ │ │ │ ├── children.svg
│ │ │ │ ├── church.svg
│ │ │ │ ├── circle-arrow-down.svg
│ │ │ │ ├── circle-arrow-left.svg
│ │ │ │ ├── circle-arrow-right.svg
│ │ │ │ ├── circle-arrow-up.svg
│ │ │ │ ├── circle-check.svg
│ │ │ │ ├── circle-chevron-down.svg
│ │ │ │ ├── circle-chevron-left.svg
│ │ │ │ ├── circle-chevron-right.svg
│ │ │ │ ├── circle-chevron-up.svg
│ │ │ │ ├── circle-dollar-to-slot.svg
│ │ │ │ ├── circle-dot.svg
│ │ │ │ ├── circle-down.svg
│ │ │ │ ├── circle-exclamation.svg
│ │ │ │ ├── circle-h.svg
│ │ │ │ ├── circle-half-stroke.svg
│ │ │ │ ├── circle-info.svg
│ │ │ │ ├── circle-left.svg
│ │ │ │ ├── circle-minus.svg
│ │ │ │ ├── circle-nodes.svg
│ │ │ │ ├── circle-notch.svg
│ │ │ │ ├── circle-pause.svg
│ │ │ │ ├── circle-play.svg
│ │ │ │ ├── circle-plus.svg
│ │ │ │ ├── circle-question.svg
│ │ │ │ ├── circle-radiation.svg
│ │ │ │ ├── circle-right.svg
│ │ │ │ ├── circle-stop.svg
│ │ │ │ ├── circle-up.svg
│ │ │ │ ├── circle-user.svg
│ │ │ │ ├── circle-xmark.svg
│ │ │ │ ├── circle.svg
│ │ │ │ ├── city.svg
│ │ │ │ ├── clapperboard.svg
│ │ │ │ ├── clipboard-check.svg
│ │ │ │ ├── clipboard-list.svg
│ │ │ │ ├── clipboard-question.svg
│ │ │ │ ├── clipboard-user.svg
│ │ │ │ ├── clipboard.svg
│ │ │ │ ├── clock-rotate-left.svg
│ │ │ │ ├── clock.svg
│ │ │ │ ├── clone.svg
│ │ │ │ ├── closed-captioning.svg
│ │ │ │ ├── cloud-arrow-down.svg
│ │ │ │ ├── cloud-arrow-up.svg
│ │ │ │ ├── cloud-bolt.svg
│ │ │ │ ├── cloud-meatball.svg
│ │ │ │ ├── cloud-moon-rain.svg
│ │ │ │ ├── cloud-moon.svg
│ │ │ │ ├── cloud-rain.svg
│ │ │ │ ├── cloud-showers-heavy.svg
│ │ │ │ ├── cloud-showers-water.svg
│ │ │ │ ├── cloud-sun-rain.svg
│ │ │ │ ├── cloud-sun.svg
│ │ │ │ ├── cloud.svg
│ │ │ │ ├── clover.svg
│ │ │ │ ├── code-branch.svg
│ │ │ │ ├── code-commit.svg
│ │ │ │ ├── code-compare.svg
│ │ │ │ ├── code-fork.svg
│ │ │ │ ├── code-merge.svg
│ │ │ │ ├── code-pull-request.svg
│ │ │ │ ├── code.svg
│ │ │ │ ├── coins.svg
│ │ │ │ ├── colon-sign.svg
│ │ │ │ ├── comment-dollar.svg
│ │ │ │ ├── comment-dots.svg
│ │ │ │ ├── comment-medical.svg
│ │ │ │ ├── comment-slash.svg
│ │ │ │ ├── comment-sms.svg
│ │ │ │ ├── comment.svg
│ │ │ │ ├── comments-dollar.svg
│ │ │ │ ├── comments.svg
│ │ │ │ ├── compact-disc.svg
│ │ │ │ ├── compass-drafting.svg
│ │ │ │ ├── compass.svg
│ │ │ │ ├── compress.svg
│ │ │ │ ├── computer-mouse.svg
│ │ │ │ ├── computer.svg
│ │ │ │ ├── cookie-bite.svg
│ │ │ │ ├── cookie.svg
│ │ │ │ ├── copy.svg
│ │ │ │ ├── copyright.svg
│ │ │ │ ├── couch.svg
│ │ │ │ ├── cow.svg
│ │ │ │ ├── credit-card.svg
│ │ │ │ ├── crop-simple.svg
│ │ │ │ ├── crop.svg
│ │ │ │ ├── cross.svg
│ │ │ │ ├── crosshairs.svg
│ │ │ │ ├── crow.svg
│ │ │ │ ├── crown.svg
│ │ │ │ ├── crutch.svg
│ │ │ │ ├── cruzeiro-sign.svg
│ │ │ │ ├── cube.svg
│ │ │ │ ├── cubes-stacked.svg
│ │ │ │ ├── cubes.svg
│ │ │ │ ├── d.svg
│ │ │ │ ├── database.svg
│ │ │ │ ├── delete-left.svg
│ │ │ │ ├── democrat.svg
│ │ │ │ ├── desktop.svg
│ │ │ │ ├── dharmachakra.svg
│ │ │ │ ├── diagram-next.svg
│ │ │ │ ├── diagram-predecessor.svg
│ │ │ │ ├── diagram-project.svg
│ │ │ │ ├── diagram-successor.svg
│ │ │ │ ├── diamond-turn-right.svg
│ │ │ │ ├── diamond.svg
│ │ │ │ ├── dice-d20.svg
│ │ │ │ ├── dice-d6.svg
│ │ │ │ ├── dice-five.svg
│ │ │ │ ├── dice-four.svg
│ │ │ │ ├── dice-one.svg
│ │ │ │ ├── dice-six.svg
│ │ │ │ ├── dice-three.svg
│ │ │ │ ├── dice-two.svg
│ │ │ │ ├── dice.svg
│ │ │ │ ├── disease.svg
│ │ │ │ ├── display.svg
│ │ │ │ ├── divide.svg
│ │ │ │ ├── dna.svg
│ │ │ │ ├── dog.svg
│ │ │ │ ├── dollar-sign.svg
│ │ │ │ ├── dolly.svg
│ │ │ │ ├── dong-sign.svg
│ │ │ │ ├── door-closed.svg
│ │ │ │ ├── door-open.svg
│ │ │ │ ├── dove.svg
│ │ │ │ ├── down-left-and-up-right-to-center.svg
│ │ │ │ ├── down-long.svg
│ │ │ │ ├── download.svg
│ │ │ │ ├── dragon.svg
│ │ │ │ ├── draw-polygon.svg
│ │ │ │ ├── droplet-slash.svg
│ │ │ │ ├── droplet.svg
│ │ │ │ ├── drum-steelpan.svg
│ │ │ │ ├── drum.svg
│ │ │ │ ├── drumstick-bite.svg
│ │ │ │ ├── dumbbell.svg
│ │ │ │ ├── dumpster-fire.svg
│ │ │ │ ├── dumpster.svg
│ │ │ │ ├── dungeon.svg
│ │ │ │ ├── e.svg
│ │ │ │ ├── ear-deaf.svg
│ │ │ │ ├── ear-listen.svg
│ │ │ │ ├── earth-africa.svg
│ │ │ │ ├── earth-americas.svg
│ │ │ │ ├── earth-asia.svg
│ │ │ │ ├── earth-europe.svg
│ │ │ │ ├── earth-oceania.svg
│ │ │ │ ├── egg.svg
│ │ │ │ ├── eject.svg
│ │ │ │ ├── elevator.svg
│ │ │ │ ├── ellipsis-vertical.svg
│ │ │ │ ├── ellipsis.svg
│ │ │ │ ├── envelope-circle-check.svg
│ │ │ │ ├── envelope-open-text.svg
│ │ │ │ ├── envelope-open.svg
│ │ │ │ ├── envelope.svg
│ │ │ │ ├── envelopes-bulk.svg
│ │ │ │ ├── equals.svg
│ │ │ │ ├── eraser.svg
│ │ │ │ ├── ethernet.svg
│ │ │ │ ├── euro-sign.svg
│ │ │ │ ├── exclamation.svg
│ │ │ │ ├── expand.svg
│ │ │ │ ├── explosion.svg
│ │ │ │ ├── eye-dropper.svg
│ │ │ │ ├── eye-low-vision.svg
│ │ │ │ ├── eye-slash.svg
│ │ │ │ ├── eye.svg
│ │ │ │ ├── f.svg
│ │ │ │ ├── face-angry.svg
│ │ │ │ ├── face-dizzy.svg
│ │ │ │ ├── face-flushed.svg
│ │ │ │ ├── face-frown-open.svg
│ │ │ │ ├── face-frown.svg
│ │ │ │ ├── face-grimace.svg
│ │ │ │ ├── face-grin-beam-sweat.svg
│ │ │ │ ├── face-grin-beam.svg
│ │ │ │ ├── face-grin-hearts.svg
│ │ │ │ ├── face-grin-squint-tears.svg
│ │ │ │ ├── face-grin-squint.svg
│ │ │ │ ├── face-grin-stars.svg
│ │ │ │ ├── face-grin-tears.svg
│ │ │ │ ├── face-grin-tongue-squint.svg
│ │ │ │ ├── face-grin-tongue-wink.svg
│ │ │ │ ├── face-grin-tongue.svg
│ │ │ │ ├── face-grin-wide.svg
│ │ │ │ ├── face-grin-wink.svg
│ │ │ │ ├── face-grin.svg
│ │ │ │ ├── face-kiss-beam.svg
│ │ │ │ ├── face-kiss-wink-heart.svg
│ │ │ │ ├── face-kiss.svg
│ │ │ │ ├── face-laugh-beam.svg
│ │ │ │ ├── face-laugh-squint.svg
│ │ │ │ ├── face-laugh-wink.svg
│ │ │ │ ├── face-laugh.svg
│ │ │ │ ├── face-meh-blank.svg
│ │ │ │ ├── face-meh.svg
│ │ │ │ ├── face-rolling-eyes.svg
│ │ │ │ ├── face-sad-cry.svg
│ │ │ │ ├── face-sad-tear.svg
│ │ │ │ ├── face-smile-beam.svg
│ │ │ │ ├── face-smile-wink.svg
│ │ │ │ ├── face-smile.svg
│ │ │ │ ├── face-surprise.svg
│ │ │ │ ├── face-tired.svg
│ │ │ │ ├── fan.svg
│ │ │ │ ├── faucet-drip.svg
│ │ │ │ ├── faucet.svg
│ │ │ │ ├── fax.svg
│ │ │ │ ├── feather-pointed.svg
│ │ │ │ ├── feather.svg
│ │ │ │ ├── ferry.svg
│ │ │ │ ├── file-arrow-down.svg
│ │ │ │ ├── file-arrow-up.svg
│ │ │ │ ├── file-audio.svg
│ │ │ │ ├── file-circle-check.svg
│ │ │ │ ├── file-circle-exclamation.svg
│ │ │ │ ├── file-circle-minus.svg
│ │ │ │ ├── file-circle-plus.svg
│ │ │ │ ├── file-circle-question.svg
│ │ │ │ ├── file-circle-xmark.svg
│ │ │ │ ├── file-code.svg
│ │ │ │ ├── file-contract.svg
│ │ │ │ ├── file-csv.svg
│ │ │ │ ├── file-excel.svg
│ │ │ │ ├── file-export.svg
│ │ │ │ ├── file-image.svg
│ │ │ │ ├── file-import.svg
│ │ │ │ ├── file-invoice-dollar.svg
│ │ │ │ ├── file-invoice.svg
│ │ │ │ ├── file-lines.svg
│ │ │ │ ├── file-medical.svg
│ │ │ │ ├── file-pdf.svg
│ │ │ │ ├── file-pen.svg
│ │ │ │ ├── file-powerpoint.svg
│ │ │ │ ├── file-prescription.svg
│ │ │ │ ├── file-shield.svg
│ │ │ │ ├── file-signature.svg
│ │ │ │ ├── file-video.svg
│ │ │ │ ├── file-waveform.svg
│ │ │ │ ├── file-word.svg
│ │ │ │ ├── file-zipper.svg
│ │ │ │ ├── file.svg
│ │ │ │ ├── fill-drip.svg
│ │ │ │ ├── fill.svg
│ │ │ │ ├── film.svg
│ │ │ │ ├── filter-circle-dollar.svg
│ │ │ │ ├── filter-circle-xmark.svg
│ │ │ │ ├── filter.svg
│ │ │ │ ├── fingerprint.svg
│ │ │ │ ├── fire-burner.svg
│ │ │ │ ├── fire-extinguisher.svg
│ │ │ │ ├── fire-flame-curved.svg
│ │ │ │ ├── fire-flame-simple.svg
│ │ │ │ ├── fire.svg
│ │ │ │ ├── fish-fins.svg
│ │ │ │ ├── fish.svg
│ │ │ │ ├── flag-checkered.svg
│ │ │ │ ├── flag-usa.svg
│ │ │ │ ├── flag.svg
│ │ │ │ ├── flask-vial.svg
│ │ │ │ ├── flask.svg
│ │ │ │ ├── floppy-disk.svg
│ │ │ │ ├── florin-sign.svg
│ │ │ │ ├── folder-closed.svg
│ │ │ │ ├── folder-minus.svg
│ │ │ │ ├── folder-open.svg
│ │ │ │ ├── folder-plus.svg
│ │ │ │ ├── folder-tree.svg
│ │ │ │ ├── folder.svg
│ │ │ │ ├── font-awesome.svg
│ │ │ │ ├── font.svg
│ │ │ │ ├── football.svg
│ │ │ │ ├── forward-fast.svg
│ │ │ │ ├── forward-step.svg
│ │ │ │ ├── forward.svg
│ │ │ │ ├── franc-sign.svg
│ │ │ │ ├── frog.svg
│ │ │ │ ├── futbol.svg
│ │ │ │ ├── g.svg
│ │ │ │ ├── gamepad.svg
│ │ │ │ ├── gas-pump.svg
│ │ │ │ ├── gauge-high.svg
│ │ │ │ ├── gauge-simple-high.svg
│ │ │ │ ├── gauge-simple.svg
│ │ │ │ ├── gauge.svg
│ │ │ │ ├── gavel.svg
│ │ │ │ ├── gear.svg
│ │ │ │ ├── gears.svg
│ │ │ │ ├── gem.svg
│ │ │ │ ├── genderless.svg
│ │ │ │ ├── ghost.svg
│ │ │ │ ├── gift.svg
│ │ │ │ ├── gifts.svg
│ │ │ │ ├── glass-water-droplet.svg
│ │ │ │ ├── glass-water.svg
│ │ │ │ ├── glasses.svg
│ │ │ │ ├── globe.svg
│ │ │ │ ├── golf-ball-tee.svg
│ │ │ │ ├── gopuram.svg
│ │ │ │ ├── graduation-cap.svg
│ │ │ │ ├── greater-than-equal.svg
│ │ │ │ ├── greater-than.svg
│ │ │ │ ├── grip-lines-vertical.svg
│ │ │ │ ├── grip-lines.svg
│ │ │ │ ├── grip-vertical.svg
│ │ │ │ ├── grip.svg
│ │ │ │ ├── group-arrows-rotate.svg
│ │ │ │ ├── guarani-sign.svg
│ │ │ │ ├── guitar.svg
│ │ │ │ ├── gun.svg
│ │ │ │ ├── h.svg
│ │ │ │ ├── hammer.svg
│ │ │ │ ├── hamsa.svg
│ │ │ │ ├── hand-back-fist.svg
│ │ │ │ ├── hand-dots.svg
│ │ │ │ ├── hand-fist.svg
│ │ │ │ ├── hand-holding-dollar.svg
│ │ │ │ ├── hand-holding-droplet.svg
│ │ │ │ ├── hand-holding-hand.svg
│ │ │ │ ├── hand-holding-heart.svg
│ │ │ │ ├── hand-holding-medical.svg
│ │ │ │ ├── hand-holding.svg
│ │ │ │ ├── hand-lizard.svg
│ │ │ │ ├── hand-middle-finger.svg
│ │ │ │ ├── hand-peace.svg
│ │ │ │ ├── hand-point-down.svg
│ │ │ │ ├── hand-point-left.svg
│ │ │ │ ├── hand-point-right.svg
│ │ │ │ ├── hand-point-up.svg
│ │ │ │ ├── hand-pointer.svg
│ │ │ │ ├── hand-scissors.svg
│ │ │ │ ├── hand-sparkles.svg
│ │ │ │ ├── hand-spock.svg
│ │ │ │ ├── hand.svg
│ │ │ │ ├── handcuffs.svg
│ │ │ │ ├── hands-asl-interpreting.svg
│ │ │ │ ├── hands-bound.svg
│ │ │ │ ├── hands-bubbles.svg
│ │ │ │ ├── hands-clapping.svg
│ │ │ │ ├── hands-holding-child.svg
│ │ │ │ ├── hands-holding-circle.svg
│ │ │ │ ├── hands-holding.svg
│ │ │ │ ├── hands-praying.svg
│ │ │ │ ├── hands.svg
│ │ │ │ ├── handshake-angle.svg
│ │ │ │ ├── handshake-simple-slash.svg
│ │ │ │ ├── handshake-simple.svg
│ │ │ │ ├── handshake-slash.svg
│ │ │ │ ├── handshake.svg
│ │ │ │ ├── hanukiah.svg
│ │ │ │ ├── hard-drive.svg
│ │ │ │ ├── hashtag.svg
│ │ │ │ ├── hat-cowboy-side.svg
│ │ │ │ ├── hat-cowboy.svg
│ │ │ │ ├── hat-wizard.svg
│ │ │ │ ├── head-side-cough-slash.svg
│ │ │ │ ├── head-side-cough.svg
│ │ │ │ ├── head-side-mask.svg
│ │ │ │ ├── head-side-virus.svg
│ │ │ │ ├── heading.svg
│ │ │ │ ├── headphones-simple.svg
│ │ │ │ ├── headphones.svg
│ │ │ │ ├── headset.svg
│ │ │ │ ├── heart-circle-bolt.svg
│ │ │ │ ├── heart-circle-check.svg
│ │ │ │ ├── heart-circle-exclamation.svg
│ │ │ │ ├── heart-circle-minus.svg
│ │ │ │ ├── heart-circle-plus.svg
│ │ │ │ ├── heart-circle-xmark.svg
│ │ │ │ ├── heart-crack.svg
│ │ │ │ ├── heart-pulse.svg
│ │ │ │ ├── heart.svg
│ │ │ │ ├── helicopter-symbol.svg
│ │ │ │ ├── helicopter.svg
│ │ │ │ ├── helmet-safety.svg
│ │ │ │ ├── helmet-un.svg
│ │ │ │ ├── highlighter.svg
│ │ │ │ ├── hill-avalanche.svg
│ │ │ │ ├── hill-rockslide.svg
│ │ │ │ ├── hippo.svg
│ │ │ │ ├── hockey-puck.svg
│ │ │ │ ├── holly-berry.svg
│ │ │ │ ├── horse-head.svg
│ │ │ │ ├── horse.svg
│ │ │ │ ├── hospital-user.svg
│ │ │ │ ├── hospital.svg
│ │ │ │ ├── hot-tub-person.svg
│ │ │ │ ├── hotdog.svg
│ │ │ │ ├── hotel.svg
│ │ │ │ ├── hourglass-end.svg
│ │ │ │ ├── hourglass-half.svg
│ │ │ │ ├── hourglass-start.svg
│ │ │ │ ├── hourglass.svg
│ │ │ │ ├── house-chimney-crack.svg
│ │ │ │ ├── house-chimney-medical.svg
│ │ │ │ ├── house-chimney-user.svg
│ │ │ │ ├── house-chimney-window.svg
│ │ │ │ ├── house-chimney.svg
│ │ │ │ ├── house-circle-check.svg
│ │ │ │ ├── house-circle-exclamation.svg
│ │ │ │ ├── house-circle-xmark.svg
│ │ │ │ ├── house-crack.svg
│ │ │ │ ├── house-fire.svg
│ │ │ │ ├── house-flag.svg
│ │ │ │ ├── house-flood-water-circle-arrow-right.svg
│ │ │ │ ├── house-flood-water.svg
│ │ │ │ ├── house-laptop.svg
│ │ │ │ ├── house-lock.svg
│ │ │ │ ├── house-medical-circle-check.svg
│ │ │ │ ├── house-medical-circle-exclamation.svg
│ │ │ │ ├── house-medical-circle-xmark.svg
│ │ │ │ ├── house-medical-flag.svg
│ │ │ │ ├── house-medical.svg
│ │ │ │ ├── house-signal.svg
│ │ │ │ ├── house-tsunami.svg
│ │ │ │ ├── house-user.svg
│ │ │ │ ├── house.svg
│ │ │ │ ├── hryvnia-sign.svg
│ │ │ │ ├── hurricane.svg
│ │ │ │ ├── i-cursor.svg
│ │ │ │ ├── i.svg
│ │ │ │ ├── ice-cream.svg
│ │ │ │ ├── icicles.svg
│ │ │ │ ├── icons.svg
│ │ │ │ ├── id-badge.svg
│ │ │ │ ├── id-card-clip.svg
│ │ │ │ ├── id-card.svg
│ │ │ │ ├── igloo.svg
│ │ │ │ ├── image-portrait.svg
│ │ │ │ ├── image.svg
│ │ │ │ ├── images.svg
│ │ │ │ ├── inbox.svg
│ │ │ │ ├── indent.svg
│ │ │ │ ├── indian-rupee-sign.svg
│ │ │ │ ├── industry.svg
│ │ │ │ ├── infinity.svg
│ │ │ │ ├── info.svg
│ │ │ │ ├── italic.svg
│ │ │ │ ├── j.svg
│ │ │ │ ├── jar-wheat.svg
│ │ │ │ ├── jar.svg
│ │ │ │ ├── jedi.svg
│ │ │ │ ├── jet-fighter-up.svg
│ │ │ │ ├── jet-fighter.svg
│ │ │ │ ├── joint.svg
│ │ │ │ ├── jug-detergent.svg
│ │ │ │ ├── k.svg
│ │ │ │ ├── kaaba.svg
│ │ │ │ ├── key.svg
│ │ │ │ ├── keyboard.svg
│ │ │ │ ├── khanda.svg
│ │ │ │ ├── kip-sign.svg
│ │ │ │ ├── kit-medical.svg
│ │ │ │ ├── kitchen-set.svg
│ │ │ │ ├── kiwi-bird.svg
│ │ │ │ ├── l.svg
│ │ │ │ ├── land-mine-on.svg
│ │ │ │ ├── landmark-dome.svg
│ │ │ │ ├── landmark-flag.svg
│ │ │ │ ├── landmark.svg
│ │ │ │ ├── language.svg
│ │ │ │ ├── laptop-code.svg
│ │ │ │ ├── laptop-file.svg
│ │ │ │ ├── laptop-medical.svg
│ │ │ │ ├── laptop.svg
│ │ │ │ ├── lari-sign.svg
│ │ │ │ ├── layer-group.svg
│ │ │ │ ├── leaf.svg
│ │ │ │ ├── left-long.svg
│ │ │ │ ├── left-right.svg
│ │ │ │ ├── lemon.svg
│ │ │ │ ├── less-than-equal.svg
│ │ │ │ ├── less-than.svg
│ │ │ │ ├── life-ring.svg
│ │ │ │ ├── lightbulb.svg
│ │ │ │ ├── lines-leaning.svg
│ │ │ │ ├── link-slash.svg
│ │ │ │ ├── link.svg
│ │ │ │ ├── lira-sign.svg
│ │ │ │ ├── list-check.svg
│ │ │ │ ├── list-ol.svg
│ │ │ │ ├── list-ul.svg
│ │ │ │ ├── list.svg
│ │ │ │ ├── litecoin-sign.svg
│ │ │ │ ├── location-arrow.svg
│ │ │ │ ├── location-crosshairs.svg
│ │ │ │ ├── location-dot.svg
│ │ │ │ ├── location-pin-lock.svg
│ │ │ │ ├── location-pin.svg
│ │ │ │ ├── lock-open.svg
│ │ │ │ ├── lock.svg
│ │ │ │ ├── locust.svg
│ │ │ │ ├── lungs-virus.svg
│ │ │ │ ├── lungs.svg
│ │ │ │ ├── m.svg
│ │ │ │ ├── magnet.svg
│ │ │ │ ├── magnifying-glass-arrow-right.svg
│ │ │ │ ├── magnifying-glass-chart.svg
│ │ │ │ ├── magnifying-glass-dollar.svg
│ │ │ │ ├── magnifying-glass-location.svg
│ │ │ │ ├── magnifying-glass-minus.svg
│ │ │ │ ├── magnifying-glass-plus.svg
│ │ │ │ ├── magnifying-glass.svg
│ │ │ │ ├── manat-sign.svg
│ │ │ │ ├── map-location-dot.svg
│ │ │ │ ├── map-location.svg
│ │ │ │ ├── map-pin.svg
│ │ │ │ ├── map.svg
│ │ │ │ ├── marker.svg
│ │ │ │ ├── mars-and-venus-burst.svg
│ │ │ │ ├── mars-and-venus.svg
│ │ │ │ ├── mars-double.svg
│ │ │ │ ├── mars-stroke-right.svg
│ │ │ │ ├── mars-stroke-up.svg
│ │ │ │ ├── mars-stroke.svg
│ │ │ │ ├── mars.svg
│ │ │ │ ├── martini-glass-citrus.svg
│ │ │ │ ├── martini-glass-empty.svg
│ │ │ │ ├── martini-glass.svg
│ │ │ │ ├── mask-face.svg
│ │ │ │ ├── mask-ventilator.svg
│ │ │ │ ├── mask.svg
│ │ │ │ ├── masks-theater.svg
│ │ │ │ ├── mattress-pillow.svg
│ │ │ │ ├── maximize.svg
│ │ │ │ ├── medal.svg
│ │ │ │ ├── memory.svg
│ │ │ │ ├── menorah.svg
│ │ │ │ ├── mercury.svg
│ │ │ │ ├── message.svg
│ │ │ │ ├── meteor.svg
│ │ │ │ ├── microchip.svg
│ │ │ │ ├── microphone-lines-slash.svg
│ │ │ │ ├── microphone-lines.svg
│ │ │ │ ├── microphone-slash.svg
│ │ │ │ ├── microphone.svg
│ │ │ │ ├── microscope.svg
│ │ │ │ ├── mill-sign.svg
│ │ │ │ ├── minimize.svg
│ │ │ │ ├── minus.svg
│ │ │ │ ├── mitten.svg
│ │ │ │ ├── mobile-button.svg
│ │ │ │ ├── mobile-retro.svg
│ │ │ │ ├── mobile-screen-button.svg
│ │ │ │ ├── mobile-screen.svg
│ │ │ │ ├── mobile.svg
│ │ │ │ ├── money-bill-1-wave.svg
│ │ │ │ ├── money-bill-1.svg
│ │ │ │ ├── money-bill-transfer.svg
│ │ │ │ ├── money-bill-trend-up.svg
│ │ │ │ ├── money-bill-wave.svg
│ │ │ │ ├── money-bill-wheat.svg
│ │ │ │ ├── money-bill.svg
│ │ │ │ ├── money-bills.svg
│ │ │ │ ├── money-check-dollar.svg
│ │ │ │ ├── money-check.svg
│ │ │ │ ├── monument.svg
│ │ │ │ ├── moon.svg
│ │ │ │ ├── mortar-pestle.svg
│ │ │ │ ├── mosque.svg
│ │ │ │ ├── mosquito-net.svg
│ │ │ │ ├── mosquito.svg
│ │ │ │ ├── motorcycle.svg
│ │ │ │ ├── mound.svg
│ │ │ │ ├── mountain-city.svg
│ │ │ │ ├── mountain-sun.svg
│ │ │ │ ├── mountain.svg
│ │ │ │ ├── mug-hot.svg
│ │ │ │ ├── mug-saucer.svg
│ │ │ │ ├── music.svg
│ │ │ │ ├── n.svg
│ │ │ │ ├── naira-sign.svg
│ │ │ │ ├── network-wired.svg
│ │ │ │ ├── neuter.svg
│ │ │ │ ├── newspaper.svg
│ │ │ │ ├── not-equal.svg
│ │ │ │ ├── notdef.svg
│ │ │ │ ├── note-sticky.svg
│ │ │ │ ├── notes-medical.svg
│ │ │ │ ├── o.svg
│ │ │ │ ├── object-group.svg
│ │ │ │ ├── object-ungroup.svg
│ │ │ │ ├── oil-can.svg
│ │ │ │ ├── oil-well.svg
│ │ │ │ ├── om.svg
│ │ │ │ ├── otter.svg
│ │ │ │ ├── outdent.svg
│ │ │ │ ├── p.svg
│ │ │ │ ├── pager.svg
│ │ │ │ ├── paint-roller.svg
│ │ │ │ ├── paintbrush.svg
│ │ │ │ ├── palette.svg
│ │ │ │ ├── pallet.svg
│ │ │ │ ├── panorama.svg
│ │ │ │ ├── paper-plane.svg
│ │ │ │ ├── paperclip.svg
│ │ │ │ ├── parachute-box.svg
│ │ │ │ ├── paragraph.svg
│ │ │ │ ├── passport.svg
│ │ │ │ ├── paste.svg
│ │ │ │ ├── pause.svg
│ │ │ │ ├── paw.svg
│ │ │ │ ├── peace.svg
│ │ │ │ ├── pen-clip.svg
│ │ │ │ ├── pen-fancy.svg
│ │ │ │ ├── pen-nib.svg
│ │ │ │ ├── pen-ruler.svg
│ │ │ │ ├── pen-to-square.svg
│ │ │ │ ├── pen.svg
│ │ │ │ ├── pencil.svg
│ │ │ │ ├── people-arrows.svg
│ │ │ │ ├── people-carry-box.svg
│ │ │ │ ├── people-group.svg
│ │ │ │ ├── people-line.svg
│ │ │ │ ├── people-pulling.svg
│ │ │ │ ├── people-robbery.svg
│ │ │ │ ├── people-roof.svg
│ │ │ │ ├── pepper-hot.svg
│ │ │ │ ├── percent.svg
│ │ │ │ ├── person-arrow-down-to-line.svg
│ │ │ │ ├── person-arrow-up-from-line.svg
│ │ │ │ ├── person-biking.svg
│ │ │ │ ├── person-booth.svg
│ │ │ │ ├── person-breastfeeding.svg
│ │ │ │ ├── person-burst.svg
│ │ │ │ ├── person-cane.svg
│ │ │ │ ├── person-chalkboard.svg
│ │ │ │ ├── person-circle-check.svg
│ │ │ │ ├── person-circle-exclamation.svg
│ │ │ │ ├── person-circle-minus.svg
│ │ │ │ ├── person-circle-plus.svg
│ │ │ │ ├── person-circle-question.svg
│ │ │ │ ├── person-circle-xmark.svg
│ │ │ │ ├── person-digging.svg
│ │ │ │ ├── person-dots-from-line.svg
│ │ │ │ ├── person-dress-burst.svg
│ │ │ │ ├── person-dress.svg
│ │ │ │ ├── person-drowning.svg
│ │ │ │ ├── person-falling-burst.svg
│ │ │ │ ├── person-falling.svg
│ │ │ │ ├── person-half-dress.svg
│ │ │ │ ├── person-harassing.svg
│ │ │ │ ├── person-hiking.svg
│ │ │ │ ├── person-military-pointing.svg
│ │ │ │ ├── person-military-rifle.svg
│ │ │ │ ├── person-military-to-person.svg
│ │ │ │ ├── person-praying.svg
│ │ │ │ ├── person-pregnant.svg
│ │ │ │ ├── person-rays.svg
│ │ │ │ ├── person-rifle.svg
│ │ │ │ ├── person-running.svg
│ │ │ │ ├── person-shelter.svg
│ │ │ │ ├── person-skating.svg
│ │ │ │ ├── person-skiing-nordic.svg
│ │ │ │ ├── person-skiing.svg
│ │ │ │ ├── person-snowboarding.svg
│ │ │ │ ├── person-swimming.svg
│ │ │ │ ├── person-through-window.svg
│ │ │ │ ├── person-walking-arrow-loop-left.svg
│ │ │ │ ├── person-walking-arrow-right.svg
│ │ │ │ ├── person-walking-dashed-line-arrow-right.svg
│ │ │ │ ├── person-walking-luggage.svg
│ │ │ │ ├── person-walking-with-cane.svg
│ │ │ │ ├── person-walking.svg
│ │ │ │ ├── person.svg
│ │ │ │ ├── peseta-sign.svg
│ │ │ │ ├── peso-sign.svg
│ │ │ │ ├── phone-flip.svg
│ │ │ │ ├── phone-slash.svg
│ │ │ │ ├── phone-volume.svg
│ │ │ │ ├── phone.svg
│ │ │ │ ├── photo-film.svg
│ │ │ │ ├── piggy-bank.svg
│ │ │ │ ├── pills.svg
│ │ │ │ ├── pizza-slice.svg
│ │ │ │ ├── place-of-worship.svg
│ │ │ │ ├── plane-arrival.svg
│ │ │ │ ├── plane-circle-check.svg
│ │ │ │ ├── plane-circle-exclamation.svg
│ │ │ │ ├── plane-circle-xmark.svg
│ │ │ │ ├── plane-departure.svg
│ │ │ │ ├── plane-lock.svg
│ │ │ │ ├── plane-slash.svg
│ │ │ │ ├── plane-up.svg
│ │ │ │ ├── plane.svg
│ │ │ │ ├── plant-wilt.svg
│ │ │ │ ├── plate-wheat.svg
│ │ │ │ ├── play.svg
│ │ │ │ ├── plug-circle-bolt.svg
│ │ │ │ ├── plug-circle-check.svg
│ │ │ │ ├── plug-circle-exclamation.svg
│ │ │ │ ├── plug-circle-minus.svg
│ │ │ │ ├── plug-circle-plus.svg
│ │ │ │ ├── plug-circle-xmark.svg
│ │ │ │ ├── plug.svg
│ │ │ │ ├── plus-minus.svg
│ │ │ │ ├── plus.svg
│ │ │ │ ├── podcast.svg
│ │ │ │ ├── poo-storm.svg
│ │ │ │ ├── poo.svg
│ │ │ │ ├── poop.svg
│ │ │ │ ├── power-off.svg
│ │ │ │ ├── prescription-bottle-medical.svg
│ │ │ │ ├── prescription-bottle.svg
│ │ │ │ ├── prescription.svg
│ │ │ │ ├── print.svg
│ │ │ │ ├── pump-medical.svg
│ │ │ │ ├── pump-soap.svg
│ │ │ │ ├── puzzle-piece.svg
│ │ │ │ ├── q.svg
│ │ │ │ ├── qrcode.svg
│ │ │ │ ├── question.svg
│ │ │ │ ├── quote-left.svg
│ │ │ │ ├── quote-right.svg
│ │ │ │ ├── r.svg
│ │ │ │ ├── radiation.svg
│ │ │ │ ├── radio.svg
│ │ │ │ ├── rainbow.svg
│ │ │ │ ├── ranking-star.svg
│ │ │ │ ├── receipt.svg
│ │ │ │ ├── record-vinyl.svg
│ │ │ │ ├── rectangle-ad.svg
│ │ │ │ ├── rectangle-list.svg
│ │ │ │ ├── rectangle-xmark.svg
│ │ │ │ ├── recycle.svg
│ │ │ │ ├── registered.svg
│ │ │ │ ├── repeat.svg
│ │ │ │ ├── reply-all.svg
│ │ │ │ ├── reply.svg
│ │ │ │ ├── republican.svg
│ │ │ │ ├── restroom.svg
│ │ │ │ ├── retweet.svg
│ │ │ │ ├── ribbon.svg
│ │ │ │ ├── right-from-bracket.svg
│ │ │ │ ├── right-left.svg
│ │ │ │ ├── right-long.svg
│ │ │ │ ├── right-to-bracket.svg
│ │ │ │ ├── ring.svg
│ │ │ │ ├── road-barrier.svg
│ │ │ │ ├── road-bridge.svg
│ │ │ │ ├── road-circle-check.svg
│ │ │ │ ├── road-circle-exclamation.svg
│ │ │ │ ├── road-circle-xmark.svg
│ │ │ │ ├── road-lock.svg
│ │ │ │ ├── road-spikes.svg
│ │ │ │ ├── road.svg
│ │ │ │ ├── robot.svg
│ │ │ │ ├── rocket.svg
│ │ │ │ ├── rotate-left.svg
│ │ │ │ ├── rotate-right.svg
│ │ │ │ ├── rotate.svg
│ │ │ │ ├── route.svg
│ │ │ │ ├── rss.svg
│ │ │ │ ├── ruble-sign.svg
│ │ │ │ ├── rug.svg
│ │ │ │ ├── ruler-combined.svg
│ │ │ │ ├── ruler-horizontal.svg
│ │ │ │ ├── ruler-vertical.svg
│ │ │ │ ├── ruler.svg
│ │ │ │ ├── rupee-sign.svg
│ │ │ │ ├── rupiah-sign.svg
│ │ │ │ ├── s.svg
│ │ │ │ ├── sack-dollar.svg
│ │ │ │ ├── sack-xmark.svg
│ │ │ │ ├── sailboat.svg
│ │ │ │ ├── satellite-dish.svg
│ │ │ │ ├── satellite.svg
│ │ │ │ ├── scale-balanced.svg
│ │ │ │ ├── scale-unbalanced-flip.svg
│ │ │ │ ├── scale-unbalanced.svg
│ │ │ │ ├── school-circle-check.svg
│ │ │ │ ├── school-circle-exclamation.svg
│ │ │ │ ├── school-circle-xmark.svg
│ │ │ │ ├── school-flag.svg
│ │ │ │ ├── school-lock.svg
│ │ │ │ ├── school.svg
│ │ │ │ ├── scissors.svg
│ │ │ │ ├── screwdriver-wrench.svg
│ │ │ │ ├── screwdriver.svg
│ │ │ │ ├── scroll-torah.svg
│ │ │ │ ├── scroll.svg
│ │ │ │ ├── sd-card.svg
│ │ │ │ ├── section.svg
│ │ │ │ ├── seedling.svg
│ │ │ │ ├── server.svg
│ │ │ │ ├── shapes.svg
│ │ │ │ ├── share-from-square.svg
│ │ │ │ ├── share-nodes.svg
│ │ │ │ ├── share.svg
│ │ │ │ ├── sheet-plastic.svg
│ │ │ │ ├── shekel-sign.svg
│ │ │ │ ├── shield-cat.svg
│ │ │ │ ├── shield-dog.svg
│ │ │ │ ├── shield-halved.svg
│ │ │ │ ├── shield-heart.svg
│ │ │ │ ├── shield-virus.svg
│ │ │ │ ├── shield.svg
│ │ │ │ ├── ship.svg
│ │ │ │ ├── shirt.svg
│ │ │ │ ├── shoe-prints.svg
│ │ │ │ ├── shop-lock.svg
│ │ │ │ ├── shop-slash.svg
│ │ │ │ ├── shop.svg
│ │ │ │ ├── shower.svg
│ │ │ │ ├── shrimp.svg
│ │ │ │ ├── shuffle.svg
│ │ │ │ ├── shuttle-space.svg
│ │ │ │ ├── sign-hanging.svg
│ │ │ │ ├── signal.svg
│ │ │ │ ├── signature.svg
│ │ │ │ ├── signs-post.svg
│ │ │ │ ├── sim-card.svg
│ │ │ │ ├── sink.svg
│ │ │ │ ├── sitemap.svg
│ │ │ │ ├── skull-crossbones.svg
│ │ │ │ ├── skull.svg
│ │ │ │ ├── slash.svg
│ │ │ │ ├── sleigh.svg
│ │ │ │ ├── sliders.svg
│ │ │ │ ├── smog.svg
│ │ │ │ ├── smoking.svg
│ │ │ │ ├── snowflake.svg
│ │ │ │ ├── snowman.svg
│ │ │ │ ├── snowplow.svg
│ │ │ │ ├── soap.svg
│ │ │ │ ├── socks.svg
│ │ │ │ ├── solar-panel.svg
│ │ │ │ ├── sort-down.svg
│ │ │ │ ├── sort-up.svg
│ │ │ │ ├── sort.svg
│ │ │ │ ├── spa.svg
│ │ │ │ ├── spaghetti-monster-flying.svg
│ │ │ │ ├── spell-check.svg
│ │ │ │ ├── spider.svg
│ │ │ │ ├── spinner.svg
│ │ │ │ ├── splotch.svg
│ │ │ │ ├── spoon.svg
│ │ │ │ ├── spray-can-sparkles.svg
│ │ │ │ ├── spray-can.svg
│ │ │ │ ├── square-arrow-up-right.svg
│ │ │ │ ├── square-caret-down.svg
│ │ │ │ ├── square-caret-left.svg
│ │ │ │ ├── square-caret-right.svg
│ │ │ │ ├── square-caret-up.svg
│ │ │ │ ├── square-check.svg
│ │ │ │ ├── square-envelope.svg
│ │ │ │ ├── square-full.svg
│ │ │ │ ├── square-h.svg
│ │ │ │ ├── square-minus.svg
│ │ │ │ ├── square-nfi.svg
│ │ │ │ ├── square-parking.svg
│ │ │ │ ├── square-pen.svg
│ │ │ │ ├── square-person-confined.svg
│ │ │ │ ├── square-phone-flip.svg
│ │ │ │ ├── square-phone.svg
│ │ │ │ ├── square-plus.svg
│ │ │ │ ├── square-poll-horizontal.svg
│ │ │ │ ├── square-poll-vertical.svg
│ │ │ │ ├── square-root-variable.svg
│ │ │ │ ├── square-rss.svg
│ │ │ │ ├── square-share-nodes.svg
│ │ │ │ ├── square-up-right.svg
│ │ │ │ ├── square-virus.svg
│ │ │ │ ├── square-xmark.svg
│ │ │ │ ├── square.svg
│ │ │ │ ├── staff-snake.svg
│ │ │ │ ├── stairs.svg
│ │ │ │ ├── stamp.svg
│ │ │ │ ├── stapler.svg
│ │ │ │ ├── star-and-crescent.svg
│ │ │ │ ├── star-half-stroke.svg
│ │ │ │ ├── star-half.svg
│ │ │ │ ├── star-of-david.svg
│ │ │ │ ├── star-of-life.svg
│ │ │ │ ├── star.svg
│ │ │ │ ├── sterling-sign.svg
│ │ │ │ ├── stethoscope.svg
│ │ │ │ ├── stop.svg
│ │ │ │ ├── stopwatch-20.svg
│ │ │ │ ├── stopwatch.svg
│ │ │ │ ├── store-slash.svg
│ │ │ │ ├── store.svg
│ │ │ │ ├── street-view.svg
│ │ │ │ ├── strikethrough.svg
│ │ │ │ ├── stroopwafel.svg
│ │ │ │ ├── subscript.svg
│ │ │ │ ├── suitcase-medical.svg
│ │ │ │ ├── suitcase-rolling.svg
│ │ │ │ ├── suitcase.svg
│ │ │ │ ├── sun-plant-wilt.svg
│ │ │ │ ├── sun.svg
│ │ │ │ ├── superscript.svg
│ │ │ │ ├── swatchbook.svg
│ │ │ │ ├── synagogue.svg
│ │ │ │ ├── syringe.svg
│ │ │ │ ├── t.svg
│ │ │ │ ├── table-cells-column-lock.svg
│ │ │ │ ├── table-cells-large.svg
│ │ │ │ ├── table-cells-row-lock.svg
│ │ │ │ ├── table-cells-row-unlock.svg
│ │ │ │ ├── table-cells.svg
│ │ │ │ ├── table-columns.svg
│ │ │ │ ├── table-list.svg
│ │ │ │ ├── table-tennis-paddle-ball.svg
│ │ │ │ ├── table.svg
│ │ │ │ ├── tablet-button.svg
│ │ │ │ ├── tablet-screen-button.svg
│ │ │ │ ├── tablet.svg
│ │ │ │ ├── tablets.svg
│ │ │ │ ├── tachograph-digital.svg
│ │ │ │ ├── tag.svg
│ │ │ │ ├── tags.svg
│ │ │ │ ├── tape.svg
│ │ │ │ ├── tarp-droplet.svg
│ │ │ │ ├── tarp.svg
│ │ │ │ ├── taxi.svg
│ │ │ │ ├── teeth-open.svg
│ │ │ │ ├── teeth.svg
│ │ │ │ ├── temperature-arrow-down.svg
│ │ │ │ ├── temperature-arrow-up.svg
│ │ │ │ ├── temperature-empty.svg
│ │ │ │ ├── temperature-full.svg
│ │ │ │ ├── temperature-half.svg
│ │ │ │ ├── temperature-high.svg
│ │ │ │ ├── temperature-low.svg
│ │ │ │ ├── temperature-quarter.svg
│ │ │ │ ├── temperature-three-quarters.svg
│ │ │ │ ├── tenge-sign.svg
│ │ │ │ ├── tent-arrow-down-to-line.svg
│ │ │ │ ├── tent-arrow-left-right.svg
│ │ │ │ ├── tent-arrow-turn-left.svg
│ │ │ │ ├── tent-arrows-down.svg
│ │ │ │ ├── tent.svg
│ │ │ │ ├── tents.svg
│ │ │ │ ├── terminal.svg
│ │ │ │ ├── text-height.svg
│ │ │ │ ├── text-slash.svg
│ │ │ │ ├── text-width.svg
│ │ │ │ ├── thermometer.svg
│ │ │ │ ├── thumbs-down.svg
│ │ │ │ ├── thumbs-up.svg
│ │ │ │ ├── thumbtack-slash.svg
│ │ │ │ ├── thumbtack.svg
│ │ │ │ ├── ticket-simple.svg
│ │ │ │ ├── ticket.svg
│ │ │ │ ├── timeline.svg
│ │ │ │ ├── toggle-off.svg
│ │ │ │ ├── toggle-on.svg
│ │ │ │ ├── toilet-paper-slash.svg
│ │ │ │ ├── toilet-paper.svg
│ │ │ │ ├── toilet-portable.svg
│ │ │ │ ├── toilet.svg
│ │ │ │ ├── toilets-portable.svg
│ │ │ │ ├── toolbox.svg
│ │ │ │ ├── tooth.svg
│ │ │ │ ├── torii-gate.svg
│ │ │ │ ├── tornado.svg
│ │ │ │ ├── tower-broadcast.svg
│ │ │ │ ├── tower-cell.svg
│ │ │ │ ├── tower-observation.svg
│ │ │ │ ├── tractor.svg
│ │ │ │ ├── trademark.svg
│ │ │ │ ├── traffic-light.svg
│ │ │ │ ├── trailer.svg
│ │ │ │ ├── train-subway.svg
│ │ │ │ ├── train-tram.svg
│ │ │ │ ├── train.svg
│ │ │ │ ├── transgender.svg
│ │ │ │ ├── trash-arrow-up.svg
│ │ │ │ ├── trash-can-arrow-up.svg
│ │ │ │ ├── trash-can.svg
│ │ │ │ ├── trash.svg
│ │ │ │ ├── tree-city.svg
│ │ │ │ ├── tree.svg
│ │ │ │ ├── triangle-exclamation.svg
│ │ │ │ ├── trophy.svg
│ │ │ │ ├── trowel-bricks.svg
│ │ │ │ ├── trowel.svg
│ │ │ │ ├── truck-arrow-right.svg
│ │ │ │ ├── truck-droplet.svg
│ │ │ │ ├── truck-fast.svg
│ │ │ │ ├── truck-field-un.svg
│ │ │ │ ├── truck-field.svg
│ │ │ │ ├── truck-front.svg
│ │ │ │ ├── truck-medical.svg
│ │ │ │ ├── truck-monster.svg
│ │ │ │ ├── truck-moving.svg
│ │ │ │ ├── truck-pickup.svg
│ │ │ │ ├── truck-plane.svg
│ │ │ │ ├── truck-ramp-box.svg
│ │ │ │ ├── truck.svg
│ │ │ │ ├── tty.svg
│ │ │ │ ├── turkish-lira-sign.svg
│ │ │ │ ├── turn-down.svg
│ │ │ │ ├── turn-up.svg
│ │ │ │ ├── tv.svg
│ │ │ │ ├── u.svg
│ │ │ │ ├── umbrella-beach.svg
│ │ │ │ ├── umbrella.svg
│ │ │ │ ├── underline.svg
│ │ │ │ ├── universal-access.svg
│ │ │ │ ├── unlock-keyhole.svg
│ │ │ │ ├── unlock.svg
│ │ │ │ ├── up-down-left-right.svg
│ │ │ │ ├── up-down.svg
│ │ │ │ ├── up-long.svg
│ │ │ │ ├── up-right-and-down-left-from-center.svg
│ │ │ │ ├── up-right-from-square.svg
│ │ │ │ ├── upload.svg
│ │ │ │ ├── user-astronaut.svg
│ │ │ │ ├── user-check.svg
│ │ │ │ ├── user-clock.svg
│ │ │ │ ├── user-doctor.svg
│ │ │ │ ├── user-gear.svg
│ │ │ │ ├── user-graduate.svg
│ │ │ │ ├── user-group.svg
│ │ │ │ ├── user-injured.svg
│ │ │ │ ├── user-large-slash.svg
│ │ │ │ ├── user-large.svg
│ │ │ │ ├── user-lock.svg
│ │ │ │ ├── user-minus.svg
│ │ │ │ ├── user-ninja.svg
│ │ │ │ ├── user-nurse.svg
│ │ │ │ ├── user-pen.svg
│ │ │ │ ├── user-plus.svg
│ │ │ │ ├── user-secret.svg
│ │ │ │ ├── user-shield.svg
│ │ │ │ ├── user-slash.svg
│ │ │ │ ├── user-tag.svg
│ │ │ │ ├── user-tie.svg
│ │ │ │ ├── user-xmark.svg
│ │ │ │ ├── user.svg
│ │ │ │ ├── users-between-lines.svg
│ │ │ │ ├── users-gear.svg
│ │ │ │ ├── users-line.svg
│ │ │ │ ├── users-rays.svg
│ │ │ │ ├── users-rectangle.svg
│ │ │ │ ├── users-slash.svg
│ │ │ │ ├── users-viewfinder.svg
│ │ │ │ ├── users.svg
│ │ │ │ ├── utensils.svg
│ │ │ │ ├── v.svg
│ │ │ │ ├── van-shuttle.svg
│ │ │ │ ├── vault.svg
│ │ │ │ ├── vector-square.svg
│ │ │ │ ├── venus-double.svg
│ │ │ │ ├── venus-mars.svg
│ │ │ │ ├── venus.svg
│ │ │ │ ├── vest-patches.svg
│ │ │ │ ├── vest.svg
│ │ │ │ ├── vial-circle-check.svg
│ │ │ │ ├── vial-virus.svg
│ │ │ │ ├── vial.svg
│ │ │ │ ├── vials.svg
│ │ │ │ ├── video-slash.svg
│ │ │ │ ├── video.svg
│ │ │ │ ├── vihara.svg
│ │ │ │ ├── virus-covid-slash.svg
│ │ │ │ ├── virus-covid.svg
│ │ │ │ ├── virus-slash.svg
│ │ │ │ ├── virus.svg
│ │ │ │ ├── viruses.svg
│ │ │ │ ├── voicemail.svg
│ │ │ │ ├── volcano.svg
│ │ │ │ ├── volleyball.svg
│ │ │ │ ├── volume-high.svg
│ │ │ │ ├── volume-low.svg
│ │ │ │ ├── volume-off.svg
│ │ │ │ ├── volume-xmark.svg
│ │ │ │ ├── vr-cardboard.svg
│ │ │ │ ├── w.svg
│ │ │ │ ├── walkie-talkie.svg
│ │ │ │ ├── wallet.svg
│ │ │ │ ├── wand-magic-sparkles.svg
│ │ │ │ ├── wand-magic.svg
│ │ │ │ ├── wand-sparkles.svg
│ │ │ │ ├── warehouse.svg
│ │ │ │ ├── water-ladder.svg
│ │ │ │ ├── water.svg
│ │ │ │ ├── wave-square.svg
│ │ │ │ ├── web-awesome.svg
│ │ │ │ ├── weight-hanging.svg
│ │ │ │ ├── weight-scale.svg
│ │ │ │ ├── wheat-awn-circle-exclamation.svg
│ │ │ │ ├── wheat-awn.svg
│ │ │ │ ├── wheelchair-move.svg
│ │ │ │ ├── wheelchair.svg
│ │ │ │ ├── whiskey-glass.svg
│ │ │ │ ├── wifi.svg
│ │ │ │ ├── wind.svg
│ │ │ │ ├── window-maximize.svg
│ │ │ │ ├── window-minimize.svg
│ │ │ │ ├── window-restore.svg
│ │ │ │ ├── wine-bottle.svg
│ │ │ │ ├── wine-glass-empty.svg
│ │ │ │ ├── wine-glass.svg
│ │ │ │ ├── won-sign.svg
│ │ │ │ ├── worm.svg
│ │ │ │ ├── wrench.svg
│ │ │ │ ├── x-ray.svg
│ │ │ │ ├── x.svg
│ │ │ │ ├── xmark.svg
│ │ │ │ ├── xmarks-lines.svg
│ │ │ │ ├── y.svg
│ │ │ │ ├── yen-sign.svg
│ │ │ │ ├── yin-yang.svg
│ │ │ │ └── z.svg
│ │ └── webfonts
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-regular-400.woff2
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-solid-900.woff2
│ │ │ ├── fa-v4compatibility.ttf
│ │ │ └── fa-v4compatibility.woff2
│ └── popper.min.js
└── scss
│ ├── app
│ ├── _app.scss
│ ├── _auth.scss
│ ├── _base.scss
│ ├── _header.scss
│ ├── _mixins.scss
│ ├── _sidepanel.scss
│ └── styles.scss
│ ├── bootstrap
│ └── scss
│ │ ├── _accordion.scss
│ │ ├── _alert.scss
│ │ ├── _badge.scss
│ │ ├── _breadcrumb.scss
│ │ ├── _button-group.scss
│ │ ├── _buttons.scss
│ │ ├── _card.scss
│ │ ├── _carousel.scss
│ │ ├── _close.scss
│ │ ├── _containers.scss
│ │ ├── _dropdown.scss
│ │ ├── _forms.scss
│ │ ├── _functions.scss
│ │ ├── _grid.scss
│ │ ├── _helpers.scss
│ │ ├── _images.scss
│ │ ├── _list-group.scss
│ │ ├── _maps.scss
│ │ ├── _mixins.scss
│ │ ├── _modal.scss
│ │ ├── _nav.scss
│ │ ├── _navbar.scss
│ │ ├── _offcanvas.scss
│ │ ├── _pagination.scss
│ │ ├── _placeholders.scss
│ │ ├── _popover.scss
│ │ ├── _progress.scss
│ │ ├── _reboot.scss
│ │ ├── _root.scss
│ │ ├── _spinners.scss
│ │ ├── _tables.scss
│ │ ├── _toasts.scss
│ │ ├── _tooltip.scss
│ │ ├── _transitions.scss
│ │ ├── _type.scss
│ │ ├── _utilities.scss
│ │ ├── _variables-dark.scss
│ │ ├── _variables.scss
│ │ ├── bootstrap-grid.scss
│ │ ├── bootstrap-reboot.scss
│ │ ├── bootstrap-utilities.scss
│ │ ├── bootstrap.scss
│ │ ├── forms
│ │ ├── _floating-labels.scss
│ │ ├── _form-check.scss
│ │ ├── _form-control.scss
│ │ ├── _form-range.scss
│ │ ├── _form-select.scss
│ │ ├── _form-text.scss
│ │ ├── _input-group.scss
│ │ ├── _labels.scss
│ │ └── _validation.scss
│ │ ├── helpers
│ │ ├── _clearfix.scss
│ │ ├── _color-bg.scss
│ │ ├── _colored-links.scss
│ │ ├── _focus-ring.scss
│ │ ├── _icon-link.scss
│ │ ├── _position.scss
│ │ ├── _ratio.scss
│ │ ├── _stacks.scss
│ │ ├── _stretched-link.scss
│ │ ├── _text-truncation.scss
│ │ ├── _visually-hidden.scss
│ │ └── _vr.scss
│ │ ├── mixins
│ │ ├── _alert.scss
│ │ ├── _backdrop.scss
│ │ ├── _banner.scss
│ │ ├── _border-radius.scss
│ │ ├── _box-shadow.scss
│ │ ├── _breakpoints.scss
│ │ ├── _buttons.scss
│ │ ├── _caret.scss
│ │ ├── _clearfix.scss
│ │ ├── _color-mode.scss
│ │ ├── _color-scheme.scss
│ │ ├── _container.scss
│ │ ├── _deprecate.scss
│ │ ├── _forms.scss
│ │ ├── _gradients.scss
│ │ ├── _grid.scss
│ │ ├── _image.scss
│ │ ├── _list-group.scss
│ │ ├── _lists.scss
│ │ ├── _pagination.scss
│ │ ├── _reset-text.scss
│ │ ├── _resize.scss
│ │ ├── _table-variants.scss
│ │ ├── _text-truncate.scss
│ │ ├── _transition.scss
│ │ ├── _utilities.scss
│ │ └── _visually-hidden.scss
│ │ ├── tests
│ │ ├── jasmine.js
│ │ ├── mixins
│ │ │ ├── _auto-import-of-variables-dark.test.scss
│ │ │ ├── _color-modes.test.scss
│ │ │ ├── _media-query-color-mode-full.test.scss
│ │ │ └── _utilities.test.scss
│ │ ├── sass-true
│ │ │ ├── register.js
│ │ │ └── runner.js
│ │ └── utilities
│ │ │ └── _api.test.scss
│ │ ├── utilities
│ │ └── _api.scss
│ │ └── vendor
│ │ └── _rfs.scss
│ └── portal.scss
├── charts.html
├── docs.html
├── favicon.ico
├── help.html
├── index.html
├── login.html
├── notifications.html
├── orders.html
├── reset-password.html
├── settings.html
└── signup.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | config.codekit3
--------------------------------------------------------------------------------
/assets/images/background/background-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/background/background-1.jpg
--------------------------------------------------------------------------------
/assets/images/background/background-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/background/background-2.jpg
--------------------------------------------------------------------------------
/assets/images/background/background-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/background/background-3.jpg
--------------------------------------------------------------------------------
/assets/images/doc-thumb-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/doc-thumb-1.jpg
--------------------------------------------------------------------------------
/assets/images/doc-thumb-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/doc-thumb-2.jpg
--------------------------------------------------------------------------------
/assets/images/profiles/profile-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-1.png
--------------------------------------------------------------------------------
/assets/images/profiles/profile-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-2.png
--------------------------------------------------------------------------------
/assets/images/profiles/profile-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-3.png
--------------------------------------------------------------------------------
/assets/images/profiles/profile-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-4.png
--------------------------------------------------------------------------------
/assets/images/profiles/profile-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-5.png
--------------------------------------------------------------------------------
/assets/images/profiles/profile-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/profiles/profile-6.png
--------------------------------------------------------------------------------
/assets/images/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/user.png
--------------------------------------------------------------------------------
/assets/images/users/user-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-1.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-2.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-3.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-4.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-5.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-6.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-7.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-8.jpg
--------------------------------------------------------------------------------
/assets/images/users/user-9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/images/users/user-9.jpg
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/_fixed-width.less:
--------------------------------------------------------------------------------
1 | // fixed-width icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-fw {
5 | text-align: center;
6 | width: @fa-fw-width;
7 | }
8 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/_icons.less:
--------------------------------------------------------------------------------
1 | // specific icon class definition
2 | // -------------------------
3 |
4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5 | readers do not read off random characters that represent icons */
6 |
7 | each(.fa-icons(), {
8 | .@{fa-css-prefix}-@{key}::before { content: @value; }
9 | });
10 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/_list.less:
--------------------------------------------------------------------------------
1 | // icons in a list
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: ~'var(--@{fa-css-prefix}-li-margin, @{fa-li-margin})';
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .@{fa-css-prefix}-li {
13 | left: calc(~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})' * -1);
14 | position: absolute;
15 | text-align: center;
16 | width: ~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})';
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/_screen-reader.less:
--------------------------------------------------------------------------------
1 | // screen-reader utilities
2 | // -------------------------
3 |
4 | // only display content to screen readers
5 | .sr-only,
6 | .@{fa-css-prefix}-sr-only {
7 | .fa-sr-only();
8 | }
9 |
10 | // use in conjunction with .sr-only to only display content when it's focused
11 | .sr-only-focusable,
12 | .@{fa-css-prefix}-sr-only-focusable {
13 | .fa-sr-only-focusable();
14 | }
15 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/_sizing.less:
--------------------------------------------------------------------------------
1 | // sizing icons
2 | // -------------------------
3 |
4 | // literal magnification scale
5 | .sizes-literal(@factor) when (@factor > 0) {
6 | .sizes-literal((@factor - 1));
7 |
8 | .@{fa-css-prefix}-@{factor}x {
9 | font-size: (@factor * 1em);
10 | }
11 | }
12 | .sizes-literal(10);
13 |
14 | // step-based scale (with alignment)
15 | each(.fa-sizes(), {
16 | .@{fa-css-prefix}-@{key} {
17 | .fa-size(@value);
18 | }
19 | });
20 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/less/v4-shims.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | * Copyright 2024 Fonticons, Inc.
5 | */
6 | // V4 shims compile (Web Fonts-based)
7 | // -------------------------
8 |
9 | @import '_variables.less';
10 | @import '_shims.less';
11 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // fixed-width icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-fw {
5 | text-align: center;
6 | width: $fa-fw-width;
7 | }
8 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/_icons.scss:
--------------------------------------------------------------------------------
1 | // specific icon class definition
2 | // -------------------------
3 |
4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5 | readers do not read off random characters that represent icons */
6 |
7 | @each $name, $icon in $fa-icons {
8 | .#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // icons in a list
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .#{$fa-css-prefix}-li {
13 | left: calc(-1 * var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}));
14 | position: absolute;
15 | text-align: center;
16 | width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // screen-reader utilities
2 | // -------------------------
3 |
4 | // only display content to screen readers
5 | .sr-only,
6 | .#{$fa-css-prefix}-sr-only {
7 | @include fa-sr-only;
8 | }
9 |
10 | // use in conjunction with .sr-only to only display content when it's focused
11 | .sr-only-focusable,
12 | .#{$fa-css-prefix}-sr-only-focusable {
13 | @include fa-sr-only-focusable;
14 | }
15 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/_sizing.scss:
--------------------------------------------------------------------------------
1 | // sizing icons
2 | // -------------------------
3 |
4 | // literal magnification scale
5 | @for $i from 1 through 10 {
6 | .#{$fa-css-prefix}-#{$i}x {
7 | font-size: $i * 1em;
8 | }
9 | }
10 |
11 | // step-based scale (with alignment)
12 | @each $size, $value in $fa-sizes {
13 | .#{$fa-css-prefix}-#{$size} {
14 | @include fa-size($value);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/scss/v4-shims.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | * Copyright 2024 Fonticons, Inc.
5 | */
6 | // V4 shims compile (Web Fonts-based)
7 | // -------------------------
8 |
9 | @import 'functions';
10 | @import 'variables';
11 | @import 'shims';
12 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/adn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/angular.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/artstation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/autoprefixer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/bandcamp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/bitbucket.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/black-tie.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/buysellads.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/cloudsmith.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/css3-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/css3.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/cuttlefish.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/dashcube.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/deezer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/deviantart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/discourse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/dochub.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/dropbox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/dyalog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/elementor.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/ethereum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/facebook-f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/firstdraft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/flipboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/flutter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/font-awesome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/fulcrum.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/gg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/gitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/google-drive.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/google-play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/google.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/gratipay.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/hacker-news.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/houzz.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/html5.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/instalod.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/jira.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/kaggle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/kickstarter-k.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/korvue.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/magento.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/maxcdn.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/microsoft.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/mintbit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/mix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/modx.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/monero.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/npm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/openid.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/patreon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/product-hunt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/rockrms.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/servicestack.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/sistrix.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/sitrox.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/sourcetree.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/space-awesome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/square-facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/square-x-twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/stack-exchange.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/stack-overflow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/strava.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/think-peaks.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/tiktok.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/twitch.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/uikit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/unsplash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/viacoin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/vuejs.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/webflow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/wirsindhandwerk.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/x-twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/y-combinator.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/yahoo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/yandex-international.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/brands/yandex.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle-check.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle-dot.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle-stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/clock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/face-meh-blank.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/face-surprise.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/square-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/regular/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/0.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/1.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/4.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/6.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/7.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/9.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/a.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/angle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/angle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/angle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/angle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/archway.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-down-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-left-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-pointer.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-right-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-turn-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-turn-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-up-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/arrow-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/backward-step.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/ban.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bolt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bookmark.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/border-all.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bowling-ball.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/box.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bread-slice.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/bullseye.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/c.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/calendar.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/camera.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/caret-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/caret-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/caret-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/caret-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/chalkboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/check.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/cheese.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/chevron-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/chevron-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/chevron-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/chevron-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-arrow-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-arrow-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-arrow-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-arrow-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-check.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-chevron-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-chevron-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-chevron-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-chevron-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-dot.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-exclamation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-h.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-half-stroke.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-info.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-left.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-pause.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-plus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-right.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle-user.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/circle.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/clock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/clone.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/cloud.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/code-commit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/compass.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/computer-mouse.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/copyright.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/cross.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/d.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/desktop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/diamond.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/dice-one.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/dice-three.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/dice-two.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/display.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/divide.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/door-closed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/down-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/e.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/egg.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/eject.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/ellipsis-vertical.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/ellipsis.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/envelope.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/equals.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/exclamation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/f.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/face-laugh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/face-meh-blank.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/face-meh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/face-surprise.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/filter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/folder-closed.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/folder.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/font-awesome.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/forward-step.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/gauge-simple-high.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/gauge-simple.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/genderless.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/greater-than.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/grip-lines-vertical.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/grip-lines.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/h.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/heart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/hockey-puck.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/i.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/industry.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/info.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/italic.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/j.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/k.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/l.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/laptop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/left-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/less-than.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/location-arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/location-dot.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/location-pin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/lock-open.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/lock.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/magnet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/magnifying-glass.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/map-pin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/map.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/martini-glass.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mattress-pillow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/message.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mobile-button.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mobile-screen-button.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mobile-screen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mobile.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/moon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/mound.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/n.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/neuter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/notdef.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/note-sticky.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/o.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/p.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/paragraph.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/pause.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/pen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/percent.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/play.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/plus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/r.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/record-vinyl.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/right-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/seedling.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/shield.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/slash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/sort-down.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/sort-up.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/spoon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/square-check.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/square-full.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/square-minus.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/square.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/star-half.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/stop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/t.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/table-cells-large.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/table-columns.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/table.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tablet-button.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tablet-screen-button.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tablet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tag.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tape.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tarp.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tenge-sign.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/terminal.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/toggle-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/toggle-on.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/traffic-light.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/trash.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/tv.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/u.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/up-long.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/user-large.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/user.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/v.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/volume-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/wallet.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/wand-magic.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/whiskey-glass.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/window-maximize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/window-minimize.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/y.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/yin-yang.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/svgs/solid/z.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-v4compatibility.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-v4compatibility.ttf
--------------------------------------------------------------------------------
/assets/plugins/fontawesome/webfonts/fa-v4compatibility.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/assets/plugins/fontawesome/webfonts/fa-v4compatibility.woff2
--------------------------------------------------------------------------------
/assets/scss/app/styles.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Portal - Bootstrap 5 Admin Dashboard Template for Developers
3 | * Version: 3.1
4 | * Author: Xiaoying Riley
5 | * Copyright: 3rd Wave Media Ltd.
6 | * Website: http://themes.3rdwavemedia.com/
7 | * Twitter: @3rdwave_themes
8 | */
9 |
10 | @import "mixins";
11 | @import "base";
12 | @import "header";
13 | @import "sidepanel";
14 | @import "app";
15 | @import "auth";
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/_forms.scss:
--------------------------------------------------------------------------------
1 | @import "forms/labels";
2 | @import "forms/form-text";
3 | @import "forms/form-control";
4 | @import "forms/form-select";
5 | @import "forms/form-check";
6 | @import "forms/form-range";
7 | @import "forms/floating-labels";
8 | @import "forms/input-group";
9 | @import "forms/validation";
10 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/_helpers.scss:
--------------------------------------------------------------------------------
1 | @import "helpers/clearfix";
2 | @import "helpers/color-bg";
3 | @import "helpers/colored-links";
4 | @import "helpers/focus-ring";
5 | @import "helpers/icon-link";
6 | @import "helpers/ratio";
7 | @import "helpers/position";
8 | @import "helpers/stacks";
9 | @import "helpers/visually-hidden";
10 | @import "helpers/stretched-link";
11 | @import "helpers/text-truncation";
12 | @import "helpers/vr";
13 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/_transitions.scss:
--------------------------------------------------------------------------------
1 | .fade {
2 | @include transition($transition-fade);
3 |
4 | &:not(.show) {
5 | opacity: 0;
6 | }
7 | }
8 |
9 | // scss-docs-start collapse-classes
10 | .collapse {
11 | &:not(.show) {
12 | display: none;
13 | }
14 | }
15 |
16 | .collapsing {
17 | height: 0;
18 | overflow: hidden;
19 | @include transition($transition-collapse);
20 |
21 | &.collapse-horizontal {
22 | width: 0;
23 | height: auto;
24 | @include transition($transition-collapse-width);
25 | }
26 | }
27 | // scss-docs-end collapse-classes
28 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/bootstrap-reboot.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/banner";
2 | @include bsBanner(Reboot);
3 |
4 | @import "functions";
5 | @import "variables";
6 | @import "variables-dark";
7 | @import "maps";
8 | @import "mixins";
9 | @import "root";
10 | @import "reboot";
11 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/bootstrap-utilities.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/banner";
2 | @include bsBanner(Utilities);
3 |
4 | // Configuration
5 | @import "functions";
6 | @import "variables";
7 | @import "variables-dark";
8 | @import "maps";
9 | @import "mixins";
10 | @import "utilities";
11 |
12 | // Layout & components
13 | @import "root";
14 |
15 | // Helpers
16 | @import "helpers";
17 |
18 | // Utilities
19 | @import "utilities/api";
20 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/forms/_form-text.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Form text
3 | //
4 |
5 | .form-text {
6 | margin-top: $form-text-margin-top;
7 | @include font-size($form-text-font-size);
8 | font-style: $form-text-font-style;
9 | font-weight: $form-text-font-weight;
10 | color: $form-text-color;
11 | }
12 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/forms/_validation.scss:
--------------------------------------------------------------------------------
1 | // Form validation
2 | //
3 | // Provide feedback to users when form field values are valid or invalid. Works
4 | // primarily for client-side validation via scoped `:invalid` and `:valid`
5 | // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
6 | // server-side validation.
7 |
8 | // scss-docs-start form-validation-states-loop
9 | @each $state, $data in $form-validation-states {
10 | @include form-validation-state($state, $data...);
11 | }
12 | // scss-docs-end form-validation-states-loop
13 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_color-bg.scss:
--------------------------------------------------------------------------------
1 | // All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
2 | @each $color, $value in $theme-colors {
3 | .text-bg-#{$color} {
4 | color: color-contrast($value) if($enable-important-utilities, !important, null);
5 | background-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_focus-ring.scss:
--------------------------------------------------------------------------------
1 | .focus-ring:focus {
2 | outline: 0;
3 | // By default, there is no `--bs-focus-ring-x`, `--bs-focus-ring-y`, or `--bs-focus-ring-blur`, but we provide CSS variables with fallbacks to initial `0` values
4 | box-shadow: var(--#{$prefix}focus-ring-x, 0) var(--#{$prefix}focus-ring-y, 0) var(--#{$prefix}focus-ring-blur, 0) var(--#{$prefix}focus-ring-width) var(--#{$prefix}focus-ring-color);
5 | }
6 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_ratio.scss:
--------------------------------------------------------------------------------
1 | // Credit: Nicolas Gallagher and SUIT CSS.
2 |
3 | .ratio {
4 | position: relative;
5 | width: 100%;
6 |
7 | &::before {
8 | display: block;
9 | padding-top: var(--#{$prefix}aspect-ratio);
10 | content: "";
11 | }
12 |
13 | > * {
14 | position: absolute;
15 | top: 0;
16 | left: 0;
17 | width: 100%;
18 | height: 100%;
19 | }
20 | }
21 |
22 | @each $key, $ratio in $aspect-ratios {
23 | .ratio-#{$key} {
24 | --#{$prefix}aspect-ratio: #{$ratio};
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_stacks.scss:
--------------------------------------------------------------------------------
1 | // scss-docs-start stacks
2 | .hstack {
3 | display: flex;
4 | flex-direction: row;
5 | align-items: center;
6 | align-self: stretch;
7 | }
8 |
9 | .vstack {
10 | display: flex;
11 | flex: 1 1 auto;
12 | flex-direction: column;
13 | align-self: stretch;
14 | }
15 | // scss-docs-end stacks
16 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_stretched-link.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Stretched link
3 | //
4 |
5 | .stretched-link {
6 | &::#{$stretched-link-pseudo-element} {
7 | position: absolute;
8 | top: 0;
9 | right: 0;
10 | bottom: 0;
11 | left: 0;
12 | z-index: $stretched-link-z-index;
13 | content: "";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_text-truncation.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Text truncation
3 | //
4 |
5 | .text-truncate {
6 | @include text-truncate();
7 | }
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_visually-hidden.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Visually hidden
3 | //
4 |
5 | .visually-hidden,
6 | .visually-hidden-focusable:not(:focus):not(:focus-within) {
7 | @include visually-hidden();
8 | }
9 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/helpers/_vr.scss:
--------------------------------------------------------------------------------
1 | .vr {
2 | display: inline-block;
3 | align-self: stretch;
4 | width: $vr-border-width;
5 | min-height: 1em;
6 | background-color: currentcolor;
7 | opacity: $hr-opacity;
8 | }
9 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_backdrop.scss:
--------------------------------------------------------------------------------
1 | // Shared between modals and offcanvases
2 | @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {
3 | position: fixed;
4 | top: 0;
5 | left: 0;
6 | z-index: $zindex;
7 | width: 100vw;
8 | height: 100vh;
9 | background-color: $backdrop-bg;
10 |
11 | // Fade for backdrop
12 | &.fade { opacity: 0; }
13 | &.show { opacity: $backdrop-opacity; }
14 | }
15 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_banner.scss:
--------------------------------------------------------------------------------
1 | @mixin bsBanner($file) {
2 | /*!
3 | * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)
4 | * Copyright 2011-2024 The Bootstrap Authors
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 | */
7 | }
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_box-shadow.scss:
--------------------------------------------------------------------------------
1 | @mixin box-shadow($shadow...) {
2 | @if $enable-shadows {
3 | $result: ();
4 |
5 | @each $value in $shadow {
6 | @if $value != null {
7 | $result: append($result, $value, "comma");
8 | }
9 | @if $value == none and length($shadow) > 1 {
10 | @warn "The keyword 'none' must be used as a single argument.";
11 | }
12 | }
13 |
14 | @if (length($result) > 0) {
15 | box-shadow: $result;
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_clearfix.scss:
--------------------------------------------------------------------------------
1 | // scss-docs-start clearfix
2 | @mixin clearfix() {
3 | &::after {
4 | display: block;
5 | clear: both;
6 | content: "";
7 | }
8 | }
9 | // scss-docs-end clearfix
10 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_color-mode.scss:
--------------------------------------------------------------------------------
1 | // scss-docs-start color-mode-mixin
2 | @mixin color-mode($mode: light, $root: false) {
3 | @if $color-mode-type == "media-query" {
4 | @if $root == true {
5 | @media (prefers-color-scheme: $mode) {
6 | :root {
7 | @content;
8 | }
9 | }
10 | } @else {
11 | @media (prefers-color-scheme: $mode) {
12 | @content;
13 | }
14 | }
15 | } @else {
16 | [data-bs-theme="#{$mode}"] {
17 | @content;
18 | }
19 | }
20 | }
21 | // scss-docs-end color-mode-mixin
22 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_color-scheme.scss:
--------------------------------------------------------------------------------
1 | // scss-docs-start mixin-color-scheme
2 | @mixin color-scheme($name) {
3 | @media (prefers-color-scheme: #{$name}) {
4 | @content;
5 | }
6 | }
7 | // scss-docs-end mixin-color-scheme
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_container.scss:
--------------------------------------------------------------------------------
1 | // Container mixins
2 |
3 | @mixin make-container($gutter: $container-padding-x) {
4 | --#{$prefix}gutter-x: #{$gutter};
5 | --#{$prefix}gutter-y: 0;
6 | width: 100%;
7 | padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
8 | padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
9 | margin-right: auto;
10 | margin-left: auto;
11 | }
12 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_image.scss:
--------------------------------------------------------------------------------
1 | // Image Mixins
2 | // - Responsive image
3 | // - Retina image
4 |
5 |
6 | // Responsive image
7 | //
8 | // Keep images from scaling beyond the width of their parents.
9 |
10 | @mixin img-fluid {
11 | // Part 1: Set a maximum relative to the parent
12 | max-width: 100%;
13 | // Part 2: Override the height to auto, otherwise images will be stretched
14 | // when setting a width and height attribute on the img element.
15 | height: auto;
16 | }
17 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_lists.scss:
--------------------------------------------------------------------------------
1 | // Lists
2 |
3 | // Unstyled keeps list items block level, just removes default browser padding and list-style
4 | @mixin list-unstyled {
5 | padding-left: 0;
6 | list-style: none;
7 | }
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_pagination.scss:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | // scss-docs-start pagination-mixin
4 | @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
5 | --#{$prefix}pagination-padding-x: #{$padding-x};
6 | --#{$prefix}pagination-padding-y: #{$padding-y};
7 | @include rfs($font-size, --#{$prefix}pagination-font-size);
8 | --#{$prefix}pagination-border-radius: #{$border-radius};
9 | }
10 | // scss-docs-end pagination-mixin
11 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_resize.scss:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | @mixin resizable($direction) {
4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
5 | resize: $direction; // Options: horizontal, vertical, both
6 | }
7 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/mixins/_text-truncate.scss:
--------------------------------------------------------------------------------
1 | // Text truncate
2 | // Requires inline-block or block for proper styling
3 |
4 | @mixin text-truncate() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/tests/jasmine.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable camelcase */
2 |
3 | 'use strict'
4 |
5 | const path = require('node:path')
6 |
7 | module.exports = {
8 | spec_dir: 'scss',
9 | // Make Jasmine look for `.test.scss` files
10 | spec_files: ['**/*.{test,spec}.scss'],
11 | // Compile them into JS scripts running `sass-true`
12 | requires: [path.join(__dirname, 'sass-true/register')],
13 | // Ensure we use `require` so that the require.extensions works
14 | // as `import` completely bypasses it
15 | jsLoader: 'require'
16 | }
17 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss:
--------------------------------------------------------------------------------
1 | // TODO: this file can be removed safely in v6 when `@import "variables-dark"` will be removed at the end of _variables.scss
2 |
3 | @import "../../functions";
4 | @import "../../variables";
5 | // Voluntarily not importing _variables-dark.scss
6 | @import "../../maps";
7 | @import "../../mixins";
8 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss:
--------------------------------------------------------------------------------
1 | $color-mode-type: media-query;
2 |
3 | @import "../../bootstrap";
4 |
5 | @include describe("global $color-mode-type: media-query") {
6 | @include it("compiles entirely Bootstrap CSS with media-query color mode") { // stylelint-disable-line block-no-empty
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/tests/sass-true/register.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const path = require('node:path')
4 |
5 | const runnerPath = path.join(__dirname, 'runner').replace(/\\/g, '/')
6 |
7 | require.extensions['.scss'] = (module, filename) => {
8 | const normalizedFilename = filename.replace(/\\/g, '/')
9 |
10 | return module._compile(`
11 | const runner = require('${runnerPath}')
12 | runner('${normalizedFilename}', { describe, it })
13 | `, filename)
14 | }
15 |
--------------------------------------------------------------------------------
/assets/scss/bootstrap/scss/tests/sass-true/runner.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | const fs = require('node:fs')
4 | const path = require('node:path')
5 | const { runSass } = require('sass-true')
6 |
7 | module.exports = (filename, { describe, it }) => {
8 | const data = fs.readFileSync(filename, 'utf8')
9 | const TRUE_SETUP = '$true-terminal-output: false; @import "true";'
10 | const sassString = TRUE_SETUP + data
11 |
12 | runSass(
13 | { describe, it, sourceType: 'string' },
14 | sassString,
15 | { loadPaths: [path.dirname(filename)] }
16 | )
17 | }
18 |
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xriley/portal-theme-bs5/89d6405ceba879bcaea56a8ab917e7f2c14e53f7/favicon.ico
--------------------------------------------------------------------------------