├── 0.0.1 ├── .htaccess ├── admin │ ├── index.php │ ├── lang │ │ ├── english.php │ │ ├── index.php │ │ ├── italian.php │ │ └── overrides │ │ │ └── index.php │ └── templates │ │ ├── default │ │ ├── css │ │ │ └── index.php │ │ ├── images │ │ │ └── index.php │ │ ├── index.php │ │ └── lib │ │ │ └── index.php │ │ └── index.php ├── api │ ├── .htaccess │ ├── index.php │ └── objects │ │ ├── index.php │ │ ├── invoices.php │ │ ├── login.php │ │ ├── orders.php │ │ └── transactions.php ├── app │ ├── .htaccess │ ├── API │ │ ├── AddOrder.php │ │ ├── GetOrder.php │ │ └── index.php │ ├── Affiliates │ │ ├── Affiliates.php │ │ └── index.php │ ├── Auth │ │ ├── Auth.php │ │ └── index.php │ ├── Automation │ │ ├── Cron.php │ │ ├── HappyNewYear.php │ │ └── index.php │ ├── Billing │ │ ├── Billing.php │ │ ├── Cashflow.php │ │ ├── Lookup.php │ │ └── index.php │ ├── CMS │ │ ├── Blog.php │ │ ├── Comments.php │ │ ├── Cookiebar.php │ │ ├── Docs.php │ │ ├── Downloads.php │ │ ├── Faq.php │ │ ├── Lab.php │ │ ├── News.php │ │ ├── PageBuilder.php │ │ ├── Widgets.php │ │ └── index.php │ ├── Config │ │ ├── Settings.php │ │ └── index.php │ ├── Database │ │ ├── Connection.php │ │ └── index.php │ ├── Domains │ │ ├── Domains.php │ │ └── index.php │ ├── Helpers │ │ ├── Utils.php │ │ └── index.php │ ├── Hooks │ │ ├── Hooks.php │ │ └── index.php │ ├── Hosting │ │ ├── Hosting.php │ │ └── index.php │ ├── Language │ │ ├── Language.php │ │ └── index.php │ ├── Logging │ │ ├── Logging.php │ │ └── index.php │ ├── Mail │ │ ├── Newsletter.php │ │ └── index.php │ ├── Migration │ │ ├── WHMCS.php │ │ └── index.php │ ├── Orders │ │ ├── Orders.php │ │ └── index.php │ ├── Payments │ │ ├── Payments.php │ │ └── index.php │ ├── SEO │ │ ├── Disavow.php │ │ ├── Health.php │ │ ├── SEO.php │ │ ├── SerpPreview.php │ │ ├── Sitemap.php │ │ └── index.php │ ├── Support │ │ ├── Tickets.php │ │ └── index.php │ ├── Toolbox │ │ ├── Export.php │ │ ├── Tables.php │ │ └── index.php │ ├── Tracking │ │ ├── Facebook.php │ │ ├── Google.php │ │ ├── LinkedIn.php │ │ └── index.php │ ├── Wizard │ │ ├── Billing.php │ │ ├── Domains.php │ │ ├── Events.php │ │ ├── Health.php │ │ ├── Install.php │ │ ├── Mailer.php │ │ ├── Upgrade.php │ │ ├── UserManager.php │ │ └── index.php │ └── bootstrap.php ├── blog.php ├── cart.php ├── comments.php ├── composer.json ├── composer.lock ├── configuration.php ├── docs.php ├── downloads.php ├── faq.php ├── featureRequests.php ├── index.php ├── installer │ ├── index.php │ └── sql │ │ └── dump.sql ├── lang │ ├── english.php │ ├── index.php │ ├── italian.php │ └── overrides │ │ └── index.php ├── login.php ├── logout.php ├── modules │ ├── gateways │ │ ├── bnl.php │ │ ├── callback │ │ │ ├── bnl.php │ │ │ ├── gestpay.php │ │ │ ├── index.php │ │ │ ├── nexi.php │ │ │ ├── paypal.php │ │ │ └── stripe.php │ │ ├── gestpay.php │ │ ├── index.php │ │ ├── nexi.php │ │ ├── paypal.php │ │ └── stripe.php │ └── registrars │ │ ├── Hexonet │ │ └── index.php │ │ ├── eNom │ │ └── index.php │ │ ├── internetbs │ │ └── index.php │ │ └── resellerClub │ │ └── index.php ├── news.php ├── page.php ├── register.php ├── robots.txt ├── sensitive-page.php ├── templates │ ├── default │ │ ├── css │ │ │ └── index.php │ │ ├── images │ │ │ └── index.php │ │ ├── index.php │ │ └── lib │ │ │ └── index.php │ └── index.php ├── tmp │ └── CompiledContainer.php └── vendor │ ├── .htaccess │ ├── autoload.php │ ├── blueimp │ └── jquery-file-upload │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── test.yml │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VULNERABILITIES.md │ │ ├── composer.json │ │ ├── cors │ │ ├── postmessage.html │ │ └── result.html │ │ ├── css │ │ ├── jquery.fileupload-noscript.css │ │ ├── jquery.fileupload-ui-noscript.css │ │ ├── jquery.fileupload-ui.css │ │ └── jquery.fileupload.css │ │ ├── docker-compose.yml │ │ ├── img │ │ ├── loading.gif │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── js │ │ ├── cors │ │ │ ├── jquery.postmessage-transport.js │ │ │ └── jquery.xdr-transport.js │ │ ├── demo.js │ │ ├── jquery.fileupload-audio.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload-video.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ └── vendor │ │ │ └── jquery.ui.widget.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── server │ │ ├── gae-go │ │ │ ├── app.yaml │ │ │ ├── main.go │ │ │ └── static │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ ├── gae-python │ │ │ ├── app.yaml │ │ │ ├── main.py │ │ │ └── static │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ └── php │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── UploadHandler.php │ │ │ ├── files │ │ │ ├── .gitignore │ │ │ └── .htaccess │ │ │ ├── index.php │ │ │ └── php.ini │ │ ├── test │ │ ├── index.html │ │ ├── unit.js │ │ └── vendor │ │ │ ├── chai.js │ │ │ ├── mocha.css │ │ │ └── mocha.js │ │ └── wdio │ │ ├── .eslintrc.js │ │ ├── .prettierrc.js │ │ ├── LICENSE.txt │ │ ├── assets │ │ ├── black+white-3x2.jpg │ │ └── black+white-60x40.gif │ │ ├── bin │ │ ├── forward-ports.sh │ │ └── safaridriver.sh │ │ ├── conf │ │ ├── chrome.js │ │ ├── edge.js │ │ ├── firefox.js │ │ ├── internet-explorer.js │ │ └── safari.js │ │ ├── hooks │ │ └── index.js │ │ ├── reports │ │ └── .gitignore │ │ ├── test │ │ ├── pages │ │ │ └── file-upload.js │ │ └── specs │ │ │ └── 01-file-upload.js │ │ └── wdio.conf.js │ ├── bshaffer │ └── oauth2-server-php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ └── OAuth2 │ │ │ ├── Autoloader.php │ │ │ ├── ClientAssertionType │ │ │ ├── ClientAssertionTypeInterface.php │ │ │ └── HttpBasic.php │ │ │ ├── Controller │ │ │ ├── AuthorizeController.php │ │ │ ├── AuthorizeControllerInterface.php │ │ │ ├── ResourceController.php │ │ │ ├── ResourceControllerInterface.php │ │ │ ├── TokenController.php │ │ │ └── TokenControllerInterface.php │ │ │ ├── Encryption │ │ │ ├── EncryptionInterface.php │ │ │ ├── FirebaseJwt.php │ │ │ └── Jwt.php │ │ │ ├── GrantType │ │ │ ├── AuthorizationCode.php │ │ │ ├── ClientCredentials.php │ │ │ ├── GrantTypeInterface.php │ │ │ ├── JwtBearer.php │ │ │ ├── RefreshToken.php │ │ │ └── UserCredentials.php │ │ │ ├── OpenID │ │ │ ├── Controller │ │ │ │ ├── AuthorizeController.php │ │ │ │ ├── AuthorizeControllerInterface.php │ │ │ │ ├── UserInfoController.php │ │ │ │ └── UserInfoControllerInterface.php │ │ │ ├── GrantType │ │ │ │ └── AuthorizationCode.php │ │ │ ├── ResponseType │ │ │ │ ├── AuthorizationCode.php │ │ │ │ ├── AuthorizationCodeInterface.php │ │ │ │ ├── CodeIdToken.php │ │ │ │ ├── CodeIdTokenInterface.php │ │ │ │ ├── IdToken.php │ │ │ │ ├── IdTokenInterface.php │ │ │ │ ├── IdTokenToken.php │ │ │ │ └── IdTokenTokenInterface.php │ │ │ └── Storage │ │ │ │ ├── AuthorizationCodeInterface.php │ │ │ │ └── UserClaimsInterface.php │ │ │ ├── Request.php │ │ │ ├── RequestInterface.php │ │ │ ├── Response.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ResponseType │ │ │ ├── AccessToken.php │ │ │ ├── AccessTokenInterface.php │ │ │ ├── AuthorizationCode.php │ │ │ ├── AuthorizationCodeInterface.php │ │ │ ├── JwtAccessToken.php │ │ │ └── ResponseTypeInterface.php │ │ │ ├── Scope.php │ │ │ ├── ScopeInterface.php │ │ │ ├── Server.php │ │ │ ├── Storage │ │ │ ├── AccessTokenInterface.php │ │ │ ├── AuthorizationCodeInterface.php │ │ │ ├── Cassandra.php │ │ │ ├── ClientCredentialsInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── CouchbaseDB.php │ │ │ ├── DynamoDB.php │ │ │ ├── JwtAccessToken.php │ │ │ ├── JwtAccessTokenInterface.php │ │ │ ├── JwtBearerInterface.php │ │ │ ├── Memory.php │ │ │ ├── Mongo.php │ │ │ ├── MongoDB.php │ │ │ ├── Pdo.php │ │ │ ├── PublicKeyInterface.php │ │ │ ├── Redis.php │ │ │ ├── RefreshTokenInterface.php │ │ │ ├── ScopeInterface.php │ │ │ └── UserCredentialsInterface.php │ │ │ └── TokenType │ │ │ ├── Bearer.php │ │ │ ├── Mac.php │ │ │ └── TokenTypeInterface.php │ │ └── test │ │ ├── OAuth2 │ │ ├── AutoloadTest.php │ │ ├── Controller │ │ │ ├── AuthorizeControllerTest.php │ │ │ ├── ResourceControllerTest.php │ │ │ └── TokenControllerTest.php │ │ ├── Encryption │ │ │ ├── FirebaseJwtTest.php │ │ │ └── JwtTest.php │ │ ├── GrantType │ │ │ ├── AuthorizationCodeTest.php │ │ │ ├── ClientCredentialsTest.php │ │ │ ├── ImplicitTest.php │ │ │ ├── JwtBearerTest.php │ │ │ ├── RefreshTokenTest.php │ │ │ └── UserCredentialsTest.php │ │ ├── OpenID │ │ │ ├── Controller │ │ │ │ ├── AuthorizeControllerTest.php │ │ │ │ └── UserInfoControllerTest.php │ │ │ ├── GrantType │ │ │ │ └── AuthorizationCodeTest.php │ │ │ ├── ResponseType │ │ │ │ ├── CodeIdTokenTest.php │ │ │ │ ├── IdTokenTest.php │ │ │ │ └── IdTokenTokenTest.php │ │ │ └── Storage │ │ │ │ ├── AuthorizationCodeTest.php │ │ │ │ └── UserClaimsTest.php │ │ ├── RequestTest.php │ │ ├── ResponseTest.php │ │ ├── ResponseType │ │ │ ├── AccessTokenTest.php │ │ │ └── JwtAccessTokenTest.php │ │ ├── ScopeTest.php │ │ ├── ServerTest.php │ │ ├── Storage │ │ │ ├── AccessTokenTest.php │ │ │ ├── AuthorizationCodeTest.php │ │ │ ├── ClientCredentialsTest.php │ │ │ ├── ClientTest.php │ │ │ ├── DynamoDBTest.php │ │ │ ├── JwtAccessTokenTest.php │ │ │ ├── JwtBearerTest.php │ │ │ ├── PdoTest.php │ │ │ ├── PublicKeyTest.php │ │ │ ├── RefreshTokenTest.php │ │ │ ├── ScopeTest.php │ │ │ └── UserCredentialsTest.php │ │ └── TokenType │ │ │ └── BearerTest.php │ │ ├── bootstrap.php │ │ ├── cleanup.php │ │ ├── config │ │ ├── keys │ │ │ ├── id_rsa │ │ │ └── id_rsa.pub │ │ └── storage.json │ │ └── lib │ │ └── OAuth2 │ │ ├── Request │ │ └── TestRequest.php │ │ └── Storage │ │ ├── BaseTest.php │ │ ├── Bootstrap.php │ │ └── NullStorage.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── ezyang │ └── htmlpurifier │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ └── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.Forms.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ └── messages │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Comment.php │ │ ├── Element.php │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ ├── nntp.php │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php │ ├── fortawesome │ └── font-awesome │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ ├── feature_request.md │ │ │ └── icon-request.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── 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-shims.css │ │ └── v4-shims.min.css │ │ ├── js-packages │ │ └── @fortawesome │ │ │ ├── fontawesome-common-types │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ │ ├── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── 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-shims.css │ │ │ │ └── v4-shims.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 │ │ │ │ ├── _larger.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── metadata │ │ │ │ ├── categories.yml │ │ │ │ ├── icons.yml │ │ │ │ ├── shims.yml │ │ │ │ └── sponsors.yml │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _shims.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 │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adobe.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-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── dashcube.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-square.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-square.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 │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.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-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-pay.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── guilded.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.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 │ │ │ │ │ ├── innosoft.svg │ │ │ │ │ ├── instagram-square.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-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.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-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── microblog.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mixer.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── orcid.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── penny-arcade.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-square.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.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-square.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 │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopify.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.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 │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.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 │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ ├── bahai.svg │ │ │ │ │ ├── balance-scale-left.svg │ │ │ │ │ ├── balance-scale-right.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── biking.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-dead.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-style.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caravan.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.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-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress-alt.svg │ │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.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 │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── disease.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-alt.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── faucet.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-alt.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── fist-raised.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-cheers.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glass-whiskey.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe-europe.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamburger.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding-water.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands-wash.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-broken.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hiking.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-damage.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── hryvnia.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-house.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ ├── lungs.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── mouse.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-arrows.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── phone-alt.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square-alt.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-video.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── radiation-alt.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── remove-format.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── running.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sink.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skating.svg │ │ │ │ │ ├── skiing-nordic.svg │ │ │ │ │ ├── skiing.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── sms.svg │ │ │ │ │ ├── snowboarding.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── soap.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt-slash.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── tenge.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tools.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── trailer.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── tram.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ │ ├── trash-restore.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users-slash.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ ├── vest.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── virus.svg │ │ │ │ │ ├── viruses.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── vote-yea.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── fontawesome-svg-core │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── index.d.ts │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── styles.css │ │ │ ├── free-brands-svg-icons │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── fa500px.d.ts │ │ │ ├── fa500px.js │ │ │ ├── faAccessibleIcon.d.ts │ │ │ ├── faAccessibleIcon.js │ │ │ ├── faAccusoft.d.ts │ │ │ ├── faAccusoft.js │ │ │ ├── faAcquisitionsIncorporated.d.ts │ │ │ ├── faAcquisitionsIncorporated.js │ │ │ ├── faAdn.d.ts │ │ │ ├── faAdn.js │ │ │ ├── faAdobe.d.ts │ │ │ ├── faAdobe.js │ │ │ ├── faAdversal.d.ts │ │ │ ├── faAdversal.js │ │ │ ├── faAffiliatetheme.d.ts │ │ │ ├── faAffiliatetheme.js │ │ │ ├── faAirbnb.d.ts │ │ │ ├── faAirbnb.js │ │ │ ├── faAlgolia.d.ts │ │ │ ├── faAlgolia.js │ │ │ ├── faAlipay.d.ts │ │ │ ├── faAlipay.js │ │ │ ├── faAmazon.d.ts │ │ │ ├── faAmazon.js │ │ │ ├── faAmazonPay.d.ts │ │ │ ├── faAmazonPay.js │ │ │ ├── faAmilia.d.ts │ │ │ ├── faAmilia.js │ │ │ ├── faAndroid.d.ts │ │ │ ├── faAndroid.js │ │ │ ├── faAngellist.d.ts │ │ │ ├── faAngellist.js │ │ │ ├── faAngrycreative.d.ts │ │ │ ├── faAngrycreative.js │ │ │ ├── faAngular.d.ts │ │ │ ├── faAngular.js │ │ │ ├── faAppStore.d.ts │ │ │ ├── faAppStore.js │ │ │ ├── faAppStoreIos.d.ts │ │ │ ├── faAppStoreIos.js │ │ │ ├── faApper.d.ts │ │ │ ├── faApper.js │ │ │ ├── faApple.d.ts │ │ │ ├── faApple.js │ │ │ ├── faApplePay.d.ts │ │ │ ├── faApplePay.js │ │ │ ├── faArtstation.d.ts │ │ │ ├── faArtstation.js │ │ │ ├── faAsymmetrik.d.ts │ │ │ ├── faAsymmetrik.js │ │ │ ├── faAtlassian.d.ts │ │ │ ├── faAtlassian.js │ │ │ ├── faAudible.d.ts │ │ │ ├── faAudible.js │ │ │ ├── faAutoprefixer.d.ts │ │ │ ├── faAutoprefixer.js │ │ │ ├── faAvianex.d.ts │ │ │ ├── faAvianex.js │ │ │ ├── faAviato.d.ts │ │ │ ├── faAviato.js │ │ │ ├── faAws.d.ts │ │ │ ├── faAws.js │ │ │ ├── faBandcamp.d.ts │ │ │ ├── faBandcamp.js │ │ │ ├── faBattleNet.d.ts │ │ │ ├── faBattleNet.js │ │ │ ├── faBehance.d.ts │ │ │ ├── faBehance.js │ │ │ ├── faBehanceSquare.d.ts │ │ │ ├── faBehanceSquare.js │ │ │ ├── faBimobject.d.ts │ │ │ ├── faBimobject.js │ │ │ ├── faBitbucket.d.ts │ │ │ ├── faBitbucket.js │ │ │ ├── faBitcoin.d.ts │ │ │ ├── faBitcoin.js │ │ │ ├── faBity.d.ts │ │ │ ├── faBity.js │ │ │ ├── faBlackTie.d.ts │ │ │ ├── faBlackTie.js │ │ │ ├── faBlackberry.d.ts │ │ │ ├── faBlackberry.js │ │ │ ├── faBlogger.d.ts │ │ │ ├── faBlogger.js │ │ │ ├── faBloggerB.d.ts │ │ │ ├── faBloggerB.js │ │ │ ├── faBluetooth.d.ts │ │ │ ├── faBluetooth.js │ │ │ ├── faBluetoothB.d.ts │ │ │ ├── faBluetoothB.js │ │ │ ├── faBootstrap.d.ts │ │ │ ├── faBootstrap.js │ │ │ ├── faBtc.d.ts │ │ │ ├── faBtc.js │ │ │ ├── faBuffer.d.ts │ │ │ ├── faBuffer.js │ │ │ ├── faBuromobelexperte.d.ts │ │ │ ├── faBuromobelexperte.js │ │ │ ├── faBuyNLarge.d.ts │ │ │ ├── faBuyNLarge.js │ │ │ ├── faBuysellads.d.ts │ │ │ ├── faBuysellads.js │ │ │ ├── faCanadianMapleLeaf.d.ts │ │ │ ├── faCanadianMapleLeaf.js │ │ │ ├── faCcAmazonPay.d.ts │ │ │ ├── faCcAmazonPay.js │ │ │ ├── faCcAmex.d.ts │ │ │ ├── faCcAmex.js │ │ │ ├── faCcApplePay.d.ts │ │ │ ├── faCcApplePay.js │ │ │ ├── faCcDinersClub.d.ts │ │ │ ├── faCcDinersClub.js │ │ │ ├── faCcDiscover.d.ts │ │ │ ├── faCcDiscover.js │ │ │ ├── faCcJcb.d.ts │ │ │ ├── faCcJcb.js │ │ │ ├── faCcMastercard.d.ts │ │ │ ├── faCcMastercard.js │ │ │ ├── faCcPaypal.d.ts │ │ │ ├── faCcPaypal.js │ │ │ ├── faCcStripe.d.ts │ │ │ ├── faCcStripe.js │ │ │ ├── faCcVisa.d.ts │ │ │ ├── faCcVisa.js │ │ │ ├── faCentercode.d.ts │ │ │ ├── faCentercode.js │ │ │ ├── faCentos.d.ts │ │ │ ├── faCentos.js │ │ │ ├── faChrome.d.ts │ │ │ ├── faChrome.js │ │ │ ├── faChromecast.d.ts │ │ │ ├── faChromecast.js │ │ │ ├── faCloudflare.d.ts │ │ │ ├── faCloudflare.js │ │ │ ├── faCloudscale.d.ts │ │ │ ├── faCloudscale.js │ │ │ ├── faCloudsmith.d.ts │ │ │ ├── faCloudsmith.js │ │ │ ├── faCloudversify.d.ts │ │ │ ├── faCloudversify.js │ │ │ ├── faCodepen.d.ts │ │ │ ├── faCodepen.js │ │ │ ├── faCodiepie.d.ts │ │ │ ├── faCodiepie.js │ │ │ ├── faConfluence.d.ts │ │ │ ├── faConfluence.js │ │ │ ├── faConnectdevelop.d.ts │ │ │ ├── faConnectdevelop.js │ │ │ ├── faContao.d.ts │ │ │ ├── faContao.js │ │ │ ├── faCottonBureau.d.ts │ │ │ ├── faCottonBureau.js │ │ │ ├── faCpanel.d.ts │ │ │ ├── faCpanel.js │ │ │ ├── faCreativeCommons.d.ts │ │ │ ├── faCreativeCommons.js │ │ │ ├── faCreativeCommonsBy.d.ts │ │ │ ├── faCreativeCommonsBy.js │ │ │ ├── faCreativeCommonsNc.d.ts │ │ │ ├── faCreativeCommonsNc.js │ │ │ ├── faCreativeCommonsNcEu.d.ts │ │ │ ├── faCreativeCommonsNcEu.js │ │ │ ├── faCreativeCommonsNcJp.d.ts │ │ │ ├── faCreativeCommonsNcJp.js │ │ │ ├── faCreativeCommonsNd.d.ts │ │ │ ├── faCreativeCommonsNd.js │ │ │ ├── faCreativeCommonsPd.d.ts │ │ │ ├── faCreativeCommonsPd.js │ │ │ ├── faCreativeCommonsPdAlt.d.ts │ │ │ ├── faCreativeCommonsPdAlt.js │ │ │ ├── faCreativeCommonsRemix.d.ts │ │ │ ├── faCreativeCommonsRemix.js │ │ │ ├── faCreativeCommonsSa.d.ts │ │ │ ├── faCreativeCommonsSa.js │ │ │ ├── faCreativeCommonsSampling.d.ts │ │ │ ├── faCreativeCommonsSampling.js │ │ │ ├── faCreativeCommonsSamplingPlus.d.ts │ │ │ ├── faCreativeCommonsSamplingPlus.js │ │ │ ├── faCreativeCommonsShare.d.ts │ │ │ ├── faCreativeCommonsShare.js │ │ │ ├── faCreativeCommonsZero.d.ts │ │ │ ├── faCreativeCommonsZero.js │ │ │ ├── faCriticalRole.d.ts │ │ │ ├── faCriticalRole.js │ │ │ ├── faCss3.d.ts │ │ │ ├── faCss3.js │ │ │ ├── faCss3Alt.d.ts │ │ │ ├── faCss3Alt.js │ │ │ ├── faCuttlefish.d.ts │ │ │ ├── faCuttlefish.js │ │ │ ├── faDAndD.d.ts │ │ │ ├── faDAndD.js │ │ │ ├── faDAndDBeyond.d.ts │ │ │ ├── faDAndDBeyond.js │ │ │ ├── faDailymotion.d.ts │ │ │ ├── faDailymotion.js │ │ │ ├── faDashcube.d.ts │ │ │ ├── faDashcube.js │ │ │ ├── faDeezer.d.ts │ │ │ ├── faDeezer.js │ │ │ ├── faDelicious.d.ts │ │ │ ├── faDelicious.js │ │ │ ├── faDeploydog.d.ts │ │ │ ├── faDeploydog.js │ │ │ ├── faDeskpro.d.ts │ │ │ ├── faDeskpro.js │ │ │ ├── faDev.d.ts │ │ │ ├── faDev.js │ │ │ ├── faDeviantart.d.ts │ │ │ ├── faDeviantart.js │ │ │ ├── faDhl.d.ts │ │ │ ├── faDhl.js │ │ │ ├── faDiaspora.d.ts │ │ │ ├── faDiaspora.js │ │ │ ├── faDigg.d.ts │ │ │ ├── faDigg.js │ │ │ ├── faDigitalOcean.d.ts │ │ │ ├── faDigitalOcean.js │ │ │ ├── faDiscord.d.ts │ │ │ ├── faDiscord.js │ │ │ ├── faDiscourse.d.ts │ │ │ ├── faDiscourse.js │ │ │ ├── faDochub.d.ts │ │ │ ├── faDochub.js │ │ │ ├── faDocker.d.ts │ │ │ ├── faDocker.js │ │ │ ├── faDraft2digital.d.ts │ │ │ ├── faDraft2digital.js │ │ │ ├── faDribbble.d.ts │ │ │ ├── faDribbble.js │ │ │ ├── faDribbbleSquare.d.ts │ │ │ ├── faDribbbleSquare.js │ │ │ ├── faDropbox.d.ts │ │ │ ├── faDropbox.js │ │ │ ├── faDrupal.d.ts │ │ │ ├── faDrupal.js │ │ │ ├── faDyalog.d.ts │ │ │ ├── faDyalog.js │ │ │ ├── faEarlybirds.d.ts │ │ │ ├── faEarlybirds.js │ │ │ ├── faEbay.d.ts │ │ │ ├── faEbay.js │ │ │ ├── faEdge.d.ts │ │ │ ├── faEdge.js │ │ │ ├── faEdgeLegacy.d.ts │ │ │ ├── faEdgeLegacy.js │ │ │ ├── faElementor.d.ts │ │ │ ├── faElementor.js │ │ │ ├── faEllo.d.ts │ │ │ ├── faEllo.js │ │ │ ├── faEmber.d.ts │ │ │ ├── faEmber.js │ │ │ ├── faEmpire.d.ts │ │ │ ├── faEmpire.js │ │ │ ├── faEnvira.d.ts │ │ │ ├── faEnvira.js │ │ │ ├── faErlang.d.ts │ │ │ ├── faErlang.js │ │ │ ├── faEthereum.d.ts │ │ │ ├── faEthereum.js │ │ │ ├── faEtsy.d.ts │ │ │ ├── faEtsy.js │ │ │ ├── faEvernote.d.ts │ │ │ ├── faEvernote.js │ │ │ ├── faExpeditedssl.d.ts │ │ │ ├── faExpeditedssl.js │ │ │ ├── faFacebook.d.ts │ │ │ ├── faFacebook.js │ │ │ ├── faFacebookF.d.ts │ │ │ ├── faFacebookF.js │ │ │ ├── faFacebookMessenger.d.ts │ │ │ ├── faFacebookMessenger.js │ │ │ ├── faFacebookSquare.d.ts │ │ │ ├── faFacebookSquare.js │ │ │ ├── faFantasyFlightGames.d.ts │ │ │ ├── faFantasyFlightGames.js │ │ │ ├── faFedex.d.ts │ │ │ ├── faFedex.js │ │ │ ├── faFedora.d.ts │ │ │ ├── faFedora.js │ │ │ ├── faFigma.d.ts │ │ │ ├── faFigma.js │ │ │ ├── faFirefox.d.ts │ │ │ ├── faFirefox.js │ │ │ ├── faFirefoxBrowser.d.ts │ │ │ ├── faFirefoxBrowser.js │ │ │ ├── faFirstOrder.d.ts │ │ │ ├── faFirstOrder.js │ │ │ ├── faFirstOrderAlt.d.ts │ │ │ ├── faFirstOrderAlt.js │ │ │ ├── faFirstdraft.d.ts │ │ │ ├── faFirstdraft.js │ │ │ ├── faFlickr.d.ts │ │ │ ├── faFlickr.js │ │ │ ├── faFlipboard.d.ts │ │ │ ├── faFlipboard.js │ │ │ ├── faFly.d.ts │ │ │ ├── faFly.js │ │ │ ├── faFontAwesome.d.ts │ │ │ ├── faFontAwesome.js │ │ │ ├── faFontAwesomeAlt.d.ts │ │ │ ├── faFontAwesomeAlt.js │ │ │ ├── faFontAwesomeFlag.d.ts │ │ │ ├── faFontAwesomeFlag.js │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ ├── faFonticons.d.ts │ │ │ ├── faFonticons.js │ │ │ ├── faFonticonsFi.d.ts │ │ │ ├── faFonticonsFi.js │ │ │ ├── faFortAwesome.d.ts │ │ │ ├── faFortAwesome.js │ │ │ ├── faFortAwesomeAlt.d.ts │ │ │ ├── faFortAwesomeAlt.js │ │ │ ├── faForumbee.d.ts │ │ │ ├── faForumbee.js │ │ │ ├── faFoursquare.d.ts │ │ │ ├── faFoursquare.js │ │ │ ├── faFreeCodeCamp.d.ts │ │ │ ├── faFreeCodeCamp.js │ │ │ ├── faFreebsd.d.ts │ │ │ ├── faFreebsd.js │ │ │ ├── faFulcrum.d.ts │ │ │ ├── faFulcrum.js │ │ │ ├── faGalacticRepublic.d.ts │ │ │ ├── faGalacticRepublic.js │ │ │ ├── faGalacticSenate.d.ts │ │ │ ├── faGalacticSenate.js │ │ │ ├── faGetPocket.d.ts │ │ │ ├── faGetPocket.js │ │ │ ├── faGg.d.ts │ │ │ ├── faGg.js │ │ │ ├── faGgCircle.d.ts │ │ │ ├── faGgCircle.js │ │ │ ├── faGit.d.ts │ │ │ ├── faGit.js │ │ │ ├── faGitAlt.d.ts │ │ │ ├── faGitAlt.js │ │ │ ├── faGitSquare.d.ts │ │ │ ├── faGitSquare.js │ │ │ ├── faGithub.d.ts │ │ │ ├── faGithub.js │ │ │ ├── faGithubAlt.d.ts │ │ │ ├── faGithubAlt.js │ │ │ ├── faGithubSquare.d.ts │ │ │ ├── faGithubSquare.js │ │ │ ├── faGitkraken.d.ts │ │ │ ├── faGitkraken.js │ │ │ ├── faGitlab.d.ts │ │ │ ├── faGitlab.js │ │ │ ├── faGitter.d.ts │ │ │ ├── faGitter.js │ │ │ ├── faGlide.d.ts │ │ │ ├── faGlide.js │ │ │ ├── faGlideG.d.ts │ │ │ ├── faGlideG.js │ │ │ ├── faGofore.d.ts │ │ │ ├── faGofore.js │ │ │ ├── faGoodreads.d.ts │ │ │ ├── faGoodreads.js │ │ │ ├── faGoodreadsG.d.ts │ │ │ ├── faGoodreadsG.js │ │ │ ├── faGoogle.d.ts │ │ │ ├── faGoogle.js │ │ │ ├── faGoogleDrive.d.ts │ │ │ ├── faGoogleDrive.js │ │ │ ├── faGooglePay.d.ts │ │ │ ├── faGooglePay.js │ │ │ ├── faGooglePlay.d.ts │ │ │ ├── faGooglePlay.js │ │ │ ├── faGooglePlus.d.ts │ │ │ ├── faGooglePlus.js │ │ │ ├── faGooglePlusG.d.ts │ │ │ ├── faGooglePlusG.js │ │ │ ├── faGooglePlusSquare.d.ts │ │ │ ├── faGooglePlusSquare.js │ │ │ ├── faGoogleWallet.d.ts │ │ │ ├── faGoogleWallet.js │ │ │ ├── faGratipay.d.ts │ │ │ ├── faGratipay.js │ │ │ ├── faGrav.d.ts │ │ │ ├── faGrav.js │ │ │ ├── faGripfire.d.ts │ │ │ ├── faGripfire.js │ │ │ ├── faGrunt.d.ts │ │ │ ├── faGrunt.js │ │ │ ├── faGuilded.d.ts │ │ │ ├── faGuilded.js │ │ │ ├── faGulp.d.ts │ │ │ ├── faGulp.js │ │ │ ├── faHackerNews.d.ts │ │ │ ├── faHackerNews.js │ │ │ ├── faHackerNewsSquare.d.ts │ │ │ ├── faHackerNewsSquare.js │ │ │ ├── faHackerrank.d.ts │ │ │ ├── faHackerrank.js │ │ │ ├── faHips.d.ts │ │ │ ├── faHips.js │ │ │ ├── faHireAHelper.d.ts │ │ │ ├── faHireAHelper.js │ │ │ ├── faHive.d.ts │ │ │ ├── faHive.js │ │ │ ├── faHooli.d.ts │ │ │ ├── faHooli.js │ │ │ ├── faHornbill.d.ts │ │ │ ├── faHornbill.js │ │ │ ├── faHotjar.d.ts │ │ │ ├── faHotjar.js │ │ │ ├── faHouzz.d.ts │ │ │ ├── faHouzz.js │ │ │ ├── faHtml5.d.ts │ │ │ ├── faHtml5.js │ │ │ ├── faHubspot.d.ts │ │ │ ├── faHubspot.js │ │ │ ├── faIdeal.d.ts │ │ │ ├── faIdeal.js │ │ │ ├── faImdb.d.ts │ │ │ ├── faImdb.js │ │ │ ├── faInnosoft.d.ts │ │ │ ├── faInnosoft.js │ │ │ ├── faInstagram.d.ts │ │ │ ├── faInstagram.js │ │ │ ├── faInstagramSquare.d.ts │ │ │ ├── faInstagramSquare.js │ │ │ ├── faInstalod.d.ts │ │ │ ├── faInstalod.js │ │ │ ├── faIntercom.d.ts │ │ │ ├── faIntercom.js │ │ │ ├── faInternetExplorer.d.ts │ │ │ ├── faInternetExplorer.js │ │ │ ├── faInvision.d.ts │ │ │ ├── faInvision.js │ │ │ ├── faIoxhost.d.ts │ │ │ ├── faIoxhost.js │ │ │ ├── faItchIo.d.ts │ │ │ ├── faItchIo.js │ │ │ ├── faItunes.d.ts │ │ │ ├── faItunes.js │ │ │ ├── faItunesNote.d.ts │ │ │ ├── faItunesNote.js │ │ │ ├── faJava.d.ts │ │ │ ├── faJava.js │ │ │ ├── faJediOrder.d.ts │ │ │ ├── faJediOrder.js │ │ │ ├── faJenkins.d.ts │ │ │ ├── faJenkins.js │ │ │ ├── faJira.d.ts │ │ │ ├── faJira.js │ │ │ ├── faJoget.d.ts │ │ │ ├── faJoget.js │ │ │ ├── faJoomla.d.ts │ │ │ ├── faJoomla.js │ │ │ ├── faJs.d.ts │ │ │ ├── faJs.js │ │ │ ├── faJsSquare.d.ts │ │ │ ├── faJsSquare.js │ │ │ ├── faJsfiddle.d.ts │ │ │ ├── faJsfiddle.js │ │ │ ├── faKaggle.d.ts │ │ │ ├── faKaggle.js │ │ │ ├── faKeybase.d.ts │ │ │ ├── faKeybase.js │ │ │ ├── faKeycdn.d.ts │ │ │ ├── faKeycdn.js │ │ │ ├── faKickstarter.d.ts │ │ │ ├── faKickstarter.js │ │ │ ├── faKickstarterK.d.ts │ │ │ ├── faKickstarterK.js │ │ │ ├── faKorvue.d.ts │ │ │ ├── faKorvue.js │ │ │ ├── faLaravel.d.ts │ │ │ ├── faLaravel.js │ │ │ ├── faLastfm.d.ts │ │ │ ├── faLastfm.js │ │ │ ├── faLastfmSquare.d.ts │ │ │ ├── faLastfmSquare.js │ │ │ ├── faLeanpub.d.ts │ │ │ ├── faLeanpub.js │ │ │ ├── faLess.d.ts │ │ │ ├── faLess.js │ │ │ ├── faLine.d.ts │ │ │ ├── faLine.js │ │ │ ├── faLinkedin.d.ts │ │ │ ├── faLinkedin.js │ │ │ ├── faLinkedinIn.d.ts │ │ │ ├── faLinkedinIn.js │ │ │ ├── faLinode.d.ts │ │ │ ├── faLinode.js │ │ │ ├── faLinux.d.ts │ │ │ ├── faLinux.js │ │ │ ├── faLyft.d.ts │ │ │ ├── faLyft.js │ │ │ ├── faMagento.d.ts │ │ │ ├── faMagento.js │ │ │ ├── faMailchimp.d.ts │ │ │ ├── faMailchimp.js │ │ │ ├── faMandalorian.d.ts │ │ │ ├── faMandalorian.js │ │ │ ├── faMarkdown.d.ts │ │ │ ├── faMarkdown.js │ │ │ ├── faMastodon.d.ts │ │ │ ├── faMastodon.js │ │ │ ├── faMaxcdn.d.ts │ │ │ ├── faMaxcdn.js │ │ │ ├── faMdb.d.ts │ │ │ ├── faMdb.js │ │ │ ├── faMedapps.d.ts │ │ │ ├── faMedapps.js │ │ │ ├── faMedium.d.ts │ │ │ ├── faMedium.js │ │ │ ├── faMediumM.d.ts │ │ │ ├── faMediumM.js │ │ │ ├── faMedrt.d.ts │ │ │ ├── faMedrt.js │ │ │ ├── faMeetup.d.ts │ │ │ ├── faMeetup.js │ │ │ ├── faMegaport.d.ts │ │ │ ├── faMegaport.js │ │ │ ├── faMendeley.d.ts │ │ │ ├── faMendeley.js │ │ │ ├── faMicroblog.d.ts │ │ │ ├── faMicroblog.js │ │ │ ├── faMicrosoft.d.ts │ │ │ ├── faMicrosoft.js │ │ │ ├── faMix.d.ts │ │ │ ├── faMix.js │ │ │ ├── faMixcloud.d.ts │ │ │ ├── faMixcloud.js │ │ │ ├── faMixer.d.ts │ │ │ ├── faMixer.js │ │ │ ├── faMizuni.d.ts │ │ │ ├── faMizuni.js │ │ │ ├── faModx.d.ts │ │ │ ├── faModx.js │ │ │ ├── faMonero.d.ts │ │ │ ├── faMonero.js │ │ │ ├── faNapster.d.ts │ │ │ ├── faNapster.js │ │ │ ├── faNeos.d.ts │ │ │ ├── faNeos.js │ │ │ ├── faNimblr.d.ts │ │ │ ├── faNimblr.js │ │ │ ├── faNintendoSwitch.d.ts │ │ │ ├── faNintendoSwitch.js │ │ │ ├── faNode.d.ts │ │ │ ├── faNode.js │ │ │ ├── faNodeJs.d.ts │ │ │ ├── faNodeJs.js │ │ │ ├── faNpm.d.ts │ │ │ ├── faNpm.js │ │ │ ├── faNs8.d.ts │ │ │ ├── faNs8.js │ │ │ ├── faNutritionix.d.ts │ │ │ ├── faNutritionix.js │ │ │ ├── faOctopusDeploy.d.ts │ │ │ ├── faOctopusDeploy.js │ │ │ ├── faOdnoklassniki.d.ts │ │ │ ├── faOdnoklassniki.js │ │ │ ├── faOdnoklassnikiSquare.d.ts │ │ │ ├── faOdnoklassnikiSquare.js │ │ │ ├── faOldRepublic.d.ts │ │ │ ├── faOldRepublic.js │ │ │ ├── faOpencart.d.ts │ │ │ ├── faOpencart.js │ │ │ ├── faOpenid.d.ts │ │ │ ├── faOpenid.js │ │ │ ├── faOpera.d.ts │ │ │ ├── faOpera.js │ │ │ ├── faOptinMonster.d.ts │ │ │ ├── faOptinMonster.js │ │ │ ├── faOrcid.d.ts │ │ │ ├── faOrcid.js │ │ │ ├── faOsi.d.ts │ │ │ ├── faOsi.js │ │ │ ├── faPage4.d.ts │ │ │ ├── faPage4.js │ │ │ ├── faPagelines.d.ts │ │ │ ├── faPagelines.js │ │ │ ├── faPalfed.d.ts │ │ │ ├── faPalfed.js │ │ │ ├── faPatreon.d.ts │ │ │ ├── faPatreon.js │ │ │ ├── faPaypal.d.ts │ │ │ ├── faPaypal.js │ │ │ ├── faPennyArcade.d.ts │ │ │ ├── faPennyArcade.js │ │ │ ├── faPerbyte.d.ts │ │ │ ├── faPerbyte.js │ │ │ ├── faPeriscope.d.ts │ │ │ ├── faPeriscope.js │ │ │ ├── faPhabricator.d.ts │ │ │ ├── faPhabricator.js │ │ │ ├── faPhoenixFramework.d.ts │ │ │ ├── faPhoenixFramework.js │ │ │ ├── faPhoenixSquadron.d.ts │ │ │ ├── faPhoenixSquadron.js │ │ │ ├── faPhp.d.ts │ │ │ ├── faPhp.js │ │ │ ├── faPiedPiper.d.ts │ │ │ ├── faPiedPiper.js │ │ │ ├── faPiedPiperAlt.d.ts │ │ │ ├── faPiedPiperAlt.js │ │ │ ├── faPiedPiperHat.d.ts │ │ │ ├── faPiedPiperHat.js │ │ │ ├── faPiedPiperPp.d.ts │ │ │ ├── faPiedPiperPp.js │ │ │ ├── faPiedPiperSquare.d.ts │ │ │ ├── faPiedPiperSquare.js │ │ │ ├── faPinterest.d.ts │ │ │ ├── faPinterest.js │ │ │ ├── faPinterestP.d.ts │ │ │ ├── faPinterestP.js │ │ │ ├── faPinterestSquare.d.ts │ │ │ ├── faPinterestSquare.js │ │ │ ├── faPlaystation.d.ts │ │ │ ├── faPlaystation.js │ │ │ ├── faProductHunt.d.ts │ │ │ ├── faProductHunt.js │ │ │ ├── faPushed.d.ts │ │ │ ├── faPushed.js │ │ │ ├── faPython.d.ts │ │ │ ├── faPython.js │ │ │ ├── faQq.d.ts │ │ │ ├── faQq.js │ │ │ ├── faQuinscape.d.ts │ │ │ ├── faQuinscape.js │ │ │ ├── faQuora.d.ts │ │ │ ├── faQuora.js │ │ │ ├── faRProject.d.ts │ │ │ ├── faRProject.js │ │ │ ├── faRaspberryPi.d.ts │ │ │ ├── faRaspberryPi.js │ │ │ ├── faRavelry.d.ts │ │ │ ├── faRavelry.js │ │ │ ├── faReact.d.ts │ │ │ ├── faReact.js │ │ │ ├── faReacteurope.d.ts │ │ │ ├── faReacteurope.js │ │ │ ├── faReadme.d.ts │ │ │ ├── faReadme.js │ │ │ ├── faRebel.d.ts │ │ │ ├── faRebel.js │ │ │ ├── faRedRiver.d.ts │ │ │ ├── faRedRiver.js │ │ │ ├── faReddit.d.ts │ │ │ ├── faReddit.js │ │ │ ├── faRedditAlien.d.ts │ │ │ ├── faRedditAlien.js │ │ │ ├── faRedditSquare.d.ts │ │ │ ├── faRedditSquare.js │ │ │ ├── faRedhat.d.ts │ │ │ ├── faRedhat.js │ │ │ ├── faRenren.d.ts │ │ │ ├── faRenren.js │ │ │ ├── faReplyd.d.ts │ │ │ ├── faReplyd.js │ │ │ ├── faResearchgate.d.ts │ │ │ ├── faResearchgate.js │ │ │ ├── faResolving.d.ts │ │ │ ├── faResolving.js │ │ │ ├── faRev.d.ts │ │ │ ├── faRev.js │ │ │ ├── faRocketchat.d.ts │ │ │ ├── faRocketchat.js │ │ │ ├── faRockrms.d.ts │ │ │ ├── faRockrms.js │ │ │ ├── faRust.d.ts │ │ │ ├── faRust.js │ │ │ ├── faSafari.d.ts │ │ │ ├── faSafari.js │ │ │ ├── faSalesforce.d.ts │ │ │ ├── faSalesforce.js │ │ │ ├── faSass.d.ts │ │ │ ├── faSass.js │ │ │ ├── faSchlix.d.ts │ │ │ ├── faSchlix.js │ │ │ ├── faScribd.d.ts │ │ │ ├── faScribd.js │ │ │ ├── faSearchengin.d.ts │ │ │ ├── faSearchengin.js │ │ │ ├── faSellcast.d.ts │ │ │ ├── faSellcast.js │ │ │ ├── faSellsy.d.ts │ │ │ ├── faSellsy.js │ │ │ ├── faServicestack.d.ts │ │ │ ├── faServicestack.js │ │ │ ├── faShirtsinbulk.d.ts │ │ │ ├── faShirtsinbulk.js │ │ │ ├── faShopify.d.ts │ │ │ ├── faShopify.js │ │ │ ├── faShopware.d.ts │ │ │ ├── faShopware.js │ │ │ ├── faSimplybuilt.d.ts │ │ │ ├── faSimplybuilt.js │ │ │ ├── faSistrix.d.ts │ │ │ ├── faSistrix.js │ │ │ ├── faSith.d.ts │ │ │ ├── faSith.js │ │ │ ├── faSketch.d.ts │ │ │ ├── faSketch.js │ │ │ ├── faSkyatlas.d.ts │ │ │ ├── faSkyatlas.js │ │ │ ├── faSkype.d.ts │ │ │ ├── faSkype.js │ │ │ ├── faSlack.d.ts │ │ │ ├── faSlack.js │ │ │ ├── faSlackHash.d.ts │ │ │ ├── faSlackHash.js │ │ │ ├── faSlideshare.d.ts │ │ │ ├── faSlideshare.js │ │ │ ├── faSnapchat.d.ts │ │ │ ├── faSnapchat.js │ │ │ ├── faSnapchatGhost.d.ts │ │ │ ├── faSnapchatGhost.js │ │ │ ├── faSnapchatSquare.d.ts │ │ │ ├── faSnapchatSquare.js │ │ │ ├── faSoundcloud.d.ts │ │ │ ├── faSoundcloud.js │ │ │ ├── faSourcetree.d.ts │ │ │ ├── faSourcetree.js │ │ │ ├── faSpeakap.d.ts │ │ │ ├── faSpeakap.js │ │ │ ├── faSpeakerDeck.d.ts │ │ │ ├── faSpeakerDeck.js │ │ │ ├── faSpotify.d.ts │ │ │ ├── faSpotify.js │ │ │ ├── faSquarespace.d.ts │ │ │ ├── faSquarespace.js │ │ │ ├── faStackExchange.d.ts │ │ │ ├── faStackExchange.js │ │ │ ├── faStackOverflow.d.ts │ │ │ ├── faStackOverflow.js │ │ │ ├── faStackpath.d.ts │ │ │ ├── faStackpath.js │ │ │ ├── faStaylinked.d.ts │ │ │ ├── faStaylinked.js │ │ │ ├── faSteam.d.ts │ │ │ ├── faSteam.js │ │ │ ├── faSteamSquare.d.ts │ │ │ ├── faSteamSquare.js │ │ │ ├── faSteamSymbol.d.ts │ │ │ ├── faSteamSymbol.js │ │ │ ├── faStickerMule.d.ts │ │ │ ├── faStickerMule.js │ │ │ ├── faStrava.d.ts │ │ │ ├── faStrava.js │ │ │ ├── faStripe.d.ts │ │ │ ├── faStripe.js │ │ │ ├── faStripeS.d.ts │ │ │ ├── faStripeS.js │ │ │ ├── faStudiovinari.d.ts │ │ │ ├── faStudiovinari.js │ │ │ ├── faStumbleupon.d.ts │ │ │ ├── faStumbleupon.js │ │ │ ├── faStumbleuponCircle.d.ts │ │ │ ├── faStumbleuponCircle.js │ │ │ ├── faSuperpowers.d.ts │ │ │ ├── faSuperpowers.js │ │ │ ├── faSupple.d.ts │ │ │ ├── faSupple.js │ │ │ ├── faSuse.d.ts │ │ │ ├── faSuse.js │ │ │ ├── faSwift.d.ts │ │ │ ├── faSwift.js │ │ │ ├── faSymfony.d.ts │ │ │ ├── faSymfony.js │ │ │ ├── faTeamspeak.d.ts │ │ │ ├── faTeamspeak.js │ │ │ ├── faTelegram.d.ts │ │ │ ├── faTelegram.js │ │ │ ├── faTelegramPlane.d.ts │ │ │ ├── faTelegramPlane.js │ │ │ ├── faTencentWeibo.d.ts │ │ │ ├── faTencentWeibo.js │ │ │ ├── faTheRedYeti.d.ts │ │ │ ├── faTheRedYeti.js │ │ │ ├── faThemeco.d.ts │ │ │ ├── faThemeco.js │ │ │ ├── faThemeisle.d.ts │ │ │ ├── faThemeisle.js │ │ │ ├── faThinkPeaks.d.ts │ │ │ ├── faThinkPeaks.js │ │ │ ├── faTiktok.d.ts │ │ │ ├── faTiktok.js │ │ │ ├── faTradeFederation.d.ts │ │ │ ├── faTradeFederation.js │ │ │ ├── faTrello.d.ts │ │ │ ├── faTrello.js │ │ │ ├── faTripadvisor.d.ts │ │ │ ├── faTripadvisor.js │ │ │ ├── faTumblr.d.ts │ │ │ ├── faTumblr.js │ │ │ ├── faTumblrSquare.d.ts │ │ │ ├── faTumblrSquare.js │ │ │ ├── faTwitch.d.ts │ │ │ ├── faTwitch.js │ │ │ ├── faTwitter.d.ts │ │ │ ├── faTwitter.js │ │ │ ├── faTwitterSquare.d.ts │ │ │ ├── faTwitterSquare.js │ │ │ ├── faTypo3.d.ts │ │ │ ├── faTypo3.js │ │ │ ├── faUber.d.ts │ │ │ ├── faUber.js │ │ │ ├── faUbuntu.d.ts │ │ │ ├── faUbuntu.js │ │ │ ├── faUikit.d.ts │ │ │ ├── faUikit.js │ │ │ ├── faUmbraco.d.ts │ │ │ ├── faUmbraco.js │ │ │ ├── faUncharted.d.ts │ │ │ ├── faUncharted.js │ │ │ ├── faUniregistry.d.ts │ │ │ ├── faUniregistry.js │ │ │ ├── faUnity.d.ts │ │ │ ├── faUnity.js │ │ │ ├── faUnsplash.d.ts │ │ │ ├── faUnsplash.js │ │ │ ├── faUntappd.d.ts │ │ │ ├── faUntappd.js │ │ │ ├── faUps.d.ts │ │ │ ├── faUps.js │ │ │ ├── faUsb.d.ts │ │ │ ├── faUsb.js │ │ │ ├── faUsps.d.ts │ │ │ ├── faUsps.js │ │ │ ├── faUssunnah.d.ts │ │ │ ├── faUssunnah.js │ │ │ ├── faVaadin.d.ts │ │ │ ├── faVaadin.js │ │ │ ├── faViacoin.d.ts │ │ │ ├── faViacoin.js │ │ │ ├── faViadeo.d.ts │ │ │ ├── faViadeo.js │ │ │ ├── faViadeoSquare.d.ts │ │ │ ├── faViadeoSquare.js │ │ │ ├── faViber.d.ts │ │ │ ├── faViber.js │ │ │ ├── faVimeo.d.ts │ │ │ ├── faVimeo.js │ │ │ ├── faVimeoSquare.d.ts │ │ │ ├── faVimeoSquare.js │ │ │ ├── faVimeoV.d.ts │ │ │ ├── faVimeoV.js │ │ │ ├── faVine.d.ts │ │ │ ├── faVine.js │ │ │ ├── faVk.d.ts │ │ │ ├── faVk.js │ │ │ ├── faVnv.d.ts │ │ │ ├── faVnv.js │ │ │ ├── faVuejs.d.ts │ │ │ ├── faVuejs.js │ │ │ ├── faWatchmanMonitoring.d.ts │ │ │ ├── faWatchmanMonitoring.js │ │ │ ├── faWaze.d.ts │ │ │ ├── faWaze.js │ │ │ ├── faWeebly.d.ts │ │ │ ├── faWeebly.js │ │ │ ├── faWeibo.d.ts │ │ │ ├── faWeibo.js │ │ │ ├── faWeixin.d.ts │ │ │ ├── faWeixin.js │ │ │ ├── faWhatsapp.d.ts │ │ │ ├── faWhatsapp.js │ │ │ ├── faWhatsappSquare.d.ts │ │ │ ├── faWhatsappSquare.js │ │ │ ├── faWhmcs.d.ts │ │ │ ├── faWhmcs.js │ │ │ ├── faWikipediaW.d.ts │ │ │ ├── faWikipediaW.js │ │ │ ├── faWindows.d.ts │ │ │ ├── faWindows.js │ │ │ ├── faWix.d.ts │ │ │ ├── faWix.js │ │ │ ├── faWizardsOfTheCoast.d.ts │ │ │ ├── faWizardsOfTheCoast.js │ │ │ ├── faWodu.d.ts │ │ │ ├── faWodu.js │ │ │ ├── faWolfPackBattalion.d.ts │ │ │ ├── faWolfPackBattalion.js │ │ │ ├── faWordpress.d.ts │ │ │ ├── faWordpress.js │ │ │ ├── faWordpressSimple.d.ts │ │ │ ├── faWordpressSimple.js │ │ │ ├── faWpbeginner.d.ts │ │ │ ├── faWpbeginner.js │ │ │ ├── faWpexplorer.d.ts │ │ │ ├── faWpexplorer.js │ │ │ ├── faWpforms.d.ts │ │ │ ├── faWpforms.js │ │ │ ├── faWpressr.d.ts │ │ │ ├── faWpressr.js │ │ │ ├── faXbox.d.ts │ │ │ ├── faXbox.js │ │ │ ├── faXing.d.ts │ │ │ ├── faXing.js │ │ │ ├── faXingSquare.d.ts │ │ │ ├── faXingSquare.js │ │ │ ├── faYCombinator.d.ts │ │ │ ├── faYCombinator.js │ │ │ ├── faYahoo.d.ts │ │ │ ├── faYahoo.js │ │ │ ├── faYammer.d.ts │ │ │ ├── faYammer.js │ │ │ ├── faYandex.d.ts │ │ │ ├── faYandex.js │ │ │ ├── faYandexInternational.d.ts │ │ │ ├── faYandexInternational.js │ │ │ ├── faYarn.d.ts │ │ │ ├── faYarn.js │ │ │ ├── faYelp.d.ts │ │ │ ├── faYelp.js │ │ │ ├── faYoast.d.ts │ │ │ ├── faYoast.js │ │ │ ├── faYoutube.d.ts │ │ │ ├── faYoutube.js │ │ │ ├── faYoutubeSquare.d.ts │ │ │ ├── faYoutubeSquare.js │ │ │ ├── faZhihu.d.ts │ │ │ ├── faZhihu.js │ │ │ ├── index.d.ts │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── free-regular-svg-icons │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── faAddressBook.d.ts │ │ │ ├── faAddressBook.js │ │ │ ├── faAddressCard.d.ts │ │ │ ├── faAddressCard.js │ │ │ ├── faAngry.d.ts │ │ │ ├── faAngry.js │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ ├── faArrowAltCircleDown.js │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ ├── faArrowAltCircleLeft.js │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ ├── faArrowAltCircleRight.js │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ ├── faArrowAltCircleUp.js │ │ │ ├── faBell.d.ts │ │ │ ├── faBell.js │ │ │ ├── faBellSlash.d.ts │ │ │ ├── faBellSlash.js │ │ │ ├── faBookmark.d.ts │ │ │ ├── faBookmark.js │ │ │ ├── faBuilding.d.ts │ │ │ ├── faBuilding.js │ │ │ ├── faCalendar.d.ts │ │ │ ├── faCalendar.js │ │ │ ├── faCalendarAlt.d.ts │ │ │ ├── faCalendarAlt.js │ │ │ ├── faCalendarCheck.d.ts │ │ │ ├── faCalendarCheck.js │ │ │ ├── faCalendarMinus.d.ts │ │ │ ├── faCalendarMinus.js │ │ │ ├── faCalendarPlus.d.ts │ │ │ ├── faCalendarPlus.js │ │ │ ├── faCalendarTimes.d.ts │ │ │ ├── faCalendarTimes.js │ │ │ ├── faCaretSquareDown.d.ts │ │ │ ├── faCaretSquareDown.js │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ ├── faCaretSquareLeft.js │ │ │ ├── faCaretSquareRight.d.ts │ │ │ ├── faCaretSquareRight.js │ │ │ ├── faCaretSquareUp.d.ts │ │ │ ├── faCaretSquareUp.js │ │ │ ├── faChartBar.d.ts │ │ │ ├── faChartBar.js │ │ │ ├── faCheckCircle.d.ts │ │ │ ├── faCheckCircle.js │ │ │ ├── faCheckSquare.d.ts │ │ │ ├── faCheckSquare.js │ │ │ ├── faCircle.d.ts │ │ │ ├── faCircle.js │ │ │ ├── faClipboard.d.ts │ │ │ ├── faClipboard.js │ │ │ ├── faClock.d.ts │ │ │ ├── faClock.js │ │ │ ├── faClone.d.ts │ │ │ ├── faClone.js │ │ │ ├── faClosedCaptioning.d.ts │ │ │ ├── faClosedCaptioning.js │ │ │ ├── faComment.d.ts │ │ │ ├── faComment.js │ │ │ ├── faCommentAlt.d.ts │ │ │ ├── faCommentAlt.js │ │ │ ├── faCommentDots.d.ts │ │ │ ├── faCommentDots.js │ │ │ ├── faComments.d.ts │ │ │ ├── faComments.js │ │ │ ├── faCompass.d.ts │ │ │ ├── faCompass.js │ │ │ ├── faCopy.d.ts │ │ │ ├── faCopy.js │ │ │ ├── faCopyright.d.ts │ │ │ ├── faCopyright.js │ │ │ ├── faCreditCard.d.ts │ │ │ ├── faCreditCard.js │ │ │ ├── faDizzy.d.ts │ │ │ ├── faDizzy.js │ │ │ ├── faDotCircle.d.ts │ │ │ ├── faDotCircle.js │ │ │ ├── faEdit.d.ts │ │ │ ├── faEdit.js │ │ │ ├── faEnvelope.d.ts │ │ │ ├── faEnvelope.js │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ ├── faEnvelopeOpen.js │ │ │ ├── faEye.d.ts │ │ │ ├── faEye.js │ │ │ ├── faEyeSlash.d.ts │ │ │ ├── faEyeSlash.js │ │ │ ├── faFile.d.ts │ │ │ ├── faFile.js │ │ │ ├── faFileAlt.d.ts │ │ │ ├── faFileAlt.js │ │ │ ├── faFileArchive.d.ts │ │ │ ├── faFileArchive.js │ │ │ ├── faFileAudio.d.ts │ │ │ ├── faFileAudio.js │ │ │ ├── faFileCode.d.ts │ │ │ ├── faFileCode.js │ │ │ ├── faFileExcel.d.ts │ │ │ ├── faFileExcel.js │ │ │ ├── faFileImage.d.ts │ │ │ ├── faFileImage.js │ │ │ ├── faFilePdf.d.ts │ │ │ ├── faFilePdf.js │ │ │ ├── faFilePowerpoint.d.ts │ │ │ ├── faFilePowerpoint.js │ │ │ ├── faFileVideo.d.ts │ │ │ ├── faFileVideo.js │ │ │ ├── faFileWord.d.ts │ │ │ ├── faFileWord.js │ │ │ ├── faFlag.d.ts │ │ │ ├── faFlag.js │ │ │ ├── faFlushed.d.ts │ │ │ ├── faFlushed.js │ │ │ ├── faFolder.d.ts │ │ │ ├── faFolder.js │ │ │ ├── faFolderOpen.d.ts │ │ │ ├── faFolderOpen.js │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ ├── faFrown.d.ts │ │ │ ├── faFrown.js │ │ │ ├── faFrownOpen.d.ts │ │ │ ├── faFrownOpen.js │ │ │ ├── faFutbol.d.ts │ │ │ ├── faFutbol.js │ │ │ ├── faGem.d.ts │ │ │ ├── faGem.js │ │ │ ├── faGrimace.d.ts │ │ │ ├── faGrimace.js │ │ │ ├── faGrin.d.ts │ │ │ ├── faGrin.js │ │ │ ├── faGrinAlt.d.ts │ │ │ ├── faGrinAlt.js │ │ │ ├── faGrinBeam.d.ts │ │ │ ├── faGrinBeam.js │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ ├── faGrinBeamSweat.js │ │ │ ├── faGrinHearts.d.ts │ │ │ ├── faGrinHearts.js │ │ │ ├── faGrinSquint.d.ts │ │ │ ├── faGrinSquint.js │ │ │ ├── faGrinSquintTears.d.ts │ │ │ ├── faGrinSquintTears.js │ │ │ ├── faGrinStars.d.ts │ │ │ ├── faGrinStars.js │ │ │ ├── faGrinTears.d.ts │ │ │ ├── faGrinTears.js │ │ │ ├── faGrinTongue.d.ts │ │ │ ├── faGrinTongue.js │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ ├── faGrinTongueSquint.js │ │ │ ├── faGrinTongueWink.d.ts │ │ │ ├── faGrinTongueWink.js │ │ │ ├── faGrinWink.d.ts │ │ │ ├── faGrinWink.js │ │ │ ├── faHandLizard.d.ts │ │ │ ├── faHandLizard.js │ │ │ ├── faHandPaper.d.ts │ │ │ ├── faHandPaper.js │ │ │ ├── faHandPeace.d.ts │ │ │ ├── faHandPeace.js │ │ │ ├── faHandPointDown.d.ts │ │ │ ├── faHandPointDown.js │ │ │ ├── faHandPointLeft.d.ts │ │ │ ├── faHandPointLeft.js │ │ │ ├── faHandPointRight.d.ts │ │ │ ├── faHandPointRight.js │ │ │ ├── faHandPointUp.d.ts │ │ │ ├── faHandPointUp.js │ │ │ ├── faHandPointer.d.ts │ │ │ ├── faHandPointer.js │ │ │ ├── faHandRock.d.ts │ │ │ ├── faHandRock.js │ │ │ ├── faHandScissors.d.ts │ │ │ ├── faHandScissors.js │ │ │ ├── faHandSpock.d.ts │ │ │ ├── faHandSpock.js │ │ │ ├── faHandshake.d.ts │ │ │ ├── faHandshake.js │ │ │ ├── faHdd.d.ts │ │ │ ├── faHdd.js │ │ │ ├── faHeart.d.ts │ │ │ ├── faHeart.js │ │ │ ├── faHospital.d.ts │ │ │ ├── faHospital.js │ │ │ ├── faHourglass.d.ts │ │ │ ├── faHourglass.js │ │ │ ├── faIdBadge.d.ts │ │ │ ├── faIdBadge.js │ │ │ ├── faIdCard.d.ts │ │ │ ├── faIdCard.js │ │ │ ├── faImage.d.ts │ │ │ ├── faImage.js │ │ │ ├── faImages.d.ts │ │ │ ├── faImages.js │ │ │ ├── faKeyboard.d.ts │ │ │ ├── faKeyboard.js │ │ │ ├── faKiss.d.ts │ │ │ ├── faKiss.js │ │ │ ├── faKissBeam.d.ts │ │ │ ├── faKissBeam.js │ │ │ ├── faKissWinkHeart.d.ts │ │ │ ├── faKissWinkHeart.js │ │ │ ├── faLaugh.d.ts │ │ │ ├── faLaugh.js │ │ │ ├── faLaughBeam.d.ts │ │ │ ├── faLaughBeam.js │ │ │ ├── faLaughSquint.d.ts │ │ │ ├── faLaughSquint.js │ │ │ ├── faLaughWink.d.ts │ │ │ ├── faLaughWink.js │ │ │ ├── faLemon.d.ts │ │ │ ├── faLemon.js │ │ │ ├── faLifeRing.d.ts │ │ │ ├── faLifeRing.js │ │ │ ├── faLightbulb.d.ts │ │ │ ├── faLightbulb.js │ │ │ ├── faListAlt.d.ts │ │ │ ├── faListAlt.js │ │ │ ├── faMap.d.ts │ │ │ ├── faMap.js │ │ │ ├── faMeh.d.ts │ │ │ ├── faMeh.js │ │ │ ├── faMehBlank.d.ts │ │ │ ├── faMehBlank.js │ │ │ ├── faMehRollingEyes.d.ts │ │ │ ├── faMehRollingEyes.js │ │ │ ├── faMinusSquare.d.ts │ │ │ ├── faMinusSquare.js │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ ├── faMoneyBillAlt.js │ │ │ ├── faMoon.d.ts │ │ │ ├── faMoon.js │ │ │ ├── faNewspaper.d.ts │ │ │ ├── faNewspaper.js │ │ │ ├── faObjectGroup.d.ts │ │ │ ├── faObjectGroup.js │ │ │ ├── faObjectUngroup.d.ts │ │ │ ├── faObjectUngroup.js │ │ │ ├── faPaperPlane.d.ts │ │ │ ├── faPaperPlane.js │ │ │ ├── faPauseCircle.d.ts │ │ │ ├── faPauseCircle.js │ │ │ ├── faPlayCircle.d.ts │ │ │ ├── faPlayCircle.js │ │ │ ├── faPlusSquare.d.ts │ │ │ ├── faPlusSquare.js │ │ │ ├── faQuestionCircle.d.ts │ │ │ ├── faQuestionCircle.js │ │ │ ├── faRegistered.d.ts │ │ │ ├── faRegistered.js │ │ │ ├── faSadCry.d.ts │ │ │ ├── faSadCry.js │ │ │ ├── faSadTear.d.ts │ │ │ ├── faSadTear.js │ │ │ ├── faSave.d.ts │ │ │ ├── faSave.js │ │ │ ├── faShareSquare.d.ts │ │ │ ├── faShareSquare.js │ │ │ ├── faSmile.d.ts │ │ │ ├── faSmile.js │ │ │ ├── faSmileBeam.d.ts │ │ │ ├── faSmileBeam.js │ │ │ ├── faSmileWink.d.ts │ │ │ ├── faSmileWink.js │ │ │ ├── faSnowflake.d.ts │ │ │ ├── faSnowflake.js │ │ │ ├── faSquare.d.ts │ │ │ ├── faSquare.js │ │ │ ├── faStar.d.ts │ │ │ ├── faStar.js │ │ │ ├── faStarHalf.d.ts │ │ │ ├── faStarHalf.js │ │ │ ├── faStickyNote.d.ts │ │ │ ├── faStickyNote.js │ │ │ ├── faStopCircle.d.ts │ │ │ ├── faStopCircle.js │ │ │ ├── faSun.d.ts │ │ │ ├── faSun.js │ │ │ ├── faSurprise.d.ts │ │ │ ├── faSurprise.js │ │ │ ├── faThumbsDown.d.ts │ │ │ ├── faThumbsDown.js │ │ │ ├── faThumbsUp.d.ts │ │ │ ├── faThumbsUp.js │ │ │ ├── faTimesCircle.d.ts │ │ │ ├── faTimesCircle.js │ │ │ ├── faTired.d.ts │ │ │ ├── faTired.js │ │ │ ├── faTrashAlt.d.ts │ │ │ ├── faTrashAlt.js │ │ │ ├── faUser.d.ts │ │ │ ├── faUser.js │ │ │ ├── faUserCircle.d.ts │ │ │ ├── faUserCircle.js │ │ │ ├── faWindowClose.d.ts │ │ │ ├── faWindowClose.js │ │ │ ├── faWindowMaximize.d.ts │ │ │ ├── faWindowMaximize.js │ │ │ ├── faWindowMinimize.d.ts │ │ │ ├── faWindowMinimize.js │ │ │ ├── faWindowRestore.d.ts │ │ │ ├── faWindowRestore.js │ │ │ ├── index.d.ts │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ └── package.json │ │ │ └── free-solid-svg-icons │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── attribution.js │ │ │ ├── faAd.d.ts │ │ │ ├── faAd.js │ │ │ ├── faAddressBook.d.ts │ │ │ ├── faAddressBook.js │ │ │ ├── faAddressCard.d.ts │ │ │ ├── faAddressCard.js │ │ │ ├── faAdjust.d.ts │ │ │ ├── faAdjust.js │ │ │ ├── faAirFreshener.d.ts │ │ │ ├── faAirFreshener.js │ │ │ ├── faAlignCenter.d.ts │ │ │ ├── faAlignCenter.js │ │ │ ├── faAlignJustify.d.ts │ │ │ ├── faAlignJustify.js │ │ │ ├── faAlignLeft.d.ts │ │ │ ├── faAlignLeft.js │ │ │ ├── faAlignRight.d.ts │ │ │ ├── faAlignRight.js │ │ │ ├── faAllergies.d.ts │ │ │ ├── faAllergies.js │ │ │ ├── faAmbulance.d.ts │ │ │ ├── faAmbulance.js │ │ │ ├── faAmericanSignLanguageInterpreting.d.ts │ │ │ ├── faAmericanSignLanguageInterpreting.js │ │ │ ├── faAnchor.d.ts │ │ │ ├── faAnchor.js │ │ │ ├── faAngleDoubleDown.d.ts │ │ │ ├── faAngleDoubleDown.js │ │ │ ├── faAngleDoubleLeft.d.ts │ │ │ ├── faAngleDoubleLeft.js │ │ │ ├── faAngleDoubleRight.d.ts │ │ │ ├── faAngleDoubleRight.js │ │ │ ├── faAngleDoubleUp.d.ts │ │ │ ├── faAngleDoubleUp.js │ │ │ ├── faAngleDown.d.ts │ │ │ ├── faAngleDown.js │ │ │ ├── faAngleLeft.d.ts │ │ │ ├── faAngleLeft.js │ │ │ ├── faAngleRight.d.ts │ │ │ ├── faAngleRight.js │ │ │ ├── faAngleUp.d.ts │ │ │ ├── faAngleUp.js │ │ │ ├── faAngry.d.ts │ │ │ ├── faAngry.js │ │ │ ├── faAnkh.d.ts │ │ │ ├── faAnkh.js │ │ │ ├── faAppleAlt.d.ts │ │ │ ├── faAppleAlt.js │ │ │ ├── faArchive.d.ts │ │ │ ├── faArchive.js │ │ │ ├── faArchway.d.ts │ │ │ ├── faArchway.js │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ ├── faArrowAltCircleDown.js │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ ├── faArrowAltCircleLeft.js │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ ├── faArrowAltCircleRight.js │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ ├── faArrowAltCircleUp.js │ │ │ ├── faArrowCircleDown.d.ts │ │ │ ├── faArrowCircleDown.js │ │ │ ├── faArrowCircleLeft.d.ts │ │ │ ├── faArrowCircleLeft.js │ │ │ ├── faArrowCircleRight.d.ts │ │ │ ├── faArrowCircleRight.js │ │ │ ├── faArrowCircleUp.d.ts │ │ │ ├── faArrowCircleUp.js │ │ │ ├── faArrowDown.d.ts │ │ │ ├── faArrowDown.js │ │ │ ├── faArrowLeft.d.ts │ │ │ ├── faArrowLeft.js │ │ │ ├── faArrowRight.d.ts │ │ │ ├── faArrowRight.js │ │ │ ├── faArrowUp.d.ts │ │ │ ├── faArrowUp.js │ │ │ ├── faArrowsAlt.d.ts │ │ │ ├── faArrowsAlt.js │ │ │ ├── faArrowsAltH.d.ts │ │ │ ├── faArrowsAltH.js │ │ │ ├── faArrowsAltV.d.ts │ │ │ ├── faArrowsAltV.js │ │ │ ├── faAssistiveListeningSystems.d.ts │ │ │ ├── faAssistiveListeningSystems.js │ │ │ ├── faAsterisk.d.ts │ │ │ ├── faAsterisk.js │ │ │ ├── faAt.d.ts │ │ │ ├── faAt.js │ │ │ ├── faAtlas.d.ts │ │ │ ├── faAtlas.js │ │ │ ├── faAtom.d.ts │ │ │ ├── faAtom.js │ │ │ ├── faAudioDescription.d.ts │ │ │ ├── faAudioDescription.js │ │ │ ├── faAward.d.ts │ │ │ ├── faAward.js │ │ │ ├── faBaby.d.ts │ │ │ ├── faBaby.js │ │ │ ├── faBabyCarriage.d.ts │ │ │ ├── faBabyCarriage.js │ │ │ ├── faBackspace.d.ts │ │ │ ├── faBackspace.js │ │ │ ├── faBackward.d.ts │ │ │ ├── faBackward.js │ │ │ ├── faBacon.d.ts │ │ │ ├── faBacon.js │ │ │ ├── faBacteria.d.ts │ │ │ ├── faBacteria.js │ │ │ ├── faBacterium.d.ts │ │ │ ├── faBacterium.js │ │ │ ├── faBahai.d.ts │ │ │ ├── faBahai.js │ │ │ ├── faBalanceScale.d.ts │ │ │ ├── faBalanceScale.js │ │ │ ├── faBalanceScaleLeft.d.ts │ │ │ ├── faBalanceScaleLeft.js │ │ │ ├── faBalanceScaleRight.d.ts │ │ │ ├── faBalanceScaleRight.js │ │ │ ├── faBan.d.ts │ │ │ ├── faBan.js │ │ │ ├── faBandAid.d.ts │ │ │ ├── faBandAid.js │ │ │ ├── faBarcode.d.ts │ │ │ ├── faBarcode.js │ │ │ ├── faBars.d.ts │ │ │ ├── faBars.js │ │ │ ├── faBaseballBall.d.ts │ │ │ ├── faBaseballBall.js │ │ │ ├── faBasketballBall.d.ts │ │ │ ├── faBasketballBall.js │ │ │ ├── faBath.d.ts │ │ │ ├── faBath.js │ │ │ ├── faBatteryEmpty.d.ts │ │ │ ├── faBatteryEmpty.js │ │ │ ├── faBatteryFull.d.ts │ │ │ ├── faBatteryFull.js │ │ │ ├── faBatteryHalf.d.ts │ │ │ ├── faBatteryHalf.js │ │ │ ├── faBatteryQuarter.d.ts │ │ │ ├── faBatteryQuarter.js │ │ │ ├── faBatteryThreeQuarters.d.ts │ │ │ ├── faBatteryThreeQuarters.js │ │ │ ├── faBed.d.ts │ │ │ ├── faBed.js │ │ │ ├── faBeer.d.ts │ │ │ ├── faBeer.js │ │ │ ├── faBell.d.ts │ │ │ ├── faBell.js │ │ │ ├── faBellSlash.d.ts │ │ │ ├── faBellSlash.js │ │ │ ├── faBezierCurve.d.ts │ │ │ ├── faBezierCurve.js │ │ │ ├── faBible.d.ts │ │ │ ├── faBible.js │ │ │ ├── faBicycle.d.ts │ │ │ ├── faBicycle.js │ │ │ ├── faBiking.d.ts │ │ │ ├── faBiking.js │ │ │ ├── faBinoculars.d.ts │ │ │ ├── faBinoculars.js │ │ │ ├── faBiohazard.d.ts │ │ │ ├── faBiohazard.js │ │ │ ├── faBirthdayCake.d.ts │ │ │ ├── faBirthdayCake.js │ │ │ ├── faBlender.d.ts │ │ │ ├── faBlender.js │ │ │ ├── faBlenderPhone.d.ts │ │ │ ├── faBlenderPhone.js │ │ │ ├── faBlind.d.ts │ │ │ ├── faBlind.js │ │ │ ├── faBlog.d.ts │ │ │ ├── faBlog.js │ │ │ ├── faBold.d.ts │ │ │ ├── faBold.js │ │ │ ├── faBolt.d.ts │ │ │ ├── faBolt.js │ │ │ ├── faBomb.d.ts │ │ │ ├── faBomb.js │ │ │ ├── faBone.d.ts │ │ │ ├── faBone.js │ │ │ ├── faBong.d.ts │ │ │ ├── faBong.js │ │ │ ├── faBook.d.ts │ │ │ ├── faBook.js │ │ │ ├── faBookDead.d.ts │ │ │ ├── faBookDead.js │ │ │ ├── faBookMedical.d.ts │ │ │ ├── faBookMedical.js │ │ │ ├── faBookOpen.d.ts │ │ │ ├── faBookOpen.js │ │ │ ├── faBookReader.d.ts │ │ │ ├── faBookReader.js │ │ │ ├── faBookmark.d.ts │ │ │ ├── faBookmark.js │ │ │ ├── faBorderAll.d.ts │ │ │ ├── faBorderAll.js │ │ │ ├── faBorderNone.d.ts │ │ │ ├── faBorderNone.js │ │ │ ├── faBorderStyle.d.ts │ │ │ ├── faBorderStyle.js │ │ │ ├── faBowlingBall.d.ts │ │ │ ├── faBowlingBall.js │ │ │ ├── faBox.d.ts │ │ │ ├── faBox.js │ │ │ ├── faBoxOpen.d.ts │ │ │ ├── faBoxOpen.js │ │ │ ├── faBoxTissue.d.ts │ │ │ ├── faBoxTissue.js │ │ │ ├── faBoxes.d.ts │ │ │ ├── faBoxes.js │ │ │ ├── faBraille.d.ts │ │ │ ├── faBraille.js │ │ │ ├── faBrain.d.ts │ │ │ ├── faBrain.js │ │ │ ├── faBreadSlice.d.ts │ │ │ ├── faBreadSlice.js │ │ │ ├── faBriefcase.d.ts │ │ │ ├── faBriefcase.js │ │ │ ├── faBriefcaseMedical.d.ts │ │ │ ├── faBriefcaseMedical.js │ │ │ ├── faBroadcastTower.d.ts │ │ │ ├── faBroadcastTower.js │ │ │ ├── faBroom.d.ts │ │ │ ├── faBroom.js │ │ │ ├── faBrush.d.ts │ │ │ ├── faBrush.js │ │ │ ├── faBug.d.ts │ │ │ ├── faBug.js │ │ │ ├── faBuilding.d.ts │ │ │ ├── faBuilding.js │ │ │ ├── faBullhorn.d.ts │ │ │ ├── faBullhorn.js │ │ │ ├── faBullseye.d.ts │ │ │ ├── faBullseye.js │ │ │ ├── faBurn.d.ts │ │ │ ├── faBurn.js │ │ │ ├── faBus.d.ts │ │ │ ├── faBus.js │ │ │ ├── faBusAlt.d.ts │ │ │ ├── faBusAlt.js │ │ │ ├── faBusinessTime.d.ts │ │ │ ├── faBusinessTime.js │ │ │ ├── faCalculator.d.ts │ │ │ ├── faCalculator.js │ │ │ ├── faCalendar.d.ts │ │ │ ├── faCalendar.js │ │ │ ├── faCalendarAlt.d.ts │ │ │ ├── faCalendarAlt.js │ │ │ ├── faCalendarCheck.d.ts │ │ │ ├── faCalendarCheck.js │ │ │ ├── faCalendarDay.d.ts │ │ │ ├── faCalendarDay.js │ │ │ ├── faCalendarMinus.d.ts │ │ │ ├── faCalendarMinus.js │ │ │ ├── faCalendarPlus.d.ts │ │ │ ├── faCalendarPlus.js │ │ │ ├── faCalendarTimes.d.ts │ │ │ ├── faCalendarTimes.js │ │ │ ├── faCalendarWeek.d.ts │ │ │ ├── faCalendarWeek.js │ │ │ ├── faCamera.d.ts │ │ │ ├── faCamera.js │ │ │ ├── faCameraRetro.d.ts │ │ │ ├── faCameraRetro.js │ │ │ ├── faCampground.d.ts │ │ │ ├── faCampground.js │ │ │ ├── faCandyCane.d.ts │ │ │ ├── faCandyCane.js │ │ │ ├── faCannabis.d.ts │ │ │ ├── faCannabis.js │ │ │ ├── faCapsules.d.ts │ │ │ ├── faCapsules.js │ │ │ ├── faCar.d.ts │ │ │ ├── faCar.js │ │ │ ├── faCarAlt.d.ts │ │ │ ├── faCarAlt.js │ │ │ ├── faCarBattery.d.ts │ │ │ ├── faCarBattery.js │ │ │ ├── faCarCrash.d.ts │ │ │ ├── faCarCrash.js │ │ │ ├── faCarSide.d.ts │ │ │ ├── faCarSide.js │ │ │ ├── faCaravan.d.ts │ │ │ ├── faCaravan.js │ │ │ ├── faCaretDown.d.ts │ │ │ ├── faCaretDown.js │ │ │ ├── faCaretLeft.d.ts │ │ │ ├── faCaretLeft.js │ │ │ ├── faCaretRight.d.ts │ │ │ ├── faCaretRight.js │ │ │ ├── faCaretSquareDown.d.ts │ │ │ ├── faCaretSquareDown.js │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ ├── faCaretSquareLeft.js │ │ │ ├── faCaretSquareRight.d.ts │ │ │ ├── faCaretSquareRight.js │ │ │ ├── faCaretSquareUp.d.ts │ │ │ ├── faCaretSquareUp.js │ │ │ ├── faCaretUp.d.ts │ │ │ ├── faCaretUp.js │ │ │ ├── faCarrot.d.ts │ │ │ ├── faCarrot.js │ │ │ ├── faCartArrowDown.d.ts │ │ │ ├── faCartArrowDown.js │ │ │ ├── faCartPlus.d.ts │ │ │ ├── faCartPlus.js │ │ │ ├── faCashRegister.d.ts │ │ │ ├── faCashRegister.js │ │ │ ├── faCat.d.ts │ │ │ ├── faCat.js │ │ │ ├── faCertificate.d.ts │ │ │ ├── faCertificate.js │ │ │ ├── faChair.d.ts │ │ │ ├── faChair.js │ │ │ ├── faChalkboard.d.ts │ │ │ ├── faChalkboard.js │ │ │ ├── faChalkboardTeacher.d.ts │ │ │ ├── faChalkboardTeacher.js │ │ │ ├── faChargingStation.d.ts │ │ │ ├── faChargingStation.js │ │ │ ├── faChartArea.d.ts │ │ │ ├── faChartArea.js │ │ │ ├── faChartBar.d.ts │ │ │ ├── faChartBar.js │ │ │ ├── faChartLine.d.ts │ │ │ ├── faChartLine.js │ │ │ ├── faChartPie.d.ts │ │ │ ├── faChartPie.js │ │ │ ├── faCheck.d.ts │ │ │ ├── faCheck.js │ │ │ ├── faCheckCircle.d.ts │ │ │ ├── faCheckCircle.js │ │ │ ├── faCheckDouble.d.ts │ │ │ ├── faCheckDouble.js │ │ │ ├── faCheckSquare.d.ts │ │ │ ├── faCheckSquare.js │ │ │ ├── faCheese.d.ts │ │ │ ├── faCheese.js │ │ │ ├── faChess.d.ts │ │ │ ├── faChess.js │ │ │ ├── faChessBishop.d.ts │ │ │ ├── faChessBishop.js │ │ │ ├── faChessBoard.d.ts │ │ │ ├── faChessBoard.js │ │ │ ├── faChessKing.d.ts │ │ │ ├── faChessKing.js │ │ │ ├── faChessKnight.d.ts │ │ │ ├── faChessKnight.js │ │ │ ├── faChessPawn.d.ts │ │ │ ├── faChessPawn.js │ │ │ ├── faChessQueen.d.ts │ │ │ ├── faChessQueen.js │ │ │ ├── faChessRook.d.ts │ │ │ ├── faChessRook.js │ │ │ ├── faChevronCircleDown.d.ts │ │ │ ├── faChevronCircleDown.js │ │ │ ├── faChevronCircleLeft.d.ts │ │ │ ├── faChevronCircleLeft.js │ │ │ ├── faChevronCircleRight.d.ts │ │ │ ├── faChevronCircleRight.js │ │ │ ├── faChevronCircleUp.d.ts │ │ │ ├── faChevronCircleUp.js │ │ │ ├── faChevronDown.d.ts │ │ │ ├── faChevronDown.js │ │ │ ├── faChevronLeft.d.ts │ │ │ ├── faChevronLeft.js │ │ │ ├── faChevronRight.d.ts │ │ │ ├── faChevronRight.js │ │ │ ├── faChevronUp.d.ts │ │ │ ├── faChevronUp.js │ │ │ ├── faChild.d.ts │ │ │ ├── faChild.js │ │ │ ├── faChurch.d.ts │ │ │ ├── faChurch.js │ │ │ ├── faCircle.d.ts │ │ │ ├── faCircle.js │ │ │ ├── faCircleNotch.d.ts │ │ │ ├── faCircleNotch.js │ │ │ ├── faCity.d.ts │ │ │ ├── faCity.js │ │ │ ├── faClinicMedical.d.ts │ │ │ ├── faClinicMedical.js │ │ │ ├── faClipboard.d.ts │ │ │ ├── faClipboard.js │ │ │ ├── faClipboardCheck.d.ts │ │ │ ├── faClipboardCheck.js │ │ │ ├── faClipboardList.d.ts │ │ │ ├── faClipboardList.js │ │ │ ├── faClock.d.ts │ │ │ ├── faClock.js │ │ │ ├── faClone.d.ts │ │ │ ├── faClone.js │ │ │ ├── faClosedCaptioning.d.ts │ │ │ ├── faClosedCaptioning.js │ │ │ ├── faCloud.d.ts │ │ │ ├── faCloud.js │ │ │ ├── faCloudDownloadAlt.d.ts │ │ │ ├── faCloudDownloadAlt.js │ │ │ ├── faCloudMeatball.d.ts │ │ │ ├── faCloudMeatball.js │ │ │ ├── faCloudMoon.d.ts │ │ │ ├── faCloudMoon.js │ │ │ ├── faCloudMoonRain.d.ts │ │ │ ├── faCloudMoonRain.js │ │ │ ├── faCloudRain.d.ts │ │ │ ├── faCloudRain.js │ │ │ ├── faCloudShowersHeavy.d.ts │ │ │ ├── faCloudShowersHeavy.js │ │ │ ├── faCloudSun.d.ts │ │ │ ├── faCloudSun.js │ │ │ ├── faCloudSunRain.d.ts │ │ │ ├── faCloudSunRain.js │ │ │ ├── faCloudUploadAlt.d.ts │ │ │ ├── faCloudUploadAlt.js │ │ │ ├── faCocktail.d.ts │ │ │ ├── faCocktail.js │ │ │ ├── faCode.d.ts │ │ │ ├── faCode.js │ │ │ ├── faCodeBranch.d.ts │ │ │ ├── faCodeBranch.js │ │ │ ├── faCoffee.d.ts │ │ │ ├── faCoffee.js │ │ │ ├── faCog.d.ts │ │ │ ├── faCog.js │ │ │ ├── faCogs.d.ts │ │ │ ├── faCogs.js │ │ │ ├── faCoins.d.ts │ │ │ ├── faCoins.js │ │ │ ├── faColumns.d.ts │ │ │ ├── faColumns.js │ │ │ ├── faComment.d.ts │ │ │ ├── faComment.js │ │ │ ├── faCommentAlt.d.ts │ │ │ ├── faCommentAlt.js │ │ │ ├── faCommentDollar.d.ts │ │ │ ├── faCommentDollar.js │ │ │ ├── faCommentDots.d.ts │ │ │ ├── faCommentDots.js │ │ │ ├── faCommentMedical.d.ts │ │ │ ├── faCommentMedical.js │ │ │ ├── faCommentSlash.d.ts │ │ │ ├── faCommentSlash.js │ │ │ ├── faComments.d.ts │ │ │ ├── faComments.js │ │ │ ├── faCommentsDollar.d.ts │ │ │ ├── faCommentsDollar.js │ │ │ ├── faCompactDisc.d.ts │ │ │ ├── faCompactDisc.js │ │ │ ├── faCompass.d.ts │ │ │ ├── faCompass.js │ │ │ ├── faCompress.d.ts │ │ │ ├── faCompress.js │ │ │ ├── faCompressAlt.d.ts │ │ │ ├── faCompressAlt.js │ │ │ ├── faCompressArrowsAlt.d.ts │ │ │ ├── faCompressArrowsAlt.js │ │ │ ├── faConciergeBell.d.ts │ │ │ ├── faConciergeBell.js │ │ │ ├── faCookie.d.ts │ │ │ ├── faCookie.js │ │ │ ├── faCookieBite.d.ts │ │ │ ├── faCookieBite.js │ │ │ ├── faCopy.d.ts │ │ │ ├── faCopy.js │ │ │ ├── faCopyright.d.ts │ │ │ ├── faCopyright.js │ │ │ ├── faCouch.d.ts │ │ │ ├── faCouch.js │ │ │ ├── faCreditCard.d.ts │ │ │ ├── faCreditCard.js │ │ │ ├── faCrop.d.ts │ │ │ ├── faCrop.js │ │ │ ├── faCropAlt.d.ts │ │ │ ├── faCropAlt.js │ │ │ ├── faCross.d.ts │ │ │ ├── faCross.js │ │ │ ├── faCrosshairs.d.ts │ │ │ ├── faCrosshairs.js │ │ │ ├── faCrow.d.ts │ │ │ ├── faCrow.js │ │ │ ├── faCrown.d.ts │ │ │ ├── faCrown.js │ │ │ ├── faCrutch.d.ts │ │ │ ├── faCrutch.js │ │ │ ├── faCube.d.ts │ │ │ ├── faCube.js │ │ │ ├── faCubes.d.ts │ │ │ ├── faCubes.js │ │ │ ├── faCut.d.ts │ │ │ ├── faCut.js │ │ │ ├── faDatabase.d.ts │ │ │ ├── faDatabase.js │ │ │ ├── faDeaf.d.ts │ │ │ ├── faDeaf.js │ │ │ ├── faDemocrat.d.ts │ │ │ ├── faDemocrat.js │ │ │ ├── faDesktop.d.ts │ │ │ ├── faDesktop.js │ │ │ ├── faDharmachakra.d.ts │ │ │ ├── faDharmachakra.js │ │ │ ├── faDiagnoses.d.ts │ │ │ ├── faDiagnoses.js │ │ │ ├── faDice.d.ts │ │ │ ├── faDice.js │ │ │ ├── faDiceD20.d.ts │ │ │ ├── faDiceD20.js │ │ │ ├── faDiceD6.d.ts │ │ │ ├── faDiceD6.js │ │ │ ├── faDiceFive.d.ts │ │ │ ├── faDiceFive.js │ │ │ ├── faDiceFour.d.ts │ │ │ ├── faDiceFour.js │ │ │ ├── faDiceOne.d.ts │ │ │ ├── faDiceOne.js │ │ │ ├── faDiceSix.d.ts │ │ │ ├── faDiceSix.js │ │ │ ├── faDiceThree.d.ts │ │ │ ├── faDiceThree.js │ │ │ ├── faDiceTwo.d.ts │ │ │ ├── faDiceTwo.js │ │ │ ├── faDigitalTachograph.d.ts │ │ │ ├── faDigitalTachograph.js │ │ │ ├── faDirections.d.ts │ │ │ ├── faDirections.js │ │ │ ├── faDisease.d.ts │ │ │ ├── faDisease.js │ │ │ ├── faDivide.d.ts │ │ │ ├── faDivide.js │ │ │ ├── faDizzy.d.ts │ │ │ ├── faDizzy.js │ │ │ ├── faDna.d.ts │ │ │ ├── faDna.js │ │ │ ├── faDog.d.ts │ │ │ ├── faDog.js │ │ │ ├── faDollarSign.d.ts │ │ │ ├── faDollarSign.js │ │ │ ├── faDolly.d.ts │ │ │ ├── faDolly.js │ │ │ ├── faDollyFlatbed.d.ts │ │ │ ├── faDollyFlatbed.js │ │ │ ├── faDonate.d.ts │ │ │ ├── faDonate.js │ │ │ ├── faDoorClosed.d.ts │ │ │ ├── faDoorClosed.js │ │ │ ├── faDoorOpen.d.ts │ │ │ ├── faDoorOpen.js │ │ │ ├── faDotCircle.d.ts │ │ │ ├── faDotCircle.js │ │ │ ├── faDove.d.ts │ │ │ ├── faDove.js │ │ │ ├── faDownload.d.ts │ │ │ ├── faDownload.js │ │ │ ├── faDraftingCompass.d.ts │ │ │ ├── faDraftingCompass.js │ │ │ ├── faDragon.d.ts │ │ │ ├── faDragon.js │ │ │ ├── faDrawPolygon.d.ts │ │ │ ├── faDrawPolygon.js │ │ │ ├── faDrum.d.ts │ │ │ ├── faDrum.js │ │ │ ├── faDrumSteelpan.d.ts │ │ │ ├── faDrumSteelpan.js │ │ │ ├── faDrumstickBite.d.ts │ │ │ ├── faDrumstickBite.js │ │ │ ├── faDumbbell.d.ts │ │ │ ├── faDumbbell.js │ │ │ ├── faDumpster.d.ts │ │ │ ├── faDumpster.js │ │ │ ├── faDumpsterFire.d.ts │ │ │ ├── faDumpsterFire.js │ │ │ ├── faDungeon.d.ts │ │ │ ├── faDungeon.js │ │ │ ├── faEdit.d.ts │ │ │ ├── faEdit.js │ │ │ ├── faEgg.d.ts │ │ │ ├── faEgg.js │ │ │ ├── faEject.d.ts │ │ │ ├── faEject.js │ │ │ ├── faEllipsisH.d.ts │ │ │ ├── faEllipsisH.js │ │ │ ├── faEllipsisV.d.ts │ │ │ ├── faEllipsisV.js │ │ │ ├── faEnvelope.d.ts │ │ │ ├── faEnvelope.js │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ ├── faEnvelopeOpen.js │ │ │ ├── faEnvelopeOpenText.d.ts │ │ │ ├── faEnvelopeOpenText.js │ │ │ ├── faEnvelopeSquare.d.ts │ │ │ ├── faEnvelopeSquare.js │ │ │ ├── faEquals.d.ts │ │ │ ├── faEquals.js │ │ │ ├── faEraser.d.ts │ │ │ ├── faEraser.js │ │ │ ├── faEthernet.d.ts │ │ │ ├── faEthernet.js │ │ │ ├── faEuroSign.d.ts │ │ │ ├── faEuroSign.js │ │ │ ├── faExchangeAlt.d.ts │ │ │ ├── faExchangeAlt.js │ │ │ ├── faExclamation.d.ts │ │ │ ├── faExclamation.js │ │ │ ├── faExclamationCircle.d.ts │ │ │ ├── faExclamationCircle.js │ │ │ ├── faExclamationTriangle.d.ts │ │ │ ├── faExclamationTriangle.js │ │ │ ├── faExpand.d.ts │ │ │ ├── faExpand.js │ │ │ ├── faExpandAlt.d.ts │ │ │ ├── faExpandAlt.js │ │ │ ├── faExpandArrowsAlt.d.ts │ │ │ ├── faExpandArrowsAlt.js │ │ │ ├── faExternalLinkAlt.d.ts │ │ │ ├── faExternalLinkAlt.js │ │ │ ├── faExternalLinkSquareAlt.d.ts │ │ │ ├── faExternalLinkSquareAlt.js │ │ │ ├── faEye.d.ts │ │ │ ├── faEye.js │ │ │ ├── faEyeDropper.d.ts │ │ │ ├── faEyeDropper.js │ │ │ ├── faEyeSlash.d.ts │ │ │ ├── faEyeSlash.js │ │ │ ├── faFan.d.ts │ │ │ ├── faFan.js │ │ │ ├── faFastBackward.d.ts │ │ │ ├── faFastBackward.js │ │ │ ├── faFastForward.d.ts │ │ │ ├── faFastForward.js │ │ │ ├── faFaucet.d.ts │ │ │ ├── faFaucet.js │ │ │ ├── faFax.d.ts │ │ │ ├── faFax.js │ │ │ ├── faFeather.d.ts │ │ │ ├── faFeather.js │ │ │ ├── faFeatherAlt.d.ts │ │ │ ├── faFeatherAlt.js │ │ │ ├── faFemale.d.ts │ │ │ ├── faFemale.js │ │ │ ├── faFighterJet.d.ts │ │ │ ├── faFighterJet.js │ │ │ ├── faFile.d.ts │ │ │ ├── faFile.js │ │ │ ├── faFileAlt.d.ts │ │ │ ├── faFileAlt.js │ │ │ ├── faFileArchive.d.ts │ │ │ ├── faFileArchive.js │ │ │ ├── faFileAudio.d.ts │ │ │ ├── faFileAudio.js │ │ │ ├── faFileCode.d.ts │ │ │ ├── faFileCode.js │ │ │ ├── faFileContract.d.ts │ │ │ ├── faFileContract.js │ │ │ ├── faFileCsv.d.ts │ │ │ ├── faFileCsv.js │ │ │ ├── faFileDownload.d.ts │ │ │ ├── faFileDownload.js │ │ │ ├── faFileExcel.d.ts │ │ │ ├── faFileExcel.js │ │ │ ├── faFileExport.d.ts │ │ │ ├── faFileExport.js │ │ │ ├── faFileImage.d.ts │ │ │ ├── faFileImage.js │ │ │ ├── faFileImport.d.ts │ │ │ ├── faFileImport.js │ │ │ ├── faFileInvoice.d.ts │ │ │ ├── faFileInvoice.js │ │ │ ├── faFileInvoiceDollar.d.ts │ │ │ ├── faFileInvoiceDollar.js │ │ │ ├── faFileMedical.d.ts │ │ │ ├── faFileMedical.js │ │ │ ├── faFileMedicalAlt.d.ts │ │ │ ├── faFileMedicalAlt.js │ │ │ ├── faFilePdf.d.ts │ │ │ ├── faFilePdf.js │ │ │ ├── faFilePowerpoint.d.ts │ │ │ ├── faFilePowerpoint.js │ │ │ ├── faFilePrescription.d.ts │ │ │ ├── faFilePrescription.js │ │ │ ├── faFileSignature.d.ts │ │ │ ├── faFileSignature.js │ │ │ ├── faFileUpload.d.ts │ │ │ ├── faFileUpload.js │ │ │ ├── faFileVideo.d.ts │ │ │ ├── faFileVideo.js │ │ │ ├── faFileWord.d.ts │ │ │ ├── faFileWord.js │ │ │ ├── faFill.d.ts │ │ │ ├── faFill.js │ │ │ ├── faFillDrip.d.ts │ │ │ ├── faFillDrip.js │ │ │ ├── faFilm.d.ts │ │ │ ├── faFilm.js │ │ │ ├── faFilter.d.ts │ │ │ ├── faFilter.js │ │ │ ├── faFingerprint.d.ts │ │ │ ├── faFingerprint.js │ │ │ ├── faFire.d.ts │ │ │ ├── faFire.js │ │ │ ├── faFireAlt.d.ts │ │ │ ├── faFireAlt.js │ │ │ ├── faFireExtinguisher.d.ts │ │ │ ├── faFireExtinguisher.js │ │ │ ├── faFirstAid.d.ts │ │ │ ├── faFirstAid.js │ │ │ ├── faFish.d.ts │ │ │ ├── faFish.js │ │ │ ├── faFistRaised.d.ts │ │ │ ├── faFistRaised.js │ │ │ ├── faFlag.d.ts │ │ │ ├── faFlag.js │ │ │ ├── faFlagCheckered.d.ts │ │ │ ├── faFlagCheckered.js │ │ │ ├── faFlagUsa.d.ts │ │ │ ├── faFlagUsa.js │ │ │ ├── faFlask.d.ts │ │ │ ├── faFlask.js │ │ │ ├── faFlushed.d.ts │ │ │ ├── faFlushed.js │ │ │ ├── faFolder.d.ts │ │ │ ├── faFolder.js │ │ │ ├── faFolderMinus.d.ts │ │ │ ├── faFolderMinus.js │ │ │ ├── faFolderOpen.d.ts │ │ │ ├── faFolderOpen.js │ │ │ ├── faFolderPlus.d.ts │ │ │ ├── faFolderPlus.js │ │ │ ├── faFont.d.ts │ │ │ ├── faFont.js │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ ├── faFootballBall.d.ts │ │ │ ├── faFootballBall.js │ │ │ ├── faForward.d.ts │ │ │ ├── faForward.js │ │ │ ├── faFrog.d.ts │ │ │ ├── faFrog.js │ │ │ ├── faFrown.d.ts │ │ │ ├── faFrown.js │ │ │ ├── faFrownOpen.d.ts │ │ │ ├── faFrownOpen.js │ │ │ ├── faFunnelDollar.d.ts │ │ │ ├── faFunnelDollar.js │ │ │ ├── faFutbol.d.ts │ │ │ ├── faFutbol.js │ │ │ ├── faGamepad.d.ts │ │ │ ├── faGamepad.js │ │ │ ├── faGasPump.d.ts │ │ │ ├── faGasPump.js │ │ │ ├── faGavel.d.ts │ │ │ ├── faGavel.js │ │ │ ├── faGem.d.ts │ │ │ ├── faGem.js │ │ │ ├── faGenderless.d.ts │ │ │ ├── faGenderless.js │ │ │ ├── faGhost.d.ts │ │ │ ├── faGhost.js │ │ │ ├── faGift.d.ts │ │ │ ├── faGift.js │ │ │ ├── faGifts.d.ts │ │ │ ├── faGifts.js │ │ │ ├── faGlassCheers.d.ts │ │ │ ├── faGlassCheers.js │ │ │ ├── faGlassMartini.d.ts │ │ │ ├── faGlassMartini.js │ │ │ ├── faGlassMartiniAlt.d.ts │ │ │ ├── faGlassMartiniAlt.js │ │ │ ├── faGlassWhiskey.d.ts │ │ │ ├── faGlassWhiskey.js │ │ │ ├── faGlasses.d.ts │ │ │ ├── faGlasses.js │ │ │ ├── faGlobe.d.ts │ │ │ ├── faGlobe.js │ │ │ ├── faGlobeAfrica.d.ts │ │ │ ├── faGlobeAfrica.js │ │ │ ├── faGlobeAmericas.d.ts │ │ │ ├── faGlobeAmericas.js │ │ │ ├── faGlobeAsia.d.ts │ │ │ ├── faGlobeAsia.js │ │ │ ├── faGlobeEurope.d.ts │ │ │ ├── faGlobeEurope.js │ │ │ ├── faGolfBall.d.ts │ │ │ ├── faGolfBall.js │ │ │ ├── faGopuram.d.ts │ │ │ ├── faGopuram.js │ │ │ ├── faGraduationCap.d.ts │ │ │ ├── faGraduationCap.js │ │ │ ├── faGreaterThan.d.ts │ │ │ ├── faGreaterThan.js │ │ │ ├── faGreaterThanEqual.d.ts │ │ │ ├── faGreaterThanEqual.js │ │ │ ├── faGrimace.d.ts │ │ │ ├── faGrimace.js │ │ │ ├── faGrin.d.ts │ │ │ ├── faGrin.js │ │ │ ├── faGrinAlt.d.ts │ │ │ ├── faGrinAlt.js │ │ │ ├── faGrinBeam.d.ts │ │ │ ├── faGrinBeam.js │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ ├── faGrinBeamSweat.js │ │ │ ├── faGrinHearts.d.ts │ │ │ ├── faGrinHearts.js │ │ │ ├── faGrinSquint.d.ts │ │ │ ├── faGrinSquint.js │ │ │ ├── faGrinSquintTears.d.ts │ │ │ ├── faGrinSquintTears.js │ │ │ ├── faGrinStars.d.ts │ │ │ ├── faGrinStars.js │ │ │ ├── faGrinTears.d.ts │ │ │ ├── faGrinTears.js │ │ │ ├── faGrinTongue.d.ts │ │ │ ├── faGrinTongue.js │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ ├── faGrinTongueSquint.js │ │ │ ├── faGrinTongueWink.d.ts │ │ │ ├── faGrinTongueWink.js │ │ │ ├── faGrinWink.d.ts │ │ │ ├── faGrinWink.js │ │ │ ├── faGripHorizontal.d.ts │ │ │ ├── faGripHorizontal.js │ │ │ ├── faGripLines.d.ts │ │ │ ├── faGripLines.js │ │ │ ├── faGripLinesVertical.d.ts │ │ │ ├── faGripLinesVertical.js │ │ │ ├── faGripVertical.d.ts │ │ │ ├── faGripVertical.js │ │ │ ├── faGuitar.d.ts │ │ │ ├── faGuitar.js │ │ │ ├── faHSquare.d.ts │ │ │ ├── faHSquare.js │ │ │ ├── faHamburger.d.ts │ │ │ ├── faHamburger.js │ │ │ ├── faHammer.d.ts │ │ │ ├── faHammer.js │ │ │ ├── faHamsa.d.ts │ │ │ ├── faHamsa.js │ │ │ ├── faHandHolding.d.ts │ │ │ ├── faHandHolding.js │ │ │ ├── faHandHoldingHeart.d.ts │ │ │ ├── faHandHoldingHeart.js │ │ │ ├── faHandHoldingMedical.d.ts │ │ │ ├── faHandHoldingMedical.js │ │ │ ├── faHandHoldingUsd.d.ts │ │ │ ├── faHandHoldingUsd.js │ │ │ ├── faHandHoldingWater.d.ts │ │ │ ├── faHandHoldingWater.js │ │ │ ├── faHandLizard.d.ts │ │ │ ├── faHandLizard.js │ │ │ ├── faHandMiddleFinger.d.ts │ │ │ ├── faHandMiddleFinger.js │ │ │ ├── faHandPaper.d.ts │ │ │ ├── faHandPaper.js │ │ │ ├── faHandPeace.d.ts │ │ │ ├── faHandPeace.js │ │ │ ├── faHandPointDown.d.ts │ │ │ ├── faHandPointDown.js │ │ │ ├── faHandPointLeft.d.ts │ │ │ ├── faHandPointLeft.js │ │ │ ├── faHandPointRight.d.ts │ │ │ ├── faHandPointRight.js │ │ │ ├── faHandPointUp.d.ts │ │ │ ├── faHandPointUp.js │ │ │ ├── faHandPointer.d.ts │ │ │ ├── faHandPointer.js │ │ │ ├── faHandRock.d.ts │ │ │ ├── faHandRock.js │ │ │ ├── faHandScissors.d.ts │ │ │ ├── faHandScissors.js │ │ │ ├── faHandSparkles.d.ts │ │ │ ├── faHandSparkles.js │ │ │ ├── faHandSpock.d.ts │ │ │ ├── faHandSpock.js │ │ │ ├── faHands.d.ts │ │ │ ├── faHands.js │ │ │ ├── faHandsHelping.d.ts │ │ │ ├── faHandsHelping.js │ │ │ ├── faHandsWash.d.ts │ │ │ ├── faHandsWash.js │ │ │ ├── faHandshake.d.ts │ │ │ ├── faHandshake.js │ │ │ ├── faHandshakeAltSlash.d.ts │ │ │ ├── faHandshakeAltSlash.js │ │ │ ├── faHandshakeSlash.d.ts │ │ │ ├── faHandshakeSlash.js │ │ │ ├── faHanukiah.d.ts │ │ │ ├── faHanukiah.js │ │ │ ├── faHardHat.d.ts │ │ │ ├── faHardHat.js │ │ │ ├── faHashtag.d.ts │ │ │ ├── faHashtag.js │ │ │ ├── faHatCowboy.d.ts │ │ │ ├── faHatCowboy.js │ │ │ ├── faHatCowboySide.d.ts │ │ │ ├── faHatCowboySide.js │ │ │ ├── faHatWizard.d.ts │ │ │ ├── faHatWizard.js │ │ │ ├── faHaykal.d.ts │ │ │ ├── faHaykal.js │ │ │ ├── faHdd.d.ts │ │ │ ├── faHdd.js │ │ │ ├── faHeadSideCough.d.ts │ │ │ ├── faHeadSideCough.js │ │ │ ├── faHeadSideCoughSlash.d.ts │ │ │ ├── faHeadSideCoughSlash.js │ │ │ ├── faHeadSideMask.d.ts │ │ │ ├── faHeadSideMask.js │ │ │ ├── faHeadSideVirus.d.ts │ │ │ ├── faHeadSideVirus.js │ │ │ ├── faHeading.d.ts │ │ │ ├── faHeading.js │ │ │ ├── faHeadphones.d.ts │ │ │ ├── faHeadphones.js │ │ │ ├── faHeadphonesAlt.d.ts │ │ │ ├── faHeadphonesAlt.js │ │ │ ├── faHeadset.d.ts │ │ │ ├── faHeadset.js │ │ │ ├── faHeart.d.ts │ │ │ ├── faHeart.js │ │ │ ├── faHeartBroken.d.ts │ │ │ ├── faHeartBroken.js │ │ │ ├── faHeartbeat.d.ts │ │ │ ├── faHeartbeat.js │ │ │ ├── faHelicopter.d.ts │ │ │ ├── faHelicopter.js │ │ │ ├── faHighlighter.d.ts │ │ │ ├── faHighlighter.js │ │ │ ├── faHiking.d.ts │ │ │ ├── faHiking.js │ │ │ ├── faHippo.d.ts │ │ │ ├── faHippo.js │ │ │ ├── faHistory.d.ts │ │ │ ├── faHistory.js │ │ │ ├── faHockeyPuck.d.ts │ │ │ ├── faHockeyPuck.js │ │ │ ├── faHollyBerry.d.ts │ │ │ ├── faHollyBerry.js │ │ │ ├── faHome.d.ts │ │ │ ├── faHome.js │ │ │ ├── faHorse.d.ts │ │ │ ├── faHorse.js │ │ │ ├── faHorseHead.d.ts │ │ │ ├── faHorseHead.js │ │ │ ├── faHospital.d.ts │ │ │ ├── faHospital.js │ │ │ ├── faHospitalAlt.d.ts │ │ │ ├── faHospitalAlt.js │ │ │ ├── faHospitalSymbol.d.ts │ │ │ ├── faHospitalSymbol.js │ │ │ ├── faHospitalUser.d.ts │ │ │ ├── faHospitalUser.js │ │ │ ├── faHotTub.d.ts │ │ │ ├── faHotTub.js │ │ │ ├── faHotdog.d.ts │ │ │ ├── faHotdog.js │ │ │ ├── faHotel.d.ts │ │ │ ├── faHotel.js │ │ │ ├── faHourglass.d.ts │ │ │ ├── faHourglass.js │ │ │ ├── faHourglassEnd.d.ts │ │ │ ├── faHourglassEnd.js │ │ │ ├── faHourglassHalf.d.ts │ │ │ ├── faHourglassHalf.js │ │ │ ├── faHourglassStart.d.ts │ │ │ ├── faHourglassStart.js │ │ │ ├── faHouseDamage.d.ts │ │ │ ├── faHouseDamage.js │ │ │ ├── faHouseUser.d.ts │ │ │ ├── faHouseUser.js │ │ │ ├── faHryvnia.d.ts │ │ │ ├── faHryvnia.js │ │ │ ├── faICursor.d.ts │ │ │ ├── faICursor.js │ │ │ ├── faIceCream.d.ts │ │ │ ├── faIceCream.js │ │ │ ├── faIcicles.d.ts │ │ │ ├── faIcicles.js │ │ │ ├── faIcons.d.ts │ │ │ ├── faIcons.js │ │ │ ├── faIdBadge.d.ts │ │ │ ├── faIdBadge.js │ │ │ ├── faIdCard.d.ts │ │ │ ├── faIdCard.js │ │ │ ├── faIdCardAlt.d.ts │ │ │ ├── faIdCardAlt.js │ │ │ ├── faIgloo.d.ts │ │ │ ├── faIgloo.js │ │ │ ├── faImage.d.ts │ │ │ ├── faImage.js │ │ │ ├── faImages.d.ts │ │ │ ├── faImages.js │ │ │ ├── faInbox.d.ts │ │ │ ├── faInbox.js │ │ │ ├── faIndent.d.ts │ │ │ ├── faIndent.js │ │ │ ├── faIndustry.d.ts │ │ │ ├── faIndustry.js │ │ │ ├── faInfinity.d.ts │ │ │ ├── faInfinity.js │ │ │ ├── faInfo.d.ts │ │ │ ├── faInfo.js │ │ │ ├── faInfoCircle.d.ts │ │ │ ├── faInfoCircle.js │ │ │ ├── faItalic.d.ts │ │ │ ├── faItalic.js │ │ │ ├── faJedi.d.ts │ │ │ ├── faJedi.js │ │ │ ├── faJoint.d.ts │ │ │ ├── faJoint.js │ │ │ ├── faJournalWhills.d.ts │ │ │ ├── faJournalWhills.js │ │ │ ├── faKaaba.d.ts │ │ │ ├── faKaaba.js │ │ │ ├── faKey.d.ts │ │ │ ├── faKey.js │ │ │ ├── faKeyboard.d.ts │ │ │ ├── faKeyboard.js │ │ │ ├── faKhanda.d.ts │ │ │ ├── faKhanda.js │ │ │ ├── faKiss.d.ts │ │ │ ├── faKiss.js │ │ │ ├── faKissBeam.d.ts │ │ │ ├── faKissBeam.js │ │ │ ├── faKissWinkHeart.d.ts │ │ │ ├── faKissWinkHeart.js │ │ │ ├── faKiwiBird.d.ts │ │ │ ├── faKiwiBird.js │ │ │ ├── faLandmark.d.ts │ │ │ ├── faLandmark.js │ │ │ ├── faLanguage.d.ts │ │ │ ├── faLanguage.js │ │ │ ├── faLaptop.d.ts │ │ │ ├── faLaptop.js │ │ │ ├── faLaptopCode.d.ts │ │ │ ├── faLaptopCode.js │ │ │ ├── faLaptopHouse.d.ts │ │ │ ├── faLaptopHouse.js │ │ │ ├── faLaptopMedical.d.ts │ │ │ ├── faLaptopMedical.js │ │ │ ├── faLaugh.d.ts │ │ │ ├── faLaugh.js │ │ │ ├── faLaughBeam.d.ts │ │ │ ├── faLaughBeam.js │ │ │ ├── faLaughSquint.d.ts │ │ │ ├── faLaughSquint.js │ │ │ ├── faLaughWink.d.ts │ │ │ ├── faLaughWink.js │ │ │ ├── faLayerGroup.d.ts │ │ │ ├── faLayerGroup.js │ │ │ ├── faLeaf.d.ts │ │ │ ├── faLeaf.js │ │ │ ├── faLemon.d.ts │ │ │ ├── faLemon.js │ │ │ ├── faLessThan.d.ts │ │ │ ├── faLessThan.js │ │ │ ├── faLessThanEqual.d.ts │ │ │ ├── faLessThanEqual.js │ │ │ ├── faLevelDownAlt.d.ts │ │ │ ├── faLevelDownAlt.js │ │ │ ├── faLevelUpAlt.d.ts │ │ │ ├── faLevelUpAlt.js │ │ │ ├── faLifeRing.d.ts │ │ │ ├── faLifeRing.js │ │ │ ├── faLightbulb.d.ts │ │ │ ├── faLightbulb.js │ │ │ ├── faLink.d.ts │ │ │ ├── faLink.js │ │ │ ├── faLiraSign.d.ts │ │ │ ├── faLiraSign.js │ │ │ ├── faList.d.ts │ │ │ ├── faList.js │ │ │ ├── faListAlt.d.ts │ │ │ ├── faListAlt.js │ │ │ ├── faListOl.d.ts │ │ │ ├── faListOl.js │ │ │ ├── faListUl.d.ts │ │ │ ├── faListUl.js │ │ │ ├── faLocationArrow.d.ts │ │ │ ├── faLocationArrow.js │ │ │ ├── faLock.d.ts │ │ │ ├── faLock.js │ │ │ ├── faLockOpen.d.ts │ │ │ ├── faLockOpen.js │ │ │ ├── faLongArrowAltDown.d.ts │ │ │ ├── faLongArrowAltDown.js │ │ │ ├── faLongArrowAltLeft.d.ts │ │ │ ├── faLongArrowAltLeft.js │ │ │ ├── faLongArrowAltRight.d.ts │ │ │ ├── faLongArrowAltRight.js │ │ │ ├── faLongArrowAltUp.d.ts │ │ │ ├── faLongArrowAltUp.js │ │ │ ├── faLowVision.d.ts │ │ │ ├── faLowVision.js │ │ │ ├── faLuggageCart.d.ts │ │ │ ├── faLuggageCart.js │ │ │ ├── faLungs.d.ts │ │ │ ├── faLungs.js │ │ │ ├── faLungsVirus.d.ts │ │ │ ├── faLungsVirus.js │ │ │ ├── faMagic.d.ts │ │ │ ├── faMagic.js │ │ │ ├── faMagnet.d.ts │ │ │ ├── faMagnet.js │ │ │ ├── faMailBulk.d.ts │ │ │ ├── faMailBulk.js │ │ │ ├── faMale.d.ts │ │ │ ├── faMale.js │ │ │ ├── faMap.d.ts │ │ │ ├── faMap.js │ │ │ ├── faMapMarked.d.ts │ │ │ ├── faMapMarked.js │ │ │ ├── faMapMarkedAlt.d.ts │ │ │ ├── faMapMarkedAlt.js │ │ │ ├── faMapMarker.d.ts │ │ │ ├── faMapMarker.js │ │ │ ├── faMapMarkerAlt.d.ts │ │ │ ├── faMapMarkerAlt.js │ │ │ ├── faMapPin.d.ts │ │ │ ├── faMapPin.js │ │ │ ├── faMapSigns.d.ts │ │ │ ├── faMapSigns.js │ │ │ ├── faMarker.d.ts │ │ │ ├── faMarker.js │ │ │ ├── faMars.d.ts │ │ │ ├── faMars.js │ │ │ ├── faMarsDouble.d.ts │ │ │ ├── faMarsDouble.js │ │ │ ├── faMarsStroke.d.ts │ │ │ ├── faMarsStroke.js │ │ │ ├── faMarsStrokeH.d.ts │ │ │ ├── faMarsStrokeH.js │ │ │ ├── faMarsStrokeV.d.ts │ │ │ ├── faMarsStrokeV.js │ │ │ ├── faMask.d.ts │ │ │ ├── faMask.js │ │ │ ├── faMedal.d.ts │ │ │ ├── faMedal.js │ │ │ ├── faMedkit.d.ts │ │ │ ├── faMedkit.js │ │ │ ├── faMeh.d.ts │ │ │ ├── faMeh.js │ │ │ ├── faMehBlank.d.ts │ │ │ ├── faMehBlank.js │ │ │ ├── faMehRollingEyes.d.ts │ │ │ ├── faMehRollingEyes.js │ │ │ ├── faMemory.d.ts │ │ │ ├── faMemory.js │ │ │ ├── faMenorah.d.ts │ │ │ ├── faMenorah.js │ │ │ ├── faMercury.d.ts │ │ │ ├── faMercury.js │ │ │ ├── faMeteor.d.ts │ │ │ ├── faMeteor.js │ │ │ ├── faMicrochip.d.ts │ │ │ ├── faMicrochip.js │ │ │ ├── faMicrophone.d.ts │ │ │ ├── faMicrophone.js │ │ │ ├── faMicrophoneAlt.d.ts │ │ │ ├── faMicrophoneAlt.js │ │ │ ├── faMicrophoneAltSlash.d.ts │ │ │ ├── faMicrophoneAltSlash.js │ │ │ ├── faMicrophoneSlash.d.ts │ │ │ ├── faMicrophoneSlash.js │ │ │ ├── faMicroscope.d.ts │ │ │ ├── faMicroscope.js │ │ │ ├── faMinus.d.ts │ │ │ ├── faMinus.js │ │ │ ├── faMinusCircle.d.ts │ │ │ ├── faMinusCircle.js │ │ │ ├── faMinusSquare.d.ts │ │ │ ├── faMinusSquare.js │ │ │ ├── faMitten.d.ts │ │ │ ├── faMitten.js │ │ │ ├── faMobile.d.ts │ │ │ ├── faMobile.js │ │ │ ├── faMobileAlt.d.ts │ │ │ ├── faMobileAlt.js │ │ │ ├── faMoneyBill.d.ts │ │ │ ├── faMoneyBill.js │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ ├── faMoneyBillAlt.js │ │ │ ├── faMoneyBillWave.d.ts │ │ │ ├── faMoneyBillWave.js │ │ │ ├── faMoneyBillWaveAlt.d.ts │ │ │ ├── faMoneyBillWaveAlt.js │ │ │ ├── faMoneyCheck.d.ts │ │ │ ├── faMoneyCheck.js │ │ │ ├── faMoneyCheckAlt.d.ts │ │ │ ├── faMoneyCheckAlt.js │ │ │ ├── faMonument.d.ts │ │ │ ├── faMonument.js │ │ │ ├── faMoon.d.ts │ │ │ ├── faMoon.js │ │ │ ├── faMortarPestle.d.ts │ │ │ ├── faMortarPestle.js │ │ │ ├── faMosque.d.ts │ │ │ ├── faMosque.js │ │ │ ├── faMotorcycle.d.ts │ │ │ ├── faMotorcycle.js │ │ │ ├── faMountain.d.ts │ │ │ ├── faMountain.js │ │ │ ├── faMouse.d.ts │ │ │ ├── faMouse.js │ │ │ ├── faMousePointer.d.ts │ │ │ ├── faMousePointer.js │ │ │ ├── faMugHot.d.ts │ │ │ ├── faMugHot.js │ │ │ ├── faMusic.d.ts │ │ │ ├── faMusic.js │ │ │ ├── faNetworkWired.d.ts │ │ │ ├── faNetworkWired.js │ │ │ ├── faNeuter.d.ts │ │ │ ├── faNeuter.js │ │ │ ├── faNewspaper.d.ts │ │ │ ├── faNewspaper.js │ │ │ ├── faNotEqual.d.ts │ │ │ ├── faNotEqual.js │ │ │ ├── faNotesMedical.d.ts │ │ │ ├── faNotesMedical.js │ │ │ ├── faObjectGroup.d.ts │ │ │ ├── faObjectGroup.js │ │ │ ├── faObjectUngroup.d.ts │ │ │ ├── faObjectUngroup.js │ │ │ ├── faOilCan.d.ts │ │ │ ├── faOilCan.js │ │ │ ├── faOm.d.ts │ │ │ ├── faOm.js │ │ │ ├── faOtter.d.ts │ │ │ ├── faOtter.js │ │ │ ├── faOutdent.d.ts │ │ │ ├── faOutdent.js │ │ │ ├── faPager.d.ts │ │ │ ├── faPager.js │ │ │ ├── faPaintBrush.d.ts │ │ │ ├── faPaintBrush.js │ │ │ ├── faPaintRoller.d.ts │ │ │ ├── faPaintRoller.js │ │ │ ├── faPalette.d.ts │ │ │ ├── faPalette.js │ │ │ ├── faPallet.d.ts │ │ │ ├── faPallet.js │ │ │ ├── faPaperPlane.d.ts │ │ │ ├── faPaperPlane.js │ │ │ ├── faPaperclip.d.ts │ │ │ ├── faPaperclip.js │ │ │ ├── faParachuteBox.d.ts │ │ │ ├── faParachuteBox.js │ │ │ ├── faParagraph.d.ts │ │ │ ├── faParagraph.js │ │ │ ├── faParking.d.ts │ │ │ ├── faParking.js │ │ │ ├── faPassport.d.ts │ │ │ ├── faPassport.js │ │ │ ├── faPastafarianism.d.ts │ │ │ ├── faPastafarianism.js │ │ │ ├── faPaste.d.ts │ │ │ ├── faPaste.js │ │ │ ├── faPause.d.ts │ │ │ ├── faPause.js │ │ │ ├── faPauseCircle.d.ts │ │ │ ├── faPauseCircle.js │ │ │ ├── faPaw.d.ts │ │ │ ├── faPaw.js │ │ │ ├── faPeace.d.ts │ │ │ ├── faPeace.js │ │ │ ├── faPen.d.ts │ │ │ ├── faPen.js │ │ │ ├── faPenAlt.d.ts │ │ │ ├── faPenAlt.js │ │ │ ├── faPenFancy.d.ts │ │ │ ├── faPenFancy.js │ │ │ ├── faPenNib.d.ts │ │ │ ├── faPenNib.js │ │ │ ├── faPenSquare.d.ts │ │ │ ├── faPenSquare.js │ │ │ ├── faPencilAlt.d.ts │ │ │ ├── faPencilAlt.js │ │ │ ├── faPencilRuler.d.ts │ │ │ ├── faPencilRuler.js │ │ │ ├── faPeopleArrows.d.ts │ │ │ ├── faPeopleArrows.js │ │ │ ├── faPeopleCarry.d.ts │ │ │ ├── faPeopleCarry.js │ │ │ ├── faPepperHot.d.ts │ │ │ ├── faPepperHot.js │ │ │ ├── faPercent.d.ts │ │ │ ├── faPercent.js │ │ │ ├── faPercentage.d.ts │ │ │ ├── faPercentage.js │ │ │ ├── faPersonBooth.d.ts │ │ │ ├── faPersonBooth.js │ │ │ ├── faPhone.d.ts │ │ │ ├── faPhone.js │ │ │ ├── faPhoneAlt.d.ts │ │ │ ├── faPhoneAlt.js │ │ │ ├── faPhoneSlash.d.ts │ │ │ ├── faPhoneSlash.js │ │ │ ├── faPhoneSquare.d.ts │ │ │ ├── faPhoneSquare.js │ │ │ ├── faPhoneSquareAlt.d.ts │ │ │ ├── faPhoneSquareAlt.js │ │ │ ├── faPhoneVolume.d.ts │ │ │ ├── faPhoneVolume.js │ │ │ ├── faPhotoVideo.d.ts │ │ │ ├── faPhotoVideo.js │ │ │ ├── faPiggyBank.d.ts │ │ │ ├── faPiggyBank.js │ │ │ ├── faPills.d.ts │ │ │ ├── faPills.js │ │ │ ├── faPizzaSlice.d.ts │ │ │ ├── faPizzaSlice.js │ │ │ ├── faPlaceOfWorship.d.ts │ │ │ ├── faPlaceOfWorship.js │ │ │ ├── faPlane.d.ts │ │ │ ├── faPlane.js │ │ │ ├── faPlaneArrival.d.ts │ │ │ ├── faPlaneArrival.js │ │ │ ├── faPlaneDeparture.d.ts │ │ │ ├── faPlaneDeparture.js │ │ │ ├── faPlaneSlash.d.ts │ │ │ ├── faPlaneSlash.js │ │ │ ├── faPlay.d.ts │ │ │ ├── faPlay.js │ │ │ ├── faPlayCircle.d.ts │ │ │ ├── faPlayCircle.js │ │ │ ├── faPlug.d.ts │ │ │ ├── faPlug.js │ │ │ ├── faPlus.d.ts │ │ │ ├── faPlus.js │ │ │ ├── faPlusCircle.d.ts │ │ │ ├── faPlusCircle.js │ │ │ ├── faPlusSquare.d.ts │ │ │ ├── faPlusSquare.js │ │ │ ├── faPodcast.d.ts │ │ │ ├── faPodcast.js │ │ │ ├── faPoll.d.ts │ │ │ ├── faPoll.js │ │ │ ├── faPollH.d.ts │ │ │ ├── faPollH.js │ │ │ ├── faPoo.d.ts │ │ │ ├── faPoo.js │ │ │ ├── faPooStorm.d.ts │ │ │ ├── faPooStorm.js │ │ │ ├── faPoop.d.ts │ │ │ ├── faPoop.js │ │ │ ├── faPortrait.d.ts │ │ │ ├── faPortrait.js │ │ │ ├── faPoundSign.d.ts │ │ │ ├── faPoundSign.js │ │ │ ├── faPowerOff.d.ts │ │ │ ├── faPowerOff.js │ │ │ ├── faPray.d.ts │ │ │ ├── faPray.js │ │ │ ├── faPrayingHands.d.ts │ │ │ ├── faPrayingHands.js │ │ │ ├── faPrescription.d.ts │ │ │ ├── faPrescription.js │ │ │ ├── faPrescriptionBottle.d.ts │ │ │ ├── faPrescriptionBottle.js │ │ │ ├── faPrescriptionBottleAlt.d.ts │ │ │ ├── faPrescriptionBottleAlt.js │ │ │ ├── faPrint.d.ts │ │ │ ├── faPrint.js │ │ │ ├── faProcedures.d.ts │ │ │ ├── faProcedures.js │ │ │ ├── faProjectDiagram.d.ts │ │ │ ├── faProjectDiagram.js │ │ │ ├── faPumpMedical.d.ts │ │ │ ├── faPumpMedical.js │ │ │ ├── faPumpSoap.d.ts │ │ │ ├── faPumpSoap.js │ │ │ ├── faPuzzlePiece.d.ts │ │ │ ├── faPuzzlePiece.js │ │ │ ├── faQrcode.d.ts │ │ │ ├── faQrcode.js │ │ │ ├── faQuestion.d.ts │ │ │ ├── faQuestion.js │ │ │ ├── faQuestionCircle.d.ts │ │ │ ├── faQuestionCircle.js │ │ │ ├── faQuidditch.d.ts │ │ │ ├── faQuidditch.js │ │ │ ├── faQuoteLeft.d.ts │ │ │ ├── faQuoteLeft.js │ │ │ ├── faQuoteRight.d.ts │ │ │ ├── faQuoteRight.js │ │ │ ├── faQuran.d.ts │ │ │ ├── faQuran.js │ │ │ ├── faRadiation.d.ts │ │ │ ├── faRadiation.js │ │ │ ├── faRadiationAlt.d.ts │ │ │ ├── faRadiationAlt.js │ │ │ ├── faRainbow.d.ts │ │ │ ├── faRainbow.js │ │ │ ├── faRandom.d.ts │ │ │ ├── faRandom.js │ │ │ ├── faReceipt.d.ts │ │ │ ├── faReceipt.js │ │ │ ├── faRecordVinyl.d.ts │ │ │ ├── faRecordVinyl.js │ │ │ ├── faRecycle.d.ts │ │ │ ├── faRecycle.js │ │ │ ├── faRedo.d.ts │ │ │ ├── faRedo.js │ │ │ ├── faRedoAlt.d.ts │ │ │ ├── faRedoAlt.js │ │ │ ├── faRegistered.d.ts │ │ │ ├── faRegistered.js │ │ │ ├── faRemoveFormat.d.ts │ │ │ ├── faRemoveFormat.js │ │ │ ├── faReply.d.ts │ │ │ ├── faReply.js │ │ │ ├── faReplyAll.d.ts │ │ │ ├── faReplyAll.js │ │ │ ├── faRepublican.d.ts │ │ │ ├── faRepublican.js │ │ │ ├── faRestroom.d.ts │ │ │ ├── faRestroom.js │ │ │ ├── faRetweet.d.ts │ │ │ ├── faRetweet.js │ │ │ ├── faRibbon.d.ts │ │ │ ├── faRibbon.js │ │ │ ├── faRing.d.ts │ │ │ ├── faRing.js │ │ │ ├── faRoad.d.ts │ │ │ ├── faRoad.js │ │ │ ├── faRobot.d.ts │ │ │ ├── faRobot.js │ │ │ ├── faRocket.d.ts │ │ │ ├── faRocket.js │ │ │ ├── faRoute.d.ts │ │ │ ├── faRoute.js │ │ │ ├── faRss.d.ts │ │ │ ├── faRss.js │ │ │ ├── faRssSquare.d.ts │ │ │ ├── faRssSquare.js │ │ │ ├── faRubleSign.d.ts │ │ │ ├── faRubleSign.js │ │ │ ├── faRuler.d.ts │ │ │ ├── faRuler.js │ │ │ ├── faRulerCombined.d.ts │ │ │ ├── faRulerCombined.js │ │ │ ├── faRulerHorizontal.d.ts │ │ │ ├── faRulerHorizontal.js │ │ │ ├── faRulerVertical.d.ts │ │ │ ├── faRulerVertical.js │ │ │ ├── faRunning.d.ts │ │ │ ├── faRunning.js │ │ │ ├── faRupeeSign.d.ts │ │ │ ├── faRupeeSign.js │ │ │ ├── faSadCry.d.ts │ │ │ ├── faSadCry.js │ │ │ ├── faSadTear.d.ts │ │ │ ├── faSadTear.js │ │ │ ├── faSatellite.d.ts │ │ │ ├── faSatellite.js │ │ │ ├── faSatelliteDish.d.ts │ │ │ ├── faSatelliteDish.js │ │ │ ├── faSave.d.ts │ │ │ ├── faSave.js │ │ │ ├── faSchool.d.ts │ │ │ ├── faSchool.js │ │ │ ├── faScrewdriver.d.ts │ │ │ ├── faScrewdriver.js │ │ │ ├── faScroll.d.ts │ │ │ ├── faScroll.js │ │ │ ├── faSdCard.d.ts │ │ │ ├── faSdCard.js │ │ │ ├── faSearch.d.ts │ │ │ ├── faSearch.js │ │ │ ├── faSearchDollar.d.ts │ │ │ ├── faSearchDollar.js │ │ │ ├── faSearchLocation.d.ts │ │ │ ├── faSearchLocation.js │ │ │ ├── faSearchMinus.d.ts │ │ │ ├── faSearchMinus.js │ │ │ ├── faSearchPlus.d.ts │ │ │ ├── faSearchPlus.js │ │ │ ├── faSeedling.d.ts │ │ │ ├── faSeedling.js │ │ │ ├── faServer.d.ts │ │ │ ├── faServer.js │ │ │ ├── faShapes.d.ts │ │ │ ├── faShapes.js │ │ │ ├── faShare.d.ts │ │ │ ├── faShare.js │ │ │ ├── faShareAlt.d.ts │ │ │ ├── faShareAlt.js │ │ │ ├── faShareAltSquare.d.ts │ │ │ ├── faShareAltSquare.js │ │ │ ├── faShareSquare.d.ts │ │ │ ├── faShareSquare.js │ │ │ ├── faShekelSign.d.ts │ │ │ ├── faShekelSign.js │ │ │ ├── faShieldAlt.d.ts │ │ │ ├── faShieldAlt.js │ │ │ ├── faShieldVirus.d.ts │ │ │ ├── faShieldVirus.js │ │ │ ├── faShip.d.ts │ │ │ ├── faShip.js │ │ │ ├── faShippingFast.d.ts │ │ │ ├── faShippingFast.js │ │ │ ├── faShoePrints.d.ts │ │ │ ├── faShoePrints.js │ │ │ ├── faShoppingBag.d.ts │ │ │ ├── faShoppingBag.js │ │ │ ├── faShoppingBasket.d.ts │ │ │ ├── faShoppingBasket.js │ │ │ ├── faShoppingCart.d.ts │ │ │ ├── faShoppingCart.js │ │ │ ├── faShower.d.ts │ │ │ ├── faShower.js │ │ │ ├── faShuttleVan.d.ts │ │ │ ├── faShuttleVan.js │ │ │ ├── faSign.d.ts │ │ │ ├── faSign.js │ │ │ ├── faSignInAlt.d.ts │ │ │ ├── faSignInAlt.js │ │ │ ├── faSignLanguage.d.ts │ │ │ ├── faSignLanguage.js │ │ │ ├── faSignOutAlt.d.ts │ │ │ ├── faSignOutAlt.js │ │ │ ├── faSignal.d.ts │ │ │ ├── faSignal.js │ │ │ ├── faSignature.d.ts │ │ │ ├── faSignature.js │ │ │ ├── faSimCard.d.ts │ │ │ ├── faSimCard.js │ │ │ ├── faSink.d.ts │ │ │ ├── faSink.js │ │ │ ├── faSitemap.d.ts │ │ │ ├── faSitemap.js │ │ │ ├── faSkating.d.ts │ │ │ ├── faSkating.js │ │ │ ├── faSkiing.d.ts │ │ │ ├── faSkiing.js │ │ │ ├── faSkiingNordic.d.ts │ │ │ ├── faSkiingNordic.js │ │ │ ├── faSkull.d.ts │ │ │ ├── faSkull.js │ │ │ ├── faSkullCrossbones.d.ts │ │ │ ├── faSkullCrossbones.js │ │ │ ├── faSlash.d.ts │ │ │ ├── faSlash.js │ │ │ ├── faSleigh.d.ts │ │ │ ├── faSleigh.js │ │ │ ├── faSlidersH.d.ts │ │ │ ├── faSlidersH.js │ │ │ ├── faSmile.d.ts │ │ │ ├── faSmile.js │ │ │ ├── faSmileBeam.d.ts │ │ │ ├── faSmileBeam.js │ │ │ ├── faSmileWink.d.ts │ │ │ ├── faSmileWink.js │ │ │ ├── faSmog.d.ts │ │ │ ├── faSmog.js │ │ │ ├── faSmoking.d.ts │ │ │ ├── faSmoking.js │ │ │ ├── faSmokingBan.d.ts │ │ │ ├── faSmokingBan.js │ │ │ ├── faSms.d.ts │ │ │ ├── faSms.js │ │ │ ├── faSnowboarding.d.ts │ │ │ ├── faSnowboarding.js │ │ │ ├── faSnowflake.d.ts │ │ │ ├── faSnowflake.js │ │ │ ├── faSnowman.d.ts │ │ │ ├── faSnowman.js │ │ │ ├── faSnowplow.d.ts │ │ │ ├── faSnowplow.js │ │ │ ├── faSoap.d.ts │ │ │ ├── faSoap.js │ │ │ ├── faSocks.d.ts │ │ │ ├── faSocks.js │ │ │ ├── faSolarPanel.d.ts │ │ │ ├── faSolarPanel.js │ │ │ ├── faSort.d.ts │ │ │ ├── faSort.js │ │ │ ├── faSortAlphaDown.d.ts │ │ │ ├── faSortAlphaDown.js │ │ │ ├── faSortAlphaDownAlt.d.ts │ │ │ ├── faSortAlphaDownAlt.js │ │ │ ├── faSortAlphaUp.d.ts │ │ │ ├── faSortAlphaUp.js │ │ │ ├── faSortAlphaUpAlt.d.ts │ │ │ ├── faSortAlphaUpAlt.js │ │ │ ├── faSortAmountDown.d.ts │ │ │ ├── faSortAmountDown.js │ │ │ ├── faSortAmountDownAlt.d.ts │ │ │ ├── faSortAmountDownAlt.js │ │ │ ├── faSortAmountUp.d.ts │ │ │ ├── faSortAmountUp.js │ │ │ ├── faSortAmountUpAlt.d.ts │ │ │ ├── faSortAmountUpAlt.js │ │ │ ├── faSortDown.d.ts │ │ │ ├── faSortDown.js │ │ │ ├── faSortNumericDown.d.ts │ │ │ ├── faSortNumericDown.js │ │ │ ├── faSortNumericDownAlt.d.ts │ │ │ ├── faSortNumericDownAlt.js │ │ │ ├── faSortNumericUp.d.ts │ │ │ ├── faSortNumericUp.js │ │ │ ├── faSortNumericUpAlt.d.ts │ │ │ ├── faSortNumericUpAlt.js │ │ │ ├── faSortUp.d.ts │ │ │ ├── faSortUp.js │ │ │ ├── faSpa.d.ts │ │ │ ├── faSpa.js │ │ │ ├── faSpaceShuttle.d.ts │ │ │ ├── faSpaceShuttle.js │ │ │ ├── faSpellCheck.d.ts │ │ │ ├── faSpellCheck.js │ │ │ ├── faSpider.d.ts │ │ │ ├── faSpider.js │ │ │ ├── faSpinner.d.ts │ │ │ ├── faSpinner.js │ │ │ ├── faSplotch.d.ts │ │ │ ├── faSplotch.js │ │ │ ├── faSprayCan.d.ts │ │ │ ├── faSprayCan.js │ │ │ ├── faSquare.d.ts │ │ │ ├── faSquare.js │ │ │ ├── faSquareFull.d.ts │ │ │ ├── faSquareFull.js │ │ │ ├── faSquareRootAlt.d.ts │ │ │ ├── faSquareRootAlt.js │ │ │ ├── faStamp.d.ts │ │ │ ├── faStamp.js │ │ │ ├── faStar.d.ts │ │ │ ├── faStar.js │ │ │ ├── faStarAndCrescent.d.ts │ │ │ ├── faStarAndCrescent.js │ │ │ ├── faStarHalf.d.ts │ │ │ ├── faStarHalf.js │ │ │ ├── faStarHalfAlt.d.ts │ │ │ ├── faStarHalfAlt.js │ │ │ ├── faStarOfDavid.d.ts │ │ │ ├── faStarOfDavid.js │ │ │ ├── faStarOfLife.d.ts │ │ │ ├── faStarOfLife.js │ │ │ ├── faStepBackward.d.ts │ │ │ ├── faStepBackward.js │ │ │ ├── faStepForward.d.ts │ │ │ ├── faStepForward.js │ │ │ ├── faStethoscope.d.ts │ │ │ ├── faStethoscope.js │ │ │ ├── faStickyNote.d.ts │ │ │ ├── faStickyNote.js │ │ │ ├── faStop.d.ts │ │ │ ├── faStop.js │ │ │ ├── faStopCircle.d.ts │ │ │ ├── faStopCircle.js │ │ │ ├── faStopwatch.d.ts │ │ │ ├── faStopwatch.js │ │ │ ├── faStopwatch20.d.ts │ │ │ ├── faStopwatch20.js │ │ │ ├── faStore.d.ts │ │ │ ├── faStore.js │ │ │ ├── faStoreAlt.d.ts │ │ │ ├── faStoreAlt.js │ │ │ ├── faStoreAltSlash.d.ts │ │ │ ├── faStoreAltSlash.js │ │ │ ├── faStoreSlash.d.ts │ │ │ ├── faStoreSlash.js │ │ │ ├── faStream.d.ts │ │ │ ├── faStream.js │ │ │ ├── faStreetView.d.ts │ │ │ ├── faStreetView.js │ │ │ ├── faStrikethrough.d.ts │ │ │ ├── faStrikethrough.js │ │ │ ├── faStroopwafel.d.ts │ │ │ ├── faStroopwafel.js │ │ │ ├── faSubscript.d.ts │ │ │ ├── faSubscript.js │ │ │ ├── faSubway.d.ts │ │ │ ├── faSubway.js │ │ │ ├── faSuitcase.d.ts │ │ │ ├── faSuitcase.js │ │ │ ├── faSuitcaseRolling.d.ts │ │ │ ├── faSuitcaseRolling.js │ │ │ ├── faSun.d.ts │ │ │ ├── faSun.js │ │ │ ├── faSuperscript.d.ts │ │ │ ├── faSuperscript.js │ │ │ ├── faSurprise.d.ts │ │ │ ├── faSurprise.js │ │ │ ├── faSwatchbook.d.ts │ │ │ ├── faSwatchbook.js │ │ │ ├── faSwimmer.d.ts │ │ │ ├── faSwimmer.js │ │ │ ├── faSwimmingPool.d.ts │ │ │ ├── faSwimmingPool.js │ │ │ ├── faSynagogue.d.ts │ │ │ ├── faSynagogue.js │ │ │ ├── faSync.d.ts │ │ │ ├── faSync.js │ │ │ ├── faSyncAlt.d.ts │ │ │ ├── faSyncAlt.js │ │ │ ├── faSyringe.d.ts │ │ │ ├── faSyringe.js │ │ │ ├── faTable.d.ts │ │ │ ├── faTable.js │ │ │ ├── faTableTennis.d.ts │ │ │ ├── faTableTennis.js │ │ │ ├── faTablet.d.ts │ │ │ ├── faTablet.js │ │ │ ├── faTabletAlt.d.ts │ │ │ ├── faTabletAlt.js │ │ │ ├── faTablets.d.ts │ │ │ ├── faTablets.js │ │ │ ├── faTachometerAlt.d.ts │ │ │ ├── faTachometerAlt.js │ │ │ ├── faTag.d.ts │ │ │ ├── faTag.js │ │ │ ├── faTags.d.ts │ │ │ ├── faTags.js │ │ │ ├── faTape.d.ts │ │ │ ├── faTape.js │ │ │ ├── faTasks.d.ts │ │ │ ├── faTasks.js │ │ │ ├── faTaxi.d.ts │ │ │ ├── faTaxi.js │ │ │ ├── faTeeth.d.ts │ │ │ ├── faTeeth.js │ │ │ ├── faTeethOpen.d.ts │ │ │ ├── faTeethOpen.js │ │ │ ├── faTemperatureHigh.d.ts │ │ │ ├── faTemperatureHigh.js │ │ │ ├── faTemperatureLow.d.ts │ │ │ ├── faTemperatureLow.js │ │ │ ├── faTenge.d.ts │ │ │ ├── faTenge.js │ │ │ ├── faTerminal.d.ts │ │ │ ├── faTerminal.js │ │ │ ├── faTextHeight.d.ts │ │ │ ├── faTextHeight.js │ │ │ ├── faTextWidth.d.ts │ │ │ ├── faTextWidth.js │ │ │ ├── faTh.d.ts │ │ │ ├── faTh.js │ │ │ ├── faThLarge.d.ts │ │ │ ├── faThLarge.js │ │ │ ├── faThList.d.ts │ │ │ ├── faThList.js │ │ │ ├── faTheaterMasks.d.ts │ │ │ ├── faTheaterMasks.js │ │ │ ├── faThermometer.d.ts │ │ │ ├── faThermometer.js │ │ │ ├── faThermometerEmpty.d.ts │ │ │ ├── faThermometerEmpty.js │ │ │ ├── faThermometerFull.d.ts │ │ │ ├── faThermometerFull.js │ │ │ ├── faThermometerHalf.d.ts │ │ │ ├── faThermometerHalf.js │ │ │ ├── faThermometerQuarter.d.ts │ │ │ ├── faThermometerQuarter.js │ │ │ ├── faThermometerThreeQuarters.d.ts │ │ │ ├── faThermometerThreeQuarters.js │ │ │ ├── faThumbsDown.d.ts │ │ │ ├── faThumbsDown.js │ │ │ ├── faThumbsUp.d.ts │ │ │ ├── faThumbsUp.js │ │ │ ├── faThumbtack.d.ts │ │ │ ├── faThumbtack.js │ │ │ ├── faTicketAlt.d.ts │ │ │ ├── faTicketAlt.js │ │ │ ├── faTimes.d.ts │ │ │ ├── faTimes.js │ │ │ ├── faTimesCircle.d.ts │ │ │ ├── faTimesCircle.js │ │ │ ├── faTint.d.ts │ │ │ ├── faTint.js │ │ │ ├── faTintSlash.d.ts │ │ │ ├── faTintSlash.js │ │ │ ├── faTired.d.ts │ │ │ ├── faTired.js │ │ │ ├── faToggleOff.d.ts │ │ │ ├── faToggleOff.js │ │ │ ├── faToggleOn.d.ts │ │ │ ├── faToggleOn.js │ │ │ ├── faToilet.d.ts │ │ │ ├── faToilet.js │ │ │ ├── faToiletPaper.d.ts │ │ │ ├── faToiletPaper.js │ │ │ ├── faToiletPaperSlash.d.ts │ │ │ ├── faToiletPaperSlash.js │ │ │ ├── faToolbox.d.ts │ │ │ ├── faToolbox.js │ │ │ ├── faTools.d.ts │ │ │ ├── faTools.js │ │ │ ├── faTooth.d.ts │ │ │ ├── faTooth.js │ │ │ ├── faTorah.d.ts │ │ │ ├── faTorah.js │ │ │ ├── faToriiGate.d.ts │ │ │ ├── faToriiGate.js │ │ │ ├── faTractor.d.ts │ │ │ ├── faTractor.js │ │ │ ├── faTrademark.d.ts │ │ │ ├── faTrademark.js │ │ │ ├── faTrafficLight.d.ts │ │ │ ├── faTrafficLight.js │ │ │ ├── faTrailer.d.ts │ │ │ ├── faTrailer.js │ │ │ ├── faTrain.d.ts │ │ │ ├── faTrain.js │ │ │ ├── faTram.d.ts │ │ │ ├── faTram.js │ │ │ ├── faTransgender.d.ts │ │ │ ├── faTransgender.js │ │ │ ├── faTransgenderAlt.d.ts │ │ │ ├── faTransgenderAlt.js │ │ │ ├── faTrash.d.ts │ │ │ ├── faTrash.js │ │ │ ├── faTrashAlt.d.ts │ │ │ ├── faTrashAlt.js │ │ │ ├── faTrashRestore.d.ts │ │ │ ├── faTrashRestore.js │ │ │ ├── faTrashRestoreAlt.d.ts │ │ │ ├── faTrashRestoreAlt.js │ │ │ ├── faTree.d.ts │ │ │ ├── faTree.js │ │ │ ├── faTrophy.d.ts │ │ │ ├── faTrophy.js │ │ │ ├── faTruck.d.ts │ │ │ ├── faTruck.js │ │ │ ├── faTruckLoading.d.ts │ │ │ ├── faTruckLoading.js │ │ │ ├── faTruckMonster.d.ts │ │ │ ├── faTruckMonster.js │ │ │ ├── faTruckMoving.d.ts │ │ │ ├── faTruckMoving.js │ │ │ ├── faTruckPickup.d.ts │ │ │ ├── faTruckPickup.js │ │ │ ├── faTshirt.d.ts │ │ │ ├── faTshirt.js │ │ │ ├── faTty.d.ts │ │ │ ├── faTty.js │ │ │ ├── faTv.d.ts │ │ │ ├── faTv.js │ │ │ ├── faUmbrella.d.ts │ │ │ ├── faUmbrella.js │ │ │ ├── faUmbrellaBeach.d.ts │ │ │ ├── faUmbrellaBeach.js │ │ │ ├── faUnderline.d.ts │ │ │ ├── faUnderline.js │ │ │ ├── faUndo.d.ts │ │ │ ├── faUndo.js │ │ │ ├── faUndoAlt.d.ts │ │ │ ├── faUndoAlt.js │ │ │ ├── faUniversalAccess.d.ts │ │ │ ├── faUniversalAccess.js │ │ │ ├── faUniversity.d.ts │ │ │ ├── faUniversity.js │ │ │ ├── faUnlink.d.ts │ │ │ ├── faUnlink.js │ │ │ ├── faUnlock.d.ts │ │ │ ├── faUnlock.js │ │ │ ├── faUnlockAlt.d.ts │ │ │ ├── faUnlockAlt.js │ │ │ ├── faUpload.d.ts │ │ │ ├── faUpload.js │ │ │ ├── faUser.d.ts │ │ │ ├── faUser.js │ │ │ ├── faUserAlt.d.ts │ │ │ ├── faUserAlt.js │ │ │ ├── faUserAltSlash.d.ts │ │ │ ├── faUserAltSlash.js │ │ │ ├── faUserAstronaut.d.ts │ │ │ ├── faUserAstronaut.js │ │ │ ├── faUserCheck.d.ts │ │ │ ├── faUserCheck.js │ │ │ ├── faUserCircle.d.ts │ │ │ ├── faUserCircle.js │ │ │ ├── faUserClock.d.ts │ │ │ ├── faUserClock.js │ │ │ ├── faUserCog.d.ts │ │ │ ├── faUserCog.js │ │ │ ├── faUserEdit.d.ts │ │ │ ├── faUserEdit.js │ │ │ ├── faUserFriends.d.ts │ │ │ ├── faUserFriends.js │ │ │ ├── faUserGraduate.d.ts │ │ │ ├── faUserGraduate.js │ │ │ ├── faUserInjured.d.ts │ │ │ ├── faUserInjured.js │ │ │ ├── faUserLock.d.ts │ │ │ ├── faUserLock.js │ │ │ ├── faUserMd.d.ts │ │ │ ├── faUserMd.js │ │ │ ├── faUserMinus.d.ts │ │ │ ├── faUserMinus.js │ │ │ ├── faUserNinja.d.ts │ │ │ ├── faUserNinja.js │ │ │ ├── faUserNurse.d.ts │ │ │ ├── faUserNurse.js │ │ │ ├── faUserPlus.d.ts │ │ │ ├── faUserPlus.js │ │ │ ├── faUserSecret.d.ts │ │ │ ├── faUserSecret.js │ │ │ ├── faUserShield.d.ts │ │ │ ├── faUserShield.js │ │ │ ├── faUserSlash.d.ts │ │ │ ├── faUserSlash.js │ │ │ ├── faUserTag.d.ts │ │ │ ├── faUserTag.js │ │ │ ├── faUserTie.d.ts │ │ │ ├── faUserTie.js │ │ │ ├── faUserTimes.d.ts │ │ │ ├── faUserTimes.js │ │ │ ├── faUsers.d.ts │ │ │ ├── faUsers.js │ │ │ ├── faUsersCog.d.ts │ │ │ ├── faUsersCog.js │ │ │ ├── faUsersSlash.d.ts │ │ │ ├── faUsersSlash.js │ │ │ ├── faUtensilSpoon.d.ts │ │ │ ├── faUtensilSpoon.js │ │ │ ├── faUtensils.d.ts │ │ │ ├── faUtensils.js │ │ │ ├── faVectorSquare.d.ts │ │ │ ├── faVectorSquare.js │ │ │ ├── faVenus.d.ts │ │ │ ├── faVenus.js │ │ │ ├── faVenusDouble.d.ts │ │ │ ├── faVenusDouble.js │ │ │ ├── faVenusMars.d.ts │ │ │ ├── faVenusMars.js │ │ │ ├── faVest.d.ts │ │ │ ├── faVest.js │ │ │ ├── faVestPatches.d.ts │ │ │ ├── faVestPatches.js │ │ │ ├── faVial.d.ts │ │ │ ├── faVial.js │ │ │ ├── faVials.d.ts │ │ │ ├── faVials.js │ │ │ ├── faVideo.d.ts │ │ │ ├── faVideo.js │ │ │ ├── faVideoSlash.d.ts │ │ │ ├── faVideoSlash.js │ │ │ ├── faVihara.d.ts │ │ │ ├── faVihara.js │ │ │ ├── faVirus.d.ts │ │ │ ├── faVirus.js │ │ │ ├── faVirusSlash.d.ts │ │ │ ├── faVirusSlash.js │ │ │ ├── faViruses.d.ts │ │ │ ├── faViruses.js │ │ │ ├── faVoicemail.d.ts │ │ │ ├── faVoicemail.js │ │ │ ├── faVolleyballBall.d.ts │ │ │ ├── faVolleyballBall.js │ │ │ ├── faVolumeDown.d.ts │ │ │ ├── faVolumeDown.js │ │ │ ├── faVolumeMute.d.ts │ │ │ ├── faVolumeMute.js │ │ │ ├── faVolumeOff.d.ts │ │ │ ├── faVolumeOff.js │ │ │ ├── faVolumeUp.d.ts │ │ │ ├── faVolumeUp.js │ │ │ ├── faVoteYea.d.ts │ │ │ ├── faVoteYea.js │ │ │ ├── faVrCardboard.d.ts │ │ │ ├── faVrCardboard.js │ │ │ ├── faWalking.d.ts │ │ │ ├── faWalking.js │ │ │ ├── faWallet.d.ts │ │ │ ├── faWallet.js │ │ │ ├── faWarehouse.d.ts │ │ │ ├── faWarehouse.js │ │ │ ├── faWater.d.ts │ │ │ ├── faWater.js │ │ │ ├── faWaveSquare.d.ts │ │ │ ├── faWaveSquare.js │ │ │ ├── faWeight.d.ts │ │ │ ├── faWeight.js │ │ │ ├── faWeightHanging.d.ts │ │ │ ├── faWeightHanging.js │ │ │ ├── faWheelchair.d.ts │ │ │ ├── faWheelchair.js │ │ │ ├── faWifi.d.ts │ │ │ ├── faWifi.js │ │ │ ├── faWind.d.ts │ │ │ ├── faWind.js │ │ │ ├── faWindowClose.d.ts │ │ │ ├── faWindowClose.js │ │ │ ├── faWindowMaximize.d.ts │ │ │ ├── faWindowMaximize.js │ │ │ ├── faWindowMinimize.d.ts │ │ │ ├── faWindowMinimize.js │ │ │ ├── faWindowRestore.d.ts │ │ │ ├── faWindowRestore.js │ │ │ ├── faWineBottle.d.ts │ │ │ ├── faWineBottle.js │ │ │ ├── faWineGlass.d.ts │ │ │ ├── faWineGlass.js │ │ │ ├── faWineGlassAlt.d.ts │ │ │ ├── faWineGlassAlt.js │ │ │ ├── faWonSign.d.ts │ │ │ ├── faWonSign.js │ │ │ ├── faWrench.d.ts │ │ │ ├── faWrench.js │ │ │ ├── faXRay.d.ts │ │ │ ├── faXRay.js │ │ │ ├── faYenSign.d.ts │ │ │ ├── faYenSign.js │ │ │ ├── faYinYang.d.ts │ │ │ ├── faYinYang.js │ │ │ ├── index.d.ts │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── 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 │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ │ ├── otfs │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ ├── Font Awesome 5 Free-Regular-400.otf │ │ ├── Font Awesome 5 Free-Solid-900.otf │ │ └── README.md │ │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.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 │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.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-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.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 │ │ │ ├── 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 │ │ │ ├── dashcube.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-square.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-square.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 │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.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-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.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 │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.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-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.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-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.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-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.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-square.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 │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.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 │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.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 │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.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-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.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 │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-user.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-virus.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── maennchen │ └── zipstream-php │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── psalm.xml │ │ ├── src │ │ ├── Bigint.php │ │ ├── DeflateStream.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── EncodingException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── FileNotReadableException.php │ │ │ ├── IncompatibleOptionsException.php │ │ │ ├── OverflowException.php │ │ │ └── StreamNotReadableException.php │ │ ├── File.php │ │ ├── Option │ │ │ ├── Archive.php │ │ │ ├── File.php │ │ │ ├── Method.php │ │ │ └── Version.php │ │ ├── Stream.php │ │ └── ZipStream.php │ │ └── test │ │ ├── BigintTest.php │ │ ├── ZipStreamTest.php │ │ ├── bootstrap.php │ │ └── bug │ │ └── BugHonorFileTimeTest.php │ ├── markbaker │ ├── complex │ │ ├── README.md │ │ ├── classes │ │ │ ├── Autoloader.php │ │ │ ├── Bootstrap.php │ │ │ └── src │ │ │ │ ├── Complex.php │ │ │ │ ├── Exception.php │ │ │ │ ├── functions │ │ │ │ ├── abs.php │ │ │ │ ├── acos.php │ │ │ │ ├── acosh.php │ │ │ │ ├── acot.php │ │ │ │ ├── acoth.php │ │ │ │ ├── acsc.php │ │ │ │ ├── acsch.php │ │ │ │ ├── argument.php │ │ │ │ ├── asec.php │ │ │ │ ├── asech.php │ │ │ │ ├── asin.php │ │ │ │ ├── asinh.php │ │ │ │ ├── atan.php │ │ │ │ ├── atanh.php │ │ │ │ ├── conjugate.php │ │ │ │ ├── cos.php │ │ │ │ ├── cosh.php │ │ │ │ ├── cot.php │ │ │ │ ├── coth.php │ │ │ │ ├── csc.php │ │ │ │ ├── csch.php │ │ │ │ ├── exp.php │ │ │ │ ├── inverse.php │ │ │ │ ├── ln.php │ │ │ │ ├── log10.php │ │ │ │ ├── log2.php │ │ │ │ ├── negative.php │ │ │ │ ├── pow.php │ │ │ │ ├── rho.php │ │ │ │ ├── sec.php │ │ │ │ ├── sech.php │ │ │ │ ├── sin.php │ │ │ │ ├── sinh.php │ │ │ │ ├── sqrt.php │ │ │ │ ├── tan.php │ │ │ │ ├── tanh.php │ │ │ │ └── theta.php │ │ │ │ └── operations │ │ │ │ ├── add.php │ │ │ │ ├── divideby.php │ │ │ │ ├── divideinto.php │ │ │ │ ├── multiply.php │ │ │ │ └── subtract.php │ │ ├── composer.json │ │ ├── examples │ │ │ ├── complexTest.php │ │ │ ├── testFunctions.php │ │ │ └── testOperations.php │ │ └── license.md │ └── matrix │ │ ├── .github │ │ └── workflows │ │ │ └── main.yaml │ │ ├── README.md │ │ ├── buildPhar.php │ │ ├── classes │ │ └── src │ │ │ ├── Builder.php │ │ │ ├── Decomposition │ │ │ ├── Decomposition.php │ │ │ ├── LU.php │ │ │ └── QR.php │ │ │ ├── Exception.php │ │ │ ├── Functions.php │ │ │ ├── Functions │ │ │ ├── adjoint.php │ │ │ ├── antidiagonal.php │ │ │ ├── cofactors.php │ │ │ ├── determinant.php │ │ │ ├── diagonal.php │ │ │ ├── identity.php │ │ │ ├── inverse.php │ │ │ ├── minors.php │ │ │ ├── trace.php │ │ │ └── transpose.php │ │ │ ├── Matrix.php │ │ │ ├── Operations │ │ │ ├── add.php │ │ │ ├── directsum.php │ │ │ ├── divideby.php │ │ │ ├── divideinto.php │ │ │ ├── multiply.php │ │ │ └── subtract.php │ │ │ └── Operators │ │ │ ├── Addition.php │ │ │ ├── DirectSum.php │ │ │ ├── Division.php │ │ │ ├── Multiplication.php │ │ │ ├── Operator.php │ │ │ └── Subtraction.php │ │ ├── composer.json │ │ ├── examples │ │ └── test.php │ │ ├── infection.json.dist │ │ ├── license.md │ │ └── phpstan.neon │ ├── monolog │ └── monolog │ │ ├── .gitignore │ │ ├── CHANGELOG.mdown │ │ ├── LICENSE │ │ ├── README.mdown │ │ ├── composer.json │ │ ├── doc │ │ ├── extending.md │ │ └── usage.md │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── Monolog │ │ │ ├── Formatter │ │ │ ├── FormatterInterface.php │ │ │ ├── JsonFormatter.php │ │ │ ├── LineFormatter.php │ │ │ └── WildfireFormatter.php │ │ │ ├── Handler │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── BufferHandler.php │ │ │ ├── FingersCrossedHandler.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── GroupHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── MailHandler.php │ │ │ ├── NativeMailerHandler.php │ │ │ ├── NullHandler.php │ │ │ ├── RotatingFileHandler.php │ │ │ ├── StreamHandler.php │ │ │ ├── SwiftMailerHandler.php │ │ │ ├── SyslogHandler.php │ │ │ └── TestHandler.php │ │ │ ├── Logger.php │ │ │ └── Processor │ │ │ ├── IntrospectionProcessor.php │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ ├── MemoryProcessor.php │ │ │ ├── MemoryUsageProcessor.php │ │ │ └── WebProcessor.php │ │ └── tests │ │ ├── Monolog │ │ ├── Formatter │ │ │ ├── JsonFormatterTest.php │ │ │ ├── LineFormatterTest.php │ │ │ └── WildfireFormatterTest.php │ │ ├── Functional │ │ │ └── Handler │ │ │ │ └── FirePHPHandlerTest.php │ │ ├── Handler │ │ │ ├── AbstractHandlerTest.php │ │ │ ├── AbstractProcessingHandlerTest.php │ │ │ ├── BufferHandlerTest.php │ │ │ ├── FingersCrossedHandlerTest.php │ │ │ ├── FirePHPHandlerTest.php │ │ │ ├── Fixtures │ │ │ │ └── .gitkeep │ │ │ ├── GroupHandlerTest.php │ │ │ ├── MailHandlerTest.php │ │ │ ├── NullHandlerTest.php │ │ │ ├── RotatingFileHandlerTest.php │ │ │ ├── StreamHandlerTest.php │ │ │ ├── SyslogHandlerTest.php │ │ │ └── TestHandlerTest.php │ │ ├── LoggerTest.php │ │ ├── Processor │ │ │ ├── IntrospectionProcessorTest.php │ │ │ ├── MemoryPeakUsageProcessorTest.php │ │ │ ├── MemoryUsageProcessorTest.php │ │ │ └── WebProcessorTest.php │ │ └── TestCase.php │ │ └── bootstrap.php │ ├── myclabs │ └── php-enum │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── psalm.xml │ │ └── src │ │ ├── Enum.php │ │ └── PHPUnit │ │ └── Comparator.php │ ├── opis │ └── closure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── functions.php │ │ └── src │ │ ├── Analyzer.php │ │ ├── ClosureContext.php │ │ ├── ClosureScope.php │ │ ├── ClosureStream.php │ │ ├── ISecurityProvider.php │ │ ├── ReflectionClosure.php │ │ ├── SecurityException.php │ │ ├── SecurityProvider.php │ │ ├── SelfReference.php │ │ └── SerializableClosure.php │ ├── php-di │ ├── invoker │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FUNDING.yml │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .phpcs.xml.dist │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ │ └── parameter-resolvers.md │ │ └── src │ │ │ ├── CallableResolver.php │ │ │ ├── Exception │ │ │ ├── InvocationException.php │ │ │ ├── NotCallableException.php │ │ │ └── NotEnoughParametersException.php │ │ │ ├── Invoker.php │ │ │ ├── InvokerInterface.php │ │ │ ├── ParameterResolver │ │ │ ├── AssociativeArrayResolver.php │ │ │ ├── Container │ │ │ │ ├── ParameterNameContainerResolver.php │ │ │ │ └── TypeHintContainerResolver.php │ │ │ ├── DefaultValueResolver.php │ │ │ ├── NumericArrayResolver.php │ │ │ ├── ParameterResolver.php │ │ │ ├── ResolverChain.php │ │ │ └── TypeHintResolver.php │ │ │ └── Reflection │ │ │ └── CallableReflection.php │ ├── php-di │ │ ├── LICENSE │ │ ├── README.md │ │ ├── change-log.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── Annotation │ │ │ │ ├── Inject.php │ │ │ │ └── Injectable.php │ │ │ ├── CompiledContainer.php │ │ │ ├── Compiler │ │ │ │ ├── Compiler.php │ │ │ │ ├── ObjectCreationCompiler.php │ │ │ │ ├── RequestedEntryHolder.php │ │ │ │ └── Template.php │ │ │ ├── Container.php │ │ │ ├── ContainerBuilder.php │ │ │ ├── Definition │ │ │ │ ├── ArrayDefinition.php │ │ │ │ ├── ArrayDefinitionExtension.php │ │ │ │ ├── AutowireDefinition.php │ │ │ │ ├── DecoratorDefinition.php │ │ │ │ ├── Definition.php │ │ │ │ ├── Dumper │ │ │ │ │ └── ObjectDefinitionDumper.php │ │ │ │ ├── EnvironmentVariableDefinition.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidAnnotation.php │ │ │ │ │ └── InvalidDefinition.php │ │ │ │ ├── ExtendsPreviousDefinition.php │ │ │ │ ├── FactoryDefinition.php │ │ │ │ ├── Helper │ │ │ │ │ ├── AutowireDefinitionHelper.php │ │ │ │ │ ├── CreateDefinitionHelper.php │ │ │ │ │ ├── DefinitionHelper.php │ │ │ │ │ └── FactoryDefinitionHelper.php │ │ │ │ ├── InstanceDefinition.php │ │ │ │ ├── ObjectDefinition.php │ │ │ │ ├── ObjectDefinition │ │ │ │ │ ├── MethodInjection.php │ │ │ │ │ └── PropertyInjection.php │ │ │ │ ├── Reference.php │ │ │ │ ├── Resolver │ │ │ │ │ ├── ArrayResolver.php │ │ │ │ │ ├── DecoratorResolver.php │ │ │ │ │ ├── DefinitionResolver.php │ │ │ │ │ ├── EnvironmentVariableResolver.php │ │ │ │ │ ├── FactoryResolver.php │ │ │ │ │ ├── InstanceInjector.php │ │ │ │ │ ├── ObjectCreator.php │ │ │ │ │ ├── ParameterResolver.php │ │ │ │ │ └── ResolverDispatcher.php │ │ │ │ ├── SelfResolvingDefinition.php │ │ │ │ ├── Source │ │ │ │ │ ├── AnnotationBasedAutowiring.php │ │ │ │ │ ├── Autowiring.php │ │ │ │ │ ├── DefinitionArray.php │ │ │ │ │ ├── DefinitionFile.php │ │ │ │ │ ├── DefinitionNormalizer.php │ │ │ │ │ ├── DefinitionSource.php │ │ │ │ │ ├── MutableDefinitionSource.php │ │ │ │ │ ├── NoAutowiring.php │ │ │ │ │ ├── ReflectionBasedAutowiring.php │ │ │ │ │ ├── SourceCache.php │ │ │ │ │ └── SourceChain.php │ │ │ │ ├── StringDefinition.php │ │ │ │ └── ValueDefinition.php │ │ │ ├── DependencyException.php │ │ │ ├── Factory │ │ │ │ └── RequestedEntry.php │ │ │ ├── FactoryInterface.php │ │ │ ├── Invoker │ │ │ │ ├── DefinitionParameterResolver.php │ │ │ │ └── FactoryParameterResolver.php │ │ │ ├── NotFoundException.php │ │ │ ├── Proxy │ │ │ │ └── ProxyFactory.php │ │ │ └── functions.php │ │ └── support.md │ └── phpdoc-reader │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── .phpcs.xml.dist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── PhpDocReader │ │ ├── AnnotationException.php │ │ ├── PhpDocReader.php │ │ └── PhpParser │ │ ├── TokenParser.php │ │ └── UseStatementParser.php │ ├── phpoffice │ └── phpspreadsheet │ │ ├── .phpcs.xml.dist │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── PhpSpreadsheet │ │ ├── Calculation │ │ ├── Calculation.php │ │ ├── Category.php │ │ ├── Database.php │ │ ├── Database │ │ │ ├── DAverage.php │ │ │ ├── DCount.php │ │ │ ├── DCountA.php │ │ │ ├── DGet.php │ │ │ ├── DMax.php │ │ │ ├── DMin.php │ │ │ ├── DProduct.php │ │ │ ├── DStDev.php │ │ │ ├── DStDevP.php │ │ │ ├── DSum.php │ │ │ ├── DVar.php │ │ │ ├── DVarP.php │ │ │ └── DatabaseAbstract.php │ │ ├── DateTime.php │ │ ├── Engine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Engineering.php │ │ ├── Engineering │ │ │ ├── BesselI.php │ │ │ ├── BesselJ.php │ │ │ ├── BesselK.php │ │ │ ├── BesselY.php │ │ │ ├── BitWise.php │ │ │ ├── Compare.php │ │ │ ├── ConvertBase.php │ │ │ ├── ConvertBinary.php │ │ │ ├── ConvertDecimal.php │ │ │ ├── ConvertHex.php │ │ │ ├── ConvertOctal.php │ │ │ ├── ConvertUOM.php │ │ │ ├── Erf.php │ │ │ └── ErfC.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Functions.php │ │ ├── Internal │ │ │ ├── MakeMatrix.php │ │ │ └── WildcardMatch.php │ │ ├── Logical.php │ │ ├── Logical │ │ │ ├── Boolean.php │ │ │ ├── Conditional.php │ │ │ └── Operations.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── MathTrig │ │ │ ├── Ceiling.php │ │ │ ├── CeilingMath.php │ │ │ ├── CeilingPrecise.php │ │ │ ├── Floor.php │ │ │ ├── FloorMath.php │ │ │ ├── FloorPrecise.php │ │ │ ├── IntClass.php │ │ │ ├── Mround.php │ │ │ ├── Roman.php │ │ │ ├── Round.php │ │ │ ├── RoundDown.php │ │ │ ├── RoundUp.php │ │ │ └── Trunc.php │ │ ├── Statistical.php │ │ ├── Statistical │ │ │ ├── AggregateBase.php │ │ │ ├── Averages.php │ │ │ ├── Conditional.php │ │ │ ├── Counts.php │ │ │ ├── MaxMinBase.php │ │ │ ├── Maximum.php │ │ │ ├── Minimum.php │ │ │ ├── Permutations.php │ │ │ ├── StandardDeviations.php │ │ │ ├── VarianceBase.php │ │ │ └── Variances.php │ │ ├── TextData.php │ │ ├── Token │ │ │ └── Stack.php │ │ ├── Web.php │ │ ├── functionlist.txt │ │ └── locale │ │ │ ├── bg │ │ │ ├── config │ │ │ └── functions │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ │ ├── Cell │ │ ├── AddressHelper.php │ │ ├── AdvancedValueBinder.php │ │ ├── Cell.php │ │ ├── Coordinate.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DataValidator.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ ├── IValueBinder.php │ │ └── StringValueBinder.php │ │ ├── Chart │ │ ├── Axis.php │ │ ├── Chart.php │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Exception.php │ │ ├── GridLines.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Properties.php │ │ ├── Renderer │ │ │ ├── IRenderer.php │ │ │ ├── JpGraph.php │ │ │ └── PHP Charting Libraries.txt │ │ └── Title.php │ │ ├── Collection │ │ ├── Cells.php │ │ ├── CellsFactory.php │ │ └── Memory.php │ │ ├── Comment.php │ │ ├── DefinedName.php │ │ ├── Document │ │ ├── Properties.php │ │ └── Security.php │ │ ├── DocumentGenerator.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper │ │ ├── Html.php │ │ └── Sample.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedFormula.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── BaseReader.php │ │ ├── Csv.php │ │ ├── DefaultReadFilter.php │ │ ├── Exception.php │ │ ├── Gnumeric.php │ │ ├── Gnumeric │ │ │ └── PageSetup.php │ │ ├── Html.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── Ods.php │ │ ├── Ods │ │ │ ├── PageSettings.php │ │ │ └── Properties.php │ │ ├── Security │ │ │ └── XmlScanner.php │ │ ├── Slk.php │ │ ├── Xls.php │ │ ├── Xls │ │ │ ├── Color.php │ │ │ ├── Color │ │ │ │ ├── BIFF5.php │ │ │ │ ├── BIFF8.php │ │ │ │ └── BuiltIn.php │ │ │ ├── ErrorCode.php │ │ │ ├── Escher.php │ │ │ ├── MD5.php │ │ │ ├── RC4.php │ │ │ └── Style │ │ │ │ ├── Border.php │ │ │ │ └── FillPattern.php │ │ ├── Xlsx.php │ │ ├── Xlsx │ │ │ ├── AutoFilter.php │ │ │ ├── BaseParserClass.php │ │ │ ├── Chart.php │ │ │ ├── ColumnAndRowAttributes.php │ │ │ ├── ConditionalStyles.php │ │ │ ├── DataValidations.php │ │ │ ├── Hyperlinks.php │ │ │ ├── PageSetup.php │ │ │ ├── Properties.php │ │ │ ├── SheetViewOptions.php │ │ │ ├── SheetViews.php │ │ │ ├── Styles.php │ │ │ └── Theme.php │ │ ├── Xml.php │ │ └── Xml │ │ │ └── PageSettings.php │ │ ├── ReferenceHelper.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── RichText.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PasswordHasher.php │ │ ├── StringHelper.php │ │ ├── TimeZone.php │ │ ├── Trend │ │ │ ├── BestFit.php │ │ │ ├── ExponentialBestFit.php │ │ │ ├── LinearBestFit.php │ │ │ ├── LogarithmicBestFit.php │ │ │ ├── PolynomialBestFit.php │ │ │ ├── PowerBestFit.php │ │ │ └── Trend.php │ │ ├── XMLWriter.php │ │ └── Xls.php │ │ ├── Spreadsheet.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── ConditionalFormatting │ │ │ ├── ConditionalDataBar.php │ │ │ ├── ConditionalDataBarExtension.php │ │ │ ├── ConditionalFormatValueObject.php │ │ │ └── ConditionalFormattingRuleExtension.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ ├── Protection.php │ │ ├── Style.php │ │ └── Supervisor.php │ │ ├── Worksheet │ │ ├── AutoFilter.php │ │ ├── AutoFilter │ │ │ ├── Column.php │ │ │ └── Column │ │ │ │ └── Rule.php │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── Column.php │ │ ├── ColumnCellIterator.php │ │ ├── ColumnDimension.php │ │ ├── ColumnIterator.php │ │ ├── Dimension.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── Iterator.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowCellIterator.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ ├── SheetView.php │ │ └── Worksheet.php │ │ └── Writer │ │ ├── BaseWriter.php │ │ ├── Csv.php │ │ ├── Exception.php │ │ ├── Html.php │ │ ├── IWriter.php │ │ ├── Ods.php │ │ ├── Ods │ │ ├── Cell │ │ │ ├── Comment.php │ │ │ └── Style.php │ │ ├── Content.php │ │ ├── Formula.php │ │ ├── Meta.php │ │ ├── MetaInf.php │ │ ├── Mimetype.php │ │ ├── NamedExpressions.php │ │ ├── Settings.php │ │ ├── Styles.php │ │ ├── Thumbnails.php │ │ └── WriterPart.php │ │ ├── Pdf.php │ │ ├── Pdf │ │ ├── Dompdf.php │ │ ├── Mpdf.php │ │ └── Tcpdf.php │ │ ├── Xls.php │ │ ├── Xls │ │ ├── BIFFwriter.php │ │ ├── Escher.php │ │ ├── Font.php │ │ ├── Parser.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ └── Xf.php │ │ ├── Xlsx.php │ │ └── Xlsx │ │ ├── Chart.php │ │ ├── Comments.php │ │ ├── ContentTypes.php │ │ ├── DefinedNames.php │ │ ├── DocProps.php │ │ ├── Drawing.php │ │ ├── Rels.php │ │ ├── RelsRibbon.php │ │ ├── RelsVBA.php │ │ ├── StringTable.php │ │ ├── Style.php │ │ ├── Theme.php │ │ ├── Workbook.php │ │ ├── Worksheet.php │ │ ├── WriterPart.php │ │ └── Xlfn.php │ ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── smarty │ └── smarty │ │ ├── CHANGELOG.md │ │ ├── COMPOSER_RELEASE_NOTES.txt │ │ ├── INHERITANCE_RELEASE_NOTES.txt │ │ ├── LICENSE │ │ ├── NEW_FEATURES.txt │ │ ├── README │ │ ├── README.md │ │ ├── SMARTY_2_BC_NOTES.txt │ │ ├── SMARTY_3.0_BC_NOTES.txt │ │ ├── SMARTY_3.1_NOTES.txt │ │ ├── composer.json │ │ ├── demo │ │ ├── configs │ │ │ └── test.conf │ │ ├── index.php │ │ ├── plugins │ │ │ ├── cacheresource.apc.php │ │ │ ├── cacheresource.memcache.php │ │ │ ├── cacheresource.mysql.php │ │ │ ├── cacheresource.pdo.php │ │ │ ├── cacheresource.pdo_gzip.php │ │ │ ├── resource.extendsall.php │ │ │ ├── resource.mysql.php │ │ │ └── resource.mysqls.php │ │ └── templates │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ └── index.tpl │ │ ├── expectException │ │ ├── lexer │ │ ├── smarty_internal_configfilelexer.plex │ │ ├── smarty_internal_configfileparser.y │ │ ├── smarty_internal_templatelexer.plex │ │ └── smarty_internal_templateparser.y │ │ └── libs │ │ ├── Autoloader.php │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── bootstrap.php │ │ ├── debug.tpl │ │ ├── plugins │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.escape.php │ │ ├── modifier.mb_wordwrap.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.truncate.php │ │ ├── modifiercompiler.cat.php │ │ ├── modifiercompiler.count_characters.php │ │ ├── modifiercompiler.count_paragraphs.php │ │ ├── modifiercompiler.count_sentences.php │ │ ├── modifiercompiler.count_words.php │ │ ├── modifiercompiler.default.php │ │ ├── modifiercompiler.escape.php │ │ ├── modifiercompiler.from_charset.php │ │ ├── modifiercompiler.indent.php │ │ ├── modifiercompiler.lower.php │ │ ├── modifiercompiler.noprint.php │ │ ├── modifiercompiler.string_format.php │ │ ├── modifiercompiler.strip.php │ │ ├── modifiercompiler.strip_tags.php │ │ ├── modifiercompiler.to_charset.php │ │ ├── modifiercompiler.unescape.php │ │ ├── modifiercompiler.upper.php │ │ ├── modifiercompiler.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.literal_compiler_param.php │ │ ├── shared.make_timestamp.php │ │ ├── shared.mb_str_replace.php │ │ ├── shared.mb_unicode.php │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ ├── smarty_cacheresource.php │ │ ├── smarty_cacheresource_custom.php │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ ├── smarty_data.php │ │ ├── smarty_internal_block.php │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_block_child.php │ │ ├── smarty_internal_compile_block_parent.php │ │ ├── smarty_internal_compile_break.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_child.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_continue.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_include_php.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_make_nocache.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_parent.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_foreachsection.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_php.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_setfilter.php │ │ ├── smarty_internal_compile_shared_inheritance.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_errorhandler.php │ │ ├── smarty_internal_extension_handler.php │ │ ├── smarty_internal_method_addautoloadfilters.php │ │ ├── smarty_internal_method_adddefaultmodifiers.php │ │ ├── smarty_internal_method_append.php │ │ ├── smarty_internal_method_appendbyref.php │ │ ├── smarty_internal_method_assignbyref.php │ │ ├── smarty_internal_method_assignglobal.php │ │ ├── smarty_internal_method_clearallassign.php │ │ ├── smarty_internal_method_clearallcache.php │ │ ├── smarty_internal_method_clearassign.php │ │ ├── smarty_internal_method_clearcache.php │ │ ├── smarty_internal_method_clearcompiledtemplate.php │ │ ├── smarty_internal_method_clearconfig.php │ │ ├── smarty_internal_method_compileallconfig.php │ │ ├── smarty_internal_method_compilealltemplates.php │ │ ├── smarty_internal_method_configload.php │ │ ├── smarty_internal_method_createdata.php │ │ ├── smarty_internal_method_getautoloadfilters.php │ │ ├── smarty_internal_method_getconfigvariable.php │ │ ├── smarty_internal_method_getconfigvars.php │ │ ├── smarty_internal_method_getdebugtemplate.php │ │ ├── smarty_internal_method_getdefaultmodifiers.php │ │ ├── smarty_internal_method_getglobal.php │ │ ├── smarty_internal_method_getregisteredobject.php │ │ ├── smarty_internal_method_getstreamvariable.php │ │ ├── smarty_internal_method_gettags.php │ │ ├── smarty_internal_method_gettemplatevars.php │ │ ├── smarty_internal_method_literals.php │ │ ├── smarty_internal_method_loadfilter.php │ │ ├── smarty_internal_method_loadplugin.php │ │ ├── smarty_internal_method_mustcompile.php │ │ ├── smarty_internal_method_registercacheresource.php │ │ ├── smarty_internal_method_registerclass.php │ │ ├── smarty_internal_method_registerdefaultconfighandler.php │ │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ │ ├── smarty_internal_method_registerfilter.php │ │ ├── smarty_internal_method_registerobject.php │ │ ├── smarty_internal_method_registerplugin.php │ │ ├── smarty_internal_method_registerresource.php │ │ ├── smarty_internal_method_setautoloadfilters.php │ │ ├── smarty_internal_method_setdebugtemplate.php │ │ ├── smarty_internal_method_setdefaultmodifiers.php │ │ ├── smarty_internal_method_unloadfilter.php │ │ ├── smarty_internal_method_unregistercacheresource.php │ │ ├── smarty_internal_method_unregisterfilter.php │ │ ├── smarty_internal_method_unregisterobject.php │ │ ├── smarty_internal_method_unregisterplugin.php │ │ ├── smarty_internal_method_unregisterresource.php │ │ ├── smarty_internal_nocache_insert.php │ │ ├── smarty_internal_parsetree.php │ │ ├── smarty_internal_parsetree_code.php │ │ ├── smarty_internal_parsetree_dq.php │ │ ├── smarty_internal_parsetree_dqcontent.php │ │ ├── smarty_internal_parsetree_tag.php │ │ ├── smarty_internal_parsetree_template.php │ │ ├── smarty_internal_parsetree_text.php │ │ ├── smarty_internal_resource_eval.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_registered.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_runtime_cachemodify.php │ │ ├── smarty_internal_runtime_cacheresourcefile.php │ │ ├── smarty_internal_runtime_capture.php │ │ ├── smarty_internal_runtime_codeframe.php │ │ ├── smarty_internal_runtime_filterhandler.php │ │ ├── smarty_internal_runtime_foreach.php │ │ ├── smarty_internal_runtime_getincludepath.php │ │ ├── smarty_internal_runtime_inheritance.php │ │ ├── smarty_internal_runtime_make_nocache.php │ │ ├── smarty_internal_runtime_tplfunction.php │ │ ├── smarty_internal_runtime_updatecache.php │ │ ├── smarty_internal_runtime_updatescope.php │ │ ├── smarty_internal_runtime_writefile.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatebase.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_testinstall.php │ │ ├── smarty_internal_undefined.php │ │ ├── smarty_resource.php │ │ ├── smarty_resource_custom.php │ │ ├── smarty_resource_recompiled.php │ │ ├── smarty_resource_uncompiled.php │ │ ├── smarty_security.php │ │ ├── smarty_template_cached.php │ │ ├── smarty_template_compiled.php │ │ ├── smarty_template_config.php │ │ ├── smarty_template_resource_base.php │ │ ├── smarty_template_source.php │ │ ├── smarty_undefined_variable.php │ │ ├── smarty_variable.php │ │ ├── smartycompilerexception.php │ │ └── smartyexception.php │ ├── symfony │ └── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ └── twbs │ └── bootstrap │ ├── .babelrc.js │ ├── .browserslistrc │ ├── .bundlewatch.config.json │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .github │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── SUPPORT.md │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows │ │ ├── browserstack.yml │ │ ├── bundlewatch.yml │ │ ├── codeql.yml │ │ ├── css.yml │ │ ├── docs.yml │ │ ├── js.yml │ │ ├── lint.yml │ │ ├── node-sass.yml │ │ └── release-notes.yml │ ├── .gitignore │ ├── .stylelintignore │ ├── .stylelintrc │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── build │ ├── .eslintrc.json │ ├── banner.js │ ├── build-plugins.js │ ├── change-version.js │ ├── generate-sri.js │ ├── postcss.config.js │ ├── rollup.config.js │ ├── svgo.yml │ ├── vnu-jar.js │ └── zip-examples.js │ ├── composer.json │ ├── config.yml │ ├── dist │ ├── 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 │ ├── js │ ├── dist │ │ ├── alert.js │ │ ├── alert.js.map │ │ ├── base-component.js │ │ ├── base-component.js.map │ │ ├── button.js │ │ ├── button.js.map │ │ ├── carousel.js │ │ ├── carousel.js.map │ │ ├── collapse.js │ │ ├── collapse.js.map │ │ ├── dom │ │ │ ├── data.js │ │ │ ├── data.js.map │ │ │ ├── event-handler.js │ │ │ ├── event-handler.js.map │ │ │ ├── manipulator.js │ │ │ ├── manipulator.js.map │ │ │ ├── selector-engine.js │ │ │ └── selector-engine.js.map │ │ ├── dropdown.js │ │ ├── dropdown.js.map │ │ ├── modal.js │ │ ├── modal.js.map │ │ ├── offcanvas.js │ │ ├── offcanvas.js.map │ │ ├── popover.js │ │ ├── popover.js.map │ │ ├── scrollspy.js │ │ ├── scrollspy.js.map │ │ ├── tab.js │ │ ├── tab.js.map │ │ ├── toast.js │ │ ├── toast.js.map │ │ ├── tooltip.js │ │ └── tooltip.js.map │ ├── index.esm.js │ ├── index.umd.js │ ├── src │ │ ├── alert.js │ │ ├── base-component.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dom │ │ │ ├── data.js │ │ │ ├── event-handler.js │ │ │ ├── manipulator.js │ │ │ └── selector-engine.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── offcanvas.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── toast.js │ │ ├── tooltip.js │ │ └── util │ │ │ ├── index.js │ │ │ ├── sanitizer.js │ │ │ └── scrollbar.js │ └── tests │ │ ├── README.md │ │ ├── browsers.js │ │ ├── helpers │ │ └── fixture.js │ │ ├── integration │ │ ├── bundle-modularity.js │ │ ├── bundle.js │ │ ├── index.html │ │ ├── rollup.bundle-modularity.js │ │ └── rollup.bundle.js │ │ ├── karma.conf.js │ │ ├── unit │ │ ├── .eslintrc.json │ │ ├── alert.spec.js │ │ ├── button.spec.js │ │ ├── carousel.spec.js │ │ ├── collapse.spec.js │ │ ├── dom │ │ │ ├── data.spec.js │ │ │ ├── event-handler.spec.js │ │ │ ├── manipulator.spec.js │ │ │ └── selector-engine.spec.js │ │ ├── dropdown.spec.js │ │ ├── jquery.spec.js │ │ ├── modal.spec.js │ │ ├── offcanvas.spec.js │ │ ├── popover.spec.js │ │ ├── scrollspy.spec.js │ │ ├── tab.spec.js │ │ ├── toast.spec.js │ │ ├── tooltip.spec.js │ │ └── util │ │ │ ├── index.spec.js │ │ │ ├── sanitizer.spec.js │ │ │ └── scrollbar.spec.js │ │ └── visual │ │ ├── alert.html │ │ ├── button.html │ │ ├── carousel.html │ │ ├── collapse.html │ │ ├── dropdown.html │ │ ├── modal.html │ │ ├── popover.html │ │ ├── scrollspy.html │ │ ├── tab.html │ │ ├── toast.html │ │ └── tooltip.html │ ├── nuget │ ├── MyGet.ps1 │ ├── bootstrap.nuspec │ ├── bootstrap.png │ └── bootstrap.sass.nuspec │ ├── package-lock.json │ ├── package.js │ ├── package.json │ ├── 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 │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _offcanvas.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.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 │ │ ├── _colored-links.scss │ │ ├── _position.scss │ │ ├── _ratio.scss │ │ ├── _stretched-link.scss │ │ ├── _text-truncation.scss │ │ └── _visually-hidden.scss │ ├── mixins │ │ ├── _alert.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.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 │ ├── utilities │ │ └── _api.scss │ └── vendor │ │ └── _rfs.scss │ └── site │ ├── .eslintrc.json │ ├── assets │ ├── js │ │ ├── application.js │ │ ├── search.js │ │ └── vendor │ │ │ ├── anchor.min.js │ │ │ └── clipboard.min.js │ └── scss │ │ ├── _ads.scss │ │ ├── _algolia.scss │ │ ├── _anchor.scss │ │ ├── _brand.scss │ │ ├── _buttons.scss │ │ ├── _callouts.scss │ │ ├── _clipboard-js.scss │ │ ├── _colors.scss │ │ ├── _component-examples.scss │ │ ├── _content.scss │ │ ├── _footer.scss │ │ ├── _layout.scss │ │ ├── _masthead.scss │ │ ├── _navbar.scss │ │ ├── _placeholder-img.scss │ │ ├── _sidebar.scss │ │ ├── _skippy.scss │ │ ├── _subnav.scss │ │ ├── _syntax.scss │ │ ├── _toc.scss │ │ ├── _variables.scss │ │ └── docs.scss │ ├── content │ ├── 404.md │ └── docs │ │ ├── 5.0 │ │ ├── _index.html │ │ ├── about │ │ │ ├── brand.md │ │ │ ├── license.md │ │ │ ├── overview.md │ │ │ ├── team.md │ │ │ └── translations.md │ │ ├── components │ │ │ ├── accordion.md │ │ │ ├── alerts.md │ │ │ ├── badge.md │ │ │ ├── breadcrumb.md │ │ │ ├── button-group.md │ │ │ ├── buttons.md │ │ │ ├── card.md │ │ │ ├── carousel.md │ │ │ ├── close-button.md │ │ │ ├── collapse.md │ │ │ ├── dropdowns.md │ │ │ ├── list-group.md │ │ │ ├── modal.md │ │ │ ├── navbar.md │ │ │ ├── navs-tabs.md │ │ │ ├── offcanvas.md │ │ │ ├── pagination.md │ │ │ ├── popovers.md │ │ │ ├── progress.md │ │ │ ├── scrollspy.md │ │ │ ├── spinners.md │ │ │ ├── toasts.md │ │ │ └── tooltips.md │ │ ├── content │ │ │ ├── figures.md │ │ │ ├── images.md │ │ │ ├── reboot.md │ │ │ ├── tables.md │ │ │ └── typography.md │ │ ├── customize │ │ │ ├── color.md │ │ │ ├── components.md │ │ │ ├── css-variables.md │ │ │ ├── optimize.md │ │ │ ├── options.md │ │ │ ├── overview.md │ │ │ └── sass.md │ │ ├── examples │ │ │ ├── .stylelintrc │ │ │ ├── _index.md │ │ │ ├── album-rtl │ │ │ │ └── index.html │ │ │ ├── album │ │ │ │ └── index.html │ │ │ ├── blog-rtl │ │ │ │ └── index.html │ │ │ ├── blog │ │ │ │ ├── blog.css │ │ │ │ ├── blog.rtl.css │ │ │ │ └── index.html │ │ │ ├── carousel-rtl │ │ │ │ └── index.html │ │ │ ├── carousel │ │ │ │ ├── carousel.css │ │ │ │ ├── carousel.rtl.css │ │ │ │ └── index.html │ │ │ ├── cheatsheet-rtl │ │ │ │ └── index.html │ │ │ ├── cheatsheet │ │ │ │ ├── cheatsheet.css │ │ │ │ ├── cheatsheet.js │ │ │ │ ├── cheatsheet.rtl.css │ │ │ │ └── index.html │ │ │ ├── checkout-rtl │ │ │ │ └── index.html │ │ │ ├── checkout │ │ │ │ ├── form-validation.css │ │ │ │ ├── form-validation.js │ │ │ │ └── index.html │ │ │ ├── cover │ │ │ │ ├── cover.css │ │ │ │ └── index.html │ │ │ ├── dashboard-rtl │ │ │ │ ├── dashboard.js │ │ │ │ └── index.html │ │ │ ├── dashboard │ │ │ │ ├── dashboard.css │ │ │ │ ├── dashboard.js │ │ │ │ ├── dashboard.rtl.css │ │ │ │ └── index.html │ │ │ ├── features │ │ │ │ ├── features.css │ │ │ │ ├── index.html │ │ │ │ ├── unsplash-photo-1.jpg │ │ │ │ ├── unsplash-photo-2.jpg │ │ │ │ └── unsplash-photo-3.jpg │ │ │ ├── grid │ │ │ │ ├── grid.css │ │ │ │ └── index.html │ │ │ ├── headers │ │ │ │ ├── headers.css │ │ │ │ └── index.html │ │ │ ├── heroes │ │ │ │ ├── bootstrap-docs.png │ │ │ │ ├── bootstrap-themes.png │ │ │ │ ├── heroes.css │ │ │ │ └── index.html │ │ │ ├── jumbotron │ │ │ │ └── index.html │ │ │ ├── masonry │ │ │ │ └── index.html │ │ │ ├── navbar-bottom │ │ │ │ └── index.html │ │ │ ├── navbar-fixed │ │ │ │ ├── index.html │ │ │ │ └── navbar-top-fixed.css │ │ │ ├── navbar-static │ │ │ │ ├── index.html │ │ │ │ └── navbar-top.css │ │ │ ├── navbars │ │ │ │ ├── index.html │ │ │ │ └── navbar.css │ │ │ ├── offcanvas-navbar │ │ │ │ ├── index.html │ │ │ │ ├── offcanvas.css │ │ │ │ └── offcanvas.js │ │ │ ├── pricing │ │ │ │ ├── index.html │ │ │ │ └── pricing.css │ │ │ ├── product │ │ │ │ ├── index.html │ │ │ │ └── product.css │ │ │ ├── sidebars │ │ │ │ ├── index.html │ │ │ │ ├── sidebars.css │ │ │ │ └── sidebars.js │ │ │ ├── sign-in │ │ │ │ ├── index.html │ │ │ │ └── signin.css │ │ │ ├── starter-template │ │ │ │ ├── index.html │ │ │ │ └── starter-template.css │ │ │ ├── sticky-footer-navbar │ │ │ │ ├── index.html │ │ │ │ └── sticky-footer-navbar.css │ │ │ └── sticky-footer │ │ │ │ ├── index.html │ │ │ │ └── sticky-footer.css │ │ ├── extend │ │ │ ├── approach.md │ │ │ └── icons.md │ │ ├── forms │ │ │ ├── checks-radios.md │ │ │ ├── floating-labels.md │ │ │ ├── form-control.md │ │ │ ├── input-group.md │ │ │ ├── layout.md │ │ │ ├── overview.md │ │ │ ├── range.md │ │ │ ├── select.md │ │ │ └── validation.md │ │ ├── getting-started │ │ │ ├── accessibility.md │ │ │ ├── best-practices.md │ │ │ ├── browsers-devices.md │ │ │ ├── build-tools.md │ │ │ ├── contents.md │ │ │ ├── download.md │ │ │ ├── introduction.md │ │ │ ├── javascript.md │ │ │ ├── parcel.md │ │ │ ├── rfs.md │ │ │ ├── rtl.md │ │ │ └── webpack.md │ │ ├── helpers │ │ │ ├── clearfix.md │ │ │ ├── colored-links.md │ │ │ ├── position.md │ │ │ ├── ratio.md │ │ │ ├── stretched-link.md │ │ │ ├── text-truncation.md │ │ │ └── visually-hidden.md │ │ ├── layout │ │ │ ├── breakpoints.md │ │ │ ├── columns.md │ │ │ ├── containers.md │ │ │ ├── grid.md │ │ │ ├── gutters.md │ │ │ ├── utilities.md │ │ │ └── z-index.md │ │ ├── migration.md │ │ └── utilities │ │ │ ├── api.md │ │ │ ├── background.md │ │ │ ├── borders.md │ │ │ ├── colors.md │ │ │ ├── display.md │ │ │ ├── flex.md │ │ │ ├── float.md │ │ │ ├── interactions.md │ │ │ ├── overflow.md │ │ │ ├── position.md │ │ │ ├── shadows.md │ │ │ ├── sizing.md │ │ │ ├── spacing.md │ │ │ ├── text.md │ │ │ ├── vertical-align.md │ │ │ └── visibility.md │ │ ├── _index.html │ │ └── versions.md │ ├── data │ ├── breakpoints.yml │ ├── colors.yml │ ├── core-team.yml │ ├── docs-versions.yml │ ├── examples.yml │ ├── grays.yml │ ├── icons.yml │ ├── sidebar.yml │ ├── theme-colors.yml │ └── translations.yml │ ├── layouts │ ├── _default │ │ ├── 404.html │ │ ├── baseof.html │ │ ├── docs.html │ │ ├── examples.html │ │ ├── home.html │ │ ├── redirect.html │ │ └── single.html │ ├── alias.html │ ├── partials │ │ ├── ads.html │ │ ├── analytics.html │ │ ├── callout-danger-async-methods.md │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ ├── callout-info-npm-starter.md │ │ ├── callout-info-prefersreducedmotion.md │ │ ├── callout-info-sanitizer.md │ │ ├── callout-warning-color-assistive-technologies.md │ │ ├── callout-warning-input-support.md │ │ ├── docs-navbar.html │ │ ├── docs-sidebar.html │ │ ├── docs-subnav.html │ │ ├── docs-versions.html │ │ ├── favicons.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── home │ │ │ ├── masthead-followup.html │ │ │ └── masthead.html │ │ ├── icons │ │ │ ├── bootstrap-logo-solid.svg │ │ │ ├── bootstrap-white-fill.svg │ │ │ ├── bootstrap.svg │ │ │ ├── circle-square.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── code.svg │ │ │ ├── collapse.svg │ │ │ ├── droplet-fill.svg │ │ │ ├── expand.svg │ │ │ ├── github.svg │ │ │ ├── hamburger.svg │ │ │ ├── homepage-hero.svg │ │ │ ├── list.svg │ │ │ ├── menu.svg │ │ │ ├── opencollective.svg │ │ │ ├── slack.svg │ │ │ └── twitter.svg │ │ ├── redirect.html │ │ ├── scripts.html │ │ ├── skippy.html │ │ ├── social.html │ │ ├── stylesheet.html │ │ └── table-content.html │ ├── robots.txt │ ├── shortcodes │ │ ├── bs-table.html │ │ ├── callout.html │ │ ├── docsref.html │ │ ├── example.html │ │ ├── markdown.html │ │ ├── param.html │ │ ├── partial.html │ │ ├── placeholder.html │ │ ├── scss-docs.html │ │ ├── table.html │ │ └── year.html │ └── sitemap.xml │ └── static │ ├── CNAME │ ├── docs │ └── 5.0 │ │ └── assets │ │ ├── brand │ │ ├── bootstrap-logo-black.svg │ │ ├── bootstrap-logo-shadow.png │ │ ├── bootstrap-logo-white.svg │ │ ├── bootstrap-logo.svg │ │ ├── bootstrap-social-logo.png │ │ └── bootstrap-social.png │ │ ├── img │ │ ├── bootstrap-icons.png │ │ ├── bootstrap-icons@2x.png │ │ ├── bootstrap-themes-collage.png │ │ ├── bootstrap-themes-collage@2x.png │ │ ├── bootstrap-themes.png │ │ ├── bootstrap-themes@2x.png │ │ ├── examples │ │ │ ├── album-rtl.png │ │ │ ├── album-rtl@2x.png │ │ │ ├── album.png │ │ │ ├── album@2x.png │ │ │ ├── blog-rtl.png │ │ │ ├── blog-rtl@2x.png │ │ │ ├── blog.png │ │ │ ├── blog@2x.png │ │ │ ├── carousel-rtl.png │ │ │ ├── carousel-rtl@2x.png │ │ │ ├── carousel.png │ │ │ ├── carousel@2x.png │ │ │ ├── cheatsheet-rtl.png │ │ │ ├── cheatsheet-rtl@2x.png │ │ │ ├── cheatsheet.png │ │ │ ├── cheatsheet@2x.png │ │ │ ├── checkout-rtl.png │ │ │ ├── checkout-rtl@2x.png │ │ │ ├── checkout.png │ │ │ ├── checkout@2x.png │ │ │ ├── cover.png │ │ │ ├── cover@2x.png │ │ │ ├── dashboard-rtl.png │ │ │ ├── dashboard-rtl@2x.png │ │ │ ├── dashboard.png │ │ │ ├── dashboard@2x.png │ │ │ ├── features.png │ │ │ ├── features@2x.png │ │ │ ├── grid.png │ │ │ ├── grid@2x.png │ │ │ ├── headers.png │ │ │ ├── headers@2x.png │ │ │ ├── heroes.png │ │ │ ├── heroes@2x.png │ │ │ ├── jumbotron.png │ │ │ ├── jumbotron@2x.png │ │ │ ├── masonry.png │ │ │ ├── masonry@2x.png │ │ │ ├── navbar-bottom.png │ │ │ ├── navbar-bottom@2x.png │ │ │ ├── navbar-fixed.png │ │ │ ├── navbar-fixed@2x.png │ │ │ ├── navbar-static.png │ │ │ ├── navbar-static@2x.png │ │ │ ├── navbars.png │ │ │ ├── navbars@2x.png │ │ │ ├── offcanvas-navbar.png │ │ │ ├── offcanvas-navbar@2x.png │ │ │ ├── pricing.png │ │ │ ├── pricing@2x.png │ │ │ ├── product.png │ │ │ ├── product@2x.png │ │ │ ├── sidebars.png │ │ │ ├── sidebars@2x.png │ │ │ ├── sign-in.png │ │ │ ├── sign-in@2x.png │ │ │ ├── starter-template.png │ │ │ ├── starter-template@2x.png │ │ │ ├── sticky-footer-navbar.png │ │ │ ├── sticky-footer-navbar@2x.png │ │ │ ├── sticky-footer.png │ │ │ └── sticky-footer@2x.png │ │ └── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ └── safari-pinned-tab.svg │ │ └── js │ │ └── validate-forms.js │ └── sw.js ├── LICENSE └── README.md /0.0.1/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/.htaccess -------------------------------------------------------------------------------- /0.0.1/admin/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/demo/templates/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/demo/templates/header.tpl -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/demo/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/demo/templates/index.tpl -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/expectException: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/Autoloader.php -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/Smarty.class.php -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/SmartyBC.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/SmartyBC.class.php -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/bootstrap.php -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/debug.tpl -------------------------------------------------------------------------------- /0.0.1/vendor/smarty/smarty/libs/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/smarty/smarty/libs/plugins/function.math.php -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/bootstrap80.php -------------------------------------------------------------------------------- /0.0.1/vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/symfony/polyfill-mbstring/composer.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.browserslistrc -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.bundlewatch.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.bundlewatch.config.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.editorconfig -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.eslintignore -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.gitattributes -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/CODEOWNERS -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/FUNDING.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/SUPPORT.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/dependabot.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/release-drafter.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/workflows/css.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/workflows/css.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/workflows/docs.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/workflows/js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/workflows/js.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.github/workflows/lint.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.gitignore -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.stylelintignore -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/LICENSE -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/README.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/SECURITY.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/.eslintrc.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/banner.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/build-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/build-plugins.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/change-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/change-version.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/generate-sri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/generate-sri.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/postcss.config.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/rollup.config.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/svgo.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/vnu-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/vnu-jar.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/build/zip-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/build/zip-examples.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/composer.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/config.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/base-component.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/base-component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/base-component.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/button.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/button.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/carousel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/carousel.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/collapse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/collapse.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dom/data.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dom/data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dom/data.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dom/event-handler.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dom/manipulator.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/dropdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/dropdown.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/offcanvas.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/offcanvas.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/offcanvas.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/popover.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/popover.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/scrollspy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/scrollspy.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/toast.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/toast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/toast.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/dist/tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/dist/tooltip.js.map -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/index.esm.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/index.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/index.umd.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/base-component.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/dom/data.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/dom/event-handler.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/dom/manipulator.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/dom/selector-engine.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/offcanvas.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/toast.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/util/index.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/util/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/util/sanitizer.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/src/util/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/src/util/scrollbar.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/README.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/browsers.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/helpers/fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/helpers/fixture.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/karma.conf.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/.eslintrc.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/alert.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/alert.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/button.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/jquery.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/jquery.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/modal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/modal.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/popover.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/popover.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/tab.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/tab.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/toast.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/toast.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/unit/tooltip.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/unit/tooltip.spec.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/alert.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/button.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/carousel.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/collapse.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/dropdown.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/modal.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/popover.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/tab.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/toast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/toast.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/js/tests/visual/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/js/tests/visual/tooltip.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.png -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.sass.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/nuget/bootstrap.sass.nuspec -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/package-lock.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/package.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/package.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/.eslintrc.json -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/js/application.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/js/search.js -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_ads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_ads.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_anchor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_anchor.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_brand.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_colors.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_footer.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_layout.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_navbar.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_skippy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_skippy.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_subnav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_subnav.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_syntax.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/_toc.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/assets/scss/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/assets/scss/docs.scss -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/content/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/content/404.md -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/content/docs/5.0/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/content/docs/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/content/docs/_index.html -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/breakpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/breakpoints.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/colors.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/core-team.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/core-team.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/examples.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/grays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/grays.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/icons.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/sidebar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/sidebar.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/theme-colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/theme-colors.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/data/translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/data/translations.yml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/layouts/alias.html: -------------------------------------------------------------------------------- 1 | {{ partial "redirect" .Permalink }} 2 | -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/layouts/robots.txt -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 | {{- .Inner | markdownify -}} 2 | -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/layouts/shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} 2 | -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/layouts/sitemap.xml -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/static/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /0.0.1/vendor/twbs/bootstrap/site/static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/0.0.1/vendor/twbs/bootstrap/site/static/sw.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katamaze/Leap/HEAD/README.md --------------------------------------------------------------------------------