├── .envrc ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── other.md ├── copilot-instructions.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── assets.yml │ ├── flair.yml │ ├── lint.yml │ ├── reviewable.yml │ ├── server.yml │ └── translations.yml ├── .gitignore ├── .ignore ├── .lfsconfig ├── .node-version ├── .prettierignore ├── .sbtopts.default ├── .scala-steward.conf ├── .scalafix.conf ├── .scalafmt.conf ├── CONTRIBUTING.md ├── COPYING.md ├── LICENSE ├── README.md ├── app ├── Env.scala ├── Lila.scala ├── UiEnv.scala ├── controllers │ ├── Account.scala │ ├── Analyse.scala │ ├── Api.scala │ ├── Appeal.scala │ ├── Auth.scala │ ├── BulkPairing.scala │ ├── Challenge.scala │ ├── Clas.scala │ ├── Cms.scala │ ├── Coach.scala │ ├── Coordinate.scala │ ├── Dasher.scala │ ├── Dev.scala │ ├── DgtCtrl.scala │ ├── Editor.scala │ ├── Event.scala │ ├── Export.scala │ ├── Feed.scala │ ├── Fide.scala │ ├── Fishnet.scala │ ├── ForumCateg.scala │ ├── ForumController.scala │ ├── ForumPost.scala │ ├── ForumTopic.scala │ ├── Game.scala │ ├── GameMod.scala │ ├── Github.scala │ ├── I18n.scala │ ├── Importer.scala │ ├── Insight.scala │ ├── Irwin.scala │ ├── JsBot.scala │ ├── Learn.scala │ ├── LilaController.scala │ ├── Lobby.scala │ ├── Main.scala │ ├── Mod.scala │ ├── Msg.scala │ ├── Notify.scala │ ├── OAuth.scala │ ├── OAuthToken.scala │ ├── Opening.scala │ ├── Plan.scala │ ├── PlayApi.scala │ ├── Practice.scala │ ├── Pref.scala │ ├── Push.scala │ ├── Puzzle.scala │ ├── Racer.scala │ ├── Recap.scala │ ├── Relation.scala │ ├── RelayRound.scala │ ├── RelayTour.scala │ ├── Report.scala │ ├── Round.scala │ ├── Search.scala │ ├── Setup.scala │ ├── Simul.scala │ ├── Storm.scala │ ├── Streamer.scala │ ├── Study.scala │ ├── Swiss.scala │ ├── Team.scala │ ├── TeamApi.scala │ ├── Timeline.scala │ ├── TitleVerify.scala │ ├── Tournament.scala │ ├── TournamentCrud.scala │ ├── Tutor.scala │ ├── Tv.scala │ ├── Ublog.scala │ ├── User.scala │ ├── UserAnalysis.scala │ ├── UserTournament.scala │ └── Video.scala ├── http │ ├── CtrlFilters.scala │ ├── CtrlPage.scala │ ├── ErrorHandler.scala │ ├── HttpRequestHandler.scala │ ├── KeyPages.scala │ ├── PageCache.scala │ ├── RequestContext.scala │ └── ResponseBuilder.scala ├── mashup │ ├── GameFilter.scala │ ├── Preload.scala │ ├── TeamInfo.scala │ └── UserInfo.scala ├── package.scala └── views │ ├── activity.scala │ ├── analyse.scala │ ├── appeal │ ├── appeal.scala │ ├── discussion.scala │ └── queue.scala │ ├── base │ ├── embed.scala │ ├── notFound.scala │ └── page.scala │ ├── bookmark.scala │ ├── clas.scala │ ├── coach.scala │ ├── fide.scala │ ├── game │ ├── side.scala │ └── ui.scala │ ├── insight.scala │ ├── lobby │ ├── bits.scala │ ├── blindLobby.scala │ └── home.scala │ ├── mod │ ├── communication.scala │ ├── games.scala │ ├── imageQueue.scala │ ├── search.scala │ └── ui.scala │ ├── msg.scala │ ├── puzzle │ ├── dashboard.scala │ └── ui.scala │ ├── relay.scala │ ├── report.scala │ ├── round │ ├── bits.scala │ ├── player.scala │ └── watcher.scala │ ├── simul.scala │ ├── site.scala │ ├── streamer.scala │ ├── study.scala │ ├── swiss.scala │ ├── team │ ├── bits.scala │ ├── show.scala │ └── tournaments.scala │ ├── title.scala │ ├── tournament.scala │ ├── tutor.scala │ ├── tv.scala │ ├── ublog.scala │ ├── ui.scala │ └── user │ ├── list.scala │ ├── mod.scala │ ├── show │ ├── gamesContent.scala │ ├── header.scala │ ├── otherTrophies.scala │ └── page.scala │ └── ui.scala ├── bin ├── cli ├── cli-prod ├── dependency-graph.py ├── deploy ├── diagnostic ├── flair │ ├── README.md │ ├── custom.txt │ └── generate.ts ├── gen │ ├── board-thumbnail │ ├── favicons │ ├── generate_css_for_a_board_with_backgroundimages.py │ ├── generate_css_for_a_board_with_hexcodes.py │ └── licon.py ├── git-hooks │ └── pre-commit ├── i18n-file-gen.ts ├── mongodb │ ├── active-players-since.js │ ├── agad-arena-resume.js │ ├── analysis-requester-cleanup.js │ ├── analysis2.js │ ├── award-trophy.js │ ├── bench │ │ └── exists.js │ ├── bot-count-human.js │ ├── chat-cleanup.js │ ├── clas_index.js │ ├── clas_v2.js │ ├── clean-settings.js │ ├── clean-unplayed.js │ ├── clear-empty-players.js │ ├── coach-languages.js │ ├── config-int.js │ ├── config-timemode.js │ ├── create-trophy-kinds.js │ ├── delete-user-forum-posts.js │ ├── denormalize-game-uids.js │ ├── diagnostic-categ.js │ ├── donor-patron.js │ ├── export-indexes.js │ ├── export-reviews.js │ ├── fide-profile-url-in-note.js │ ├── fix-normalized-emails.js │ ├── forum-fix-int.js │ ├── forum-reaction-fix.js │ ├── game-analysed.js │ ├── game-count-per-day.js │ ├── game-imported-date.js │ ├── game-search-test.js │ ├── game3.js │ ├── game4.js │ ├── gm-bootstrap.js │ ├── history.js │ ├── history2.js │ ├── horde.js │ ├── indexes.js │ ├── init-trophies.js │ ├── insight-migrate.js │ ├── lichess-team.js │ ├── marathon-create.js │ ├── marathon-trophies.js │ ├── meetup-notification.js │ ├── mod-progress.js │ ├── msg-dump.js │ ├── msg_import.js │ ├── note-search.js │ ├── patron-lifetime-mods.js │ ├── patron-lifetime-renorm.js │ ├── patron-lifetime.js │ ├── patron-since.js │ ├── play21.js │ ├── post-categ.js │ ├── practice-fen-fix.js │ ├── practice-pinned.js │ ├── pref-bg-migrate.js │ ├── pref-submitMove.js │ ├── pref-to-notify-pref.js │ ├── pref.js │ ├── puzzle-add-theme.js │ ├── puzzle-disable-broken-mate.js │ ├── puzzle-fen-turn.js │ ├── puzzle-fix-perf.js │ ├── puzzle-mate.js │ ├── puzzle-migrate-vote-disable.js │ ├── puzzle-migrate.js │ ├── puzzle-perf.js │ ├── puzzle-round.js │ ├── puzzle-salvage-old-good.js │ ├── puzzle-vote-ratio.js │ ├── ranking-fix.js │ ├── rapid-filter-update.js │ ├── rapid-init-all.js │ ├── rapid-init-online.js │ ├── real-name-migrate.js │ ├── recap-notif.js │ ├── relay-dates-migrate.js │ ├── relay-lcc-migrate-2.js │ ├── relay-lcc-migrate.js │ ├── relay-order.js │ ├── relay-round-finishedAt.js │ ├── relay-round-period-migration.js │ ├── relay-tour-info-migrate.js │ ├── relay-tour-migration.js │ ├── relay-tour-ownerIds.js │ ├── relay-tour-tier.js │ ├── relay-visibility.js │ ├── report-atom-reason-migration.js │ ├── set-ratings.js │ ├── simul-end.js │ ├── streamer-auto-demote.js │ ├── streamer-oauth-migration.js │ ├── study-chapter-castling-notation.js │ ├── study-chapter-depth.js │ ├── study-chapter-tags.js │ ├── study-delete-by.js │ ├── study-flat-chapter-migrate.js │ ├── study-remove-addedAt.js │ ├── study-remove-bad-nodes.js │ ├── study-topic-index.js │ ├── study-updatedAt-unfuck.js │ ├── survivor.js │ ├── swiss-fix.js │ ├── swiss-remove-number.js │ ├── swiss.js │ ├── team-forum-field.js │ ├── team-leader-inbox.js │ ├── team-leader-perms.js │ ├── team-leaders.js │ ├── team-remove-closed-members.js │ ├── team-tournaments.js │ ├── team_request-remove-req-closed-teams.js │ ├── titled-tournament-notification.js │ ├── tor.js │ ├── tour-spotlight-description.js │ ├── tournament-int.js │ ├── tournament-lichess.js │ ├── tournament-randomize-start.js │ ├── tournament-rating.js │ ├── tournament-spotlight-icons.js │ ├── tournament-team-indexes.js │ ├── tournament-v2.js │ ├── trophy-icons.js │ ├── ublog-blog.js │ ├── ublog-image.js │ ├── ublog-similar-full.js │ ├── update-trophy-kinds.js │ ├── user-count-cleanup.js │ ├── user-count.js │ ├── user-data-request.js │ ├── user-dedup-createdAt.js │ ├── user-delete-forever.js │ ├── user-flag-to-flair.js │ ├── user-id-size.js │ ├── user-perfs.js │ ├── user-playtime.js │ ├── user3.js │ ├── userstats.js │ ├── variant-filter-update.js │ ├── wesley02.js │ ├── wid.js │ └── winner.js ├── package.json ├── schlawg-dev ├── svg-fix ├── trans-issues ├── trans-lint ├── trans-unused ├── ublog-automod.mjs └── validate-flair ├── conf ├── appeal.routes ├── application.conf.default ├── base.conf ├── clas.routes ├── logger.dev.xml ├── report.routes ├── routes └── team.routes ├── cron ├── README.md ├── geoip-update-db.sh ├── mongodb-patron-denorm.js ├── mongodb-puzzle-denormalize-themes.js ├── mongodb-puzzle-regen-paths.js ├── mongodb-queue-stats.js ├── mongodb-report-score-decay.js ├── mongodb-tournament-participation-trophies.js └── mongodb-ublog-similar-incremental.js ├── crowdin.yml ├── flake.lock ├── flake.nix ├── lila.sh ├── modules ├── activity │ └── src │ │ └── main │ │ ├── Activity.scala │ │ ├── ActivityReadApi.scala │ │ ├── ActivityUi.scala │ │ ├── ActivityView.scala │ │ ├── ActivityWriteApi.scala │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── activities.scala │ │ ├── model.scala │ │ └── package.scala ├── analyse │ └── src │ │ ├── main │ │ ├── AccuracyCP.scala │ │ ├── AccuracyPercent.scala │ │ ├── AnalyseBsonHandlers.scala │ │ ├── Analyser.scala │ │ ├── AnalysisRepo.scala │ │ ├── Annotator.scala │ │ ├── Env.scala │ │ ├── ExternalEngine.scala │ │ ├── JsonView.scala │ │ ├── RequesterApi.scala │ │ ├── actorApi.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── AnalyseUi.scala │ │ │ └── ReplayUi.scala │ │ └── test │ │ ├── AccuracyPercentTest.scala │ │ └── AnnotatorTest.scala ├── api │ └── src │ │ ├── main │ │ ├── AccountTermination.scala │ │ ├── AnySearch.scala │ │ ├── ChatFreshness.scala │ │ ├── Cli.scala │ │ ├── Context.scala │ │ ├── Env.scala │ │ ├── EventStream.scala │ │ ├── GameApi.scala │ │ ├── GameApiV2.scala │ │ ├── LinkCheck.scala │ │ ├── LobbyApi.scala │ │ ├── MobileApi.scala │ │ ├── ModTimeline.scala │ │ ├── PersonalDataExport.scala │ │ ├── PgnDump.scala │ │ ├── RoundApi.scala │ │ ├── TextLpvExpand.scala │ │ ├── UserApi.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── ModTimelineUi.scala │ │ └── test │ │ ├── LpvGameRegexTest.scala │ │ └── ModTimelineTest.scala ├── appeal │ └── src │ │ └── main │ │ ├── Appeal.scala │ │ ├── AppealApi.scala │ │ ├── BsonHandlers.scala │ │ ├── Env.scala │ │ ├── package.scala │ │ └── ui │ │ ├── AppealTreeUi.scala │ │ └── AppealUi.scala ├── bookmark │ └── src │ │ └── main │ │ ├── BookmarkApi.scala │ │ ├── Env.scala │ │ ├── PaginatorBuilder.scala │ │ └── package.scala ├── bot │ └── src │ │ └── main │ │ ├── BoardReport.scala │ │ ├── BotForm.scala │ │ ├── BotJsonView.scala │ │ ├── BotLimit.scala │ │ ├── BotPlayer.scala │ │ ├── Env.scala │ │ ├── GameStateStream.scala │ │ ├── OnlineApiUsers.scala │ │ └── package.scala ├── challenge │ └── src │ │ ├── main │ │ ├── BSONHandlers.scala │ │ ├── Challenge.scala │ │ ├── ChallengeApi.scala │ │ ├── ChallengeBulk.scala │ │ ├── ChallengeBulkSetup.scala │ │ ├── ChallengeForm.scala │ │ ├── ChallengeGranter.scala │ │ ├── ChallengeJoiner.scala │ │ ├── ChallengeKeepAliveStream.scala │ │ ├── ChallengeMaker.scala │ │ ├── ChallengeMsg.scala │ │ ├── ChallengeRepo.scala │ │ ├── ChallengeSocket.scala │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── ChallengeUi.scala │ │ └── test │ │ └── JoinerTest.scala ├── chat │ └── src │ │ └── main │ │ ├── Chat.scala │ │ ├── ChatApi.scala │ │ ├── ChatJsonView.scala │ │ ├── ChatTimeout.scala │ │ ├── ChatUi.scala │ │ ├── Env.scala │ │ ├── Line.scala │ │ ├── model.scala │ │ └── package.scala ├── clas │ └── src │ │ └── main │ │ ├── BsonHandlers.scala │ │ ├── Clas.scala │ │ ├── ClasApi.scala │ │ ├── ClasForm.scala │ │ ├── ClasInvite.scala │ │ ├── ClasLogin.scala │ │ ├── ClasMarkdown.scala │ │ ├── ClasMatesCache.scala │ │ ├── ClasProgress.scala │ │ ├── ClasStudentCache.scala │ │ ├── Env.scala │ │ ├── NameGenerator.scala │ │ ├── Student.scala │ │ ├── package.scala │ │ └── ui │ │ ├── ClasPages.scala │ │ ├── ClasUi.scala │ │ ├── DashboardUi.scala │ │ ├── StudentFormUi.scala │ │ └── StudentUi.scala ├── cms │ └── src │ │ └── main │ │ ├── CmsApi.scala │ │ ├── CmsForm.scala │ │ ├── CmsPage.scala │ │ ├── CmsUi.scala │ │ ├── Env.scala │ │ └── package.scala ├── coach │ └── src │ │ └── main │ │ ├── BsonHandlers.scala │ │ ├── Coach.scala │ │ ├── CoachApi.scala │ │ ├── CoachPager.scala │ │ ├── CoachProfile.scala │ │ ├── CoachProfileForm.scala │ │ ├── Env.scala │ │ ├── UrlList.scala │ │ ├── package.scala │ │ └── ui │ │ ├── CoachEditUi.scala │ │ └── CoachUi.scala ├── common │ └── src │ │ └── main │ │ ├── AutoConfig.scala │ │ ├── BatchProvider.scala │ │ ├── Bus.scala │ │ ├── Chronometer.scala │ │ ├── EarlyMultiThrottler.scala │ │ ├── Form.scala │ │ ├── HTTPRequest.scala │ │ ├── Iso.scala │ │ ├── Json.scala │ │ ├── LameName.scala │ │ ├── LateMultiThrottler.scala │ │ ├── LichessDay.scala │ │ ├── LilaFuture.scala │ │ ├── LilaOpeningFamily.scala │ │ ├── LilaScheduler.scala │ │ ├── LilaStream.scala │ │ ├── Lilakka.scala │ │ ├── MarkdownRender.scala │ │ ├── MarkdownToastUi.scala │ │ ├── RawHtml.scala │ │ ├── SimpleOpening.scala │ │ ├── String.scala │ │ ├── Uptime.scala │ │ ├── config.scala │ │ ├── constants.scala │ │ ├── log.scala │ │ ├── mon.scala │ │ ├── package.scala │ │ └── url.scala ├── coordinate │ └── src │ │ └── main │ │ ├── CoordinateApi.scala │ │ ├── CoordinateForm.scala │ │ ├── CoordinateUi.scala │ │ ├── Env.scala │ │ ├── Score.scala │ │ └── package.scala ├── core │ └── src │ │ ├── main │ │ ├── LightUser.scala │ │ ├── captcha.scala │ │ ├── challenge.scala │ │ ├── chat.scala │ │ ├── chess.scala │ │ ├── config.scala │ │ ├── data.scala │ │ ├── db.scala │ │ ├── email.scala │ │ ├── fide.scala │ │ ├── fishnet.scala │ │ ├── forum.scala │ │ ├── game │ │ │ ├── Game.scala │ │ │ ├── NewGame.scala │ │ │ ├── Player.scala │ │ │ ├── Pov.scala │ │ │ ├── data.scala │ │ │ ├── light.scala │ │ │ └── misc.scala │ │ ├── history.scala │ │ ├── id.scala │ │ ├── irc.scala │ │ ├── lilaism │ │ │ ├── CoreExports.scala │ │ │ ├── ExecutionContextOpportunistic.scala │ │ │ ├── LilaException.scala │ │ │ ├── LilaLibraryExtensions.scala │ │ │ └── Lilaism.scala │ │ ├── misc.scala │ │ ├── mod.scala │ │ ├── msg.scala │ │ ├── net.scala │ │ ├── notify.scala │ │ ├── package.scala │ │ ├── perf.scala │ │ ├── perm.scala │ │ ├── plan.scala │ │ ├── playban.scala │ │ ├── pool.scala │ │ ├── practice.scala │ │ ├── pref.scala │ │ ├── rating.scala │ │ ├── relation.scala │ │ ├── relay.scala │ │ ├── report.scala │ │ ├── round.scala │ │ ├── security.scala │ │ ├── setup.scala │ │ ├── shutup.scala │ │ ├── simul.scala │ │ ├── socket.scala │ │ ├── study.scala │ │ ├── swiss.scala │ │ ├── team.scala │ │ ├── timeline.scala │ │ ├── tournament.scala │ │ ├── ublog.scala │ │ ├── user.scala │ │ └── userId.scala │ │ └── test │ │ ├── EmailTest.scala │ │ └── IpAddressTest.scala ├── coreI18n │ └── src │ │ ├── main │ │ ├── i18n.scala │ │ ├── key.scala │ │ └── modules.scala │ │ └── test │ │ └── TranslatorStub.scala ├── db │ └── src │ │ └── main │ │ ├── AsyncColl.scala │ │ ├── BSON.scala │ │ ├── ByteArray.scala │ │ ├── Db.scala │ │ ├── Env.scala │ │ ├── Handlers.scala │ │ ├── JSON.scala │ │ ├── PaginatorAdapter.scala │ │ ├── SingleFutureCache.scala │ │ ├── Util.scala │ │ ├── dsl.scala │ │ ├── model.scala │ │ └── package.scala ├── evalCache │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── EvalCacheApi.scala │ │ ├── EvalCacheEntry.scala │ │ ├── JsonView.scala │ │ └── package.scala ├── evaluation │ └── src │ │ ├── main │ │ ├── AccountAction.scala │ │ ├── Display.scala │ │ ├── EvaluationBsonHandlers.scala │ │ ├── GameAssessments.scala │ │ ├── PlayerAggregateAssessment.scala │ │ ├── PlayerAssessment.scala │ │ ├── PlayerFlags.scala │ │ ├── Statistics.scala │ │ └── package.scala │ │ └── test │ │ └── StatisticsTest.scala ├── event │ └── src │ │ └── main │ │ ├── BsonHandlers.scala │ │ ├── Env.scala │ │ ├── Event.scala │ │ ├── EventApi.scala │ │ ├── EventForm.scala │ │ ├── EventMarkdown.scala │ │ ├── package.scala │ │ └── ui │ │ └── EventUi.scala ├── explorer │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── ExplorerImporter.scala │ │ └── package.scala ├── feed │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── Feed.scala │ │ └── FeedUi.scala ├── fide │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── Federation.scala │ │ ├── FederationApi.scala │ │ ├── FideJson.scala │ │ ├── FidePaginator.scala │ │ ├── FidePlayer.scala │ │ ├── FidePlayerApi.scala │ │ ├── FidePlayerSync.scala │ │ ├── FideRepo.scala │ │ ├── FideSearch.scala │ │ ├── ZipInputStreamSource.scala │ │ ├── package.scala │ │ └── ui │ │ └── FideUi.scala ├── fishnet │ └── src │ │ ├── main │ │ ├── Analyser.scala │ │ ├── AnalysisBuilder.scala │ │ ├── BSONHandlers.scala │ │ ├── Cleaner.scala │ │ ├── Client.scala │ │ ├── Env.scala │ │ ├── FishnetApi.scala │ │ ├── FishnetAwaiter.scala │ │ ├── FishnetEvalCache.scala │ │ ├── FishnetLimiter.scala │ │ ├── FishnetOpeningBook.scala │ │ ├── FishnetPlayer.scala │ │ ├── FishnetRedis.scala │ │ ├── FishnetRepo.scala │ │ ├── JsonApi.scala │ │ ├── Monitor.scala │ │ ├── SemVer.scala │ │ ├── UciToSan.scala │ │ ├── Work.scala │ │ └── package.scala │ │ └── test │ │ ├── AnnotatorTest.scala │ │ ├── TestFixtures.scala │ │ ├── TreeBuilderTest.scala │ │ └── UciToSanTest.scala ├── forum │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── DetectLanguage.scala │ │ ├── Env.scala │ │ ├── ForumAccess.scala │ │ ├── ForumCateg.scala │ │ ├── ForumCategApi.scala │ │ ├── ForumCategRepo.scala │ │ ├── ForumDelete.scala │ │ ├── ForumExpand.scala │ │ ├── ForumForm.scala │ │ ├── ForumPaginator.scala │ │ ├── ForumPost.scala │ │ ├── ForumPostApi.scala │ │ ├── ForumPostRepo.scala │ │ ├── ForumTopic.scala │ │ ├── ForumTopicApi.scala │ │ ├── ForumTopicRepo.scala │ │ ├── MentionNotifier.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ ├── CategUi.scala │ │ ├── ForumBits.scala │ │ ├── PostUi.scala │ │ └── TopicUi.scala ├── forumSearch │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── ForumSearchApi.scala │ │ └── package.scala ├── game │ └── src │ │ ├── main │ │ ├── AnonCookie.scala │ │ ├── BSONHandlers.scala │ │ ├── BinaryFormat.scala │ │ ├── Blurs.scala │ │ ├── Cached.scala │ │ ├── CaptchaApi.scala │ │ ├── Crosstable.scala │ │ ├── CrosstableApi.scala │ │ ├── Divider.scala │ │ ├── Env.scala │ │ ├── Event.scala │ │ ├── FavoriteOpponents.scala │ │ ├── Game.scala │ │ ├── GameDiff.scala │ │ ├── GameFilter.scala │ │ ├── GameRepo.scala │ │ ├── GamesByIdsStream.scala │ │ ├── GamesByUsersStream.scala │ │ ├── GifExport.scala │ │ ├── IdGenerator.scala │ │ ├── Importer.scala │ │ ├── JsonView.scala │ │ ├── LightGame.scala │ │ ├── Metadata.scala │ │ ├── Namer.scala │ │ ├── PaginatorBuilder.scala │ │ ├── PgnDump.scala │ │ ├── PgnStorage.scala │ │ ├── Player.scala │ │ ├── Pov.scala │ │ ├── Progress.scala │ │ ├── Query.scala │ │ ├── Rematches.scala │ │ ├── Rewind.scala │ │ ├── UciMemo.scala │ │ ├── UserGameApi.scala │ │ ├── actorApi.scala │ │ ├── core.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── GameUi.scala │ │ └── test │ │ ├── Arbitraries.scala │ │ ├── BinaryCLMTest.scala │ │ ├── BinaryClockTest.scala │ │ ├── BinaryMoveTimeTest.scala │ │ ├── BinaryPieceTest.scala │ │ ├── BinaryUnmovedRooksTest.scala │ │ ├── BlurTest.scala │ │ ├── EventTest.scala │ │ └── PgnDumpTest.scala ├── gameSearch │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── Fields.scala │ │ ├── FormHelpers.scala │ │ ├── GameSearchApi.scala │ │ ├── GameSearchForm.scala │ │ ├── GameSearchUi.scala │ │ ├── Sorting.scala │ │ ├── UserGameSearch.scala │ │ └── package.scala ├── gathering │ ├── README.md │ └── src │ │ ├── main │ │ ├── Condition.scala │ │ ├── ConditionForm.scala │ │ ├── ConditionHandlers.scala │ │ ├── ConditionList.scala │ │ ├── GatheringClock.scala │ │ ├── GatheringJson.scala │ │ ├── GreatPlayer.scala │ │ ├── Quote.scala │ │ ├── Thematic.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── GatheringUi.scala │ │ └── test │ │ └── PrizeTest.scala ├── history │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── History.scala │ │ ├── HistoryApi.scala │ │ ├── RatingChartApi.scala │ │ └── package.scala ├── i18n │ └── src │ │ ├── main │ │ ├── Env.scala │ │ ├── I18nQuantity.scala │ │ ├── LangForm.scala │ │ ├── LangList.scala │ │ ├── LangPicker.scala │ │ ├── Registry.scala │ │ ├── Translation.scala │ │ ├── Translator.scala │ │ └── package.scala │ │ └── test │ │ └── TranslationTest.scala ├── insight │ └── src │ │ └── main │ │ ├── AggregationClusters.scala │ │ ├── AggregationPipeline.scala │ │ ├── Answer.scala │ │ ├── BSONHandlers.scala │ │ ├── Chart.scala │ │ ├── Env.scala │ │ ├── InsightApi.scala │ │ ├── InsightDate.scala │ │ ├── InsightDimension.scala │ │ ├── InsightEntry.scala │ │ ├── InsightIndexer.scala │ │ ├── InsightMetric.scala │ │ ├── InsightPerfStatsApi.scala │ │ ├── InsightPosition.scala │ │ ├── InsightStorage.scala │ │ ├── JsonQuestion.scala │ │ ├── JsonView.scala │ │ ├── PovToEntry.scala │ │ ├── Question.scala │ │ ├── Share.scala │ │ ├── TutorRange.scala │ │ ├── model.scala │ │ └── package.scala ├── irc │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── IrcApi.scala │ │ ├── ZulipClient.scala │ │ └── package.scala ├── irwin │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── IrwinApi.scala │ │ ├── IrwinReport.scala │ │ ├── IrwinRequest.scala │ │ ├── IrwinStream.scala │ │ ├── IrwinThresholds.scala │ │ ├── IrwinUi.scala │ │ ├── JSONHandlers.scala │ │ ├── KaladinApi.scala │ │ ├── KaladinUser.scala │ │ └── package.scala ├── jsBot │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── JsBotApi.scala │ │ ├── JsBotAssetApi.scala │ │ ├── JsBotRepo.scala │ │ ├── JsBotUi.scala │ │ ├── model.scala │ │ └── package.scala ├── learn │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── LearnApi.scala │ │ ├── LearnHandlers.scala │ │ ├── LearnProgress.scala │ │ ├── StageProgress.scala │ │ └── package.scala ├── lobby │ └── src │ │ ├── main │ │ ├── AbortListener.scala │ │ ├── Biter.scala │ │ ├── BoardApiHookStream.scala │ │ ├── Env.scala │ │ ├── Hook.scala │ │ ├── HookRepo.scala │ │ ├── LobbySocket.scala │ │ ├── LobbySyncActor.scala │ │ ├── LobbyUser.scala │ │ ├── MultiKeyMap.scala │ │ ├── Seek.scala │ │ ├── SeekApi.scala │ │ ├── TriColor.scala │ │ ├── actorApi.scala │ │ └── package.scala │ │ └── test │ │ └── MultiKeyMapTest.scala ├── mailer │ └── src │ │ └── main │ │ ├── AutomaticEmail.scala │ │ ├── Env.scala │ │ ├── Mailer.scala │ │ └── package.scala ├── memo │ └── src │ │ └── main │ │ ├── CacheApi.scala │ │ ├── Cloudflare.scala │ │ ├── Env.scala │ │ ├── ExpirableCallbackMemo.scala │ │ ├── MarkdownCache.scala │ │ ├── MongoCache.scala │ │ ├── MongoRateLimit.scala │ │ ├── ParallelMongoQueue.scala │ │ ├── RateLimit.scala │ │ ├── SettingStore.scala │ │ ├── Snooze.scala │ │ ├── Syncache.scala │ │ ├── package.scala │ │ └── picfit │ │ ├── PicfitApi.scala │ │ ├── PicfitUrl.scala │ │ └── model.scala ├── mod │ └── src │ │ └── main │ │ ├── AssessApi.scala │ │ ├── AutoAnalysis.scala │ │ ├── Env.scala │ │ ├── GameMod.scala │ │ ├── Gamify.scala │ │ ├── Impersonate.scala │ │ ├── Inquiry.scala │ │ ├── IpRender.scala │ │ ├── ModActivity.scala │ │ ├── ModApi.scala │ │ ├── ModNotifier.scala │ │ ├── ModQueueStats.scala │ │ ├── ModStream.scala │ │ ├── ModUserSearch.scala │ │ ├── Modlog.scala │ │ ├── ModlogApi.scala │ │ ├── Presets.scala │ │ ├── PublicChat.scala │ │ ├── RatingRefund.scala │ │ ├── SandbagWatch.scala │ │ ├── package.scala │ │ └── ui │ │ ├── GamifyUi.scala │ │ ├── ImageQueueUi.scala │ │ ├── ModCommUi.scala │ │ ├── ModInquiryUi.scala │ │ ├── ModUi.scala │ │ ├── ModUserTableUi.scala │ │ ├── ModUserUi.scala │ │ └── PublicChatUi.scala ├── msg │ └── src │ │ └── main │ │ ├── BsonHandlers.scala │ │ ├── Env.scala │ │ ├── Msg.scala │ │ ├── MsgApi.scala │ │ ├── MsgByLichess.scala │ │ ├── MsgCompat.scala │ │ ├── MsgContact.scala │ │ ├── MsgJson.scala │ │ ├── MsgNotify.scala │ │ ├── MsgPreset.scala │ │ ├── MsgSearch.scala │ │ ├── MsgSecurity.scala │ │ ├── MsgThread.scala │ │ ├── MsgUnreadCount.scala │ │ ├── model.scala │ │ └── package.scala ├── notify │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── JsonHandlers.scala │ │ ├── Notification.scala │ │ ├── NotificationPref.scala │ │ ├── NotificationRepo.scala │ │ ├── NotifyApi.scala │ │ ├── NotifyCli.scala │ │ └── package.scala ├── oauth │ └── src │ │ └── main │ │ ├── AccessToken.scala │ │ ├── AccessTokenApi.scala │ │ ├── AccessTokenRequest.scala │ │ ├── AuthorizationApi.scala │ │ ├── AuthorizationRequest.scala │ │ ├── Env.scala │ │ ├── LegacyClientApi.scala │ │ ├── OAuthScope.scala │ │ ├── OAuthServer.scala │ │ ├── OAuthTokenForm.scala │ │ ├── Protocol.scala │ │ ├── package.scala │ │ └── ui │ │ ├── AuthorizeUi.scala │ │ └── TokenUi.scala ├── opening │ └── src │ │ ├── main │ │ ├── Env.scala │ │ ├── NameSection.scala │ │ ├── OpeningApi.scala │ │ ├── OpeningConfig.scala │ │ ├── OpeningExplorer.scala │ │ ├── OpeningPage.scala │ │ ├── OpeningQuery.scala │ │ ├── OpeningSearch.scala │ │ ├── OpeningTree.scala │ │ ├── OpeningWiki.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── OpeningBits.scala │ │ │ ├── OpeningUi.scala │ │ │ └── WikiUi.scala │ │ └── test │ │ ├── OpeningSearchTest.scala │ │ └── OpeningTest.scala ├── perfStat │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── PerfStat.scala │ │ ├── PerfStatApi.scala │ │ ├── PerfStatIndexer.scala │ │ ├── PerfStatStorage.scala │ │ ├── PerfStatUi.scala │ │ └── package.scala ├── plan │ └── src │ │ ├── main │ │ ├── BsonHandlers.scala │ │ ├── Charge.scala │ │ ├── Currency.scala │ │ ├── CustomerInfo.scala │ │ ├── Env.scala │ │ ├── JsonHandlers.scala │ │ ├── MonthlyGoal.scala │ │ ├── Patron.scala │ │ ├── PayPalClient.scala │ │ ├── PlanApi.scala │ │ ├── PlanCheckout.scala │ │ ├── PlanExpiration.scala │ │ ├── PlanForm.scala │ │ ├── PlanNotifier.scala │ │ ├── PlanPricingApi.scala │ │ ├── PlanWebhook.scala │ │ ├── StripeClient.scala │ │ ├── WebService.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── PlanPages.scala │ │ │ ├── PlanStyle.scala │ │ │ └── PlanUi.scala │ │ └── test │ │ └── PlanPricingTest.scala ├── playban │ └── src │ │ ├── main │ │ ├── Env.scala │ │ ├── PlaybanApi.scala │ │ ├── PlaybanFeedback.scala │ │ ├── RageSit.scala │ │ ├── model.scala │ │ └── package.scala │ │ └── test │ │ └── PlaybanTest.scala ├── pool │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── GameStarter.scala │ │ ├── HookThieve.scala │ │ ├── MatchMaking.scala │ │ ├── PoolActor.scala │ │ ├── PoolApi.scala │ │ ├── PoolConfig.scala │ │ ├── PoolList.scala │ │ ├── PoolMember.scala │ │ └── package.scala ├── practice │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── PracticeApi.scala │ │ ├── PracticeGoal.scala │ │ ├── PracticeProgress.scala │ │ ├── PracticeSections.scala │ │ ├── PracticeStructure.scala │ │ ├── PracticeUi.scala │ │ ├── UserPractice.scala │ │ └── package.scala ├── pref │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── FormCompatLayer.scala │ │ ├── JsonView.scala │ │ ├── PieceSet.scala │ │ ├── Pref.scala │ │ ├── PrefApi.scala │ │ ├── PrefCateg.scala │ │ ├── PrefForm.scala │ │ ├── PrefHandlers.scala │ │ ├── PrefSingleChange.scala │ │ ├── RequestPref.scala │ │ ├── SoundSet.scala │ │ ├── Theme.scala │ │ ├── package.scala │ │ └── ui │ │ ├── AccountPages.scala │ │ ├── AccountPref.scala │ │ ├── AccountUi.scala │ │ ├── DasherJson.scala │ │ ├── PrefHelper.scala │ │ └── TwoFactorUi.scala ├── push │ └── src │ │ └── main │ │ ├── Device.scala │ │ ├── DeviceApi.scala │ │ ├── Env.scala │ │ ├── FirebasePush.scala │ │ ├── PushApi.scala │ │ ├── Stacking.scala │ │ ├── Urgency.scala │ │ ├── WebPush.scala │ │ ├── WebSubscription.scala │ │ ├── WebSubscriptionApi.scala │ │ └── package.scala ├── puzzle │ └── src │ │ ├── main │ │ ├── BsonHandlers.scala │ │ ├── DailyPuzzle.scala │ │ ├── Env.scala │ │ ├── GameJson.scala │ │ ├── JsonView.scala │ │ ├── Puzzle.scala │ │ ├── PuzzleActivity.scala │ │ ├── PuzzleAngle.scala │ │ ├── PuzzleAnon.scala │ │ ├── PuzzleApi.scala │ │ ├── PuzzleBatch.scala │ │ ├── PuzzleComplete.scala │ │ ├── PuzzleCount.scala │ │ ├── PuzzleDashboard.scala │ │ ├── PuzzleDifficulty.scala │ │ ├── PuzzleFinisher.scala │ │ ├── PuzzleForm.scala │ │ ├── PuzzleHistory.scala │ │ ├── PuzzleOpening.scala │ │ ├── PuzzlePath.scala │ │ ├── PuzzleReplay.scala │ │ ├── PuzzleRound.scala │ │ ├── PuzzleSelector.scala │ │ ├── PuzzleSession.scala │ │ ├── PuzzleStreak.scala │ │ ├── PuzzleTagger.scala │ │ ├── PuzzleTheme.scala │ │ ├── PuzzleTier.scala │ │ ├── PuzzleTrust.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── PuzzleBits.scala │ │ │ └── PuzzleUi.scala │ │ └── test │ │ └── JsonViewTest.scala ├── racer │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── RacerApi.scala │ │ ├── RacerBsonHandlers.scala │ │ ├── RacerJson.scala │ │ ├── RacerLobby.scala │ │ ├── RacerPlayer.scala │ │ ├── RacerRace.scala │ │ ├── RacerSocket.scala │ │ ├── package.scala │ │ └── ui │ │ └── RacerUi.scala ├── rating │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Gaussian.scala │ │ ├── Glicko.scala │ │ ├── Perf.scala │ │ ├── PerfType.scala │ │ ├── RatingRange.scala │ │ ├── RatingRegulator.scala │ │ ├── UserPerfs.scala │ │ ├── UserWithPerfs.scala │ │ └── package.scala ├── recap │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── Recap.scala │ │ ├── RecapApi.scala │ │ ├── RecapBuilder.scala │ │ ├── RecapJson.scala │ │ ├── RecapRepo.scala │ │ ├── package.scala │ │ └── ui │ │ └── RecapUi.scala ├── relation │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── RelationApi.scala │ │ ├── RelationRepo.scala │ │ ├── RelationStream.scala │ │ ├── SubscriptionRepo.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ └── RelationUi.scala ├── relay │ └── src │ │ ├── main │ │ ├── BSONHandlers.scala │ │ ├── DgtJson.scala │ │ ├── Env.scala │ │ ├── HttpClient.scala │ │ ├── RelayApi.scala │ │ ├── RelayCalendar.scala │ │ ├── RelayCard.scala │ │ ├── RelayDefaults.scala │ │ ├── RelayDelay.scala │ │ ├── RelayFetch.scala │ │ ├── RelayFidePlayerApi.scala │ │ ├── RelayFormat.scala │ │ ├── RelayGame.scala │ │ ├── RelayGroup.scala │ │ ├── RelayHome.scala │ │ ├── RelayInputSanity.scala │ │ ├── RelayJsonView.scala │ │ ├── RelayListing.scala │ │ ├── RelayMarkdown.scala │ │ ├── RelayNotifier.scala │ │ ├── RelayNotifierAdmin.scala │ │ ├── RelayPager.scala │ │ ├── RelayPgnStream.scala │ │ ├── RelayPinnedStream.scala │ │ ├── RelayPlayer.scala │ │ ├── RelayPlayerEnrich.scala │ │ ├── RelayPlayerTour.scala │ │ ├── RelayProxy.scala │ │ ├── RelayPush.scala │ │ ├── RelayRound.scala │ │ ├── RelayRoundForm.scala │ │ ├── RelayRoundRepo.scala │ │ ├── RelayStatsApi.scala │ │ ├── RelayStudyPropagation.scala │ │ ├── RelaySync.scala │ │ ├── RelayTagManualOverride.scala │ │ ├── RelayTeams.scala │ │ ├── RelayTour.scala │ │ ├── RelayTourForm.scala │ │ ├── RelayTourRepo.scala │ │ ├── RelayTourStream.scala │ │ ├── RelayUpdatePlan.scala │ │ ├── RelayVideoEmbed.scala │ │ ├── SyncLog.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── RelayCardUi.scala │ │ │ ├── RelayFormUi.scala │ │ │ ├── RelayGroupUi.scala │ │ │ ├── RelayMenuUi.scala │ │ │ ├── RelayTourUi.scala │ │ │ └── RelayUi.scala │ │ └── test │ │ ├── GameJsonTest.scala │ │ ├── RelayFetchTest.scala │ │ ├── RelayGameTest.scala │ │ ├── RelayPlayerTest.scala │ │ ├── RelayPushTest.scala │ │ ├── RelayUpdatePlanFixtures.scala │ │ └── RelayUpdatePlanTest.scala ├── report │ └── src │ │ └── main │ │ ├── AutoAnalysis.scala │ │ ├── Automod.scala │ │ ├── BSONHandlers.scala │ │ ├── Env.scala │ │ ├── ModReportFilter.scala │ │ ├── Reason.scala │ │ ├── Report.scala │ │ ├── ReportApi.scala │ │ ├── ReportForm.scala │ │ ├── ReportScore.scala │ │ ├── ReportThresholds.scala │ │ ├── Room.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ └── ReportUi.scala ├── room │ └── src │ │ └── main │ │ ├── RoomSocket.scala │ │ └── package.scala ├── round │ └── src │ │ ├── main │ │ ├── ApiMoveStream.scala │ │ ├── CorresAlarm.scala │ │ ├── CorrespondenceEmail.scala │ │ ├── Drawer.scala │ │ ├── Env.scala │ │ ├── FarmBoostDetection.scala │ │ ├── Finisher.scala │ │ ├── Forecast.scala │ │ ├── ForecastApi.scala │ │ ├── GameProxy.scala │ │ ├── GameProxyRepo.scala │ │ ├── JsonView.scala │ │ ├── Messenger.scala │ │ ├── Moretimer.scala │ │ ├── MoveLatMonitor.scala │ │ ├── MovePlayer.scala │ │ ├── NoteApi.scala │ │ ├── PerfsUpdater.scala │ │ ├── PlayingUsers.scala │ │ ├── RecentTvGames.scala │ │ ├── Rematcher.scala │ │ ├── RoundAsyncActor.scala │ │ ├── RoundCourtesy.scala │ │ ├── RoundGame.scala │ │ ├── RoundMobile.scala │ │ ├── RoundNotifier.scala │ │ ├── RoundSocket.scala │ │ ├── SelfReport.scala │ │ ├── StepBuilder.scala │ │ ├── Takebacker.scala │ │ ├── Titivate.scala │ │ ├── actorApi.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── RoundUi.scala │ │ └── test │ │ └── RematcherTest.scala ├── search │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── LilaSearchClient.scala │ │ ├── PaginatorBuilder.scala │ │ ├── SearchReadApi.scala │ │ └── package.scala ├── security │ └── src │ │ ├── main │ │ ├── Authenticator.scala │ │ ├── CSRFRequestHandler.scala │ │ ├── Cli.scala │ │ ├── DisposableEmailAttempt.scala │ │ ├── DisposableEmailDomain.scala │ │ ├── DnsApi.scala │ │ ├── EmailAddressValidator.scala │ │ ├── EmailChange.scala │ │ ├── EmailConfirm.scala │ │ ├── Env.scala │ │ ├── FingerPrint.scala │ │ ├── Firewall.scala │ │ ├── Flood.scala │ │ ├── GarbageCollector.scala │ │ ├── GeoIP.scala │ │ ├── Granter.scala │ │ ├── Hcaptcha.scala │ │ ├── Ip2Proxy.scala │ │ ├── IpTrust.scala │ │ ├── LilaCookie.scala │ │ ├── LoginToken.scala │ │ ├── Mobile.scala │ │ ├── PasswordCheck.scala │ │ ├── PasswordHasher.scala │ │ ├── PasswordReset.scala │ │ ├── Permission.scala │ │ ├── PrintBan.scala │ │ ├── Promotion.scala │ │ ├── PwnedApi.scala │ │ ├── Reopen.scala │ │ ├── SecurityApi.scala │ │ ├── SecurityConfig.scala │ │ ├── SecurityForm.scala │ │ ├── SessionStore.scala │ │ ├── Signup.scala │ │ ├── Spam.scala │ │ ├── StringToken.scala │ │ ├── Tor.scala │ │ ├── UserAgentParser.scala │ │ ├── UserLogins.scala │ │ ├── UserTrust.scala │ │ ├── VerifyMail.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ └── AccountSecurity.scala │ │ └── test │ │ ├── AuthTest.scala │ │ ├── Fixtures.scala │ │ ├── FloodTest.scala │ │ ├── MobileTest.scala │ │ ├── PasswordHasherTest.scala │ │ ├── PermissionTest.scala │ │ ├── SpamTest.scala │ │ └── UserAgentParserTest.scala ├── setup │ └── src │ │ └── main │ │ ├── AiConfig.scala │ │ ├── ApiAiConfig.scala │ │ ├── ApiConfig.scala │ │ ├── Config.scala │ │ ├── Env.scala │ │ ├── FriendConfig.scala │ │ ├── HookConfig.scala │ │ ├── HumanConfig.scala │ │ ├── Mappings.scala │ │ ├── OpenConfig.scala │ │ ├── Processor.scala │ │ ├── SetupForm.scala │ │ ├── TimeMode.scala │ │ ├── ValidFen.scala │ │ ├── package.scala │ │ └── ui │ │ └── SetupUi.scala ├── shutup │ └── src │ │ ├── main │ │ ├── Analyser.scala │ │ ├── Dictionary.scala │ │ ├── Env.scala │ │ ├── PublicLine.scala │ │ ├── PublicSource.scala │ │ ├── ShutupApi.scala │ │ ├── model.scala │ │ └── package.scala │ │ └── test │ │ ├── AnalyserTest.scala │ │ └── HighlightTest.scala ├── simul │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── Simul.scala │ │ ├── SimulApi.scala │ │ ├── SimulApplicant.scala │ │ ├── SimulClock.scala │ │ ├── SimulCondition.scala │ │ ├── SimulForm.scala │ │ ├── SimulPairing.scala │ │ ├── SimulPlayer.scala │ │ ├── SimulRepo.scala │ │ ├── SimulSocket.scala │ │ ├── SimulStatus.scala │ │ ├── actorApi.scala │ │ ├── package.scala │ │ └── ui │ │ ├── SimulFormUi.scala │ │ ├── SimulHome.scala │ │ ├── SimulShow.scala │ │ └── SimulUi.scala ├── socket │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── RemoteSocket.scala │ │ ├── SocketRequester.scala │ │ ├── UserLagCache.scala │ │ └── package.scala ├── storm │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── StormBsonHandlers.scala │ │ ├── StormDay.scala │ │ ├── StormForm.scala │ │ ├── StormHigh.scala │ │ ├── StormJson.scala │ │ ├── StormPuzzle.scala │ │ ├── StormSelector.scala │ │ ├── StormSign.scala │ │ ├── package.scala │ │ └── ui │ │ └── StormUi.scala ├── streamer │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── LiveApi.scala │ │ ├── Publisher.scala │ │ ├── StreamerApi.scala │ │ ├── StreamerForm.scala │ │ ├── StreamerOauth.scala │ │ ├── StreamerPager.scala │ │ ├── StreamerRepo.scala │ │ ├── TwitchApi.scala │ │ ├── YoutubeApi.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ ├── StreamerBits.scala │ │ ├── StreamerEdit.scala │ │ └── StreamerUi.scala ├── study │ └── src │ │ ├── main │ │ ├── AnaDests.scala │ │ ├── AnaDrop.scala │ │ ├── AnaMove.scala │ │ ├── BSONHandlers.scala │ │ ├── Chapter.scala │ │ ├── ChapterMaker.scala │ │ ├── ChapterRepo.scala │ │ ├── CommentParser.scala │ │ ├── Env.scala │ │ ├── ExplorerGame.scala │ │ ├── GameToRoot.scala │ │ ├── GifExport.scala │ │ ├── JsonView.scala │ │ ├── MoveOpts.scala │ │ ├── MultiPgn.scala │ │ ├── Node.scala │ │ ├── PgnDump.scala │ │ ├── Position.scala │ │ ├── ServerEval.scala │ │ ├── Settings.scala │ │ ├── Study.scala │ │ ├── StudyApi.scala │ │ ├── StudyChapterPreview.scala │ │ ├── StudyFlatTree.scala │ │ ├── StudyForm.scala │ │ ├── StudyInvite.scala │ │ ├── StudyMaker.scala │ │ ├── StudyMember.scala │ │ ├── StudyPager.scala │ │ ├── StudyPgnImport.scala │ │ ├── StudyPgnImportNew.scala │ │ ├── StudyPgnTags.scala │ │ ├── StudyPlayer.scala │ │ ├── StudyRepo.scala │ │ ├── StudySequencer.scala │ │ ├── StudySocket.scala │ │ ├── StudyTopic.scala │ │ ├── TreeBuilder.scala │ │ ├── UciPath.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── ListUi.scala │ │ │ ├── StudyBits.scala │ │ │ └── StudyUi.scala │ │ └── test │ │ ├── BsonHandlersTest.scala │ │ ├── CommentParserTest.scala │ │ ├── Helpers.scala │ │ ├── JsonFixtures.scala │ │ ├── JsonTest.scala │ │ ├── MultiPgnTest.scala │ │ ├── NewTreeCheck.scala │ │ ├── PathTest.scala │ │ ├── PgnDumpTest.scala │ │ ├── PgnFixtures.scala │ │ ├── PgnImportTest.scala │ │ ├── PgnRoundTripTest.scala │ │ ├── StudyArbitraries.scala │ │ ├── StudyIntegrationTest.scala │ │ └── newTreeTest.scala ├── studySearch │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── StudySearchApi.scala │ │ └── package.scala ├── swiss │ └── src │ │ ├── main │ │ ├── BsonHandlers.scala │ │ ├── Env.scala │ │ ├── PairingSystem.scala │ │ ├── Swiss.scala │ │ ├── SwissApi.scala │ │ ├── SwissBan.scala │ │ ├── SwissBoard.scala │ │ ├── SwissCache.scala │ │ ├── SwissCondition.scala │ │ ├── SwissCsv.scala │ │ ├── SwissDirector.scala │ │ ├── SwissFeature.scala │ │ ├── SwissForm.scala │ │ ├── SwissJson.scala │ │ ├── SwissManualPairing.scala │ │ ├── SwissNotify.scala │ │ ├── SwissOfficialSchedule.scala │ │ ├── SwissPairing.scala │ │ ├── SwissPlayer.scala │ │ ├── SwissRankingApi.scala │ │ ├── SwissRoundPager.scala │ │ ├── SwissScoring.scala │ │ ├── SwissSheet.scala │ │ ├── SwissSocket.scala │ │ ├── SwissStandingApi.scala │ │ ├── SwissStats.scala │ │ ├── SwissTrf.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── SwissBitsUi.scala │ │ │ ├── SwissFormUi.scala │ │ │ ├── SwissHomeUi.scala │ │ │ └── SwissShow.scala │ │ └── test │ │ └── SwissScoringTest.scala ├── team │ └── src │ │ └── main │ │ ├── BSONHandlers.scala │ │ ├── Cached.scala │ │ ├── Env.scala │ │ ├── JsonView.scala │ │ ├── Notifier.scala │ │ ├── PaginatorBuilder.scala │ │ ├── Team.scala │ │ ├── TeamApi.scala │ │ ├── TeamForm.scala │ │ ├── TeamLimiter.scala │ │ ├── TeamMember.scala │ │ ├── TeamMemberRepo.scala │ │ ├── TeamMemberStream.scala │ │ ├── TeamRepo.scala │ │ ├── TeamRequest.scala │ │ ├── TeamRequestRepo.scala │ │ ├── TeamSecurity.scala │ │ ├── TeamSocket.scala │ │ ├── package.scala │ │ └── ui │ │ ├── AdminUi.scala │ │ ├── FormUi.scala │ │ ├── RequestUi.scala │ │ └── TeamUi.scala ├── teamSearch │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── TeamSearchApi.scala │ │ └── package.scala ├── timeline │ └── src │ │ └── main │ │ ├── Entry.scala │ │ ├── EntryApi.scala │ │ ├── Env.scala │ │ ├── TimelineApi.scala │ │ ├── TimelineUi.scala │ │ ├── UnsubApi.scala │ │ └── package.scala ├── title │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── TitleApi.scala │ │ ├── TitleForm.scala │ │ ├── TitleRequest.scala │ │ ├── package.scala │ │ └── ui │ │ ├── TitleModUi.scala │ │ └── TitleUi.scala ├── tournament │ └── src │ │ ├── main │ │ ├── ApiJsonView.scala │ │ ├── AutoPairing.scala │ │ ├── BSONHandlers.scala │ │ ├── ColorHistory.scala │ │ ├── CreatedOrganizer.scala │ │ ├── Duel.scala │ │ ├── Env.scala │ │ ├── ForbiddenFlag.scala │ │ ├── JsonView.scala │ │ ├── LeaderboardApi.scala │ │ ├── LeaderboardIndexer.scala │ │ ├── Pairing.scala │ │ ├── PairingRepo.scala │ │ ├── Pause.scala │ │ ├── PlanBuilder.scala │ │ ├── Player.scala │ │ ├── PlayerRepo.scala │ │ ├── Revolution.scala │ │ ├── Schedule.scala │ │ ├── Spotlight.scala │ │ ├── StartedOrganizer.scala │ │ ├── TeamBattle.scala │ │ ├── Tournament.scala │ │ ├── TournamentApi.scala │ │ ├── TournamentBusHandler.scala │ │ ├── TournamentCache.scala │ │ ├── TournamentCondition.scala │ │ ├── TournamentCsv.scala │ │ ├── TournamentFeaturing.scala │ │ ├── TournamentForm.scala │ │ ├── TournamentLilaHttp.scala │ │ ├── TournamentModeration.scala │ │ ├── TournamentName.scala │ │ ├── TournamentNotify.scala │ │ ├── TournamentRepo.scala │ │ ├── TournamentScheduler.scala │ │ ├── TournamentShield.scala │ │ ├── TournamentSocket.scala │ │ ├── TournamentStandingApi.scala │ │ ├── TournamentStats.scala │ │ ├── WaitingUsers.scala │ │ ├── WinnersApi.scala │ │ ├── arena │ │ │ ├── AntmaPairing.scala │ │ │ ├── ArenaSheet.scala │ │ │ └── PairingSystem.scala │ │ ├── crud │ │ │ ├── CrudApi.scala │ │ │ └── CrudForm.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── ModerationUi.scala │ │ │ ├── TeamBattleUi.scala │ │ │ ├── TournamentForm.scala │ │ │ ├── TournamentList.scala │ │ │ ├── TournamentShow.scala │ │ │ ├── TournamentUi.scala │ │ │ └── UserTournament.scala │ │ └── test │ │ ├── ColorHistoryTest.scala │ │ ├── DuelTest.scala │ │ ├── PlanBuilderTest.scala │ │ ├── ScheduleTestHelpers.scala │ │ └── SchedulerTest.scala ├── tree │ └── src │ │ └── main │ │ ├── Advice.scala │ │ ├── Analysis.scala │ │ ├── ExportOptions.scala │ │ ├── Info.scala │ │ ├── NewTreeBuilder.scala │ │ ├── ParseImport.scala │ │ ├── StatusText.scala │ │ ├── TreeBuilder.scala │ │ ├── eval.scala │ │ ├── newTree.scala │ │ ├── package.scala │ │ └── tree.scala ├── tutor │ └── src │ │ ├── main │ │ ├── Env.scala │ │ ├── TutorApi.scala │ │ ├── TutorBsonHandlers.scala │ │ ├── TutorBuilder.scala │ │ ├── TutorClockUsage.scala │ │ ├── TutorCompare.scala │ │ ├── TutorConversion.scala │ │ ├── TutorCustomInsight.scala │ │ ├── TutorFishnet.scala │ │ ├── TutorFlagging.scala │ │ ├── TutorFullReport.scala │ │ ├── TutorGlicko.scala │ │ ├── TutorNumber.scala │ │ ├── TutorOpening.scala │ │ ├── TutorPerfReport.scala │ │ ├── TutorPhase.scala │ │ ├── TutorQueue.scala │ │ ├── TutorResourcefulness.scala │ │ ├── TutorTime.scala │ │ ├── model.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── PerfUi.scala │ │ │ ├── TutorBits.scala │ │ │ ├── TutorHome.scala │ │ │ ├── TutorOpening.scala │ │ │ ├── compare.scala │ │ │ ├── concept.scala │ │ │ └── grade.scala │ │ └── test │ │ └── GlickoTest.scala ├── tv │ └── src │ │ └── main │ │ ├── ChannelSyncActor.scala │ │ ├── Env.scala │ │ ├── Tv.scala │ │ ├── TvBroadcast.scala │ │ ├── TvSyncActor.scala │ │ ├── TvUi.scala │ │ └── package.scala ├── ublog │ └── src │ │ └── main │ │ ├── Env.scala │ │ ├── UblogApi.scala │ │ ├── UblogAutomod.scala │ │ ├── UblogBlog.scala │ │ ├── UblogBsonHandlers.scala │ │ ├── UblogByMonth.scala │ │ ├── UblogForm.scala │ │ ├── UblogJsonView.scala │ │ ├── UblogPaginator.scala │ │ ├── UblogPost.scala │ │ ├── UblogSearch.scala │ │ ├── UblogTopic.scala │ │ ├── UblogViewCounter.scala │ │ ├── package.scala │ │ └── ui │ │ ├── UblogFormUi.scala │ │ ├── UblogPostUi.scala │ │ └── UblogUi.scala ├── ui │ └── src │ │ └── main │ │ ├── ContentSecurityPolicy.scala │ │ ├── Context.scala │ │ ├── Icon.scala │ │ ├── Menu.scala │ │ ├── Nonce.scala │ │ ├── Page.scala │ │ ├── helper │ │ ├── AssetHelper.scala │ │ ├── ChessHelper.scala │ │ ├── DateHelper.scala │ │ ├── FlashHelper.scala │ │ ├── Form3.scala │ │ ├── FormHelper.scala │ │ ├── GameHelper.scala │ │ ├── Helpers.scala │ │ ├── HtmlHelper.scala │ │ ├── I18nHelper.scala │ │ ├── NumberHelper.scala │ │ ├── PaginatorHelper.scala │ │ ├── StringHelper.scala │ │ ├── TeamHelper.scala │ │ └── UserHelper.scala │ │ ├── package.scala │ │ ├── router │ │ ├── LilaRouter.scala │ │ └── router.scala │ │ ├── scalatags.scala │ │ └── ui │ │ ├── AtomUi.scala │ │ ├── bits.scala │ │ └── navTree.scala ├── user │ └── src │ │ ├── main │ │ ├── BSONHandlers.scala │ │ ├── Cached.scala │ │ ├── Env.scala │ │ ├── Flags.scala │ │ ├── FlairApi.scala │ │ ├── JsonView.scala │ │ ├── LightUserApi.scala │ │ ├── Links.scala │ │ ├── NoteApi.scala │ │ ├── Plan.scala │ │ ├── Profile.scala │ │ ├── RankingApi.scala │ │ ├── TotpSecret.scala │ │ ├── Trophy.scala │ │ ├── TrophyApi.scala │ │ ├── User.scala │ │ ├── UserApi.scala │ │ ├── UserAuth.scala │ │ ├── UserForm.scala │ │ ├── UserPerfsRepo.scala │ │ ├── UserRepo.scala │ │ ├── package.scala │ │ └── ui │ │ │ ├── NoteUi.scala │ │ │ ├── UserActionMenu.scala │ │ │ ├── UserBits.scala │ │ │ ├── UserGamesDownload.scala │ │ │ ├── UserList.scala │ │ │ ├── UserShow.scala │ │ │ └── UserShowSide.scala │ │ └── test │ │ ├── BCryptTest.scala │ │ ├── TotpTest.scala │ │ └── UserTest.scala ├── video │ └── src │ │ └── main │ │ ├── CsvParser.scala │ │ ├── Env.scala │ │ ├── Video.scala │ │ ├── VideoApi.scala │ │ ├── VideoSheet.scala │ │ ├── View.scala │ │ ├── Youtube.scala │ │ ├── control.scala │ │ ├── package.scala │ │ └── ui │ │ └── VideoUi.scala └── web │ ├── README.md │ └── src │ ├── main │ ├── AnnounceApi.scala │ ├── AssetManifest.scala │ ├── ConcurrencyLimit.scala │ ├── ContentSecurityPolicy.scala │ ├── CtrlErrors.scala │ ├── CtrlExtensions.scala │ ├── Env.scala │ ├── GitHub.scala │ ├── HashedMultiPart.scala │ ├── HttpFilter.scala │ ├── InfluxEvent.scala │ ├── Limiters.scala │ ├── LoggerConfigurator.scala │ ├── Mobile.scala │ ├── PagerDuty.scala │ ├── PlayServer.scala │ ├── PrometheusReporter.scala │ ├── ReferrerRedirect.scala │ ├── RequestGetter.scala │ ├── ResponseBuilder.scala │ ├── ResponseHeaders.scala │ ├── ResponseWriter.scala │ ├── StaticContent.scala │ ├── TheftPrevention.scala │ ├── WebConfig.scala │ ├── WebForms.scala │ ├── helper │ │ ├── AssetFullHelper.scala │ │ └── SecurityHelper.scala │ ├── package.scala │ └── ui │ │ ├── AuthUi.scala │ │ ├── BoardEditorUi.scala │ │ ├── CaptchaUi.scala │ │ ├── DevUi.scala │ │ ├── DgtUi.scala │ │ ├── FaqUi.scala │ │ ├── LearnUi.scala │ │ ├── PieceSetImages.scala │ │ ├── SiteMessage.scala │ │ ├── SitePages.scala │ │ ├── TopNav.scala │ │ ├── bits.scala │ │ ├── contact.scala │ │ ├── help.scala │ │ ├── layout.scala │ │ ├── mobile.scala │ │ └── openGraph.scala │ └── test │ ├── ReferrerRedirectTest.scala │ └── common │ ├── AutoConfigTest.scala │ ├── FormTest.scala │ ├── HTTPRequestTest.scala │ ├── LameNameTest.scala │ ├── MarkdownTest.scala │ ├── RawHtmlTest.scala │ ├── StringTest.scala │ └── UblogMarkupTest.scala ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── project ├── BuildSettings.scala ├── Dependencies.scala ├── I18n.scala ├── build.properties └── plugins.sbt ├── public ├── apple-touch-icon.png ├── architecture.xml ├── cursors │ ├── black-bishop.cur │ ├── black-king.cur │ ├── black-knight.cur │ ├── black-pawn.cur │ ├── black-queen.cur │ ├── black-rook.cur │ ├── trash.cur │ ├── white-bishop.cur │ ├── white-king.cur │ ├── white-knight.cur │ ├── white-pawn.cur │ ├── white-queen.cur │ └── white-rook.cur ├── data │ └── bot │ │ └── README.md ├── favicon.ico ├── fide │ ├── fed-webp │ │ ├── AFG.webp │ │ ├── AHO.webp │ │ ├── ALB.webp │ │ ├── ALG.webp │ │ ├── AND.webp │ │ ├── ANG.webp │ │ ├── ANT.webp │ │ ├── ARG.webp │ │ ├── ARM.webp │ │ ├── ARU.webp │ │ ├── AUS.webp │ │ ├── AUT.webp │ │ ├── AZE.webp │ │ ├── BAH.webp │ │ ├── BAN.webp │ │ ├── BAR.webp │ │ ├── BDI.webp │ │ ├── BEL.webp │ │ ├── BER.webp │ │ ├── BHU.webp │ │ ├── BIH.webp │ │ ├── BIZ.webp │ │ ├── BLR.webp │ │ ├── BOL.webp │ │ ├── BOT.webp │ │ ├── BRA.webp │ │ ├── BRN.webp │ │ ├── BRU.webp │ │ ├── BUL.webp │ │ ├── BUR.webp │ │ ├── CAF.webp │ │ ├── CAM.webp │ │ ├── CAN.webp │ │ ├── CAY.webp │ │ ├── CGO.webp │ │ ├── CHA.webp │ │ ├── CHI.webp │ │ ├── CHN.webp │ │ ├── CIV.webp │ │ ├── CMR.webp │ │ ├── COD.webp │ │ ├── COL.webp │ │ ├── COM.webp │ │ ├── CPV.webp │ │ ├── CRC.webp │ │ ├── CRO.webp │ │ ├── CUB.webp │ │ ├── CYP.webp │ │ ├── CZE.webp │ │ ├── DEN.webp │ │ ├── DJI.webp │ │ ├── DMA.webp │ │ ├── DOM.webp │ │ ├── ECU.webp │ │ ├── EGY.webp │ │ ├── ENG.webp │ │ ├── ERI.webp │ │ ├── ESA.webp │ │ ├── ESP.webp │ │ ├── EST.webp │ │ ├── ETH.webp │ │ ├── FAI.webp │ │ ├── FID.webp │ │ ├── FIJ.webp │ │ ├── FIN.webp │ │ ├── FRA.webp │ │ ├── GAB.webp │ │ ├── GAM.webp │ │ ├── GCI.webp │ │ ├── GEO.webp │ │ ├── GEQ.webp │ │ ├── GER.webp │ │ ├── GHA.webp │ │ ├── GRE.webp │ │ ├── GRL.webp │ │ ├── GRN.webp │ │ ├── GUA.webp │ │ ├── GUM.webp │ │ ├── GUY.webp │ │ ├── HAI.webp │ │ ├── HKG.webp │ │ ├── HON.webp │ │ ├── HUN.webp │ │ ├── INA.webp │ │ ├── IND.webp │ │ ├── IOM.webp │ │ ├── IRI.webp │ │ ├── IRL.webp │ │ ├── IRQ.webp │ │ ├── ISL.webp │ │ ├── ISR.webp │ │ ├── ISV.webp │ │ ├── ITA.webp │ │ ├── IVB.webp │ │ ├── JAM.webp │ │ ├── JCI.webp │ │ ├── JOR.webp │ │ ├── JPN.webp │ │ ├── KAZ.webp │ │ ├── KEN.webp │ │ ├── KGZ.webp │ │ ├── KOR.webp │ │ ├── KOS.webp │ │ ├── KSA.webp │ │ ├── KUW.webp │ │ ├── LAO.webp │ │ ├── LAT.webp │ │ ├── LBA.webp │ │ ├── LBN.webp │ │ ├── LBR.webp │ │ ├── LCA.webp │ │ ├── LES.webp │ │ ├── LIE.webp │ │ ├── LTU.webp │ │ ├── LUX.webp │ │ ├── MAC.webp │ │ ├── MAD.webp │ │ ├── MAR.webp │ │ ├── MAS.webp │ │ ├── MAW.webp │ │ ├── MDA.webp │ │ ├── MDV.webp │ │ ├── MEX.webp │ │ ├── MGL.webp │ │ ├── MKD.webp │ │ ├── MLI.webp │ │ ├── MLT.webp │ │ ├── MNC.webp │ │ ├── MNE.webp │ │ ├── MOZ.webp │ │ ├── MRI.webp │ │ ├── MTN.webp │ │ ├── MYA.webp │ │ ├── NAM.webp │ │ ├── NCA.webp │ │ ├── NCL.webp │ │ ├── NED.webp │ │ ├── NEP.webp │ │ ├── NGR.webp │ │ ├── NIG.webp │ │ ├── NOR.webp │ │ ├── NRU.webp │ │ ├── NZL.webp │ │ ├── OMA.webp │ │ ├── PAK.webp │ │ ├── PAN.webp │ │ ├── PAR.webp │ │ ├── PER.webp │ │ ├── PHI.webp │ │ ├── PLE.webp │ │ ├── PLW.webp │ │ ├── PNG.webp │ │ ├── POL.webp │ │ ├── POR.webp │ │ ├── PUR.webp │ │ ├── QAT.webp │ │ ├── ROU.webp │ │ ├── RSA.webp │ │ ├── RUS.webp │ │ ├── RWA.webp │ │ ├── SCO.webp │ │ ├── SEN.webp │ │ ├── SEY.webp │ │ ├── SGP.webp │ │ ├── SKN.webp │ │ ├── SLE.webp │ │ ├── SLO.webp │ │ ├── SMR.webp │ │ ├── SOL.webp │ │ ├── SOM.webp │ │ ├── SRB.webp │ │ ├── SRI.webp │ │ ├── SSD.webp │ │ ├── STP.webp │ │ ├── SUD.webp │ │ ├── SUI.webp │ │ ├── SUR.webp │ │ ├── SVK.webp │ │ ├── SWE.webp │ │ ├── SWZ.webp │ │ ├── SYR.webp │ │ ├── TAN.webp │ │ ├── TGA.webp │ │ ├── THA.webp │ │ ├── TJK.webp │ │ ├── TKM.webp │ │ ├── TLS.webp │ │ ├── TOG.webp │ │ ├── TPE.webp │ │ ├── TTO.webp │ │ ├── TUN.webp │ │ ├── TUR.webp │ │ ├── UAE.webp │ │ ├── UGA.webp │ │ ├── UKR.webp │ │ ├── URU.webp │ │ ├── USA.webp │ │ ├── UZB.webp │ │ ├── VAN.webp │ │ ├── VEN.webp │ │ ├── VIE.webp │ │ ├── VIN.webp │ │ ├── W.webp │ │ ├── WLS.webp │ │ ├── YEM.webp │ │ ├── ZAM.webp │ │ ├── ZIM.webp │ │ ├── _BLR.webp │ │ └── _RUS.webp │ └── fed │ │ ├── AFG.svg │ │ ├── AHO.svg │ │ ├── ALB.svg │ │ ├── ALG.svg │ │ ├── AND.svg │ │ ├── ANG.svg │ │ ├── ANT.svg │ │ ├── ARG.svg │ │ ├── ARM.svg │ │ ├── ARU.svg │ │ ├── AUS.svg │ │ ├── AUT.svg │ │ ├── AZE.svg │ │ ├── BAH.svg │ │ ├── BAN.svg │ │ ├── BAR.svg │ │ ├── BDI.svg │ │ ├── BEL.svg │ │ ├── BER.svg │ │ ├── BHU.svg │ │ ├── BIH.svg │ │ ├── BIZ.svg │ │ ├── BLR.svg │ │ ├── BOL.svg │ │ ├── BOT.svg │ │ ├── BRA.svg │ │ ├── BRN.svg │ │ ├── BRU.svg │ │ ├── BUL.svg │ │ ├── BUR.svg │ │ ├── CAF.svg │ │ ├── CAM.svg │ │ ├── CAN.svg │ │ ├── CAY.svg │ │ ├── CGO.svg │ │ ├── CHA.svg │ │ ├── CHI.svg │ │ ├── CHN.svg │ │ ├── CIV.svg │ │ ├── CMR.svg │ │ ├── COD.svg │ │ ├── COL.svg │ │ ├── COM.svg │ │ ├── CPV.svg │ │ ├── CRC.svg │ │ ├── CRO.svg │ │ ├── CUB.svg │ │ ├── CYP.svg │ │ ├── CZE.svg │ │ ├── DEN.svg │ │ ├── DJI.svg │ │ ├── DMA.svg │ │ ├── DOM.svg │ │ ├── ECU.svg │ │ ├── EGY.svg │ │ ├── ENG.svg │ │ ├── ERI.svg │ │ ├── ESA.svg │ │ ├── ESP.svg │ │ ├── EST.svg │ │ ├── ETH.svg │ │ ├── FAI.svg │ │ ├── FID.svg │ │ ├── FIJ.svg │ │ ├── FIN.svg │ │ ├── FRA.svg │ │ ├── GAB.svg │ │ ├── GAM.svg │ │ ├── GCI.svg │ │ ├── GEO.svg │ │ ├── GEQ.svg │ │ ├── GER.svg │ │ ├── GHA.svg │ │ ├── GRE.svg │ │ ├── GRL.svg │ │ ├── GRN.svg │ │ ├── GUA.svg │ │ ├── GUM.svg │ │ ├── GUY.svg │ │ ├── HAI.svg │ │ ├── HKG.svg │ │ ├── HON.svg │ │ ├── HUN.svg │ │ ├── INA.svg │ │ ├── IND.svg │ │ ├── IOM.svg │ │ ├── IRI.svg │ │ ├── IRL.svg │ │ ├── IRQ.svg │ │ ├── ISL.svg │ │ ├── ISR.svg │ │ ├── ISV.svg │ │ ├── ITA.svg │ │ ├── IVB.svg │ │ ├── JAM.svg │ │ ├── JCI.svg │ │ ├── JOR.svg │ │ ├── JPN.svg │ │ ├── KAZ.svg │ │ ├── KEN.svg │ │ ├── KGZ.svg │ │ ├── KOR.svg │ │ ├── KOS.svg │ │ ├── KSA.svg │ │ ├── KUW.svg │ │ ├── LAO.svg │ │ ├── LAT.svg │ │ ├── LBA.svg │ │ ├── LBN.svg │ │ ├── LBR.svg │ │ ├── LCA.svg │ │ ├── LES.svg │ │ ├── LIE.svg │ │ ├── LTU.svg │ │ ├── LUX.svg │ │ ├── MAC.svg │ │ ├── MAD.svg │ │ ├── MAR.svg │ │ ├── MAS.svg │ │ ├── MAW.svg │ │ ├── MDA.svg │ │ ├── MDV.svg │ │ ├── MEX.svg │ │ ├── MGL.svg │ │ ├── MKD.svg │ │ ├── MLI.svg │ │ ├── MLT.svg │ │ ├── MNC.svg │ │ ├── MNE.svg │ │ ├── MOZ.svg │ │ ├── MRI.svg │ │ ├── MTN.svg │ │ ├── MYA.svg │ │ ├── NAM.svg │ │ ├── NCA.svg │ │ ├── NCL.svg │ │ ├── NED.svg │ │ ├── NEP.svg │ │ ├── NGR.svg │ │ ├── NIG.svg │ │ ├── NOR.svg │ │ ├── NRU.svg │ │ ├── NZL.svg │ │ ├── OMA.svg │ │ ├── PAK.svg │ │ ├── PAN.svg │ │ ├── PAR.svg │ │ ├── PER.svg │ │ ├── PHI.svg │ │ ├── PLE.svg │ │ ├── PLW.svg │ │ ├── PNG.svg │ │ ├── POL.svg │ │ ├── POR.svg │ │ ├── PUR.svg │ │ ├── QAT.svg │ │ ├── ROU.svg │ │ ├── RSA.svg │ │ ├── RUS.svg │ │ ├── RWA.svg │ │ ├── SCO.svg │ │ ├── SEN.svg │ │ ├── SEY.svg │ │ ├── SGP.svg │ │ ├── SKN.svg │ │ ├── SLE.svg │ │ ├── SLO.svg │ │ ├── SMR.svg │ │ ├── SOL.svg │ │ ├── SOM.svg │ │ ├── SRB.svg │ │ ├── SRI.svg │ │ ├── SSD.svg │ │ ├── STP.svg │ │ ├── SUD.svg │ │ ├── SUI.svg │ │ ├── SUR.svg │ │ ├── SVK.svg │ │ ├── SWE.svg │ │ ├── SWZ.svg │ │ ├── SYR.svg │ │ ├── TAN.svg │ │ ├── TGA.svg │ │ ├── THA.svg │ │ ├── TJK.svg │ │ ├── TKM.svg │ │ ├── TLS.svg │ │ ├── TOG.svg │ │ ├── TPE.svg │ │ ├── TTO.svg │ │ ├── TUN.svg │ │ ├── TUR.svg │ │ ├── UAE.svg │ │ ├── UGA.svg │ │ ├── UKR.svg │ │ ├── URU.svg │ │ ├── USA.svg │ │ ├── UZB.svg │ │ ├── VAN.svg │ │ ├── VEN.svg │ │ ├── VIE.svg │ │ ├── VIN.svg │ │ ├── W.svg │ │ ├── WLS.svg │ │ ├── YEM.svg │ │ ├── ZAM.svg │ │ ├── ZIM.svg │ │ ├── _BLR.svg │ │ └── _RUS.svg ├── flags │ ├── AD.png │ ├── AE.png │ ├── AF.png │ ├── AG.png │ ├── AI.png │ ├── AL.png │ ├── AM-RA.png │ ├── AM.png │ ├── AN.png │ ├── AO.png │ ├── AQ.png │ ├── AR.png │ ├── AS.png │ ├── AT.png │ ├── AU.png │ ├── AW.png │ ├── AX.png │ ├── AZ.png │ ├── BA.png │ ├── BB.png │ ├── BD.png │ ├── BE.png │ ├── BF.png │ ├── BG.png │ ├── BH.png │ ├── BI.png │ ├── BJ.png │ ├── BL.png │ ├── BM.png │ ├── BN.png │ ├── BO.png │ ├── BQ.png │ ├── BR.png │ ├── BS.png │ ├── BT.png │ ├── BV.png │ ├── BW.png │ ├── BY.png │ ├── BZ.png │ ├── CA-QC.png │ ├── CA.png │ ├── CC.png │ ├── CD.png │ ├── CF.png │ ├── CG.png │ ├── CH.png │ ├── CI.png │ ├── CK.png │ ├── CL.png │ ├── CM.png │ ├── CN.png │ ├── CO.png │ ├── CR.png │ ├── CU.png │ ├── CV.png │ ├── CW.png │ ├── CX.png │ ├── CY.png │ ├── CZ.png │ ├── DE.png │ ├── DJ.png │ ├── DK.png │ ├── DM.png │ ├── DO.png │ ├── DZ.png │ ├── EC.png │ ├── EE.png │ ├── EG.png │ ├── EH.png │ ├── ER.png │ ├── ES-AN.png │ ├── ES-AR.png │ ├── ES-AS.png │ ├── ES-CT.png │ ├── ES-EU.png │ ├── ES-GA.png │ ├── ES.png │ ├── ET.png │ ├── EU.png │ ├── FI.png │ ├── FJ.png │ ├── FK.png │ ├── FM.png │ ├── FO.png │ ├── FR.png │ ├── GA.png │ ├── GB-ENG.png │ ├── GB-NIR.png │ ├── GB-SCT.png │ ├── GB-WLS.png │ ├── GB.png │ ├── GD.png │ ├── GE.png │ ├── GF.png │ ├── GG.png │ ├── GH.png │ ├── GI.png │ ├── GL.png │ ├── GM.png │ ├── GN.png │ ├── GP.png │ ├── GQ.png │ ├── GR.png │ ├── GS.png │ ├── GT.png │ ├── GU.png │ ├── GW.png │ ├── GY.png │ ├── HK.png │ ├── HM.png │ ├── HN.png │ ├── HR.png │ ├── HT.png │ ├── HU.png │ ├── IC.png │ ├── ID.png │ ├── IE.png │ ├── IL.png │ ├── IM.png │ ├── IN.png │ ├── IO.png │ ├── IQ.png │ ├── IR.png │ ├── IS.png │ ├── IT.png │ ├── JE.png │ ├── JM.png │ ├── JO.png │ ├── JP.png │ ├── KE.png │ ├── KG.png │ ├── KH.png │ ├── KI.png │ ├── KM.png │ ├── KN.png │ ├── KP.png │ ├── KR.png │ ├── KW.png │ ├── KY.png │ ├── KZ.png │ ├── LA.png │ ├── LB.png │ ├── LC.png │ ├── LI.png │ ├── LICENSE.txt │ ├── LK.png │ ├── LR.png │ ├── LS.png │ ├── LT.png │ ├── LU.png │ ├── LV.png │ ├── LY.png │ ├── MA.png │ ├── MC.png │ ├── MD.png │ ├── ME.png │ ├── MF.png │ ├── MG.png │ ├── MH.png │ ├── MK.png │ ├── ML.png │ ├── MM.png │ ├── MN.png │ ├── MO.png │ ├── MP.png │ ├── MQ.png │ ├── MR.png │ ├── MS.png │ ├── MT.png │ ├── MU.png │ ├── MV.png │ ├── MW.png │ ├── MX.png │ ├── MY.png │ ├── MZ.png │ ├── NA.png │ ├── NC.png │ ├── NE.png │ ├── NF.png │ ├── NG.png │ ├── NI.png │ ├── NL.png │ ├── NO.png │ ├── NP.png │ ├── NR.png │ ├── NU.png │ ├── NZ.png │ ├── OM.png │ ├── PA.png │ ├── PE.png │ ├── PF.png │ ├── PG.png │ ├── PH.png │ ├── PK.png │ ├── PL.png │ ├── PM.png │ ├── PN.png │ ├── PR.png │ ├── PS.png │ ├── PT-20.png │ ├── PT-30.png │ ├── PT.png │ ├── PW.png │ ├── PY.png │ ├── QA.png │ ├── RE.png │ ├── RO.png │ ├── RS.png │ ├── RU-TAT.png │ ├── RU.png │ ├── RW.png │ ├── SA.png │ ├── SB.png │ ├── SC.png │ ├── SD.png │ ├── SE.png │ ├── SG.png │ ├── SH.png │ ├── SI.png │ ├── SJ.png │ ├── SK.png │ ├── SL.png │ ├── SM.png │ ├── SN.png │ ├── SO.png │ ├── SR.png │ ├── SS.png │ ├── ST.png │ ├── SV.png │ ├── SX.png │ ├── SY.png │ ├── SZ.png │ ├── TC.png │ ├── TD.png │ ├── TF.png │ ├── TG.png │ ├── TH.png │ ├── TJ.png │ ├── TK.png │ ├── TL.png │ ├── TM.png │ ├── TN.png │ ├── TO.png │ ├── TR.png │ ├── TT.png │ ├── TV.png │ ├── TW.png │ ├── TZ.png │ ├── UA.png │ ├── UG.png │ ├── UM.png │ ├── US.png │ ├── UY.png │ ├── UZ.png │ ├── VA.png │ ├── VC.png │ ├── VE.png │ ├── VG.png │ ├── VI.png │ ├── VN.png │ ├── VU.png │ ├── WF.png │ ├── WS.png │ ├── XK.png │ ├── YE.png │ ├── YT.png │ ├── ZA.png │ ├── ZM.png │ ├── ZW.png │ ├── _adygea.png │ ├── _belarus-wrw.png │ ├── _earth.png │ ├── _east-turkestan.png │ ├── _kurdistan.png │ ├── _russia-wbw.png │ └── _united-nations.png ├── flair │ ├── img │ │ ├── activity.1st-place-medal.webp │ │ ├── activity.2025.webp │ │ ├── activity.2nd-place-medal.webp │ │ ├── activity.3rd-place-medal.webp │ │ ├── activity.admission-tickets.webp │ │ ├── activity.american-football.webp │ │ ├── activity.artist-palette.webp │ │ ├── activity.badminton.webp │ │ ├── activity.balloon.webp │ │ ├── activity.baseball.webp │ │ ├── activity.basketball.webp │ │ ├── activity.bowling.webp │ │ ├── activity.boxing-glove.webp │ │ ├── activity.carp-streamer.webp │ │ ├── activity.chess-pawn.webp │ │ ├── activity.chess.webp │ │ ├── activity.christmas-tree.webp │ │ ├── activity.club-suit.webp │ │ ├── activity.confetti-ball.webp │ │ ├── activity.cricket-game.webp │ │ ├── activity.crystal-ball.webp │ │ ├── activity.curling-stone.webp │ │ ├── activity.diamond-suit.webp │ │ ├── activity.direct-hit.webp │ │ ├── activity.diving-mask.webp │ │ ├── activity.field-hockey.webp │ │ ├── activity.firecracker.webp │ │ ├── activity.fireworks.webp │ │ ├── activity.fishing-pole.webp │ │ ├── activity.flag-in-hole.webp │ │ ├── activity.flower-playing-cards.webp │ │ ├── activity.flying-disc.webp │ │ ├── activity.framed-picture.webp │ │ ├── activity.game-die.webp │ │ ├── activity.goal-net.webp │ │ ├── activity.heart-suit.webp │ │ ├── activity.ice-hockey.webp │ │ ├── activity.ice-skate.webp │ │ ├── activity.jack-o-lantern.webp │ │ ├── activity.japanese-dolls.webp │ │ ├── activity.joker.webp │ │ ├── activity.joystick.webp │ │ ├── activity.kite.webp │ │ ├── activity.lacrosse.webp │ │ ├── activity.lichess-berserk.webp │ │ ├── activity.lichess-blitz.webp │ │ ├── activity.lichess-bullet.webp │ │ ├── activity.lichess-classical.webp │ │ ├── activity.lichess-correspondence.webp │ │ ├── activity.lichess-glitchsey.webp │ │ ├── activity.lichess-hogger.webp │ │ ├── activity.lichess-horsey-yin-yang.webp │ │ ├── activity.lichess-horsey.webp │ │ ├── activity.lichess-mohawk.webp │ │ ├── activity.lichess-rapid.webp │ │ ├── activity.lichess-ultrabullet.webp │ │ ├── activity.lichess-variant-960.webp │ │ ├── activity.lichess-variant-antichess.webp │ │ ├── activity.lichess-variant-atomic.webp │ │ ├── activity.lichess-variant-crazyhouse.webp │ │ ├── activity.lichess-variant-horde.webp │ │ ├── activity.lichess-variant-king-of-the-hill.webp │ │ ├── activity.lichess-variant-racing-kings.webp │ │ ├── activity.lichess-variant-three-check.webp │ │ ├── activity.lichess.webp │ │ ├── activity.magic-wand.webp │ │ ├── activity.mahjong-red-dragon.webp │ │ ├── activity.martial-arts-uniform.webp │ │ ├── activity.military-medal.webp │ │ ├── activity.mirror-ball.webp │ │ ├── activity.moon-viewing-ceremony.webp │ │ ├── activity.nesting-dolls.webp │ │ ├── activity.party-popper.webp │ │ ├── activity.performing-arts.webp │ │ ├── activity.pinata.webp │ │ ├── activity.pine-decoration.webp │ │ ├── activity.ping-pong.webp │ │ ├── activity.pistol.webp │ │ ├── activity.pool-8-ball.webp │ │ ├── activity.puzzle-piece.webp │ │ ├── activity.red-envelope.webp │ │ ├── activity.rugby-football.webp │ │ ├── activity.running-shirt.webp │ │ ├── activity.shogi-bigsby.webp │ │ ├── activity.shogi-king.webp │ │ ├── activity.skis.webp │ │ ├── activity.sled.webp │ │ ├── activity.slot-machine.webp │ │ ├── activity.soccer-ball.webp │ │ ├── activity.softball.webp │ │ ├── activity.spade-suit.webp │ │ ├── activity.sparkler.webp │ │ ├── activity.sparkles.webp │ │ ├── activity.sports-medal.webp │ │ ├── activity.tanabata-tree.webp │ │ ├── activity.tennis.webp │ │ ├── activity.ticket.webp │ │ ├── activity.trophy.webp │ │ ├── activity.video-game.webp │ │ ├── activity.volleyball.webp │ │ ├── activity.wind-chime.webp │ │ ├── activity.wrapped-gift.webp │ │ ├── activity.xmas-lichess-horsey.webp │ │ ├── activity.yo-yo.webp │ │ ├── food-drink.amphora.webp │ │ ├── food-drink.avocado.webp │ │ ├── food-drink.baby-bottle.webp │ │ ├── food-drink.bacon.webp │ │ ├── food-drink.bagel.webp │ │ ├── food-drink.baguette-bread.webp │ │ ├── food-drink.banana.webp │ │ ├── food-drink.beans.webp │ │ ├── food-drink.beer-mug.webp │ │ ├── food-drink.bell-pepper.webp │ │ ├── food-drink.bento-box.webp │ │ ├── food-drink.beverage-box.webp │ │ ├── food-drink.birthday-cake.webp │ │ ├── food-drink.blueberries.webp │ │ ├── food-drink.bottle-with-popping-cork.webp │ │ ├── food-drink.bowl-with-spoon.webp │ │ ├── food-drink.bread.webp │ │ ├── food-drink.broccoli.webp │ │ ├── food-drink.brown-mushroom.webp │ │ ├── food-drink.bubble-tea.webp │ │ ├── food-drink.burrito.webp │ │ ├── food-drink.butter.webp │ │ ├── food-drink.candy.webp │ │ ├── food-drink.canned-food.webp │ │ ├── food-drink.carrot.webp │ │ ├── food-drink.cheese-wedge.webp │ │ ├── food-drink.cherries.webp │ │ ├── food-drink.chestnut.webp │ │ ├── food-drink.chocolate-bar.webp │ │ ├── food-drink.chopsticks.webp │ │ ├── food-drink.clinking-beer-mugs.webp │ │ ├── food-drink.clinking-glasses.webp │ │ ├── food-drink.cocktail-glass.webp │ │ ├── food-drink.coconut.webp │ │ ├── food-drink.cooked-rice.webp │ │ ├── food-drink.cookie.webp │ │ ├── food-drink.cooking.webp │ │ ├── food-drink.croissant.webp │ │ ├── food-drink.cucumber.webp │ │ ├── food-drink.cup-with-straw.webp │ │ ├── food-drink.cupcake.webp │ │ ├── food-drink.curry-rice.webp │ │ ├── food-drink.custard.webp │ │ ├── food-drink.cut-of-meat.webp │ │ ├── food-drink.dango.webp │ │ ├── food-drink.doughnut.webp │ │ ├── food-drink.dumpling.webp │ │ ├── food-drink.ear-of-corn.webp │ │ ├── food-drink.egg.webp │ │ ├── food-drink.falafel.webp │ │ ├── food-drink.fish-cake-with-swirl.webp │ │ ├── food-drink.flatbread.webp │ │ ├── food-drink.fondue.webp │ │ ├── food-drink.fork-and-knife-with-plate.webp │ │ ├── food-drink.fork-and-knife.webp │ │ ├── food-drink.fortune-cookie.webp │ │ ├── food-drink.french-fries.webp │ │ ├── food-drink.fried-shrimp.webp │ │ ├── food-drink.garlic.webp │ │ ├── food-drink.ginger.webp │ │ ├── food-drink.glass-of-milk.webp │ │ ├── food-drink.grapes.webp │ │ ├── food-drink.green-apple.webp │ │ ├── food-drink.green-salad.webp │ │ ├── food-drink.hamburger.webp │ │ ├── food-drink.honey-pot.webp │ │ ├── food-drink.hot-beverage.webp │ │ ├── food-drink.hot-dog.webp │ │ ├── food-drink.hot-pepper.webp │ │ ├── food-drink.ice-cream.webp │ │ ├── food-drink.ice.webp │ │ ├── food-drink.jar.webp │ │ ├── food-drink.kitchen-knife.webp │ │ ├── food-drink.kiwi-fruit.webp │ │ ├── food-drink.leafy-green.webp │ │ ├── food-drink.lemon.webp │ │ ├── food-drink.lime.webp │ │ ├── food-drink.lollipop.webp │ │ ├── food-drink.mango.webp │ │ ├── food-drink.mate.webp │ │ ├── food-drink.meat-on-bone.webp │ │ ├── food-drink.melon.webp │ │ ├── food-drink.moon-cake.webp │ │ ├── food-drink.oden.webp │ │ ├── food-drink.olive.webp │ │ ├── food-drink.onion.webp │ │ ├── food-drink.pancakes.webp │ │ ├── food-drink.pea-pod.webp │ │ ├── food-drink.peanuts.webp │ │ ├── food-drink.pear.webp │ │ ├── food-drink.pie.webp │ │ ├── food-drink.pineapple.webp │ │ ├── food-drink.pizza.webp │ │ ├── food-drink.popcorn.webp │ │ ├── food-drink.pot-of-food.webp │ │ ├── food-drink.potato.webp │ │ ├── food-drink.poultry-leg.webp │ │ ├── food-drink.pouring-liquid.webp │ │ ├── food-drink.pretzel.webp │ │ ├── food-drink.red-apple.webp │ │ ├── food-drink.rice-ball.webp │ │ ├── food-drink.rice-cracker.webp │ │ ├── food-drink.roasted-sweet-potato.webp │ │ ├── food-drink.root-vegetable.webp │ │ ├── food-drink.sake.webp │ │ ├── food-drink.salt.webp │ │ ├── food-drink.sandwich.webp │ │ ├── food-drink.shallow-pan-of-food.webp │ │ ├── food-drink.shaved-ice.webp │ │ ├── food-drink.shortcake.webp │ │ ├── food-drink.soft-ice-cream.webp │ │ ├── food-drink.spaghetti.webp │ │ ├── food-drink.spoon.webp │ │ ├── food-drink.steaming-bowl.webp │ │ ├── food-drink.strawberry.webp │ │ ├── food-drink.stuffed-flatbread.webp │ │ ├── food-drink.sushi.webp │ │ ├── food-drink.taco.webp │ │ ├── food-drink.takeout-box.webp │ │ ├── food-drink.tamale.webp │ │ ├── food-drink.tangerine.webp │ │ ├── food-drink.teacup-without-handle.webp │ │ ├── food-drink.teapot.webp │ │ ├── food-drink.tomato.webp │ │ ├── food-drink.tropical-drink.webp │ │ ├── food-drink.tumbler-glass.webp │ │ ├── food-drink.waffle.webp │ │ ├── food-drink.watermelon.webp │ │ ├── food-drink.wine-glass.webp │ │ ├── nature.ant.webp │ │ ├── nature.baby-chick.webp │ │ ├── nature.badger.webp │ │ ├── nature.bat.webp │ │ ├── nature.bear.webp │ │ ├── nature.beaver.webp │ │ ├── nature.beetle.webp │ │ ├── nature.bird.webp │ │ ├── nature.bison.webp │ │ ├── nature.black-bird.webp │ │ ├── nature.black-cat.webp │ │ ├── nature.blossom.webp │ │ ├── nature.blowfish.webp │ │ ├── nature.boar.webp │ │ ├── nature.bouquet.webp │ │ ├── nature.bug.webp │ │ ├── nature.butterfly.webp │ │ ├── nature.cactus.webp │ │ ├── nature.camel.webp │ │ ├── nature.cat-face.webp │ │ ├── nature.cat.webp │ │ ├── nature.cherry-blossom.webp │ │ ├── nature.chicken.webp │ │ ├── nature.chipmunk.webp │ │ ├── nature.closed-umbrella.webp │ │ ├── nature.cloud-with-lightning-and-rain.webp │ │ ├── nature.cloud-with-lightning.webp │ │ ├── nature.cloud-with-rain.webp │ │ ├── nature.cloud-with-snow.webp │ │ ├── nature.cloud.webp │ │ ├── nature.cockroach.webp │ │ ├── nature.comet.webp │ │ ├── nature.coral.webp │ │ ├── nature.cow-face.webp │ │ ├── nature.cow.webp │ │ ├── nature.crab.webp │ │ ├── nature.crescent-moon.webp │ │ ├── nature.cricket.webp │ │ ├── nature.crocodile.webp │ │ ├── nature.cyclone.webp │ │ ├── nature.deciduous-tree.webp │ │ ├── nature.deer.webp │ │ ├── nature.dodo.webp │ │ ├── nature.dog-face.webp │ │ ├── nature.dog.webp │ │ ├── nature.dolphin.webp │ │ ├── nature.donkey.webp │ │ ├── nature.dove.webp │ │ ├── nature.dragon-face.webp │ │ ├── nature.dragon.webp │ │ ├── nature.droplet.webp │ │ ├── nature.duck.webp │ │ ├── nature.eagle.webp │ │ ├── nature.elephant.webp │ │ ├── nature.empty-nest.webp │ │ ├── nature.evergreen-tree.webp │ │ ├── nature.ewe.webp │ │ ├── nature.fallen-leaf.webp │ │ ├── nature.feather.webp │ │ ├── nature.fire.webp │ │ ├── nature.first-quarter-moon-face.webp │ │ ├── nature.first-quarter-moon.webp │ │ ├── nature.fish.webp │ │ ├── nature.flamingo.webp │ │ ├── nature.fly.webp │ │ ├── nature.fog.webp │ │ ├── nature.four-leaf-clover.webp │ │ ├── nature.fox.webp │ │ ├── nature.frog.webp │ │ ├── nature.front-facing-baby-chick.webp │ │ ├── nature.full-moon-face.webp │ │ ├── nature.full-moon.webp │ │ ├── nature.giraffe.webp │ │ ├── nature.glowing-star.webp │ │ ├── nature.goat.webp │ │ ├── nature.goose.webp │ │ ├── nature.gorilla.webp │ │ ├── nature.guide-dog.webp │ │ ├── nature.hamster.webp │ │ ├── nature.hatching-chick.webp │ │ ├── nature.hedgehog.webp │ │ ├── nature.herb.webp │ │ ├── nature.hibiscus.webp │ │ ├── nature.high-voltage.webp │ │ ├── nature.hippopotamus.webp │ │ ├── nature.honeybee.webp │ │ ├── nature.horse-face.webp │ │ ├── nature.horse.webp │ │ ├── nature.hyacinth.webp │ │ ├── nature.jellyfish.webp │ │ ├── nature.kangaroo.webp │ │ ├── nature.koala.webp │ │ ├── nature.lady-beetle.webp │ │ ├── nature.last-quarter-moon-face.webp │ │ ├── nature.last-quarter-moon.webp │ │ ├── nature.leaf-fluttering-in-wind.webp │ │ ├── nature.leafless-tree.webp │ │ ├── nature.leopard.webp │ │ ├── nature.lion.webp │ │ ├── nature.lizard.webp │ │ ├── nature.llama.webp │ │ ├── nature.lobster.webp │ │ ├── nature.lotus.webp │ │ ├── nature.mammoth.webp │ │ ├── nature.maple-leaf.webp │ │ ├── nature.microbe.webp │ │ ├── nature.milky-way.webp │ │ ├── nature.monkey-face.webp │ │ ├── nature.monkey.webp │ │ ├── nature.moose.webp │ │ ├── nature.mosquito.webp │ │ ├── nature.mouse-face.webp │ │ ├── nature.mouse.webp │ │ ├── nature.mushroom.webp │ │ ├── nature.nest-with-eggs.webp │ │ ├── nature.new-moon-face.webp │ │ ├── nature.new-moon.webp │ │ ├── nature.octopus-howard.webp │ │ ├── nature.octopus.webp │ │ ├── nature.orangutan.webp │ │ ├── nature.orca.webp │ │ ├── nature.otter.webp │ │ ├── nature.owl.webp │ │ ├── nature.ox.webp │ │ ├── nature.oyster.webp │ │ ├── nature.palm-tree.webp │ │ ├── nature.panda.webp │ │ ├── nature.parrot.webp │ │ ├── nature.paw-prints.webp │ │ ├── nature.peacock.webp │ │ ├── nature.penguin.webp │ │ ├── nature.phoenix-bird.webp │ │ ├── nature.pig-face.webp │ │ ├── nature.pig-nose.webp │ │ ├── nature.pig.webp │ │ ├── nature.polar-bear.webp │ │ ├── nature.poodle.webp │ │ ├── nature.potted-plant.webp │ │ ├── nature.rabbit-face.webp │ │ ├── nature.rabbit.webp │ │ ├── nature.raccoon.webp │ │ ├── nature.rainbow.webp │ │ ├── nature.ram.webp │ │ ├── nature.rat.webp │ │ ├── nature.rhinoceros.webp │ │ ├── nature.ringed-planet.webp │ │ ├── nature.rock.webp │ │ ├── nature.rooster.webp │ │ ├── nature.rose.webp │ │ ├── nature.rosette.webp │ │ ├── nature.rubber-duck.webp │ │ ├── nature.sauropod.webp │ │ ├── nature.scorpion.webp │ │ ├── nature.seal.webp │ │ ├── nature.seedling.webp │ │ ├── nature.service-dog.webp │ │ ├── nature.shamrock.webp │ │ ├── nature.shark.webp │ │ ├── nature.sheaf-of-rice.webp │ │ ├── nature.shooting-star.webp │ │ ├── nature.shrimp.webp │ │ ├── nature.skunk.webp │ │ ├── nature.sloth.webp │ │ ├── nature.snail.webp │ │ ├── nature.snake.webp │ │ ├── nature.snowflake.webp │ │ ├── nature.snowman-without-snow.webp │ │ ├── nature.snowman.webp │ │ ├── nature.spider-web.webp │ │ ├── nature.spider.webp │ │ ├── nature.spiral-shell.webp │ │ ├── nature.spouting-whale.webp │ │ ├── nature.squid.webp │ │ ├── nature.star.webp │ │ ├── nature.sun-behind-cloud.webp │ │ ├── nature.sun-behind-large-cloud.webp │ │ ├── nature.sun-behind-rain-cloud.webp │ │ ├── nature.sun-behind-small-cloud.webp │ │ ├── nature.sun-with-face.webp │ │ ├── nature.sun.webp │ │ ├── nature.sunflower.webp │ │ ├── nature.swan.webp │ │ ├── nature.t-rex.webp │ │ ├── nature.tiger-face.webp │ │ ├── nature.tiger.webp │ │ ├── nature.tornado.webp │ │ ├── nature.tropical-fish.webp │ │ ├── nature.tulip.webp │ │ ├── nature.turkey.webp │ │ ├── nature.turtle.webp │ │ ├── nature.two-hump-camel.webp │ │ ├── nature.umbrella-on-ground.webp │ │ ├── nature.umbrella-with-rain-drops.webp │ │ ├── nature.umbrella.webp │ │ ├── nature.unicorn.webp │ │ ├── nature.waning-crescent-moon.webp │ │ ├── nature.waning-gibbous-moon.webp │ │ ├── nature.water-buffalo.webp │ │ ├── nature.water-wave.webp │ │ ├── nature.waxing-crescent-moon.webp │ │ ├── nature.waxing-gibbous-moon.webp │ │ ├── nature.whale.webp │ │ ├── nature.white-flower.webp │ │ ├── nature.wilted-flower.webp │ │ ├── nature.wind-face.webp │ │ ├── nature.wing.webp │ │ ├── nature.wolf.webp │ │ ├── nature.wood.webp │ │ ├── nature.worm.webp │ │ ├── nature.xmas-tree.webp │ │ ├── nature.zebra.webp │ │ ├── objects.abacus.webp │ │ ├── objects.accordion.webp │ │ ├── objects.adhesive-bandage.webp │ │ ├── objects.alarm-clock.webp │ │ ├── objects.alembic.webp │ │ ├── objects.backpack.webp │ │ ├── objects.balance-scale.webp │ │ ├── objects.ballet-shoes.webp │ │ ├── objects.ballot-box-with-ballot.webp │ │ ├── objects.banjo.webp │ │ ├── objects.bar-chart.webp │ │ ├── objects.basket.webp │ │ ├── objects.bathtub.webp │ │ ├── objects.battery.webp │ │ ├── objects.bed.webp │ │ ├── objects.bell-with-slash.webp │ │ ├── objects.bell.webp │ │ ├── objects.bellhop-bell.webp │ │ ├── objects.bikini.webp │ │ ├── objects.billed-cap.webp │ │ ├── objects.black-nib.webp │ │ ├── objects.blue-book.webp │ │ ├── objects.bookmark-tabs.webp │ │ ├── objects.bookmark.webp │ │ ├── objects.books.webp │ │ ├── objects.boomerang.webp │ │ ├── objects.bow-and-arrow.webp │ │ ├── objects.briefcase.webp │ │ ├── objects.briefs.webp │ │ ├── objects.broken-chain.webp │ │ ├── objects.broom.webp │ │ ├── objects.bubbles.webp │ │ ├── objects.bucket.webp │ │ ├── objects.calendar.webp │ │ ├── objects.camera-with-flash.webp │ │ ├── objects.camera.webp │ │ ├── objects.candle.webp │ │ ├── objects.card-file-box.webp │ │ ├── objects.card-index-dividers.webp │ │ ├── objects.card-index.webp │ │ ├── objects.carpentry-saw.webp │ │ ├── objects.chains.webp │ │ ├── objects.chair.webp │ │ ├── objects.chart-decreasing.webp │ │ ├── objects.chart-increasing-with-yen.webp │ │ ├── objects.chart-increasing.webp │ │ ├── objects.cigarette.webp │ │ ├── objects.clamp.webp │ │ ├── objects.clapper-board.webp │ │ ├── objects.clipboard.webp │ │ ├── objects.closed-book.webp │ │ ├── objects.closed-mailbox-with-lowered-flag.webp │ │ ├── objects.closed-mailbox-with-raised-flag.webp │ │ ├── objects.clutch-bag.webp │ │ ├── objects.coat.webp │ │ ├── objects.coffin.webp │ │ ├── objects.coin.webp │ │ ├── objects.computer-disk.webp │ │ ├── objects.computer-mouse.webp │ │ ├── objects.control-knobs.webp │ │ ├── objects.couch-and-lamp.webp │ │ ├── objects.crayon.webp │ │ ├── objects.credit-card.webp │ │ ├── objects.crossed-swords.webp │ │ ├── objects.crown.webp │ │ ├── objects.crutch.webp │ │ ├── objects.desktop-computer.webp │ │ ├── objects.diya-lamp.webp │ │ ├── objects.dollar-banknote.webp │ │ ├── objects.door.webp │ │ ├── objects.dress.webp │ │ ├── objects.drum.webp │ │ ├── objects.dvd.webp │ │ ├── objects.e-mail.webp │ │ ├── objects.eight-oclock.webp │ │ ├── objects.eight-thirty.webp │ │ ├── objects.electric-plug.webp │ │ ├── objects.eleven-oclock.webp │ │ ├── objects.eleven-thirty.webp │ │ ├── objects.envelope-with-arrow.webp │ │ ├── objects.envelope.webp │ │ ├── objects.euro-banknote.webp │ │ ├── objects.fax-machine.webp │ │ ├── objects.file-cabinet.webp │ │ ├── objects.file-folder.webp │ │ ├── objects.film-frames.webp │ │ ├── objects.film-projector.webp │ │ ├── objects.fire-extinguisher.webp │ │ ├── objects.five-oclock.webp │ │ ├── objects.five-thirty.webp │ │ ├── objects.flashlight.webp │ │ ├── objects.flat-shoe.webp │ │ ├── objects.floppy-disk.webp │ │ ├── objects.flute.webp │ │ ├── objects.folding-hand-fan.webp │ │ ├── objects.fountain-pen.webp │ │ ├── objects.four-oclock.webp │ │ ├── objects.four-thirty.webp │ │ ├── objects.funeral-urn.webp │ │ ├── objects.gear.webp │ │ ├── objects.gem-stone.webp │ │ ├── objects.glasses.webp │ │ ├── objects.gloves.webp │ │ ├── objects.goggles.webp │ │ ├── objects.graduation-cap.webp │ │ ├── objects.green-book.webp │ │ ├── objects.guitar.webp │ │ ├── objects.hair-pick.webp │ │ ├── objects.hammer-and-pick.webp │ │ ├── objects.hammer-and-wrench.webp │ │ ├── objects.hammer.webp │ │ ├── objects.hamsa.webp │ │ ├── objects.handbag.webp │ │ ├── objects.harp.webp │ │ ├── objects.headphone.webp │ │ ├── objects.headstone.webp │ │ ├── objects.high-heeled-shoe.webp │ │ ├── objects.hiking-boot.webp │ │ ├── objects.hook.webp │ │ ├── objects.hourglass-done.webp │ │ ├── objects.hourglass-not-done.webp │ │ ├── objects.identification-card.webp │ │ ├── objects.inbox-tray.webp │ │ ├── objects.incoming-envelope.webp │ │ ├── objects.jeans.webp │ │ ├── objects.key.webp │ │ ├── objects.keyboard.webp │ │ ├── objects.kimono.webp │ │ ├── objects.knot.webp │ │ ├── objects.lab-coat.webp │ │ ├── objects.label.webp │ │ ├── objects.ladder.webp │ │ ├── objects.laptop.webp │ │ ├── objects.ledger.webp │ │ ├── objects.level-slider.webp │ │ ├── objects.light-bulb.webp │ │ ├── objects.link.webp │ │ ├── objects.linked-paperclips.webp │ │ ├── objects.lipstick.webp │ │ ├── objects.locked-with-key.webp │ │ ├── objects.locked-with-pen.webp │ │ ├── objects.locked.webp │ │ ├── objects.long-drum.webp │ │ ├── objects.lotion-bottle.webp │ │ ├── objects.loudspeaker.webp │ │ ├── objects.low-battery.webp │ │ ├── objects.luggage.webp │ │ ├── objects.magnet.webp │ │ ├── objects.magnifying-glass-tilted-left.webp │ │ ├── objects.magnifying-glass-tilted-right.webp │ │ ├── objects.mans-shoe.webp │ │ ├── objects.mantelpiece-clock.webp │ │ ├── objects.maracas.webp │ │ ├── objects.megaphone.webp │ │ ├── objects.memo.webp │ │ ├── objects.microphone.webp │ │ ├── objects.microscope.webp │ │ ├── objects.military-helmet.webp │ │ ├── objects.mirror.webp │ │ ├── objects.mobile-phone-with-arrow.webp │ │ ├── objects.mobile-phone.webp │ │ ├── objects.money-bag.webp │ │ ├── objects.money-with-wings.webp │ │ ├── objects.mouse-trap.webp │ │ ├── objects.movie-camera.webp │ │ ├── objects.musical-keyboard.webp │ │ ├── objects.musical-note.webp │ │ ├── objects.musical-notes.webp │ │ ├── objects.musical-score.webp │ │ ├── objects.muted-speaker.webp │ │ ├── objects.nazar-amulet.webp │ │ ├── objects.necktie.webp │ │ ├── objects.newspaper.webp │ │ ├── objects.nine-oclock.webp │ │ ├── objects.nine-thirty.webp │ │ ├── objects.notebook-with-decorative-cover.webp │ │ ├── objects.notebook.webp │ │ ├── objects.nut-and-bolt.webp │ │ ├── objects.old-key.webp │ │ ├── objects.one-oclock.webp │ │ ├── objects.one-piece-swimsuit.webp │ │ ├── objects.one-thirty.webp │ │ ├── objects.open-book.webp │ │ ├── objects.open-file-folder.webp │ │ ├── objects.open-mailbox-with-lowered-flag.webp │ │ ├── objects.open-mailbox-with-raised-flag.webp │ │ ├── objects.optical-disk.webp │ │ ├── objects.orange-book.webp │ │ ├── objects.outbox-tray.webp │ │ ├── objects.package.webp │ │ ├── objects.page-facing-up.webp │ │ ├── objects.page-with-curl.webp │ │ ├── objects.pager.webp │ │ ├── objects.paintbrush.webp │ │ ├── objects.paperclip.webp │ │ ├── objects.pen.webp │ │ ├── objects.pencil.webp │ │ ├── objects.petri-dish.webp │ │ ├── objects.pick.webp │ │ ├── objects.pill.webp │ │ ├── objects.placard.webp │ │ ├── objects.plunger.webp │ │ ├── objects.postal-horn.webp │ │ ├── objects.postbox.webp │ │ ├── objects.pound-banknote.webp │ │ ├── objects.prayer-beads.webp │ │ ├── objects.printer.webp │ │ ├── objects.purse.webp │ │ ├── objects.pushpin.webp │ │ ├── objects.radio.webp │ │ ├── objects.razor.webp │ │ ├── objects.receipt.webp │ │ ├── objects.red-paper-lantern.webp │ │ ├── objects.reminder-ribbon.webp │ │ ├── objects.rescue-workers-helmet.webp │ │ ├── objects.ribbon.webp │ │ ├── objects.ring.webp │ │ ├── objects.roll-of-paper.webp │ │ ├── objects.rolled-up-newspaper.webp │ │ ├── objects.round-pushpin.webp │ │ ├── objects.running-shoe.webp │ │ ├── objects.safety-pin.webp │ │ ├── objects.safety-vest.webp │ │ ├── objects.sari.webp │ │ ├── objects.satellite-antenna.webp │ │ ├── objects.saxophone.webp │ │ ├── objects.scarf.webp │ │ ├── objects.scissors.webp │ │ ├── objects.screwdriver.webp │ │ ├── objects.scroll.webp │ │ ├── objects.seven-oclock.webp │ │ ├── objects.seven-thirty.webp │ │ ├── objects.sewing-needle.webp │ │ ├── objects.shield.webp │ │ ├── objects.shopping-bags.webp │ │ ├── objects.shopping-cart.webp │ │ ├── objects.shorts.webp │ │ ├── objects.shovel.webp │ │ ├── objects.shower.webp │ │ ├── objects.six-oclock.webp │ │ ├── objects.six-thirty.webp │ │ ├── objects.soap.webp │ │ ├── objects.socks.webp │ │ ├── objects.speaker-high-volume.webp │ │ ├── objects.speaker-low-volume.webp │ │ ├── objects.speaker-medium-volume.webp │ │ ├── objects.spiral-calendar.webp │ │ ├── objects.spiral-notepad.webp │ │ ├── objects.sponge.webp │ │ ├── objects.stethoscope.webp │ │ ├── objects.stopwatch.webp │ │ ├── objects.straight-ruler.webp │ │ ├── objects.studio-microphone.webp │ │ ├── objects.sunglasses.webp │ │ ├── objects.syringe.webp │ │ ├── objects.t-shirt.webp │ │ ├── objects.tear-off-calendar.webp │ │ ├── objects.teddy-bear.webp │ │ ├── objects.telephone-receiver.webp │ │ ├── objects.telephone.webp │ │ ├── objects.telescope.webp │ │ ├── objects.television.webp │ │ ├── objects.ten-oclock.webp │ │ ├── objects.ten-thirty.webp │ │ ├── objects.test-tube.webp │ │ ├── objects.thermometer.webp │ │ ├── objects.thong-sandal.webp │ │ ├── objects.thread.webp │ │ ├── objects.three-oclock.webp │ │ ├── objects.three-thirty.webp │ │ ├── objects.timer-clock.webp │ │ ├── objects.toilet.webp │ │ ├── objects.toolbox.webp │ │ ├── objects.toothbrush.webp │ │ ├── objects.top-hat.webp │ │ ├── objects.trackball.webp │ │ ├── objects.treasure-chest.webp │ │ ├── objects.triangular-ruler.webp │ │ ├── objects.trombone.webp │ │ ├── objects.trumpet.webp │ │ ├── objects.twelve-oclock.webp │ │ ├── objects.twelve-thirty.webp │ │ ├── objects.two-oclocktime.webp │ │ ├── objects.two-thirty.webp │ │ ├── objects.unlocked.webp │ │ ├── objects.video-camera.webp │ │ ├── objects.videocassette.webp │ │ ├── objects.violin.webp │ │ ├── objects.wastebasket.webp │ │ ├── objects.watch.webp │ │ ├── objects.white-cane.webp │ │ ├── objects.window.webp │ │ ├── objects.womans-boot.webp │ │ ├── objects.womans-clothes.webp │ │ ├── objects.womans-hat.webp │ │ ├── objects.womans-sandal.webp │ │ ├── objects.wrench.webp │ │ ├── objects.x-ray.webp │ │ ├── objects.xmas-bell.webp │ │ ├── objects.xmas-candle.webp │ │ ├── objects.xmas-hat.webp │ │ ├── objects.yarn.webp │ │ ├── objects.yen-banknote.webp │ │ ├── people.anatomical-heart.webp │ │ ├── people.artist-dark-skin-tone.webp │ │ ├── people.artist-light-skin-tone.webp │ │ ├── people.artist-medium-dark-skin-tone.webp │ │ ├── people.artist-medium-light-skin-tone.webp │ │ ├── people.artist-medium-skin-tone.webp │ │ ├── people.artist.webp │ │ ├── people.astronaut-dark-skin-tone.webp │ │ ├── people.astronaut-light-skin-tone.webp │ │ ├── people.astronaut-medium-dark-skin-tone.webp │ │ ├── people.astronaut-medium-light-skin-tone.webp │ │ ├── people.astronaut-medium-skin-tone.webp │ │ ├── people.astronaut.webp │ │ ├── people.baby-angel-dark-skin-tone.webp │ │ ├── people.baby-angel-light-skin-tone.webp │ │ ├── people.baby-angel-medium-dark-skin-tone.webp │ │ ├── people.baby-angel-medium-light-skin-tone.webp │ │ ├── people.baby-angel-medium-skin-tone.webp │ │ ├── people.baby-angel.webp │ │ ├── people.baby-dark-skin-tone.webp │ │ ├── people.baby-light-skin-tone.webp │ │ ├── people.baby-medium-dark-skin-tone.webp │ │ ├── people.baby-medium-light-skin-tone.webp │ │ ├── people.baby-medium-skin-tone.webp │ │ ├── people.baby.webp │ │ ├── people.backhand-index-pointing-down-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-down-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-down-medium-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-down-medium-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-down-medium-skin-tone.webp │ │ ├── people.backhand-index-pointing-down.webp │ │ ├── people.backhand-index-pointing-left-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-left-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-left-medium-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-left-medium-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-left-medium-skin-tone.webp │ │ ├── people.backhand-index-pointing-left.webp │ │ ├── people.backhand-index-pointing-right-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-right-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-right-medium-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-right-medium-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-right-medium-skin-tone.webp │ │ ├── people.backhand-index-pointing-right.webp │ │ ├── people.backhand-index-pointing-up-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-up-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-up-medium-dark-skin-tone.webp │ │ ├── people.backhand-index-pointing-up-medium-light-skin-tone.webp │ │ ├── people.backhand-index-pointing-up-medium-skin-tone.webp │ │ ├── people.backhand-index-pointing-up.webp │ │ ├── people.bald.webp │ │ ├── people.ballet-dancer-dark-skin-tone.webp │ │ ├── people.ballet-dancer-light-skin-tone.webp │ │ ├── people.ballet-dancer-medium-dark-skin-tone.webp │ │ ├── people.ballet-dancer-medium-light-skin-tone.webp │ │ ├── people.ballet-dancer-medium-skin-tone.webp │ │ ├── people.ballet-dancer.webp │ │ ├── people.biting-lip.webp │ │ ├── people.bone.webp │ │ ├── people.boy-dark-skin-tone.webp │ │ ├── people.boy-light-skin-tone.webp │ │ ├── people.boy-medium-dark-skin-tone.webp │ │ ├── people.boy-medium-light-skin-tone.webp │ │ ├── people.boy-medium-skin-tone.webp │ │ ├── people.boy.webp │ │ ├── people.brain.webp │ │ ├── people.breast-feeding-dark-skin-tone.webp │ │ ├── people.breast-feeding-light-skin-tone.webp │ │ ├── people.breast-feeding-medium-dark-skin-tone.webp │ │ ├── people.breast-feeding-medium-light-skin-tone.webp │ │ ├── people.breast-feeding-medium-skin-tone.webp │ │ ├── people.breast-feeding.webp │ │ ├── people.bust-in-silhouette.webp │ │ ├── people.busts-in-silhouette.webp │ │ ├── people.call-me-hand-dark-skin-tone.webp │ │ ├── people.call-me-hand-light-skin-tone.webp │ │ ├── people.call-me-hand-medium-dark-skin-tone.webp │ │ ├── people.call-me-hand-medium-light-skin-tone.webp │ │ ├── people.call-me-hand-medium-skin-tone.webp │ │ ├── people.call-me-hand.webp │ │ ├── people.child-dark-skin-tone.webp │ │ ├── people.child-light-skin-tone.webp │ │ ├── people.child-medium-dark-skin-tone.webp │ │ ├── people.child-medium-light-skin-tone.webp │ │ ├── people.child-medium-skin-tone.webp │ │ ├── people.child.webp │ │ ├── people.clapping-hands-dark-skin-tone.webp │ │ ├── people.clapping-hands-light-skin-tone.webp │ │ ├── people.clapping-hands-medium-dark-skin-tone.webp │ │ ├── people.clapping-hands-medium-light-skin-tone.webp │ │ ├── people.clapping-hands-medium-skin-tone.webp │ │ ├── people.clapping-hands.webp │ │ ├── people.construction-worker-dark-skin-tone.webp │ │ ├── people.construction-worker-light-skin-tone.webp │ │ ├── people.construction-worker-medium-dark-skin-tone.webp │ │ ├── people.construction-worker-medium-light-skin-tone.webp │ │ ├── people.construction-worker-medium-skin-tone.webp │ │ ├── people.construction-worker.webp │ │ ├── people.cook-dark-skin-tone.webp │ │ ├── people.cook-light-skin-tone.webp │ │ ├── people.cook-medium-dark-skin-tone.webp │ │ ├── people.cook-medium-light-skin-tone.webp │ │ ├── people.cook-medium-skin-tone.webp │ │ ├── people.cook.webp │ │ ├── people.couple-with-heart-dark-skin-tone.webp │ │ ├── people.couple-with-heart-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-man-man-medium-skin-tone.webp │ │ ├── people.couple-with-heart-man-man.webp │ │ ├── people.couple-with-heart-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-medium-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-person-person-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-man.webp │ │ ├── people.couple-with-heart-woman-woman-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-skin-tone-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman-medium-skin-tone.webp │ │ ├── people.couple-with-heart-woman-woman.webp │ │ ├── people.couple-with-heart.webp │ │ ├── people.crossed-fingers-dark-skin-tone.webp │ │ ├── people.crossed-fingers-light-skin-tone.webp │ │ ├── people.crossed-fingers-medium-dark-skin-tone.webp │ │ ├── people.crossed-fingers-medium-light-skin-tone.webp │ │ ├── people.crossed-fingers-medium-skin-tone.webp │ │ ├── people.crossed-fingers.webp │ │ ├── people.curly-hair.webp │ │ ├── people.dark-skin-tone.webp │ │ ├── people.deaf-man-dark-skin-tone.webp │ │ ├── people.deaf-man-light-skin-tone.webp │ │ ├── people.deaf-man-medium-dark-skin-tone.webp │ │ ├── people.deaf-man-medium-light-skin-tone.webp │ │ ├── people.deaf-man-medium-skin-tone.webp │ │ ├── people.deaf-man.webp │ │ ├── people.deaf-person-dark-skin-tone.webp │ │ ├── people.deaf-person-light-skin-tone.webp │ │ ├── people.deaf-person-medium-dark-skin-tone.webp │ │ ├── people.deaf-person-medium-light-skin-tone.webp │ │ ├── people.deaf-person-medium-skin-tone.webp │ │ ├── people.deaf-person.webp │ │ ├── people.deaf-woman-dark-skin-tone.webp │ │ ├── people.deaf-woman-light-skin-tone.webp │ │ ├── people.deaf-woman-medium-dark-skin-tone.webp │ │ ├── people.deaf-woman-medium-light-skin-tone.webp │ │ ├── people.deaf-woman-medium-skin-tone.webp │ │ ├── people.deaf-woman.webp │ │ ├── people.detective-dark-skin-tone.webp │ │ ├── people.detective-light-skin-tone.webp │ │ ├── people.detective-medium-dark-skin-tone.webp │ │ ├── people.detective-medium-light-skin-tone.webp │ │ ├── people.detective-medium-skin-tone.webp │ │ ├── people.detective.webp │ │ ├── people.dna.webp │ │ ├── people.drop-of-blood.webp │ │ ├── people.ear-dark-skin-tone.webp │ │ ├── people.ear-light-skin-tone.webp │ │ ├── people.ear-medium-dark-skin-tone.webp │ │ ├── people.ear-medium-light-skin-tone.webp │ │ ├── people.ear-medium-skin-tone.webp │ │ ├── people.ear-with-hearing-aid-dark-skin-tone.webp │ │ ├── people.ear-with-hearing-aid-light-skin-tone.webp │ │ ├── people.ear-with-hearing-aid-medium-dark-skin-tone.webp │ │ ├── people.ear-with-hearing-aid-medium-light-skin-tone.webp │ │ ├── people.ear-with-hearing-aid-medium-skin-tone.webp │ │ ├── people.ear-with-hearing-aid.webp │ │ ├── people.ear.webp │ │ ├── people.elf-dark-skin-tone.webp │ │ ├── people.elf-light-skin-tone.webp │ │ ├── people.elf-medium-dark-skin-tone.webp │ │ ├── people.elf-medium-light-skin-tone.webp │ │ ├── people.elf-medium-skin-tone.webp │ │ ├── people.elf.webp │ │ ├── people.eye.webp │ │ ├── people.eyes.webp │ │ ├── people.factory-worker-dark-skin-tone.webp │ │ ├── people.factory-worker-light-skin-tone.webp │ │ ├── people.factory-worker-medium-dark-skin-tone.webp │ │ ├── people.factory-worker-medium-light-skin-tone.webp │ │ ├── people.factory-worker-medium-skin-tone.webp │ │ ├── people.factory-worker.webp │ │ ├── people.fairy-dark-skin-tone.webp │ │ ├── people.fairy-light-skin-tone.webp │ │ ├── people.fairy-medium-dark-skin-tone.webp │ │ ├── people.fairy-medium-light-skin-tone.webp │ │ ├── people.fairy-medium-skin-tone.webp │ │ ├── people.fairy.webp │ │ ├── people.family-adult-adult-child-child.webp │ │ ├── people.family-adult-adult-child.webp │ │ ├── people.family-adult-child-child.webp │ │ ├── people.family-adult-child.webp │ │ ├── people.family-man-boy-boy.webp │ │ ├── people.family-man-boy.webp │ │ ├── people.family-man-girl-boy.webp │ │ ├── people.family-man-girl-girl.webp │ │ ├── people.family-man-girl.webp │ │ ├── people.family-man-man-boy-boy.webp │ │ ├── people.family-man-man-boy.webp │ │ ├── people.family-man-man-girl-boy.webp │ │ ├── people.family-man-man-girl-girl.webp │ │ ├── people.family-man-man-girl.webp │ │ ├── people.family-man-woman-boy-boy.webp │ │ ├── people.family-man-woman-boy.webp │ │ ├── people.family-man-woman-girl-boy.webp │ │ ├── people.family-man-woman-girl-girl.webp │ │ ├── people.family-man-woman-girl.webp │ │ ├── people.family-woman-boy-boy.webp │ │ ├── people.family-woman-boy.webp │ │ ├── people.family-woman-girl-boy.webp │ │ ├── people.family-woman-girl-girl.webp │ │ ├── people.family-woman-girl.webp │ │ ├── people.family-woman-woman-boy-boy.webp │ │ ├── people.family-woman-woman-boy.webp │ │ ├── people.family-woman-woman-girl-boy.webp │ │ ├── people.family-woman-woman-girl-girl.webp │ │ ├── people.family-woman-woman-girl.webp │ │ ├── people.family.webp │ │ ├── people.farmer-dark-skin-tone.webp │ │ ├── people.farmer-light-skin-tone.webp │ │ ├── people.farmer-medium-dark-skin-tone.webp │ │ ├── people.farmer-medium-light-skin-tone.webp │ │ ├── people.farmer-medium-skin-tone.webp │ │ ├── people.farmer.webp │ │ ├── people.fingerprint.webp │ │ ├── people.firefighter-dark-skin-tone.webp │ │ ├── people.firefighter-light-skin-tone.webp │ │ ├── people.firefighter-medium-dark-skin-tone.webp │ │ ├── people.firefighter-medium-light-skin-tone.webp │ │ ├── people.firefighter-medium-skin-tone.webp │ │ ├── people.firefighter.webp │ │ ├── people.flexed-biceps-dark-skin-tone.webp │ │ ├── people.flexed-biceps-light-skin-tone.webp │ │ ├── people.flexed-biceps-medium-dark-skin-tone.webp │ │ ├── people.flexed-biceps-medium-light-skin-tone.webp │ │ ├── people.flexed-biceps-medium-skin-tone.webp │ │ ├── people.flexed-biceps.webp │ │ ├── people.folded-hands-dark-skin-tone.webp │ │ ├── people.folded-hands-light-skin-tone.webp │ │ ├── people.folded-hands-medium-dark-skin-tone.webp │ │ ├── people.folded-hands-medium-light-skin-tone.webp │ │ ├── people.folded-hands-medium-skin-tone.webp │ │ ├── people.folded-hands.webp │ │ ├── people.foot-dark-skin-tone.webp │ │ ├── people.foot-light-skin-tone.webp │ │ ├── people.foot-medium-dark-skin-tone.webp │ │ ├── people.foot-medium-light-skin-tone.webp │ │ ├── people.foot-medium-skin-tone.webp │ │ ├── people.foot.webp │ │ ├── people.footprints.webp │ │ ├── people.genie.webp │ │ ├── people.girl-dark-skin-tone.webp │ │ ├── people.girl-light-skin-tone.webp │ │ ├── people.girl-medium-dark-skin-tone.webp │ │ ├── people.girl-medium-light-skin-tone.webp │ │ ├── people.girl-medium-skin-tone.webp │ │ ├── people.girl.webp │ │ ├── people.guard-dark-skin-tone.webp │ │ ├── people.guard-light-skin-tone.webp │ │ ├── people.guard-medium-dark-skin-tone.webp │ │ ├── people.guard-medium-light-skin-tone.webp │ │ ├── people.guard-medium-skin-tone.webp │ │ ├── people.guard.webp │ │ ├── people.hairy-creature.webp │ │ ├── people.hand-with-fingers-splayed-dark-skin-tone.webp │ │ ├── people.hand-with-fingers-splayed-light-skin-tone.webp │ │ ├── people.hand-with-fingers-splayed-medium-dark-skin-tone.webp │ │ ├── people.hand-with-fingers-splayed-medium-light-skin-tone.webp │ │ ├── people.hand-with-fingers-splayed-medium-skin-tone.webp │ │ ├── people.hand-with-fingers-splayed.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed-dark-skin-tone.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed-light-skin-tone.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed-medium-dark-skin-tone.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed-medium-light-skin-tone.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed-medium-skin-tone.webp │ │ ├── people.hand-with-index-finger-and-thumb-crossed.webp │ │ ├── people.handshake-dark-skin-tone-light-skin-tone.webp │ │ ├── people.handshake-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.handshake-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.handshake-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.handshake-dark-skin-tone.webp │ │ ├── people.handshake-light-skin-tone-dark-skin-tone.webp │ │ ├── people.handshake-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.handshake-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.handshake-light-skin-tone-medium-skin-tone.webp │ │ ├── people.handshake-light-skin-tone.webp │ │ ├── people.handshake-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.handshake-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.handshake-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.handshake-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.handshake-medium-dark-skin-tone.webp │ │ ├── people.handshake-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.handshake-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.handshake-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.handshake-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.handshake-medium-light-skin-tone.webp │ │ ├── people.handshake-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.handshake-medium-skin-tone-light-skin-tone.webp │ │ ├── people.handshake-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.handshake-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.handshake-medium-skin-tone.webp │ │ ├── people.handshake.webp │ │ ├── people.health-worker-dark-skin-tone.webp │ │ ├── people.health-worker-light-skin-tone.webp │ │ ├── people.health-worker-medium-dark-skin-tone.webp │ │ ├── people.health-worker-medium-light-skin-tone.webp │ │ ├── people.health-worker-medium-skin-tone.webp │ │ ├── people.health-worker.webp │ │ ├── people.heart-hands-dark-skin-tone.webp │ │ ├── people.heart-hands-light-skin-tone.webp │ │ ├── people.heart-hands-medium-dark-skin-tone.webp │ │ ├── people.heart-hands-medium-light-skin-tone.webp │ │ ├── people.heart-hands-medium-skin-tone.webp │ │ ├── people.heart-hands.webp │ │ ├── people.horse-racing-dark-skin-tone.webp │ │ ├── people.horse-racing-light-skin-tone.webp │ │ ├── people.horse-racing-medium-dark-skin-tone.webp │ │ ├── people.horse-racing-medium-light-skin-tone.webp │ │ ├── people.horse-racing-medium-skin-tone.webp │ │ ├── people.horse-racing.webp │ │ ├── people.index-pointing-at-the-viewer-dark-skin-tone.webp │ │ ├── people.index-pointing-at-the-viewer-light-skin-tone.webp │ │ ├── people.index-pointing-at-the-viewer-medium-dark-skin-tone.webp │ │ ├── people.index-pointing-at-the-viewer-medium-light-skin-tone.webp │ │ ├── people.index-pointing-at-the-viewer-medium-skin-tone.webp │ │ ├── people.index-pointing-at-the-viewer.webp │ │ ├── people.index-pointing-up-dark-skin-tone.webp │ │ ├── people.index-pointing-up-light-skin-tone.webp │ │ ├── people.index-pointing-up-medium-dark-skin-tone.webp │ │ ├── people.index-pointing-up-medium-light-skin-tone.webp │ │ ├── people.index-pointing-up-medium-skin-tone.webp │ │ ├── people.index-pointing-up.webp │ │ ├── people.judge-dark-skin-tone.webp │ │ ├── people.judge-light-skin-tone.webp │ │ ├── people.judge-medium-dark-skin-tone.webp │ │ ├── people.judge-medium-light-skin-tone.webp │ │ ├── people.judge-medium-skin-tone.webp │ │ ├── people.judge.webp │ │ ├── people.kiss-dark-skin-tone.webp │ │ ├── people.kiss-light-skin-tone.webp │ │ ├── people.kiss-medium-dark-skin-tone.webp │ │ ├── people.kiss-medium-light-skin-tone.webp │ │ ├── people.kiss-medium-skin-tone.webp │ │ ├── people.kiss.webp │ │ ├── people.left-facing-fist-dark-skin-tone.webp │ │ ├── people.left-facing-fist-light-skin-tone.webp │ │ ├── people.left-facing-fist-medium-dark-skin-tone.webp │ │ ├── people.left-facing-fist-medium-light-skin-tone.webp │ │ ├── people.left-facing-fist-medium-skin-tone.webp │ │ ├── people.left-facing-fist.webp │ │ ├── people.leftwards-hand-dark-skin-tone.webp │ │ ├── people.leftwards-hand-light-skin-tone.webp │ │ ├── people.leftwards-hand-medium-dark-skin-tone.webp │ │ ├── people.leftwards-hand-medium-light-skin-tone.webp │ │ ├── people.leftwards-hand-medium-skin-tone.webp │ │ ├── people.leftwards-hand.webp │ │ ├── people.leftwards-pushing-hand-dark-skin-tone.webp │ │ ├── people.leftwards-pushing-hand-light-skin-tone.webp │ │ ├── people.leftwards-pushing-hand-medium-dark-skin-tone.webp │ │ ├── people.leftwards-pushing-hand-medium-light-skin-tone.webp │ │ ├── people.leftwards-pushing-hand-medium-skin-tone.webp │ │ ├── people.leftwards-pushing-hand.webp │ │ ├── people.leg-dark-skin-tone.webp │ │ ├── people.leg-light-skin-tone.webp │ │ ├── people.leg-medium-dark-skin-tone.webp │ │ ├── people.leg-medium-light-skin-tone.webp │ │ ├── people.leg-medium-skin-tone.webp │ │ ├── people.leg.webp │ │ ├── people.light-skin-tone.webp │ │ ├── people.love-you-gesture-dark-skin-tone.webp │ │ ├── people.love-you-gesture-light-skin-tone.webp │ │ ├── people.love-you-gesture-medium-dark-skin-tone.webp │ │ ├── people.love-you-gesture-medium-light-skin-tone.webp │ │ ├── people.love-you-gesture-medium-skin-tone.webp │ │ ├── people.love-you-gesture.webp │ │ ├── people.lungs.webp │ │ ├── people.mage-dark-skin-tone.webp │ │ ├── people.mage-light-skin-tone.webp │ │ ├── people.mage-medium-dark-skin-tone.webp │ │ ├── people.mage-medium-light-skin-tone.webp │ │ ├── people.mage-medium-skin-tone.webp │ │ ├── people.mage.webp │ │ ├── people.man-artist-dark-skin-tone.webp │ │ ├── people.man-artist-light-skin-tone.webp │ │ ├── people.man-artist-medium-dark-skin-tone.webp │ │ ├── people.man-artist-medium-light-skin-tone.webp │ │ ├── people.man-artist-medium-skin-tone.webp │ │ ├── people.man-artist.webp │ │ ├── people.man-astronaut-dark-skin-tone.webp │ │ ├── people.man-astronaut-light-skin-tone.webp │ │ ├── people.man-astronaut-medium-dark-skin-tone.webp │ │ ├── people.man-astronaut-medium-light-skin-tone.webp │ │ ├── people.man-astronaut-medium-skin-tone.webp │ │ ├── people.man-astronaut.webp │ │ ├── people.man-bald.webp │ │ ├── people.man-beard.webp │ │ ├── people.man-biking-dark-skin-tone.webp │ │ ├── people.man-biking-light-skin-tone.webp │ │ ├── people.man-biking-medium-dark-skin-tone.webp │ │ ├── people.man-biking-medium-light-skin-tone.webp │ │ ├── people.man-biking-medium-skin-tone.webp │ │ ├── people.man-biking.webp │ │ ├── people.man-blond-hair.webp │ │ ├── people.man-bouncing-ball-dark-skin-tone.webp │ │ ├── people.man-bouncing-ball-light-skin-tone.webp │ │ ├── people.man-bouncing-ball-medium-dark-skin-tone.webp │ │ ├── people.man-bouncing-ball-medium-light-skin-tone.webp │ │ ├── people.man-bouncing-ball-medium-skin-tone.webp │ │ ├── people.man-bouncing-ball.webp │ │ ├── people.man-bowing-dark-skin-tone.webp │ │ ├── people.man-bowing-light-skin-tone.webp │ │ ├── people.man-bowing-medium-dark-skin-tone.webp │ │ ├── people.man-bowing-medium-light-skin-tone.webp │ │ ├── people.man-bowing-medium-skin-tone.webp │ │ ├── people.man-bowing.webp │ │ ├── people.man-cartwheeling-dark-skin-tone.webp │ │ ├── people.man-cartwheeling-light-skin-tone.webp │ │ ├── people.man-cartwheeling-medium-dark-skin-tone.webp │ │ ├── people.man-cartwheeling-medium-light-skin-tone.webp │ │ ├── people.man-cartwheeling-medium-skin-tone.webp │ │ ├── people.man-cartwheeling.webp │ │ ├── people.man-climbing-dark-skin-tone.webp │ │ ├── people.man-climbing-light-skin-tone.webp │ │ ├── people.man-climbing-medium-dark-skin-tone.webp │ │ ├── people.man-climbing-medium-light-skin-tone.webp │ │ ├── people.man-climbing-medium-skin-tone.webp │ │ ├── people.man-climbing.webp │ │ ├── people.man-construction-worker-dark-skin-tone.webp │ │ ├── people.man-construction-worker-light-skin-tone.webp │ │ ├── people.man-construction-worker-medium-dark-skin-tone.webp │ │ ├── people.man-construction-worker-medium-light-skin-tone.webp │ │ ├── people.man-construction-worker-medium-skin-tone.webp │ │ ├── people.man-construction-worker.webp │ │ ├── people.man-cook-dark-skin-tone.webp │ │ ├── people.man-cook-light-skin-tone.webp │ │ ├── people.man-cook-medium-dark-skin-tone.webp │ │ ├── people.man-cook-medium-light-skin-tone.webp │ │ ├── people.man-cook-medium-skin-tone.webp │ │ ├── people.man-cook.webp │ │ ├── people.man-curly-hair.webp │ │ ├── people.man-dancing-dark-skin-tone.webp │ │ ├── people.man-dancing-light-skin-tone.webp │ │ ├── people.man-dancing-medium-dark-skin-tone.webp │ │ ├── people.man-dancing-medium-light-skin-tone.webp │ │ ├── people.man-dancing-medium-skin-tone.webp │ │ ├── people.man-dancing.webp │ │ ├── people.man-dark-skin-tone-bald.webp │ │ ├── people.man-dark-skin-tone-beard.webp │ │ ├── people.man-dark-skin-tone-blond-hair.webp │ │ ├── people.man-dark-skin-tone-curly-hair.webp │ │ ├── people.man-dark-skin-tone-red-hair.webp │ │ ├── people.man-dark-skin-tone-white-hair.webp │ │ ├── people.man-dark-skin-tone.webp │ │ ├── people.man-detective-dark-skin-tone.webp │ │ ├── people.man-detective-light-skin-tone.webp │ │ ├── people.man-detective-medium-dark-skin-tone.webp │ │ ├── people.man-detective-medium-light-skin-tone.webp │ │ ├── people.man-detective-medium-skin-tone.webp │ │ ├── people.man-detective.webp │ │ ├── people.man-elf-dark-skin-tone.webp │ │ ├── people.man-elf-light-skin-tone.webp │ │ ├── people.man-elf-medium-dark-skin-tone.webp │ │ ├── people.man-elf-medium-light-skin-tone.webp │ │ ├── people.man-elf-medium-skin-tone.webp │ │ ├── people.man-elf.webp │ │ ├── people.man-facepalming-dark-skin-tone.webp │ │ ├── people.man-facepalming-light-skin-tone.webp │ │ ├── people.man-facepalming-medium-dark-skin-tone.webp │ │ ├── people.man-facepalming-medium-light-skin-tone.webp │ │ ├── people.man-facepalming-medium-skin-tone.webp │ │ ├── people.man-facepalming.webp │ │ ├── people.man-factory-worker-dark-skin-tone.webp │ │ ├── people.man-factory-worker-light-skin-tone.webp │ │ ├── people.man-factory-worker-medium-dark-skin-tone.webp │ │ ├── people.man-factory-worker-medium-light-skin-tone.webp │ │ ├── people.man-factory-worker-medium-skin-tone.webp │ │ ├── people.man-factory-worker.webp │ │ ├── people.man-fairy-dark-skin-tone.webp │ │ ├── people.man-fairy-light-skin-tone.webp │ │ ├── people.man-fairy-medium-dark-skin-tone.webp │ │ ├── people.man-fairy-medium-light-skin-tone.webp │ │ ├── people.man-fairy-medium-skin-tone.webp │ │ ├── people.man-fairy.webp │ │ ├── people.man-farmer-dark-skin-tone.webp │ │ ├── people.man-farmer-light-skin-tone.webp │ │ ├── people.man-farmer-medium-dark-skin-tone.webp │ │ ├── people.man-farmer-medium-light-skin-tone.webp │ │ ├── people.man-farmer-medium-skin-tone.webp │ │ ├── people.man-farmer.webp │ │ ├── people.man-feeding-baby-dark-skin-tone.webp │ │ ├── people.man-feeding-baby-light-skin-tone.webp │ │ ├── people.man-feeding-baby-medium-dark-skin-tone.webp │ │ ├── people.man-feeding-baby-medium-light-skin-tone.webp │ │ ├── people.man-feeding-baby-medium-skin-tone.webp │ │ ├── people.man-feeding-baby.webp │ │ ├── people.man-firefighter-dark-skin-tone.webp │ │ ├── people.man-firefighter-light-skin-tone.webp │ │ ├── people.man-firefighter-medium-dark-skin-tone.webp │ │ ├── people.man-firefighter-medium-light-skin-tone.webp │ │ ├── people.man-firefighter-medium-skin-tone.webp │ │ ├── people.man-firefighter.webp │ │ ├── people.man-frowning-dark-skin-tone.webp │ │ ├── people.man-frowning-light-skin-tone.webp │ │ ├── people.man-frowning-medium-dark-skin-tone.webp │ │ ├── people.man-frowning-medium-light-skin-tone.webp │ │ ├── people.man-frowning-medium-skin-tone.webp │ │ ├── people.man-frowning.webp │ │ ├── people.man-genie.webp │ │ ├── people.man-gesturing-no-dark-skin-tone.webp │ │ ├── people.man-gesturing-no-light-skin-tone.webp │ │ ├── people.man-gesturing-no-medium-dark-skin-tone.webp │ │ ├── people.man-gesturing-no-medium-light-skin-tone.webp │ │ ├── people.man-gesturing-no-medium-skin-tone.webp │ │ ├── people.man-gesturing-no.webp │ │ ├── people.man-gesturing-ok-dark-skin-tone.webp │ │ ├── people.man-gesturing-ok-light-skin-tone.webp │ │ ├── people.man-gesturing-ok-medium-dark-skin-tone.webp │ │ ├── people.man-gesturing-ok-medium-light-skin-tone.webp │ │ ├── people.man-gesturing-ok-medium-skin-tone.webp │ │ ├── people.man-gesturing-ok.webp │ │ ├── people.man-getting-haircut-dark-skin-tone.webp │ │ ├── people.man-getting-haircut-light-skin-tone.webp │ │ ├── people.man-getting-haircut-medium-dark-skin-tone.webp │ │ ├── people.man-getting-haircut-medium-light-skin-tone.webp │ │ ├── people.man-getting-haircut-medium-skin-tone.webp │ │ ├── people.man-getting-haircut.webp │ │ ├── people.man-getting-massage-dark-skin-tone.webp │ │ ├── people.man-getting-massage-light-skin-tone.webp │ │ ├── people.man-getting-massage-medium-dark-skin-tone.webp │ │ ├── people.man-getting-massage-medium-light-skin-tone.webp │ │ ├── people.man-getting-massage-medium-skin-tone.webp │ │ ├── people.man-getting-massage.webp │ │ ├── people.man-golfing-dark-skin-tone.webp │ │ ├── people.man-golfing-light-skin-tone.webp │ │ ├── people.man-golfing-medium-dark-skin-tone.webp │ │ ├── people.man-golfing-medium-light-skin-tone.webp │ │ ├── people.man-golfing-medium-skin-tone.webp │ │ ├── people.man-golfing.webp │ │ ├── people.man-guard-dark-skin-tone.webp │ │ ├── people.man-guard-light-skin-tone.webp │ │ ├── people.man-guard-medium-dark-skin-tone.webp │ │ ├── people.man-guard-medium-light-skin-tone.webp │ │ ├── people.man-guard-medium-skin-tone.webp │ │ ├── people.man-guard.webp │ │ ├── people.man-health-worker-dark-skin-tone.webp │ │ ├── people.man-health-worker-light-skin-tone.webp │ │ ├── people.man-health-worker-medium-dark-skin-tone.webp │ │ ├── people.man-health-worker-medium-light-skin-tone.webp │ │ ├── people.man-health-worker-medium-skin-tone.webp │ │ ├── people.man-health-worker.webp │ │ ├── people.man-in-lotus-position-dark-skin-tone.webp │ │ ├── people.man-in-lotus-position-light-skin-tone.webp │ │ ├── people.man-in-lotus-position-medium-dark-skin-tone.webp │ │ ├── people.man-in-lotus-position-medium-light-skin-tone.webp │ │ ├── people.man-in-lotus-position-medium-skin-tone.webp │ │ ├── people.man-in-lotus-position.webp │ │ ├── people.man-in-manual-wheelchair-dark-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-facing-right.webp │ │ ├── people.man-in-manual-wheelchair-light-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-medium-light-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair-medium-skin-tone.webp │ │ ├── people.man-in-manual-wheelchair.webp │ │ ├── people.man-in-motorized-wheelchair-dark-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-facing-right.webp │ │ ├── people.man-in-motorized-wheelchair-light-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-medium-light-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair-medium-skin-tone.webp │ │ ├── people.man-in-motorized-wheelchair.webp │ │ ├── people.man-in-steamy-room-dark-skin-tone.webp │ │ ├── people.man-in-steamy-room-light-skin-tone.webp │ │ ├── people.man-in-steamy-room-medium-dark-skin-tone.webp │ │ ├── people.man-in-steamy-room-medium-light-skin-tone.webp │ │ ├── people.man-in-steamy-room-medium-skin-tone.webp │ │ ├── people.man-in-steamy-room.webp │ │ ├── people.man-in-tuxedo-dark-skin-tone.webp │ │ ├── people.man-in-tuxedo-light-skin-tone.webp │ │ ├── people.man-in-tuxedo-medium-dark-skin-tone.webp │ │ ├── people.man-in-tuxedo-medium-light-skin-tone.webp │ │ ├── people.man-in-tuxedo-medium-skin-tone.webp │ │ ├── people.man-in-tuxedo.webp │ │ ├── people.man-judge-dark-skin-tone.webp │ │ ├── people.man-judge-light-skin-tone.webp │ │ ├── people.man-judge-medium-dark-skin-tone.webp │ │ ├── people.man-judge-medium-light-skin-tone.webp │ │ ├── people.man-judge-medium-skin-tone.webp │ │ ├── people.man-judge.webp │ │ ├── people.man-juggling-dark-skin-tone.webp │ │ ├── people.man-juggling-light-skin-tone.webp │ │ ├── people.man-juggling-medium-dark-skin-tone.webp │ │ ├── people.man-juggling-medium-light-skin-tone.webp │ │ ├── people.man-juggling-medium-skin-tone.webp │ │ ├── people.man-juggling.webp │ │ ├── people.man-kneeling-dark-skin-tone.webp │ │ ├── people.man-kneeling-facing-right-dark-skin-tone.webp │ │ ├── people.man-kneeling-facing-right-light-skin-tone.webp │ │ ├── people.man-kneeling-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-kneeling-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-kneeling-facing-right-medium-skin-tone.webp │ │ ├── people.man-kneeling-facing-right.webp │ │ ├── people.man-kneeling-light-skin-tone.webp │ │ ├── people.man-kneeling-medium-dark-skin-tone.webp │ │ ├── people.man-kneeling-medium-light-skin-tone.webp │ │ ├── people.man-kneeling-medium-skin-tone.webp │ │ ├── people.man-kneeling.webp │ │ ├── people.man-lifting-weights-dark-skin-tone.webp │ │ ├── people.man-lifting-weights-light-skin-tone.webp │ │ ├── people.man-lifting-weights-medium-dark-skin-tone.webp │ │ ├── people.man-lifting-weights-medium-light-skin-tone.webp │ │ ├── people.man-lifting-weights-medium-skin-tone.webp │ │ ├── people.man-lifting-weights.webp │ │ ├── people.man-light-skin-tone-bald.webp │ │ ├── people.man-light-skin-tone-beard.webp │ │ ├── people.man-light-skin-tone-blond-hair.webp │ │ ├── people.man-light-skin-tone-curly-hair.webp │ │ ├── people.man-light-skin-tone-red-hair.webp │ │ ├── people.man-light-skin-tone-white-hair.webp │ │ ├── people.man-light-skin-tone.webp │ │ ├── people.man-mage-dark-skin-tone.webp │ │ ├── people.man-mage-light-skin-tone.webp │ │ ├── people.man-mage-medium-dark-skin-tone.webp │ │ ├── people.man-mage-medium-light-skin-tone.webp │ │ ├── people.man-mage-medium-skin-tone.webp │ │ ├── people.man-mage.webp │ │ ├── people.man-mechanic-dark-skin-tone.webp │ │ ├── people.man-mechanic-light-skin-tone.webp │ │ ├── people.man-mechanic-medium-dark-skin-tone.webp │ │ ├── people.man-mechanic-medium-light-skin-tone.webp │ │ ├── people.man-mechanic-medium-skin-tone.webp │ │ ├── people.man-mechanic.webp │ │ ├── people.man-medium-dark-skin-tone-bald.webp │ │ ├── people.man-medium-dark-skin-tone-beard.webp │ │ ├── people.man-medium-dark-skin-tone-blond-hair.webp │ │ ├── people.man-medium-dark-skin-tone-curly-hair.webp │ │ ├── people.man-medium-dark-skin-tone-red-hair.webp │ │ ├── people.man-medium-dark-skin-tone-white-hair.webp │ │ ├── people.man-medium-dark-skin-tone.webp │ │ ├── people.man-medium-light-skin-tone-bald.webp │ │ ├── people.man-medium-light-skin-tone-beard.webp │ │ ├── people.man-medium-light-skin-tone-blond-hair.webp │ │ ├── people.man-medium-light-skin-tone-curly-hair.webp │ │ ├── people.man-medium-light-skin-tone-red-hair.webp │ │ ├── people.man-medium-light-skin-tone-white-hair.webp │ │ ├── people.man-medium-light-skin-tone.webp │ │ ├── people.man-medium-skin-tone-bald.webp │ │ ├── people.man-medium-skin-tone-beard.webp │ │ ├── people.man-medium-skin-tone-blond-hair.webp │ │ ├── people.man-medium-skin-tone-curly-hair.webp │ │ ├── people.man-medium-skin-tone-red-hair.webp │ │ ├── people.man-medium-skin-tone-white-hair.webp │ │ ├── people.man-medium-skin-tone.webp │ │ ├── people.man-mountain-biking-dark-skin-tone.webp │ │ ├── people.man-mountain-biking-light-skin-tone.webp │ │ ├── people.man-mountain-biking-medium-dark-skin-tone.webp │ │ ├── people.man-mountain-biking-medium-light-skin-tone.webp │ │ ├── people.man-mountain-biking-medium-skin-tone.webp │ │ ├── people.man-mountain-biking.webp │ │ ├── people.man-office-worker-dark-skin-tone.webp │ │ ├── people.man-office-worker-light-skin-tone.webp │ │ ├── people.man-office-worker-medium-dark-skin-tone.webp │ │ ├── people.man-office-worker-medium-light-skin-tone.webp │ │ ├── people.man-office-worker-medium-skin-tone.webp │ │ ├── people.man-office-worker.webp │ │ ├── people.man-pilot-dark-skin-tone.webp │ │ ├── people.man-pilot-light-skin-tone.webp │ │ ├── people.man-pilot-medium-dark-skin-tone.webp │ │ ├── people.man-pilot-medium-light-skin-tone.webp │ │ ├── people.man-pilot-medium-skin-tone.webp │ │ ├── people.man-pilot.webp │ │ ├── people.man-playing-handball-dark-skin-tone.webp │ │ ├── people.man-playing-handball-light-skin-tone.webp │ │ ├── people.man-playing-handball-medium-dark-skin-tone.webp │ │ ├── people.man-playing-handball-medium-light-skin-tone.webp │ │ ├── people.man-playing-handball-medium-skin-tone.webp │ │ ├── people.man-playing-handball.webp │ │ ├── people.man-playing-water-polo-dark-skin-tone.webp │ │ ├── people.man-playing-water-polo-light-skin-tone.webp │ │ ├── people.man-playing-water-polo-medium-dark-skin-tone.webp │ │ ├── people.man-playing-water-polo-medium-light-skin-tone.webp │ │ ├── people.man-playing-water-polo-medium-skin-tone.webp │ │ ├── people.man-playing-water-polo.webp │ │ ├── people.man-police-officer-dark-skin-tone.webp │ │ ├── people.man-police-officer-light-skin-tone.webp │ │ ├── people.man-police-officer-medium-dark-skin-tone.webp │ │ ├── people.man-police-officer-medium-light-skin-tone.webp │ │ ├── people.man-police-officer-medium-skin-tone.webp │ │ ├── people.man-police-officer.webp │ │ ├── people.man-pouting-dark-skin-tone.webp │ │ ├── people.man-pouting-light-skin-tone.webp │ │ ├── people.man-pouting-medium-dark-skin-tone.webp │ │ ├── people.man-pouting-medium-light-skin-tone.webp │ │ ├── people.man-pouting-medium-skin-tone.webp │ │ ├── people.man-pouting.webp │ │ ├── people.man-raising-hand-dark-skin-tone.webp │ │ ├── people.man-raising-hand-light-skin-tone.webp │ │ ├── people.man-raising-hand-medium-dark-skin-tone.webp │ │ ├── people.man-raising-hand-medium-light-skin-tone.webp │ │ ├── people.man-raising-hand-medium-skin-tone.webp │ │ ├── people.man-raising-hand.webp │ │ ├── people.man-red-hair.webp │ │ ├── people.man-rowing-boat-dark-skin-tone.webp │ │ ├── people.man-rowing-boat-light-skin-tone.webp │ │ ├── people.man-rowing-boat-medium-dark-skin-tone.webp │ │ ├── people.man-rowing-boat-medium-light-skin-tone.webp │ │ ├── people.man-rowing-boat-medium-skin-tone.webp │ │ ├── people.man-rowing-boat.webp │ │ ├── people.man-running-dark-skin-tone.webp │ │ ├── people.man-running-facing-right-dark-skin-tone.webp │ │ ├── people.man-running-facing-right-light-skin-tone.webp │ │ ├── people.man-running-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-running-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-running-facing-right-medium-skin-tone.webp │ │ ├── people.man-running-facing-right.webp │ │ ├── people.man-running-light-skin-tone.webp │ │ ├── people.man-running-medium-dark-skin-tone.webp │ │ ├── people.man-running-medium-light-skin-tone.webp │ │ ├── people.man-running-medium-skin-tone.webp │ │ ├── people.man-running.webp │ │ ├── people.man-scientist-dark-skin-tone.webp │ │ ├── people.man-scientist-light-skin-tone.webp │ │ ├── people.man-scientist-medium-dark-skin-tone.webp │ │ ├── people.man-scientist-medium-light-skin-tone.webp │ │ ├── people.man-scientist-medium-skin-tone.webp │ │ ├── people.man-scientist.webp │ │ ├── people.man-shrugging-dark-skin-tone.webp │ │ ├── people.man-shrugging-light-skin-tone.webp │ │ ├── people.man-shrugging-medium-dark-skin-tone.webp │ │ ├── people.man-shrugging-medium-light-skin-tone.webp │ │ ├── people.man-shrugging-medium-skin-tone.webp │ │ ├── people.man-shrugging.webp │ │ ├── people.man-singer-dark-skin-tone.webp │ │ ├── people.man-singer-light-skin-tone.webp │ │ ├── people.man-singer-medium-dark-skin-tone.webp │ │ ├── people.man-singer-medium-light-skin-tone.webp │ │ ├── people.man-singer-medium-skin-tone.webp │ │ ├── people.man-singer.webp │ │ ├── people.man-standing-dark-skin-tone.webp │ │ ├── people.man-standing-light-skin-tone.webp │ │ ├── people.man-standing-medium-dark-skin-tone.webp │ │ ├── people.man-standing-medium-light-skin-tone.webp │ │ ├── people.man-standing-medium-skin-tone.webp │ │ ├── people.man-standing.webp │ │ ├── people.man-student-dark-skin-tone.webp │ │ ├── people.man-student-light-skin-tone.webp │ │ ├── people.man-student-medium-dark-skin-tone.webp │ │ ├── people.man-student-medium-light-skin-tone.webp │ │ ├── people.man-student-medium-skin-tone.webp │ │ ├── people.man-student.webp │ │ ├── people.man-superhero-dark-skin-tone.webp │ │ ├── people.man-superhero-light-skin-tone.webp │ │ ├── people.man-superhero-medium-dark-skin-tone.webp │ │ ├── people.man-superhero-medium-light-skin-tone.webp │ │ ├── people.man-superhero-medium-skin-tone.webp │ │ ├── people.man-superhero.webp │ │ ├── people.man-supervillain-dark-skin-tone.webp │ │ ├── people.man-supervillain-light-skin-tone.webp │ │ ├── people.man-supervillain-medium-dark-skin-tone.webp │ │ ├── people.man-supervillain-medium-light-skin-tone.webp │ │ ├── people.man-supervillain-medium-skin-tone.webp │ │ ├── people.man-supervillain.webp │ │ ├── people.man-surfing-dark-skin-tone.webp │ │ ├── people.man-surfing-light-skin-tone.webp │ │ ├── people.man-surfing-medium-dark-skin-tone.webp │ │ ├── people.man-surfing-medium-light-skin-tone.webp │ │ ├── people.man-surfing-medium-skin-tone.webp │ │ ├── people.man-surfing.webp │ │ ├── people.man-swimming-dark-skin-tone.webp │ │ ├── people.man-swimming-light-skin-tone.webp │ │ ├── people.man-swimming-medium-dark-skin-tone.webp │ │ ├── people.man-swimming-medium-light-skin-tone.webp │ │ ├── people.man-swimming-medium-skin-tone.webp │ │ ├── people.man-swimming.webp │ │ ├── people.man-teacher-dark-skin-tone.webp │ │ ├── people.man-teacher-light-skin-tone.webp │ │ ├── people.man-teacher-medium-dark-skin-tone.webp │ │ ├── people.man-teacher-medium-light-skin-tone.webp │ │ ├── people.man-teacher-medium-skin-tone.webp │ │ ├── people.man-teacher.webp │ │ ├── people.man-technologist-dark-skin-tone.webp │ │ ├── people.man-technologist-light-skin-tone.webp │ │ ├── people.man-technologist-medium-dark-skin-tone.webp │ │ ├── people.man-technologist-medium-light-skin-tone.webp │ │ ├── people.man-technologist-medium-skin-tone.webp │ │ ├── people.man-technologist.webp │ │ ├── people.man-tipping-hand-dark-skin-tone.webp │ │ ├── people.man-tipping-hand-light-skin-tone.webp │ │ ├── people.man-tipping-hand-medium-dark-skin-tone.webp │ │ ├── people.man-tipping-hand-medium-light-skin-tone.webp │ │ ├── people.man-tipping-hand-medium-skin-tone.webp │ │ ├── people.man-tipping-hand.webp │ │ ├── people.man-vampire-dark-skin-tone.webp │ │ ├── people.man-vampire-light-skin-tone.webp │ │ ├── people.man-vampire-medium-dark-skin-tone.webp │ │ ├── people.man-vampire-medium-light-skin-tone.webp │ │ ├── people.man-vampire-medium-skin-tone.webp │ │ ├── people.man-vampire.webp │ │ ├── people.man-walking-dark-skin-tone.webp │ │ ├── people.man-walking-facing-right-dark-skin-tone.webp │ │ ├── people.man-walking-facing-right-light-skin-tone.webp │ │ ├── people.man-walking-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-walking-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-walking-facing-right-medium-skin-tone.webp │ │ ├── people.man-walking-facing-right.webp │ │ ├── people.man-walking-light-skin-tone.webp │ │ ├── people.man-walking-medium-dark-skin-tone.webp │ │ ├── people.man-walking-medium-light-skin-tone.webp │ │ ├── people.man-walking-medium-skin-tone.webp │ │ ├── people.man-walking.webp │ │ ├── people.man-wearing-turban-dark-skin-tone.webp │ │ ├── people.man-wearing-turban-light-skin-tone.webp │ │ ├── people.man-wearing-turban-medium-dark-skin-tone.webp │ │ ├── people.man-wearing-turban-medium-light-skin-tone.webp │ │ ├── people.man-wearing-turban-medium-skin-tone.webp │ │ ├── people.man-wearing-turban.webp │ │ ├── people.man-white-hair.webp │ │ ├── people.man-with-veil-dark-skin-tone.webp │ │ ├── people.man-with-veil-light-skin-tone.webp │ │ ├── people.man-with-veil-medium-dark-skin-tone.webp │ │ ├── people.man-with-veil-medium-light-skin-tone.webp │ │ ├── people.man-with-veil-medium-skin-tone.webp │ │ ├── people.man-with-veil.webp │ │ ├── people.man-with-white-cane-dark-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right-dark-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right-light-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right-medium-dark-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right-medium-light-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right-medium-skin-tone.webp │ │ ├── people.man-with-white-cane-facing-right.webp │ │ ├── people.man-with-white-cane-light-skin-tone.webp │ │ ├── people.man-with-white-cane-medium-dark-skin-tone.webp │ │ ├── people.man-with-white-cane-medium-light-skin-tone.webp │ │ ├── people.man-with-white-cane-medium-skin-tone.webp │ │ ├── people.man-with-white-cane.webp │ │ ├── people.man-zombie.webp │ │ ├── people.man.webp │ │ ├── people.mechanic-dark-skin-tone.webp │ │ ├── people.mechanic-light-skin-tone.webp │ │ ├── people.mechanic-medium-dark-skin-tone.webp │ │ ├── people.mechanic-medium-light-skin-tone.webp │ │ ├── people.mechanic-medium-skin-tone.webp │ │ ├── people.mechanic.webp │ │ ├── people.mechanical-arm.webp │ │ ├── people.mechanical-leg.webp │ │ ├── people.medium-dark-skin-tone.webp │ │ ├── people.medium-light-skin-tone.webp │ │ ├── people.medium-skin-tone.webp │ │ ├── people.men-holding-hands-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-holding-hands-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-holding-hands-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-holding-hands-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-holding-hands-dark-skin-tone.webp │ │ ├── people.men-holding-hands-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-holding-hands-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-holding-hands-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-holding-hands-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-holding-hands-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-holding-hands-medium-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-holding-hands-medium-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-skin-tone-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-holding-hands-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-holding-hands-medium-skin-tone.webp │ │ ├── people.men-holding-hands.webp │ │ ├── people.men-with-bunny-ears-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-with-bunny-ears-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-skin-tone-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-partying-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-partying-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-partying-medium-dark-skin-tone.webp │ │ ├── people.men-with-bunny-ears-partying-medium-light-skin-tone.webp │ │ ├── people.men-with-bunny-ears-partying-medium-skin-tone.webp │ │ ├── people.men-with-bunny-ears.webp │ │ ├── people.men-wrestling-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-wrestling-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-wrestling-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-wrestling-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-wrestling-dark-skin-tone.webp │ │ ├── people.men-wrestling-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-wrestling-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-wrestling-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-wrestling-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-wrestling-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.men-wrestling-medium-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.men-wrestling-medium-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-skin-tone-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.men-wrestling-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.men-wrestling-medium-skin-tone.webp │ │ ├── people.men-wrestling.webp │ │ ├── people.mermaid-dark-skin-tone.webp │ │ ├── people.mermaid-light-skin-tone.webp │ │ ├── people.mermaid-medium-dark-skin-tone.webp │ │ ├── people.mermaid-medium-light-skin-tone.webp │ │ ├── people.mermaid-medium-skin-tone.webp │ │ ├── people.mermaid.webp │ │ ├── people.merman-dark-skin-tone.webp │ │ ├── people.merman-light-skin-tone.webp │ │ ├── people.merman-medium-dark-skin-tone.webp │ │ ├── people.merman-medium-light-skin-tone.webp │ │ ├── people.merman-medium-skin-tone.webp │ │ ├── people.merman.webp │ │ ├── people.merperson-dark-skin-tone.webp │ │ ├── people.merperson-light-skin-tone.webp │ │ ├── people.merperson-medium-dark-skin-tone.webp │ │ ├── people.merperson-medium-light-skin-tone.webp │ │ ├── people.merperson-medium-skin-tone.webp │ │ ├── people.merperson.webp │ │ ├── people.mouth.webp │ │ ├── people.mrs-claus-dark-skin-tone.webp │ │ ├── people.mrs-claus-light-skin-tone.webp │ │ ├── people.mrs-claus-medium-dark-skin-tone.webp │ │ ├── people.mrs-claus-medium-light-skin-tone.webp │ │ ├── people.mrs-claus-medium-skin-tone.webp │ │ ├── people.mrs-claus.webp │ │ ├── people.mx-claus-dark-skin-tone.webp │ │ ├── people.mx-claus-light-skin-tone.webp │ │ ├── people.mx-claus-medium-dark-skin-tone.webp │ │ ├── people.mx-claus-medium-light-skin-tone.webp │ │ ├── people.mx-claus-medium-skin-tone.webp │ │ ├── people.mx-claus.webp │ │ ├── people.nail-polish-dark-skin-tone.webp │ │ ├── people.nail-polish-light-skin-tone.webp │ │ ├── people.nail-polish-medium-dark-skin-tone.webp │ │ ├── people.nail-polish-medium-light-skin-tone.webp │ │ ├── people.nail-polish-medium-skin-tone.webp │ │ ├── people.nail-polish.webp │ │ ├── people.ninja-dark-skin-tone.webp │ │ ├── people.ninja-light-skin-tone.webp │ │ ├── people.ninja-medium-dark-skin-tone.webp │ │ ├── people.ninja-medium-light-skin-tone.webp │ │ ├── people.ninja-medium-skin-tone.webp │ │ ├── people.ninja.webp │ │ ├── people.nose-dark-skin-tone.webp │ │ ├── people.nose-light-skin-tone.webp │ │ ├── people.nose-medium-dark-skin-tone.webp │ │ ├── people.nose-medium-light-skin-tone.webp │ │ ├── people.nose-medium-skin-tone.webp │ │ ├── people.nose.webp │ │ ├── people.office-worker-dark-skin-tone.webp │ │ ├── people.office-worker-light-skin-tone.webp │ │ ├── people.office-worker-medium-dark-skin-tone.webp │ │ ├── people.office-worker-medium-light-skin-tone.webp │ │ ├── people.office-worker-medium-skin-tone.webp │ │ ├── people.office-worker.webp │ │ ├── people.ok-hand-dark-skin-tone.webp │ │ ├── people.ok-hand-light-skin-tone.webp │ │ ├── people.ok-hand-medium-dark-skin-tone.webp │ │ ├── people.ok-hand-medium-light-skin-tone.webp │ │ ├── people.ok-hand-medium-skin-tone.webp │ │ ├── people.ok-hand.webp │ │ ├── people.old-man-dark-skin-tone.webp │ │ ├── people.old-man-light-skin-tone.webp │ │ ├── people.old-man-medium-dark-skin-tone.webp │ │ ├── people.old-man-medium-light-skin-tone.webp │ │ ├── people.old-man-medium-skin-tone.webp │ │ ├── people.old-man.webp │ │ ├── people.old-woman-dark-skin-tone.webp │ │ ├── people.old-woman-light-skin-tone.webp │ │ ├── people.old-woman-medium-dark-skin-tone.webp │ │ ├── people.old-woman-medium-light-skin-tone.webp │ │ ├── people.old-woman-medium-skin-tone.webp │ │ ├── people.old-woman.webp │ │ ├── people.older-person-dark-skin-tone.webp │ │ ├── people.older-person-light-skin-tone.webp │ │ ├── people.older-person-medium-dark-skin-tone.webp │ │ ├── people.older-person-medium-light-skin-tone.webp │ │ ├── people.older-person-medium-skin-tone.webp │ │ ├── people.older-person.webp │ │ ├── people.oncoming-fist-dark-skin-tone.webp │ │ ├── people.oncoming-fist-light-skin-tone.webp │ │ ├── people.oncoming-fist-medium-dark-skin-tone.webp │ │ ├── people.oncoming-fist-medium-light-skin-tone.webp │ │ ├── people.oncoming-fist-medium-skin-tone.webp │ │ ├── people.oncoming-fist.webp │ │ ├── people.open-hands-dark-skin-tone.webp │ │ ├── people.open-hands-light-skin-tone.webp │ │ ├── people.open-hands-medium-dark-skin-tone.webp │ │ ├── people.open-hands-medium-light-skin-tone.webp │ │ ├── people.open-hands-medium-skin-tone.webp │ │ ├── people.open-hands.webp │ │ ├── people.palm-down-hand-dark-skin-tone.webp │ │ ├── people.palm-down-hand-light-skin-tone.webp │ │ ├── people.palm-down-hand-medium-dark-skin-tone.webp │ │ ├── people.palm-down-hand-medium-light-skin-tone.webp │ │ ├── people.palm-down-hand-medium-skin-tone.webp │ │ ├── people.palm-down-hand.webp │ │ ├── people.palm-up-hand-dark-skin-tone.webp │ │ ├── people.palm-up-hand-light-skin-tone.webp │ │ ├── people.palm-up-hand-medium-dark-skin-tone.webp │ │ ├── people.palm-up-hand-medium-light-skin-tone.webp │ │ ├── people.palm-up-hand-medium-skin-tone.webp │ │ ├── people.palm-up-hand.webp │ │ ├── people.palms-up-together-dark-skin-tone.webp │ │ ├── people.palms-up-together-light-skin-tone.webp │ │ ├── people.palms-up-together-medium-dark-skin-tone.webp │ │ ├── people.palms-up-together-medium-light-skin-tone.webp │ │ ├── people.palms-up-together-medium-skin-tone.webp │ │ ├── people.palms-up-together.webp │ │ ├── people.people-holding-hands-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-holding-hands-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-holding-hands-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-holding-hands-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-holding-hands-dark-skin-tone.webp │ │ ├── people.people-holding-hands-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-holding-hands-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-holding-hands-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-holding-hands-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-holding-hands-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-holding-hands-medium-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-holding-hands-medium-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-skin-tone-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-holding-hands-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-holding-hands-medium-skin-tone.webp │ │ ├── people.people-holding-hands.webp │ │ ├── people.people-hugging.webp │ │ ├── people.people-with-bunny-ears-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-with-bunny-ears-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-with-bunny-ears-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-skin-tone-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-with-bunny-ears-medium-skin-tone.webp │ │ ├── people.people-with-bunny-ears.webp │ │ ├── people.people-wrestling-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-wrestling-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-wrestling-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-wrestling-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-wrestling-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-wrestling-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-wrestling-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-wrestling-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-wrestling-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.people-wrestling-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.people-wrestling-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-wrestling-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.people-wrestling-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.people-wrestling-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.people-wrestling-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-wrestling-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.people-wrestling-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.people-wrestling-medium-skin-tone-light-skin-tone.webp │ │ ├── people.people-wrestling-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.people-wrestling-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.people-wrestling.webp │ │ ├── people.person-bald.webp │ │ ├── people.person-beard.webp │ │ ├── people.person-biking-dark-skin-tone.webp │ │ ├── people.person-biking-light-skin-tone.webp │ │ ├── people.person-biking-medium-dark-skin-tone.webp │ │ ├── people.person-biking-medium-light-skin-tone.webp │ │ ├── people.person-biking-medium-skin-tone.webp │ │ ├── people.person-biking.webp │ │ ├── people.person-blond-hair.webp │ │ ├── people.person-bouncing-ball-dark-skin-tone.webp │ │ ├── people.person-bouncing-ball-light-skin-tone.webp │ │ ├── people.person-bouncing-ball-medium-dark-skin-tone.webp │ │ ├── people.person-bouncing-ball-medium-light-skin-tone.webp │ │ ├── people.person-bouncing-ball-medium-skin-tone.webp │ │ ├── people.person-bouncing-ball.webp │ │ ├── people.person-bowing-dark-skin-tone.webp │ │ ├── people.person-bowing-light-skin-tone.webp │ │ ├── people.person-bowing-medium-dark-skin-tone.webp │ │ ├── people.person-bowing-medium-light-skin-tone.webp │ │ ├── people.person-bowing-medium-skin-tone.webp │ │ ├── people.person-bowing.webp │ │ ├── people.person-cartwheeling-dark-skin-tone.webp │ │ ├── people.person-cartwheeling-light-skin-tone.webp │ │ ├── people.person-cartwheeling-medium-dark-skin-tone.webp │ │ ├── people.person-cartwheeling-medium-light-skin-tone.webp │ │ ├── people.person-cartwheeling-medium-skin-tone.webp │ │ ├── people.person-cartwheeling.webp │ │ ├── people.person-climbing-dark-skin-tone.webp │ │ ├── people.person-climbing-light-skin-tone.webp │ │ ├── people.person-climbing-medium-dark-skin-tone.webp │ │ ├── people.person-climbing-medium-light-skin-tone.webp │ │ ├── people.person-climbing-medium-skin-tone.webp │ │ ├── people.person-climbing.webp │ │ ├── people.person-curly-hair.webp │ │ ├── people.person-dark-skin-tone-bald.webp │ │ ├── people.person-dark-skin-tone-beard.webp │ │ ├── people.person-dark-skin-tone-blond-hair.webp │ │ ├── people.person-dark-skin-tone-curly-hair.webp │ │ ├── people.person-dark-skin-tone-red-hair.webp │ │ ├── people.person-dark-skin-tone-white-hair.webp │ │ ├── people.person-dark-skin-tone.webp │ │ ├── people.person-facepalming-dark-skin-tone.webp │ │ ├── people.person-facepalming-light-skin-tone.webp │ │ ├── people.person-facepalming-medium-dark-skin-tone.webp │ │ ├── people.person-facepalming-medium-light-skin-tone.webp │ │ ├── people.person-facepalming-medium-skin-tone.webp │ │ ├── people.person-facepalming.webp │ │ ├── people.person-feeding-baby-dark-skin-tone.webp │ │ ├── people.person-feeding-baby-light-skin-tone.webp │ │ ├── people.person-feeding-baby-medium-dark-skin-tone.webp │ │ ├── people.person-feeding-baby-medium-light-skin-tone.webp │ │ ├── people.person-feeding-baby-medium-skin-tone.webp │ │ ├── people.person-feeding-baby.webp │ │ ├── people.person-fencing.webp │ │ ├── people.person-frowning-dark-skin-tone.webp │ │ ├── people.person-frowning-light-skin-tone.webp │ │ ├── people.person-frowning-medium-dark-skin-tone.webp │ │ ├── people.person-frowning-medium-light-skin-tone.webp │ │ ├── people.person-frowning-medium-skin-tone.webp │ │ ├── people.person-frowning.webp │ │ ├── people.person-gesturing-no-dark-skin-tone.webp │ │ ├── people.person-gesturing-no-light-skin-tone.webp │ │ ├── people.person-gesturing-no-medium-dark-skin-tone.webp │ │ ├── people.person-gesturing-no-medium-light-skin-tone.webp │ │ ├── people.person-gesturing-no-medium-skin-tone.webp │ │ ├── people.person-gesturing-no.webp │ │ ├── people.person-gesturing-ok-dark-skin-tone.webp │ │ ├── people.person-gesturing-ok-light-skin-tone.webp │ │ ├── people.person-gesturing-ok-medium-dark-skin-tone.webp │ │ ├── people.person-gesturing-ok-medium-light-skin-tone.webp │ │ ├── people.person-gesturing-ok-medium-skin-tone.webp │ │ ├── people.person-gesturing-ok.webp │ │ ├── people.person-getting-haircut-dark-skin-tone.webp │ │ ├── people.person-getting-haircut-light-skin-tone.webp │ │ ├── people.person-getting-haircut-medium-dark-skin-tone.webp │ │ ├── people.person-getting-haircut-medium-light-skin-tone.webp │ │ ├── people.person-getting-haircut-medium-skin-tone.webp │ │ ├── people.person-getting-haircut.webp │ │ ├── people.person-getting-massage-dark-skin-tone.webp │ │ ├── people.person-getting-massage-light-skin-tone.webp │ │ ├── people.person-getting-massage-medium-dark-skin-tone.webp │ │ ├── people.person-getting-massage-medium-light-skin-tone.webp │ │ ├── people.person-getting-massage-medium-skin-tone.webp │ │ ├── people.person-getting-massage.webp │ │ ├── people.person-golfing-dark-skin-tone.webp │ │ ├── people.person-golfing-light-skin-tone.webp │ │ ├── people.person-golfing-medium-dark-skin-tone.webp │ │ ├── people.person-golfing-medium-light-skin-tone.webp │ │ ├── people.person-golfing-medium-skin-tone.webp │ │ ├── people.person-golfing.webp │ │ ├── people.person-in-bed-dark-skin-tone.webp │ │ ├── people.person-in-bed-light-skin-tone.webp │ │ ├── people.person-in-bed-medium-dark-skin-tone.webp │ │ ├── people.person-in-bed-medium-light-skin-tone.webp │ │ ├── people.person-in-bed-medium-skin-tone.webp │ │ ├── people.person-in-bed.webp │ │ ├── people.person-in-lotus-position-dark-skin-tone.webp │ │ ├── people.person-in-lotus-position-light-skin-tone.webp │ │ ├── people.person-in-lotus-position-medium-dark-skin-tone.webp │ │ ├── people.person-in-lotus-position-medium-light-skin-tone.webp │ │ ├── people.person-in-lotus-position-medium-skin-tone.webp │ │ ├── people.person-in-lotus-position.webp │ │ ├── people.person-in-manual-wheelchair-dark-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-facing-right.webp │ │ ├── people.person-in-manual-wheelchair-light-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-medium-light-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair-medium-skin-tone.webp │ │ ├── people.person-in-manual-wheelchair.webp │ │ ├── people.person-in-motorized-wheelchair-dark-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-facing-right.webp │ │ ├── people.person-in-motorized-wheelchair-light-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-medium-light-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair-medium-skin-tone.webp │ │ ├── people.person-in-motorized-wheelchair.webp │ │ ├── people.person-in-steamy-room-dark-skin-tone.webp │ │ ├── people.person-in-steamy-room-light-skin-tone.webp │ │ ├── people.person-in-steamy-room-medium-dark-skin-tone.webp │ │ ├── people.person-in-steamy-room-medium-light-skin-tone.webp │ │ ├── people.person-in-steamy-room-medium-skin-tone.webp │ │ ├── people.person-in-steamy-room.webp │ │ ├── people.person-in-suit-levitating-dark-skin-tone.webp │ │ ├── people.person-in-suit-levitating-light-skin-tone.webp │ │ ├── people.person-in-suit-levitating-medium-dark-skin-tone.webp │ │ ├── people.person-in-suit-levitating-medium-light-skin-tone.webp │ │ ├── people.person-in-suit-levitating-medium-skin-tone.webp │ │ ├── people.person-in-suit-levitating.webp │ │ ├── people.person-in-tuxedo-dark-skin-tone.webp │ │ ├── people.person-in-tuxedo-light-skin-tone.webp │ │ ├── people.person-in-tuxedo-medium-dark-skin-tone.webp │ │ ├── people.person-in-tuxedo-medium-light-skin-tone.webp │ │ ├── people.person-in-tuxedo-medium-skin-tone.webp │ │ ├── people.person-in-tuxedo.webp │ │ ├── people.person-juggling-dark-skin-tone.webp │ │ ├── people.person-juggling-light-skin-tone.webp │ │ ├── people.person-juggling-medium-dark-skin-tone.webp │ │ ├── people.person-juggling-medium-light-skin-tone.webp │ │ ├── people.person-juggling-medium-skin-tone.webp │ │ ├── people.person-juggling.webp │ │ ├── people.person-kneeling-dark-skin-tone.webp │ │ ├── people.person-kneeling-facing-right-dark-skin-tone.webp │ │ ├── people.person-kneeling-facing-right-light-skin-tone.webp │ │ ├── people.person-kneeling-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-kneeling-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-kneeling-facing-right-medium-skin-tone.webp │ │ ├── people.person-kneeling-facing-right.webp │ │ ├── people.person-kneeling-light-skin-tone.webp │ │ ├── people.person-kneeling-medium-dark-skin-tone.webp │ │ ├── people.person-kneeling-medium-light-skin-tone.webp │ │ ├── people.person-kneeling-medium-skin-tone.webp │ │ ├── people.person-kneeling.webp │ │ ├── people.person-lifting-weights-dark-skin-tone.webp │ │ ├── people.person-lifting-weights-light-skin-tone.webp │ │ ├── people.person-lifting-weights-medium-dark-skin-tone.webp │ │ ├── people.person-lifting-weights-medium-light-skin-tone.webp │ │ ├── people.person-lifting-weights-medium-skin-tone.webp │ │ ├── people.person-lifting-weights.webp │ │ ├── people.person-light-skin-tone-bald.webp │ │ ├── people.person-light-skin-tone-beard.webp │ │ ├── people.person-light-skin-tone-blond-hair.webp │ │ ├── people.person-light-skin-tone-curly-hair.webp │ │ ├── people.person-light-skin-tone-red-hair.webp │ │ ├── people.person-light-skin-tone-white-hair.webp │ │ ├── people.person-light-skin-tone.webp │ │ ├── people.person-medium-dark-skin-tone-bald.webp │ │ ├── people.person-medium-dark-skin-tone-beard.webp │ │ ├── people.person-medium-dark-skin-tone-blond-hair.webp │ │ ├── people.person-medium-dark-skin-tone-curly-hair.webp │ │ ├── people.person-medium-dark-skin-tone-red-hair.webp │ │ ├── people.person-medium-dark-skin-tone-white-hair.webp │ │ ├── people.person-medium-dark-skin-tone.webp │ │ ├── people.person-medium-light-skin-tone-bald.webp │ │ ├── people.person-medium-light-skin-tone-beard.webp │ │ ├── people.person-medium-light-skin-tone-blond-hair.webp │ │ ├── people.person-medium-light-skin-tone-curly-hair.webp │ │ ├── people.person-medium-light-skin-tone-red-hair.webp │ │ ├── people.person-medium-light-skin-tone-white-hair.webp │ │ ├── people.person-medium-light-skin-tone.webp │ │ ├── people.person-medium-skin-tone-bald.webp │ │ ├── people.person-medium-skin-tone-beard.webp │ │ ├── people.person-medium-skin-tone-blond-hair.webp │ │ ├── people.person-medium-skin-tone-curly-hair.webp │ │ ├── people.person-medium-skin-tone-red-hair.webp │ │ ├── people.person-medium-skin-tone-white-hair.webp │ │ ├── people.person-medium-skin-tone.webp │ │ ├── people.person-mountain-biking-dark-skin-tone.webp │ │ ├── people.person-mountain-biking-light-skin-tone.webp │ │ ├── people.person-mountain-biking-medium-dark-skin-tone.webp │ │ ├── people.person-mountain-biking-medium-light-skin-tone.webp │ │ ├── people.person-mountain-biking-medium-skin-tone.webp │ │ ├── people.person-mountain-biking.webp │ │ ├── people.person-playing-handball-dark-skin-tone.webp │ │ ├── people.person-playing-handball-light-skin-tone.webp │ │ ├── people.person-playing-handball-medium-dark-skin-tone.webp │ │ ├── people.person-playing-handball-medium-light-skin-tone.webp │ │ ├── people.person-playing-handball-medium-skin-tone.webp │ │ ├── people.person-playing-handball.webp │ │ ├── people.person-playing-water-polo-dark-skin-tone.webp │ │ ├── people.person-playing-water-polo-light-skin-tone.webp │ │ ├── people.person-playing-water-polo-medium-dark-skin-tone.webp │ │ ├── people.person-playing-water-polo-medium-light-skin-tone.webp │ │ ├── people.person-playing-water-polo-medium-skin-tone.webp │ │ ├── people.person-playing-water-polo.webp │ │ ├── people.person-pouting-dark-skin-tone.webp │ │ ├── people.person-pouting-light-skin-tone.webp │ │ ├── people.person-pouting-medium-dark-skin-tone.webp │ │ ├── people.person-pouting-medium-light-skin-tone.webp │ │ ├── people.person-pouting-medium-skin-tone.webp │ │ ├── people.person-pouting.webp │ │ ├── people.person-raising-hand-dark-skin-tone.webp │ │ ├── people.person-raising-hand-light-skin-tone.webp │ │ ├── people.person-raising-hand-medium-dark-skin-tone.webp │ │ ├── people.person-raising-hand-medium-light-skin-tone.webp │ │ ├── people.person-raising-hand-medium-skin-tone.webp │ │ ├── people.person-raising-hand.webp │ │ ├── people.person-red-hair.webp │ │ ├── people.person-rowing-boat-dark-skin-tone.webp │ │ ├── people.person-rowing-boat-light-skin-tone.webp │ │ ├── people.person-rowing-boat-medium-dark-skin-tone.webp │ │ ├── people.person-rowing-boat-medium-light-skin-tone.webp │ │ ├── people.person-rowing-boat-medium-skin-tone.webp │ │ ├── people.person-rowing-boat.webp │ │ ├── people.person-running-dark-skin-tone.webp │ │ ├── people.person-running-facing-right-dark-skin-tone.webp │ │ ├── people.person-running-facing-right-light-skin-tonet.webp │ │ ├── people.person-running-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-running-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-running-facing-right-medium-skin-tone.webp │ │ ├── people.person-running-facing-right.webp │ │ ├── people.person-running-light-skin-tone.webp │ │ ├── people.person-running-medium-dark-skin-tone.webp │ │ ├── people.person-running-medium-light-skin-tone.webp │ │ ├── people.person-running-medium-skin-tone.webp │ │ ├── people.person-running.webp │ │ ├── people.person-shrugging-dark-skin-tone.webp │ │ ├── people.person-shrugging-light-skin-tone.webp │ │ ├── people.person-shrugging-medium-dark-skin-tone.webp │ │ ├── people.person-shrugging-medium-light-skin-tone.webp │ │ ├── people.person-shrugging-medium-skin-tone.webp │ │ ├── people.person-shrugging.webp │ │ ├── people.person-standing-dark-skin-tone.webp │ │ ├── people.person-standing-light-skin-tone.webp │ │ ├── people.person-standing-medium-dark-skin-tone.webp │ │ ├── people.person-standing-medium-light-skin-tone.webp │ │ ├── people.person-standing-medium-skin-tone.webp │ │ ├── people.person-standing.webp │ │ ├── people.person-surfing-dark-skin-tone.webp │ │ ├── people.person-surfing-light-skin-tone.webp │ │ ├── people.person-surfing-medium-dark-skin-tone.webp │ │ ├── people.person-surfing-medium-light-skin-tone.webp │ │ ├── people.person-surfing-medium-skin-tone.webp │ │ ├── people.person-surfing.webp │ │ ├── people.person-swimming-dark-skin-tone.webp │ │ ├── people.person-swimming-light-skin-tone.webp │ │ ├── people.person-swimming-medium-dark-skin-tone.webp │ │ ├── people.person-swimming-medium-light-skin-tone.webp │ │ ├── people.person-swimming-medium-skin-tone.webp │ │ ├── people.person-swimming.webp │ │ ├── people.person-taking-bath-dark-skin-tone.webp │ │ ├── people.person-taking-bath-light-skin-tone.webp │ │ ├── people.person-taking-bath-medium-dark-skin-tone.webp │ │ ├── people.person-taking-bath-medium-light-skin-tone.webp │ │ ├── people.person-taking-bath-medium-skin-tone.webp │ │ ├── people.person-taking-bath.webp │ │ ├── people.person-tipping-hand-dark-skin-tone.webp │ │ ├── people.person-tipping-hand-light-skin-tone.webp │ │ ├── people.person-tipping-hand-medium-dark-skin-tone.webp │ │ ├── people.person-tipping-hand-medium-light-skin-tone.webp │ │ ├── people.person-tipping-hand-medium-skin-tone.webp │ │ ├── people.person-tipping-hand.webp │ │ ├── people.person-walking-dark-skin-tone.webp │ │ ├── people.person-walking-facing-right-dark-skin-tone.webp │ │ ├── people.person-walking-facing-right-light-skin-tone.webp │ │ ├── people.person-walking-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-walking-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-walking-facing-right-medium-skin-tone.webp │ │ ├── people.person-walking-facing-right.webp │ │ ├── people.person-walking-light-skin-tone.webp │ │ ├── people.person-walking-medium-dark-skin-tone.webp │ │ ├── people.person-walking-medium-light-skin-tone.webp │ │ ├── people.person-walking-medium-skin-tone.webp │ │ ├── people.person-walking.webp │ │ ├── people.person-wearing-turban-dark-skin-tone.webp │ │ ├── people.person-wearing-turban-light-skin-tone.webp │ │ ├── people.person-wearing-turban-medium-dark-skin-tone.webp │ │ ├── people.person-wearing-turban-medium-light-skin-tone.webp │ │ ├── people.person-wearing-turban-medium-skin-tone.webp │ │ ├── people.person-wearing-turban.webp │ │ ├── people.person-white-hair.webp │ │ ├── people.person-with-crown-dark-skin-tone.webp │ │ ├── people.person-with-crown-light-skin-tone.webp │ │ ├── people.person-with-crown-medium-dark-skin-tone.webp │ │ ├── people.person-with-crown-medium-light-skin-tone.webp │ │ ├── people.person-with-crown-medium-skin-tone.webp │ │ ├── people.person-with-crown.webp │ │ ├── people.person-with-headscarf-dark-skin-tone.webp │ │ ├── people.person-with-headscarf-light-skin-tone.webp │ │ ├── people.person-with-headscarf-medium-dark-skin-tone.webp │ │ ├── people.person-with-headscarf-medium-light-skin-tone.webp │ │ ├── people.person-with-headscarf-medium-skin-tone.webp │ │ ├── people.person-with-headscarf.webp │ │ ├── people.person-with-skullcap-dark-skin-tone.webp │ │ ├── people.person-with-skullcap-light-skin-tone.webp │ │ ├── people.person-with-skullcap-medium-dark-skin-tone.webp │ │ ├── people.person-with-skullcap-medium-light-skin-tone.webp │ │ ├── people.person-with-skullcap-medium-skin-tone.webp │ │ ├── people.person-with-skullcap.webp │ │ ├── people.person-with-veil-dark-skin-tone.webp │ │ ├── people.person-with-veil-light-skin-tone.webp │ │ ├── people.person-with-veil-medium-dark-skin-tone.webp │ │ ├── people.person-with-veil-medium-light-skin-tone.webp │ │ ├── people.person-with-veil-medium-skin-tone.webp │ │ ├── people.person-with-veil.webp │ │ ├── people.person-with-white-cane-dark-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right-dark-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right-light-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right-medium-dark-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right-medium-light-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right-medium-skin-tone.webp │ │ ├── people.person-with-white-cane-facing-right.webp │ │ ├── people.person-with-white-cane-light-skin-tone.webp │ │ ├── people.person-with-white-cane-medium-dark-skin-tone.webp │ │ ├── people.person-with-white-cane-medium-light-skin-tone.webp │ │ ├── people.person-with-white-cane-medium-skin-tone.webp │ │ ├── people.person-with-white-cane.webp │ │ ├── people.person.webp │ │ ├── people.pilot-dark-skin-tone.webp │ │ ├── people.pilot-light-skin-tone.webp │ │ ├── people.pilot-medium-dark-skin-tone.webp │ │ ├── people.pilot-medium-light-skin-tone.webp │ │ ├── people.pilot-medium-skin-tone.webp │ │ ├── people.pilot.webp │ │ ├── people.pinched-fingers-dark-skin-tone.webp │ │ ├── people.pinched-fingers-light-skin-tone.webp │ │ ├── people.pinched-fingers-medium-dark-skin-tone.webp │ │ ├── people.pinched-fingers-medium-light-skin-tone.webp │ │ ├── people.pinched-fingers-medium-skin-tone.webp │ │ ├── people.pinched-fingers.webp │ │ ├── people.police-officer-dark-skin-tone.webp │ │ ├── people.police-officer-light-skin-tone.webp │ │ ├── people.police-officer-medium-dark-skin-tone.webp │ │ ├── people.police-officer-medium-light-skin-tone.webp │ │ ├── people.police-officer-medium-skin-tone.webp │ │ ├── people.police-officer.webp │ │ ├── people.pregnant-man-dark-skin-tone.webp │ │ ├── people.pregnant-man-light-skin-tone.webp │ │ ├── people.pregnant-man-medium-dark-skin-tone.webp │ │ ├── people.pregnant-man-medium-light-skin-tone.webp │ │ ├── people.pregnant-man-medium-skin-tone.webp │ │ ├── people.pregnant-man.webp │ │ ├── people.pregnant-person-dark-skin-tone.webp │ │ ├── people.pregnant-person-light-skin-tone.webp │ │ ├── people.pregnant-person-medium-dark-skin-tone.webp │ │ ├── people.pregnant-person-medium-light-skin-tone.webp │ │ ├── people.pregnant-person-medium-skin-tone.webp │ │ ├── people.pregnant-person.webp │ │ ├── people.pregnant-woman-dark-skin-tone.webp │ │ ├── people.pregnant-woman-light-skin-tone.webp │ │ ├── people.pregnant-woman-medium-dark-skin-tone.webp │ │ ├── people.pregnant-woman-medium-light-skin-tone.webp │ │ ├── people.pregnant-woman-medium-skin-tone.webp │ │ ├── people.pregnant-woman.webp │ │ ├── people.prince-dark-skin-tone.webp │ │ ├── people.prince-light-skin-tone.webp │ │ ├── people.prince-medium-dark-skin-tone.webp │ │ ├── people.prince-medium-light-skin-tone.webp │ │ ├── people.prince-medium-skin-tone.webp │ │ ├── people.prince.webp │ │ ├── people.princess-dark-skin-tone.webp │ │ ├── people.princess-light-skin-tone.webp │ │ ├── people.princess-medium-dark-skin-tone.webp │ │ ├── people.princess-medium-light-skin-tone.webp │ │ ├── people.princess-medium-skin-tone.webp │ │ ├── people.princess.webp │ │ ├── people.raised-back-of-hand-dark-skin-tone.webp │ │ ├── people.raised-back-of-hand-light-skin-tone.webp │ │ ├── people.raised-back-of-hand-medium-dark-skin-tone.webp │ │ ├── people.raised-back-of-hand-medium-light-skin-tone.webp │ │ ├── people.raised-back-of-hand-medium-skin-tone.webp │ │ ├── people.raised-back-of-hand.webp │ │ ├── people.raised-fist-dark-skin-tone.webp │ │ ├── people.raised-fist-light-skin-tone.webp │ │ ├── people.raised-fist-medium-dark-skin-tone.webp │ │ ├── people.raised-fist-medium-light-skin-tone.webp │ │ ├── people.raised-fist-medium-skin-tone.webp │ │ ├── people.raised-fist.webp │ │ ├── people.raised-hand-dark-skin-tone.webp │ │ ├── people.raised-hand-light-skin-tone.webp │ │ ├── people.raised-hand-medium-dark-skin-tone.webp │ │ ├── people.raised-hand-medium-light-skin-tone.webp │ │ ├── people.raised-hand-medium-skin-tone.webp │ │ ├── people.raised-hand.webp │ │ ├── people.raising-hands-dark-skin-tone.webp │ │ ├── people.raising-hands-light-skin-tone.webp │ │ ├── people.raising-hands-medium-dark-skin-tone.webp │ │ ├── people.raising-hands-medium-light-skin-tone.webp │ │ ├── people.raising-hands-medium-skin-tone.webp │ │ ├── people.raising-hands.webp │ │ ├── people.red-hair.webp │ │ ├── people.right-facing-fist-dark-skin-tone.webp │ │ ├── people.right-facing-fist-light-skin-tone.webp │ │ ├── people.right-facing-fist-medium-dark-skin-tone.webp │ │ ├── people.right-facing-fist-medium-light-skin-tone.webp │ │ ├── people.right-facing-fist-medium-skin-tone.webp │ │ ├── people.right-facing-fist.webp │ │ ├── people.rightwards-hand-dark-skin-tone.webp │ │ ├── people.rightwards-hand-light-skin-tone.webp │ │ ├── people.rightwards-hand-medium-dark-skin-tone.webp │ │ ├── people.rightwards-hand-medium-light-skin-tone.webp │ │ ├── people.rightwards-hand-medium-skin-tone.webp │ │ ├── people.rightwards-hand.webp │ │ ├── people.rightwards-pushing-hand-dark-skin-tone.webp │ │ ├── people.rightwards-pushing-hand-light-skin-tone.webp │ │ ├── people.rightwards-pushing-hand-medium-dark-skin-tone.webp │ │ ├── people.rightwards-pushing-hand-medium-light-skin-tone.webp │ │ ├── people.rightwards-pushing-hand-medium-skin-tone.webp │ │ ├── people.rightwards-pushing-hand.webp │ │ ├── people.santa-claus-dark-skin-tone.webp │ │ ├── people.santa-claus-light-skin-tone.webp │ │ ├── people.santa-claus-medium-dark-skin-tone.webp │ │ ├── people.santa-claus-medium-light-skin-tone.webp │ │ ├── people.santa-claus-medium-skin-tone.webp │ │ ├── people.santa-claus.webp │ │ ├── people.scientist-dark-skin-tone.webp │ │ ├── people.scientist-light-skin-tone.webp │ │ ├── people.scientist-medium-dark-skin-tone.webp │ │ ├── people.scientist-medium-light-skin-tone.webp │ │ ├── people.scientist-medium-skin-tone.webp │ │ ├── people.scientist.webp │ │ ├── people.selfie-dark-skin-tone.webp │ │ ├── people.selfie-light-skin-tone.webp │ │ ├── people.selfie-medium-dark-skin-tone.webp │ │ ├── people.selfie-medium-light-skin-tone.webp │ │ ├── people.selfie-medium-skin-tone.webp │ │ ├── people.selfie.webp │ │ ├── people.sign-of-the-horns-dark-skin-tone.webp │ │ ├── people.sign-of-the-horns-light-skin-tone.webp │ │ ├── people.sign-of-the-horns-medium-dark-skin-tone.webp │ │ ├── people.sign-of-the-horns-medium-light-skin-tone.webp │ │ ├── people.sign-of-the-horns-medium-skin-tone.webp │ │ ├── people.sign-of-the-horns.webp │ │ ├── people.singer-dark-skin-tone.webp │ │ ├── people.singer-light-skin-tone.webp │ │ ├── people.singer-medium-dark-skin-tone.webp │ │ ├── people.singer-medium-light-skin-tone.webp │ │ ├── people.singer-medium-skin-tone.webp │ │ ├── people.singer.webp │ │ ├── people.skier.webp │ │ ├── people.snowboarder-dark-skin-tone.webp │ │ ├── people.snowboarder-light-skin-tone.webp │ │ ├── people.snowboarder-medium-dark-skin-tone.webp │ │ ├── people.snowboarder-medium-light-skin-tone.webp │ │ ├── people.snowboarder-medium-skin-tone.webp │ │ ├── people.snowboarder.webp │ │ ├── people.speaking-head.webp │ │ ├── people.student-dark-skin-tone.webp │ │ ├── people.student-light-skin-tone.webp │ │ ├── people.student-medium-dark-skin-tone.webp │ │ ├── people.student-medium-light-skin-tone.webp │ │ ├── people.student-medium-skin-tone.webp │ │ ├── people.student.webp │ │ ├── people.superhero-dark-skin-tone.webp │ │ ├── people.superhero-light-skin-tone.webp │ │ ├── people.superhero-medium-dark-skin-tone.webp │ │ ├── people.superhero-medium-light-skin-tone.webp │ │ ├── people.superhero-medium-skin-tone.webp │ │ ├── people.superhero.webp │ │ ├── people.supervillain-dark-skin-tone.webp │ │ ├── people.supervillain-light-skin-tone.webp │ │ ├── people.supervillain-medium-dark-skin-tone.webp │ │ ├── people.supervillain-medium-light-skin-tone.webp │ │ ├── people.supervillain-medium-skin-tone.webp │ │ ├── people.supervillain.webp │ │ ├── people.teacher-dark-skin-tone.webp │ │ ├── people.teacher-light-skin-tone.webp │ │ ├── people.teacher-medium-dark-skin-tone.webp │ │ ├── people.teacher-medium-light-skin-tone.webp │ │ ├── people.teacher-medium-skin-tone.webp │ │ ├── people.teacher.webp │ │ ├── people.technologist-dark-skin-tone.webp │ │ ├── people.technologist-light-skin-tone.webp │ │ ├── people.technologist-medium-dark-skin-tone.webp │ │ ├── people.technologist-medium-light-skin-tone.webp │ │ ├── people.technologist-medium-skin-tone.webp │ │ ├── people.technologist.webp │ │ ├── people.thumbs-up-dark-skin-tone.webp │ │ ├── people.thumbs-up-light-skin-tone.webp │ │ ├── people.thumbs-up-medium-dark-skin-tone.webp │ │ ├── people.thumbs-up-medium-light-skin-tone.webp │ │ ├── people.thumbs-up-medium-skin-tone.webp │ │ ├── people.thumbs-up.webp │ │ ├── people.tongue.webp │ │ ├── people.tooth.webp │ │ ├── people.troll.webp │ │ ├── people.vampire-dark-skin-tone.webp │ │ ├── people.vampire-light-skin-tone.webp │ │ ├── people.vampire-medium-dark-skin-tone.webp │ │ ├── people.vampire-medium-light-skin-tone.webp │ │ ├── people.vampire-medium-skin-tone.webp │ │ ├── people.vampire.webp │ │ ├── people.victory-hand-dark-skin-tone.webp │ │ ├── people.victory-hand-light-skin-tone.webp │ │ ├── people.victory-hand-medium-dark-skin-tone.webp │ │ ├── people.victory-hand-medium-light-skin-tone.webp │ │ ├── people.victory-hand-medium-skin-tone.webp │ │ ├── people.victory-hand.webp │ │ ├── people.vulcan-salute-dark-skin-tone.webp │ │ ├── people.vulcan-salute-light-skin-tone.webp │ │ ├── people.vulcan-salute-medium-dark-skin-tone.webp │ │ ├── people.vulcan-salute-medium-light-skin-tone.webp │ │ ├── people.vulcan-salute-medium-skin-tone.webp │ │ ├── people.vulcan-salute.webp │ │ ├── people.waving-hand-dark-skin-tone.webp │ │ ├── people.waving-hand-light-skin-tone.webp │ │ ├── people.waving-hand-medium-dark-skin-tone.webp │ │ ├── people.waving-hand-medium-light-skin-tone.webp │ │ ├── people.waving-hand-medium-skin-tone.webp │ │ ├── people.waving-hand.webp │ │ ├── people.white-hair.webp │ │ ├── people.woman-and-man-holding-hands-dark-skin-tone-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-light-skin-tone-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-light-skin-tone-medium-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-skin-tone-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands-medium-skin-tone.webp │ │ ├── people.woman-and-man-holding-hands.webp │ │ ├── people.woman-artist-dark-skin-tone.webp │ │ ├── people.woman-artist-light-skin-tone.webp │ │ ├── people.woman-artist-medium-dark-skin-tone.webp │ │ ├── people.woman-artist-medium-light-skin-tone.webp │ │ ├── people.woman-artist-medium-skin-tone.webp │ │ ├── people.woman-artist.webp │ │ ├── people.woman-astronaut-dark-skin-tone.webp │ │ ├── people.woman-astronaut-light-skin-tone.webp │ │ ├── people.woman-astronaut-medium-dark-skin-tone.webp │ │ ├── people.woman-astronaut-medium-light-skin-tone.webp │ │ ├── people.woman-astronaut-medium-skin-tone.webp │ │ ├── people.woman-astronaut.webp │ │ ├── people.woman-bald.webp │ │ ├── people.woman-beard.webp │ │ ├── people.woman-biking-dark-skin-tone.webp │ │ ├── people.woman-biking-light-skin-tone.webp │ │ ├── people.woman-biking-medium-dark-skin-tone.webp │ │ ├── people.woman-biking-medium-light-skin-tone.webp │ │ ├── people.woman-biking-medium-skin-tone.webp │ │ ├── people.woman-biking.webp │ │ ├── people.woman-blond-hair.webp │ │ ├── people.woman-bouncing-ball-dark-skin-tone.webp │ │ ├── people.woman-bouncing-ball-light-skin-tone.webp │ │ ├── people.woman-bouncing-ball-medium-dark-skin-tone.webp │ │ ├── people.woman-bouncing-ball-medium-light-skin-tone.webp │ │ ├── people.woman-bouncing-ball-medium-skin-tone.webp │ │ ├── people.woman-bouncing-ball.webp │ │ ├── people.woman-bowing-dark-skin-tone.webp │ │ ├── people.woman-bowing-light-skin-tone.webp │ │ ├── people.woman-bowing-medium-dark-skin-tone.webp │ │ ├── people.woman-bowing-medium-light-skin-tone.webp │ │ ├── people.woman-bowing-medium-skin-tone.webp │ │ ├── people.woman-bowing.webp │ │ ├── people.woman-cartwheeling-dark-skin-tone.webp │ │ ├── people.woman-cartwheeling-light-skin-tone.webp │ │ ├── people.woman-cartwheeling-medium-dark-skin-tone.webp │ │ ├── people.woman-cartwheeling-medium-light-skin-tone.webp │ │ ├── people.woman-cartwheeling-medium-skin-tone.webp │ │ ├── people.woman-cartwheeling.webp │ │ ├── people.woman-climbing-dark-skin-tone.webp │ │ ├── people.woman-climbing-light-skin-tone.webp │ │ ├── people.woman-climbing-medium-dark-skin-tone.webp │ │ ├── people.woman-climbing-medium-light-skin-tone.webp │ │ ├── people.woman-climbing-medium-skin-tone.webp │ │ ├── people.woman-climbing.webp │ │ ├── people.woman-construction-worker-dark-skin-tone.webp │ │ ├── people.woman-construction-worker-light-skin-tone.webp │ │ ├── people.woman-construction-worker-medium-dark-skin-tone.webp │ │ ├── people.woman-construction-worker-medium-light-skin-tone.webp │ │ ├── people.woman-construction-worker-medium-skin-tone.webp │ │ ├── people.woman-construction-worker.webp │ │ ├── people.woman-cook-dark-skin-tone.webp │ │ ├── people.woman-cook-light-skin-tone.webp │ │ ├── people.woman-cook-medium-dark-skin-tone.webp │ │ ├── people.woman-cook-medium-light-skin-tone.webp │ │ ├── people.woman-cook-medium-skin-tone.webp │ │ ├── people.woman-cook.webp │ │ ├── people.woman-curly-hair.webp │ │ ├── people.woman-dancing-dark-skin-tone.webp │ │ ├── people.woman-dancing-light-skin-tone.webp │ │ ├── people.woman-dancing-medium-dark-skin-tone.webp │ │ ├── people.woman-dancing-medium-light-skin-tone.webp │ │ ├── people.woman-dancing-medium-skin-tone.webp │ │ ├── people.woman-dancing.webp │ │ ├── people.woman-dark-skin-tone-bald.webp │ │ ├── people.woman-dark-skin-tone-beard.webp │ │ ├── people.woman-dark-skin-tone-blond-hair.webp │ │ ├── people.woman-dark-skin-tone-curly-hair.webp │ │ ├── people.woman-dark-skin-tone-red-hair.webp │ │ ├── people.woman-dark-skin-tone-white-hair.webp │ │ ├── people.woman-dark-skin-tone.webp │ │ ├── people.woman-detective-dark-skin-tone.webp │ │ ├── people.woman-detective-light-skin-tone.webp │ │ ├── people.woman-detective-medium-dark-skin-tone.webp │ │ ├── people.woman-detective-medium-light-skin-tone.webp │ │ ├── people.woman-detective-medium-skin-tone.webp │ │ ├── people.woman-detective.webp │ │ ├── people.woman-elf-dark-skin-tone.webp │ │ ├── people.woman-elf-light-skin-tone.webp │ │ ├── people.woman-elf-medium-dark-skin-tone.webp │ │ ├── people.woman-elf-medium-light-skin-tone.webp │ │ ├── people.woman-elf-medium-skin-tone.webp │ │ ├── people.woman-elf.webp │ │ ├── people.woman-facepalming-dark-skin-tone.webp │ │ ├── people.woman-facepalming-light-skin-tone.webp │ │ ├── people.woman-facepalming-medium-dark-skin-tone.webp │ │ ├── people.woman-facepalming-medium-light-skin-tone.webp │ │ ├── people.woman-facepalming-medium-skin-tone.webp │ │ ├── people.woman-facepalming.webp │ │ ├── people.woman-factory-worker-dark-skin-tone.webp │ │ ├── people.woman-factory-worker-light-skin-tone.webp │ │ ├── people.woman-factory-worker-medium-dark-skin-tone.webp │ │ ├── people.woman-factory-worker-medium-light-skin-tone.webp │ │ ├── people.woman-factory-worker-medium-skin-tone.webp │ │ ├── people.woman-factory-worker.webp │ │ ├── people.woman-fairy-dark-skin-tone.webp │ │ ├── people.woman-fairy-light-skin-tone.webp │ │ ├── people.woman-fairy-medium-dark-skin-tone.webp │ │ ├── people.woman-fairy-medium-light-skin-tone.webp │ │ ├── people.woman-fairy-medium-skin-tone.webp │ │ ├── people.woman-fairy.webp │ │ ├── people.woman-farmer-dark-skin-tone.webp │ │ ├── people.woman-farmer-light-skin-tone.webp │ │ ├── people.woman-farmer-medium-dark-skin-tone.webp │ │ ├── people.woman-farmer-medium-light-skin-tone.webp │ │ ├── people.woman-farmer-medium-skin-tone.webp │ │ ├── people.woman-farmer.webp │ │ ├── people.woman-feeding-baby-dark-skin-tone.webp │ │ ├── people.woman-feeding-baby-light-skin-tone.webp │ │ ├── people.woman-feeding-baby-medium-dark-skin-tone.webp │ │ ├── people.woman-feeding-baby-medium-light-skin-tone.webp │ │ ├── people.woman-feeding-baby-medium-skin-tone.webp │ │ ├── people.woman-feeding-baby.webp │ │ ├── people.woman-firefighter-dark-skin-tone.webp │ │ ├── people.woman-firefighter-light-skin-tone.webp │ │ ├── people.woman-firefighter-medium-dark-skin-tone.webp │ │ ├── people.woman-firefighter-medium-light-skin-tone.webp │ │ ├── people.woman-firefighter-medium-skin-tone.webp │ │ ├── people.woman-firefighter.webp │ │ ├── people.woman-frowning-dark-skin-tone.webp │ │ ├── people.woman-frowning-light-skin-tone.webp │ │ ├── people.woman-frowning-medium-dark-skin-tone.webp │ │ ├── people.woman-frowning-medium-light-skin-tone.webp │ │ ├── people.woman-frowning-medium-skin-tone.webp │ │ ├── people.woman-frowning.webp │ │ ├── people.woman-genie.webp │ │ ├── people.woman-gesturing-no-dark-skin-tone.webp │ │ ├── people.woman-gesturing-no-light-skin-tone.webp │ │ ├── people.woman-gesturing-no-medium-dark-skin-tone.webp │ │ ├── people.woman-gesturing-no-medium-light-skin-tone.webp │ │ ├── people.woman-gesturing-no-medium-skin-tone.webp │ │ ├── people.woman-gesturing-no.webp │ │ ├── people.woman-gesturing-ok-dark-skin-tone.webp │ │ ├── people.woman-gesturing-ok-light-skin-tone.webp │ │ ├── people.woman-gesturing-ok-medium-dark-skin-tone.webp │ │ ├── people.woman-gesturing-ok-medium-light-skin-tone.webp │ │ ├── people.woman-gesturing-ok-medium-skin-tone.webp │ │ ├── people.woman-gesturing-ok.webp │ │ ├── people.woman-getting-haircut-dark-skin-tone.webp │ │ ├── people.woman-getting-haircut-light-skin-tone.webp │ │ ├── people.woman-getting-haircut-medium-dark-skin-tone.webp │ │ ├── people.woman-getting-haircut-medium-light-skin-tone.webp │ │ ├── people.woman-getting-haircut-medium-skin-tone.webp │ │ ├── people.woman-getting-haircut.webp │ │ ├── people.woman-getting-massage-dark-skin-tone.webp │ │ ├── people.woman-getting-massage-light-skin-tone.webp │ │ ├── people.woman-getting-massage-medium-dark-skin-tone.webp │ │ ├── people.woman-getting-massage-medium-light-skin-tone.webp │ │ ├── people.woman-getting-massage-medium-skin-tone.webp │ │ ├── people.woman-getting-massage.webp │ │ ├── people.woman-golfing-dark-skin-tone.webp │ │ ├── people.woman-golfing-light-skin-tone.webp │ │ ├── people.woman-golfing-medium-dark-skin-tone.webp │ │ ├── people.woman-golfing-medium-light-skin-tone.webp │ │ ├── people.woman-golfing-medium-skin-tone.webp │ │ ├── people.woman-golfing.webp │ │ ├── people.woman-guard-dark-skin-tone.webp │ │ ├── people.woman-guard-light-skin-tone.webp │ │ ├── people.woman-guard-medium-dark-skin-tone.webp │ │ ├── people.woman-guard-medium-light-skin-tone.webp │ │ ├── people.woman-guard-medium-skin-tone.webp │ │ ├── people.woman-guard.webp │ │ ├── people.woman-health-worker-dark-skin-tone.webp │ │ ├── people.woman-health-worker-light-skin-tone.webp │ │ ├── people.woman-health-worker-medium-dark-skin-tone.webp │ │ ├── people.woman-health-worker-medium-light-skin-tone.webp │ │ ├── people.woman-health-worker-medium-skin-tone.webp │ │ ├── people.woman-health-worker.webp │ │ ├── people.woman-in-lotus-position-dark-skin-tone.webp │ │ ├── people.woman-in-lotus-position-light-skin-tone.webp │ │ ├── people.woman-in-lotus-position-medium-dark-skin-tone.webp │ │ ├── people.woman-in-lotus-position-medium-light-skin-tone.webp │ │ ├── people.woman-in-lotus-position-medium-skin-tone.webp │ │ ├── people.woman-in-lotus-position.webp │ │ ├── people.woman-in-manual-wheelchair-dark-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-facing-right.webp │ │ ├── people.woman-in-manual-wheelchair-light-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-medium-light-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair-medium-skin-tone.webp │ │ ├── people.woman-in-manual-wheelchair.webp │ │ ├── people.woman-in-motorized-wheelchair-dark-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right-dark-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right-light-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right-medium-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-facing-right.webp │ │ ├── people.woman-in-motorized-wheelchair-light-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-medium-dark-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-medium-light-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair-medium-skin-tone.webp │ │ ├── people.woman-in-motorized-wheelchair.webp │ │ ├── people.woman-in-steamy-room-dark-skin-tone.webp │ │ ├── people.woman-in-steamy-room-light-skin-tone.webp │ │ ├── people.woman-in-steamy-room-medium-dark-skin-tone.webp │ │ ├── people.woman-in-steamy-room-medium-light-skin-tone.webp │ │ ├── people.woman-in-steamy-room-medium-skin-tone.webp │ │ ├── people.woman-in-steamy-room.webp │ │ ├── people.woman-in-tuxedo-dark-skin-tone.webp │ │ ├── people.woman-in-tuxedo-light-skin-tone.webp │ │ ├── people.woman-in-tuxedo-medium-dark-skin-tone.webp │ │ ├── people.woman-in-tuxedo-medium-light-skin-tone.webp │ │ ├── people.woman-in-tuxedo-medium-skin-tone.webp │ │ ├── people.woman-in-tuxedo.webp │ │ ├── people.woman-judge-dark-skin-tone.webp │ │ ├── people.woman-judge-light-skin-tone.webp │ │ ├── people.woman-judge-medium-dark-skin-tone.webp │ │ ├── people.woman-judge-medium-light-skin-tone.webp │ │ ├── people.woman-judge-medium-skin-tone.webp │ │ ├── people.woman-judge.webp │ │ ├── people.woman-juggling-dark-skin-tone.webp │ │ ├── people.woman-juggling-light-skin-tone.webp │ │ ├── people.woman-juggling-medium-dark-skin-tone.webp │ │ ├── people.woman-juggling-medium-light-skin-tone.webp │ │ ├── people.woman-juggling-medium-skin-tone.webp │ │ ├── people.woman-juggling.webp │ │ ├── people.woman-kneeling-dark-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right-dark-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right-light-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right-medium-skin-tone.webp │ │ ├── people.woman-kneeling-facing-right.webp │ │ ├── people.woman-kneeling-light-skin-tone.webp │ │ ├── people.woman-kneeling-medium-dark-skin-tone.webp │ │ ├── people.woman-kneeling-medium-light-skin-tone.webp │ │ ├── people.woman-kneeling-medium-skin-tone.webp │ │ ├── people.woman-kneeling.webp │ │ ├── people.woman-lifting-weights-dark-skin-tone.webp │ │ ├── people.woman-lifting-weights-light-skin-tone.webp │ │ ├── people.woman-lifting-weights-medium-dark-skin-tone.webp │ │ ├── people.woman-lifting-weights-medium-light-skin-tone.webp │ │ ├── people.woman-lifting-weights-medium-skin-tone.webp │ │ ├── people.woman-lifting-weights.webp │ │ ├── people.woman-light-skin-tone-bald.webp │ │ ├── people.woman-light-skin-tone-beard.webp │ │ ├── people.woman-light-skin-tone-blond-hair.webp │ │ ├── people.woman-light-skin-tone-curly-hair.webp │ │ ├── people.woman-light-skin-tone-red-hair.webp │ │ ├── people.woman-light-skin-tone-white-hair.webp │ │ ├── people.woman-light-skin-tone.webp │ │ ├── people.woman-mage-dark-skin-tone.webp │ │ ├── people.woman-mage-light-skin-tone.webp │ │ ├── people.woman-mage-medium-dark-skin-tone.webp │ │ ├── people.woman-mage-medium-light-skin-tone.webp │ │ ├── people.woman-mage-medium-skin-tone.webp │ │ ├── people.woman-mage.webp │ │ ├── people.woman-mechanic-dark-skin-tone.webp │ │ ├── people.woman-mechanic-light-skin-tone.webp │ │ ├── people.woman-mechanic-medium-dark-skin-tone.webp │ │ ├── people.woman-mechanic-medium-light-skin-tone.webp │ │ ├── people.woman-mechanic-medium-skin-tone.webp │ │ ├── people.woman-mechanic.webp │ │ ├── people.woman-medium-dark-skin-tone-bald.webp │ │ ├── people.woman-medium-dark-skin-tone-beard.webp │ │ ├── people.woman-medium-dark-skin-tone-blond-hair.webp │ │ ├── people.woman-medium-dark-skin-tone-curly-hair.webp │ │ ├── people.woman-medium-dark-skin-tone-red-hair.webp │ │ ├── people.woman-medium-dark-skin-tone-white-hair.webp │ │ ├── people.woman-medium-dark-skin-tone.webp │ │ ├── people.woman-medium-light-skin-tone-bald.webp │ │ ├── people.woman-medium-light-skin-tone-beard.webp │ │ ├── people.woman-medium-light-skin-tone-blond-hair.webp │ │ ├── people.woman-medium-light-skin-tone-curly-hair.webp │ │ ├── people.woman-medium-light-skin-tone-red-hair.webp │ │ ├── people.woman-medium-light-skin-tone-white-hair.webp │ │ ├── people.woman-medium-light-skin-tone.webp │ │ ├── people.woman-medium-skin-tone-bald.webp │ │ ├── people.woman-medium-skin-tone-beard.webp │ │ ├── people.woman-medium-skin-tone-blond-hair.webp │ │ ├── people.woman-medium-skin-tone-curly-hair.webp │ │ ├── people.woman-medium-skin-tone-red-hair.webp │ │ ├── people.woman-medium-skin-tone-white-hair.webp │ │ ├── people.woman-medium-skin-tone.webp │ │ ├── people.woman-mountain-biking-dark-skin-tone.webp │ │ ├── people.woman-mountain-biking-light-skin-tone.webp │ │ ├── people.woman-mountain-biking-medium-dark-skin-tone.webp │ │ ├── people.woman-mountain-biking-medium-light-skin-tone.webp │ │ ├── people.woman-mountain-biking-medium-skin-tone.webp │ │ ├── people.woman-mountain-biking.webp │ │ ├── people.woman-office-worker-dark-skin-tone.webp │ │ ├── people.woman-office-worker-light-skin-tone.webp │ │ ├── people.woman-office-worker-medium-dark-skin-tone.webp │ │ ├── people.woman-office-worker-medium-light-skin-tone.webp │ │ ├── people.woman-office-worker-medium-skin-tone.webp │ │ ├── people.woman-office-worker.webp │ │ ├── people.woman-pilot-dark-skin-tone.webp │ │ ├── people.woman-pilot-light-skin-tone.webp │ │ ├── people.woman-pilot-medium-dark-skin-tone.webp │ │ ├── people.woman-pilot-medium-light-skin-tone.webp │ │ ├── people.woman-pilot-medium-skin-tone.webp │ │ ├── people.woman-pilot.webp │ │ ├── people.woman-playing-handball-dark-skin-tone.webp │ │ ├── people.woman-playing-handball-light-skin-tone.webp │ │ ├── people.woman-playing-handball-medium-dark-skin-tone.webp │ │ ├── people.woman-playing-handball-medium-light-skin-tone.webp │ │ ├── people.woman-playing-handball-medium-skin-tone.webp │ │ ├── people.woman-playing-handball.webp │ │ ├── people.woman-playing-water-polo-dark-skin-tone.webp │ │ ├── people.woman-playing-water-polo-light-skin-tone.webp │ │ ├── people.woman-playing-water-polo-medium-dark-skin-tone.webp │ │ ├── people.woman-playing-water-polo-medium-light-skin-tone.webp │ │ ├── people.woman-playing-water-polo-medium-skin-tone.webp │ │ ├── people.woman-playing-water-polo.webp │ │ ├── people.woman-police-officer-dark-skin-tone.webp │ │ ├── people.woman-police-officer-light-skin-tone.webp │ │ ├── people.woman-police-officer-medium-dark-skin-tone.webp │ │ ├── people.woman-police-officer-medium-light-skin-tone.webp │ │ ├── people.woman-police-officer-medium-skin-tone.webp │ │ ├── people.woman-police-officer.webp │ │ ├── people.woman-pouting-dark-skin-tone.webp │ │ ├── people.woman-pouting-light-skin-tone.webp │ │ ├── people.woman-pouting-medium-dark-skin-tone.webp │ │ ├── people.woman-pouting-medium-light-skin-tone.webp │ │ ├── people.woman-pouting-medium-skin-tone.webp │ │ ├── people.woman-pouting.webp │ │ ├── people.woman-raising-hand-dark-skin-tone.webp │ │ ├── people.woman-raising-hand-light-skin-tone.webp │ │ ├── people.woman-raising-hand-medium-dark-skin-tone.webp │ │ ├── people.woman-raising-hand-medium-light-skin-tone.webp │ │ ├── people.woman-raising-hand-medium-skin-tone.webp │ │ ├── people.woman-raising-hand.webp │ │ ├── people.woman-red-hair.webp │ │ ├── people.woman-rowing-boat-dark-skin-tone.webp │ │ ├── people.woman-rowing-boat-light-skin-tone.webp │ │ ├── people.woman-rowing-boat-medium-dark-skin-tone.webp │ │ ├── people.woman-rowing-boat-medium-light-skin-tone.webp │ │ ├── people.woman-rowing-boat-medium-skin-tone.webp │ │ ├── people.woman-rowing-boat.webp │ │ ├── people.woman-running-dark-skin-tone.webp │ │ ├── people.woman-running-facing-right-dark-skin-tone.webp │ │ ├── people.woman-running-facing-right-light-skin-tone.webp │ │ ├── people.woman-running-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-running-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-running-facing-right-medium-skin-tone.webp │ │ ├── people.woman-running-facing-right.webp │ │ ├── people.woman-running-light-skin-tone.webp │ │ ├── people.woman-running-medium-dark-skin-tone.webp │ │ ├── people.woman-running-medium-light-skin-tone.webp │ │ ├── people.woman-running-medium-skin-tone.webp │ │ ├── people.woman-running.webp │ │ ├── people.woman-scientist-dark-skin-tone.webp │ │ ├── people.woman-scientist-light-skin-tone.webp │ │ ├── people.woman-scientist-medium-dark-skin-tone.webp │ │ ├── people.woman-scientist-medium-light-skin-tone.webp │ │ ├── people.woman-scientist-medium-skin-tone.webp │ │ ├── people.woman-scientist.webp │ │ ├── people.woman-shrugging-dark-skin-tone.webp │ │ ├── people.woman-shrugging-light-skin-tone.webp │ │ ├── people.woman-shrugging-medium-dark-skin-tone.webp │ │ ├── people.woman-shrugging-medium-light-skin-tone.webp │ │ ├── people.woman-shrugging-medium-skin-tone.webp │ │ ├── people.woman-shrugging.webp │ │ ├── people.woman-singer-dark-skin-tone.webp │ │ ├── people.woman-singer-light-skin-tone.webp │ │ ├── people.woman-singer-medium-dark-skin-tone.webp │ │ ├── people.woman-singer-medium-light-skin-tone.webp │ │ ├── people.woman-singer-medium-skin-tone.webp │ │ ├── people.woman-singer.webp │ │ ├── people.woman-standing-dark-skin-tone.webp │ │ ├── people.woman-standing-light-skin-tone.webp │ │ ├── people.woman-standing-medium-dark-skin-tone.webp │ │ ├── people.woman-standing-medium-light-skin-tone.webp │ │ ├── people.woman-standing-medium-skin-tone.webp │ │ ├── people.woman-standing.webp │ │ ├── people.woman-student-dark-skin-tone.webp │ │ ├── people.woman-student-light-skin-tone.webp │ │ ├── people.woman-student-medium-dark-skin-tone.webp │ │ ├── people.woman-student-medium-light-skin-tone.webp │ │ ├── people.woman-student-medium-skin-tone.webp │ │ ├── people.woman-student.webp │ │ ├── people.woman-superhero-dark-skin-tone.webp │ │ ├── people.woman-superhero-light-skin-tone.webp │ │ ├── people.woman-superhero-medium-dark-skin-tone.webp │ │ ├── people.woman-superhero-medium-light-skin-tone.webp │ │ ├── people.woman-superhero-medium-skin-tone.webp │ │ ├── people.woman-superhero.webp │ │ ├── people.woman-supervillain-dark-skin-tone.webp │ │ ├── people.woman-supervillain-light-skin-tone.webp │ │ ├── people.woman-supervillain-medium-dark-skin-tone.webp │ │ ├── people.woman-supervillain-medium-light-skin-tone.webp │ │ ├── people.woman-supervillain-medium-skin-tone.webp │ │ ├── people.woman-supervillain.webp │ │ ├── people.woman-surfing-dark-skin-tone.webp │ │ ├── people.woman-surfing-light-skin-tone.webp │ │ ├── people.woman-surfing-medium-dark-skin-tone.webp │ │ ├── people.woman-surfing-medium-light-skin-tone.webp │ │ ├── people.woman-surfing-medium-skin-tone.webp │ │ ├── people.woman-surfing.webp │ │ ├── people.woman-swimming-dark-skin-tone.webp │ │ ├── people.woman-swimming-light-skin-tone.webp │ │ ├── people.woman-swimming-medium-dark-skin-tone.webp │ │ ├── people.woman-swimming-medium-light-skin-tone.webp │ │ ├── people.woman-swimming-medium-skin-tone.webp │ │ ├── people.woman-swimming.webp │ │ ├── people.woman-teacher-dark-skin-tone.webp │ │ ├── people.woman-teacher-light-skin-tone.webp │ │ ├── people.woman-teacher-medium-dark-skin-tone.webp │ │ ├── people.woman-teacher-medium-light-skin-tone.webp │ │ ├── people.woman-teacher-medium-skin-tone.webp │ │ ├── people.woman-teacher.webp │ │ ├── people.woman-technologist-dark-skin-tone.webp │ │ ├── people.woman-technologist-light-skin-tone.webp │ │ ├── people.woman-technologist-medium-dark-skin-tone.webp │ │ ├── people.woman-technologist-medium-light-skin-tone.webp │ │ ├── people.woman-technologist-medium-skin-tone.webp │ │ ├── people.woman-technologist.webp │ │ ├── people.woman-tipping-hand-dark-skin-tone.webp │ │ ├── people.woman-tipping-hand-light-skin-tone.webp │ │ ├── people.woman-tipping-hand-medium-dark-skin-tone.webp │ │ ├── people.woman-tipping-hand-medium-light-skin-tone.webp │ │ ├── people.woman-tipping-hand-medium-skin-tone.webp │ │ ├── people.woman-tipping-hand.webp │ │ ├── people.woman-vampire-dark-skin-tone.webp │ │ ├── people.woman-vampire-light-skin-tone.webp │ │ ├── people.woman-vampire-medium-dark-skin-tone.webp │ │ ├── people.woman-vampire-medium-light-skin-tone.webp │ │ ├── people.woman-vampire-medium-skin-tone.webp │ │ ├── people.woman-vampire.webp │ │ ├── people.woman-walking-dark-skin-tone.webp │ │ ├── people.woman-walking-facing-right-dark-skin-tone.webp │ │ ├── people.woman-walking-facing-right-light-skin-tone.webp │ │ ├── people.woman-walking-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-walking-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-walking-facing-right-medium-skin-tone.webp │ │ ├── people.woman-walking-facing-right.webp │ │ ├── people.woman-walking-light-skin-tone.webp │ │ ├── people.woman-walking-medium-dark-skin-tone.webp │ │ ├── people.woman-walking-medium-light-skin-tone.webp │ │ ├── people.woman-walking-medium-skin-tone.webp │ │ ├── people.woman-walking.webp │ │ ├── people.woman-wearing-turban-dark-skin-tone.webp │ │ ├── people.woman-wearing-turban-light-skin-tone.webp │ │ ├── people.woman-wearing-turban-medium-dark-skin-tone.webp │ │ ├── people.woman-wearing-turban-medium-light-skin-tone.webp │ │ ├── people.woman-wearing-turban-medium-skin-tone.webp │ │ ├── people.woman-wearing-turban.webp │ │ ├── people.woman-white-hair.webp │ │ ├── people.woman-with-veil-dark-skin-tone.webp │ │ ├── people.woman-with-veil-light-skin-tone.webp │ │ ├── people.woman-with-veil-medium-dark-skin-tone.webp │ │ ├── people.woman-with-veil-medium-light-skin-tone.webp │ │ ├── people.woman-with-veil-medium-skin-tone.webp │ │ ├── people.woman-with-veil.webp │ │ ├── people.woman-with-white-cane-dark-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right-dark-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right-light-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right-medium-dark-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right-medium-light-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right-medium-skin-tone.webp │ │ ├── people.woman-with-white-cane-facing-right.webp │ │ ├── people.woman-with-white-cane-light-skin-tone.webp │ │ ├── people.woman-with-white-cane-medium-dark-skin-tone.webp │ │ ├── people.woman-with-white-cane-medium-light-skin-tone.webp │ │ ├── people.woman-with-white-cane-medium-skin-tone.webp │ │ ├── people.woman-with-white-cane.webp │ │ ├── people.woman-zombie.webp │ │ ├── people.woman.webp │ │ ├── people.women-holding-hands-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-holding-hands-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-holding-hands-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-holding-hands-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-holding-hands-dark-skin-tone.webp │ │ ├── people.women-holding-hands-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-holding-hands-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-holding-hands-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-holding-hands-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-holding-hands-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-holding-hands-medium-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-holding-hands-medium-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-skin-tone-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-holding-hands-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-holding-hands-medium-skin-tone.webp │ │ ├── people.women-holding-hands.webp │ │ ├── people.women-with-bunny-ears-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-with-bunny-ears-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-skin-tone-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-partying-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-partying-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-partying-medium-dark-skin-tone.webp │ │ ├── people.women-with-bunny-ears-partying-medium-light-skin-tone.webp │ │ ├── people.women-with-bunny-ears-partying-medium-skin-tone.webp │ │ ├── people.women-with-bunny-ears.webp │ │ ├── people.women-wrestling-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-wrestling-dark-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-wrestling-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-wrestling-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-wrestling-dark-skin-tone.webp │ │ ├── people.women-wrestling-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-wrestling-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-wrestling-light-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-wrestling-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-wrestling-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-dark-skin-tone-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-dark-skin-tone-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-dark-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-dark-skin-tone-medium-skin-tone.webp │ │ ├── people.women-wrestling-medium-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-light-skin-tone-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-light-skin-tone-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-light-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-light-skin-tone-medium-skin-tone.webp │ │ ├── people.women-wrestling-medium-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-skin-tone-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-skin-tone-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-skin-tone-medium-dark-skin-tone.webp │ │ ├── people.women-wrestling-medium-skin-tone-medium-light-skin-tone.webp │ │ ├── people.women-wrestling-medium-skin-tone.webp │ │ ├── people.women-wrestling.webp │ │ ├── people.wrestlers-dark-skin-tone.webp │ │ ├── people.wrestlers-light-skin-tone.webp │ │ ├── people.wrestlers-medium-dark-skin-tone.webp │ │ ├── people.wrestlers-medium-light-skin-tone.webp │ │ ├── people.wrestlers-medium-skin-tone.webp │ │ ├── people.writing-hand-dark-skin-tone.webp │ │ ├── people.writing-hand-light-skin-tone.webp │ │ ├── people.writing-hand-medium-dark-skin-tone.webp │ │ ├── people.writing-hand-medium-light-skin-tone.webp │ │ ├── people.writing-hand-medium-skin-tone.webp │ │ ├── people.writing-hand.webp │ │ ├── people.zombie.webp │ │ ├── smileys.alien-monster.webp │ │ ├── smileys.alien.webp │ │ ├── smileys.angry-face-with-horns.webp │ │ ├── smileys.angry-face.webp │ │ ├── smileys.anguished-face.webp │ │ ├── smileys.anxious-face-with-sweat.webp │ │ ├── smileys.astonished-face-blob.webp │ │ ├── smileys.astonished-face.webp │ │ ├── smileys.beaming-face-with-smiling-eyes.webp │ │ ├── smileys.cat-with-tears-of-joy.webp │ │ ├── smileys.cat-with-wry-smile.webp │ │ ├── smileys.clown-face.webp │ │ ├── smileys.cold-face.webp │ │ ├── smileys.confounded-face.webp │ │ ├── smileys.confused-face.webp │ │ ├── smileys.cowboy-hat-face.webp │ │ ├── smileys.crying-cat.webp │ │ ├── smileys.crying-face.webp │ │ ├── smileys.disappointed-face.webp │ │ ├── smileys.disguised-face.webp │ │ ├── smileys.distorted-face.webp │ │ ├── smileys.dizzy-face.webp │ │ ├── smileys.dotted-line-face.webp │ │ ├── smileys.downcast-face-with-sweat.webp │ │ ├── smileys.drooling-face.webp │ │ ├── smileys.exploding-head.webp │ │ ├── smileys.expressionless-face.webp │ │ ├── smileys.face-blowing-a-kiss-blob.webp │ │ ├── smileys.face-blowing-a-kiss.webp │ │ ├── smileys.face-exhaling.webp │ │ ├── smileys.face-holding-back-tears.webp │ │ ├── smileys.face-in-clouds.webp │ │ ├── smileys.face-savoring-food-blob.webp │ │ ├── smileys.face-savoring-food.webp │ │ ├── smileys.face-screaming-in-fear-blob.webp │ │ ├── smileys.face-screaming-in-fear.webp │ │ ├── smileys.face-with-bags-under-eyes.webp │ │ ├── smileys.face-with-crossed-out-eyes-blob.webp │ │ ├── smileys.face-with-diagonal-mouth.webp │ │ ├── smileys.face-with-hand-over-mouth.webp │ │ ├── smileys.face-with-head-bandage.webp │ │ ├── smileys.face-with-medical-mask.webp │ │ ├── smileys.face-with-monocle.webp │ │ ├── smileys.face-with-open-eyes-and-hand-over-mouth.webp │ │ ├── smileys.face-with-open-mouth-blob.webp │ │ ├── smileys.face-with-open-mouth.webp │ │ ├── smileys.face-with-peeking-eye.webp │ │ ├── smileys.face-with-raised-eyebrow.webp │ │ ├── smileys.face-with-rolling-eyes.webp │ │ ├── smileys.face-with-spiral-eyes.webp │ │ ├── smileys.face-with-steam-from-nose.webp │ │ ├── smileys.face-with-symbols-on-mouth.webp │ │ ├── smileys.face-with-tears-of-joy.webp │ │ ├── smileys.face-with-thermometer.webp │ │ ├── smileys.face-with-tongue.webp │ │ ├── smileys.face-without-mouth.webp │ │ ├── smileys.fearful-face.webp │ │ ├── smileys.flushed-face.webp │ │ ├── smileys.frowning-face-with-open-mouth.webp │ │ ├── smileys.frowning-face.webp │ │ ├── smileys.ghost.webp │ │ ├── smileys.goblin.webp │ │ ├── smileys.grimacing-face.webp │ │ ├── smileys.grinning-cat-with-smiling-eyes.webp │ │ ├── smileys.grinning-cat.webp │ │ ├── smileys.grinning-face-with-big-eyes-blob.webp │ │ ├── smileys.grinning-face-with-big-eyes.webp │ │ ├── smileys.grinning-face-with-smiling-eyes-blob.webp │ │ ├── smileys.grinning-face-with-smiling-eyes.webp │ │ ├── smileys.grinning-face-with-sweat-blob.webp │ │ ├── smileys.grinning-face-with-sweat.webp │ │ ├── smileys.grinning-face.webp │ │ ├── smileys.grinning-squinting-face-blob.webp │ │ ├── smileys.grinning-squinting-face.webp │ │ ├── smileys.head-shaking-horizontally.webp │ │ ├── smileys.head-shaking-vertically.webp │ │ ├── smileys.hear-no-evil-monkey.webp │ │ ├── smileys.hot-face.webp │ │ ├── smileys.hugging-face.webp │ │ ├── smileys.hushed-face.webp │ │ ├── smileys.kissing-cat.webp │ │ ├── smileys.kissing-face-with-closed-eyes.webp │ │ ├── smileys.kissing-face-with-smiling-eyes.webp │ │ ├── smileys.kissing-face.webp │ │ ├── smileys.loudly-crying-face.webp │ │ ├── smileys.lying-face.webp │ │ ├── smileys.melting-face.webp │ │ ├── smileys.money-mouth-face.webp │ │ ├── smileys.nauseated-face.webp │ │ ├── smileys.nerd-face.webp │ │ ├── smileys.neutral-face.webp │ │ ├── smileys.ogre.webp │ │ ├── smileys.partying-face.webp │ │ ├── smileys.pensive-face.webp │ │ ├── smileys.persevering-face.webp │ │ ├── smileys.pleading-face.webp │ │ ├── smileys.pouting-cat.webp │ │ ├── smileys.pouting-face.webp │ │ ├── smileys.relieved-face.webp │ │ ├── smileys.robot.webp │ │ ├── smileys.rolling-on-the-floor-laughing.webp │ │ ├── smileys.sad-but-relieved-face.webp │ │ ├── smileys.saluting-face.webp │ │ ├── smileys.see-no-evil-monkey.webp │ │ ├── smileys.shaking-face.webp │ │ ├── smileys.shushing-face.webp │ │ ├── smileys.skull-and-crossbones.webp │ │ ├── smileys.skull.webp │ │ ├── smileys.sleeping-face-blob.webp │ │ ├── smileys.sleeping-face.webp │ │ ├── smileys.sleepy-face.webp │ │ ├── smileys.slightly-frowning-face.webp │ │ ├── smileys.slightly-smiling-face.webp │ │ ├── smileys.smiling-cat-with-heart-eyes.webp │ │ ├── smileys.smiling-face-with-halo-blob.webp │ │ ├── smileys.smiling-face-with-halo.webp │ │ ├── smileys.smiling-face-with-heart-eyes.webp │ │ ├── smileys.smiling-face-with-hearts.webp │ │ ├── smileys.smiling-face-with-horns-blob.webp │ │ ├── smileys.smiling-face-with-horns.webp │ │ ├── smileys.smiling-face-with-smiling-eyes.webp │ │ ├── smileys.smiling-face-with-sunglasses-blob.webp │ │ ├── smileys.smiling-face-with-sunglasses.webp │ │ ├── smileys.smiling-face-with-tear.webp │ │ ├── smileys.smiling-face.webp │ │ ├── smileys.smirking-face.webp │ │ ├── smileys.sneezing-face.webp │ │ ├── smileys.speak-no-evil-monkey.webp │ │ ├── smileys.squinting-face-with-tongue.webp │ │ ├── smileys.star-struck.webp │ │ ├── smileys.thinking-face.webp │ │ ├── smileys.tired-face.webp │ │ ├── smileys.unamused-face.webp │ │ ├── smileys.upside-down-face.webp │ │ ├── smileys.weary-cat.webp │ │ ├── smileys.weary-face.webp │ │ ├── smileys.winking-face-with-tongue-blob.webp │ │ ├── smileys.winking-face-with-tongue.webp │ │ ├── smileys.winking-face.webp │ │ ├── smileys.woozy-face.webp │ │ ├── smileys.worried-face.webp │ │ ├── smileys.yawning-face.webp │ │ ├── smileys.zany-face.webp │ │ ├── smileys.zipper-mouth-face.webp │ │ ├── symbols.a-button-blood-type.webp │ │ ├── symbols.ab-button-blood-type.webp │ │ ├── symbols.anger-symbol.webp │ │ ├── symbols.antenna-bars.webp │ │ ├── symbols.aquarius.webp │ │ ├── symbols.aries.webp │ │ ├── symbols.asterisk.webp │ │ ├── symbols.atm-sign.webp │ │ ├── symbols.atom-symbol.webp │ │ ├── symbols.b-button-blood-type.webp │ │ ├── symbols.baby-symbol.webp │ │ ├── symbols.back-arrow.webp │ │ ├── symbols.baggage-claim.webp │ │ ├── symbols.beating-heart.webp │ │ ├── symbols.black-circle.webp │ │ ├── symbols.black-flag.webp │ │ ├── symbols.black-heart.webp │ │ ├── symbols.black-large-square.webp │ │ ├── symbols.black-medium-small-square.webp │ │ ├── symbols.black-square-button.webp │ │ ├── symbols.blue-heart.webp │ │ ├── symbols.bright-button.webp │ │ ├── symbols.broken-heart.webp │ │ ├── symbols.brown-heart.webp │ │ ├── symbols.cancel.webp │ │ ├── symbols.cancer.webp │ │ ├── symbols.capricorn.webp │ │ ├── symbols.chequered-flag.webp │ │ ├── symbols.children-crossing.webp │ │ ├── symbols.cinema.webp │ │ ├── symbols.circled-m.webp │ │ ├── symbols.cl-button.webp │ │ ├── symbols.clockwise-vertical-arrows.webp │ │ ├── symbols.collision.webp │ │ ├── symbols.combining-enclosing-keycap.webp │ │ ├── symbols.cool-button.webp │ │ ├── symbols.copyright.webp │ │ ├── symbols.counterclockwise-arrows-button.webp │ │ ├── symbols.cross-mark-button.webp │ │ ├── symbols.cross-mark.webp │ │ ├── symbols.crossed-flags.webp │ │ ├── symbols.curly-loop.webp │ │ ├── symbols.currency-exchange.webp │ │ ├── symbols.customs.webp │ │ ├── symbols.dashing-away.webp │ │ ├── symbols.diamond-with-a-dot.webp │ │ ├── symbols.digit-eight.webp │ │ ├── symbols.digit-five.webp │ │ ├── symbols.digit-four.webp │ │ ├── symbols.digit-nine.webp │ │ ├── symbols.digit-one.webp │ │ ├── symbols.digit-seven.webp │ │ ├── symbols.digit-six.webp │ │ ├── symbols.digit-three.webp │ │ ├── symbols.digit-two.webp │ │ ├── symbols.digit-zero.webp │ │ ├── symbols.dim-button.webp │ │ ├── symbols.divide.webp │ │ ├── symbols.dizzy.webp │ │ ├── symbols.double-curly-loop.webp │ │ ├── symbols.double-exclamation-mark.webp │ │ ├── symbols.down-arrow.webp │ │ ├── symbols.down-left-arrow.webp │ │ ├── symbols.down-right-arrow.webp │ │ ├── symbols.downwards-button.webp │ │ ├── symbols.eight-pointed-star.webp │ │ ├── symbols.eight-spoked-asterisk.webp │ │ ├── symbols.eject-button.webp │ │ ├── symbols.elevator.webp │ │ ├── symbols.emacs-logo.webp │ │ ├── symbols.end-arrow.webp │ │ ├── symbols.esperanto-flag.webp │ │ ├── symbols.esperanto.webp │ │ ├── symbols.exclamation-mark.webp │ │ ├── symbols.exclamation-question-mark.webp │ │ ├── symbols.extinction.webp │ │ ├── symbols.eye-in-speech-bubble.webp │ │ ├── symbols.fast-down-button.webp │ │ ├── symbols.fast-forward-button.webp │ │ ├── symbols.fast-reverse-button.webp │ │ ├── symbols.fast-up-button.webp │ │ ├── symbols.female-sign.webp │ │ ├── symbols.fight-cloud.webp │ │ ├── symbols.fleur-de-lis.webp │ │ ├── symbols.free-button.webp │ │ ├── symbols.fridays-for-future.webp │ │ ├── symbols.gemini.webp │ │ ├── symbols.gnu-logo.webp │ │ ├── symbols.green-heart.webp │ │ ├── symbols.grey-heart.webp │ │ ├── symbols.growing-heart.webp │ │ ├── symbols.heart-decoration.webp │ │ ├── symbols.heart-exclamation.webp │ │ ├── symbols.heart-on-fire.webp │ │ ├── symbols.heart-with-arrow.webp │ │ ├── symbols.heart-with-ribbon.webp │ │ ├── symbols.heavy-dollar-sign.webp │ │ ├── symbols.heavy-equals-sign.webp │ │ ├── symbols.hole.webp │ │ ├── symbols.hollow-red-circle.webp │ │ ├── symbols.hundred-points.webp │ │ ├── symbols.id-button.webp │ │ ├── symbols.infinity.webp │ │ ├── symbols.information.webp │ │ ├── symbols.input-latin-letters.webp │ │ ├── symbols.input-latin-lowercase.webp │ │ ├── symbols.input-latin-uppercase.webp │ │ ├── symbols.input-numbers.webp │ │ ├── symbols.input-symbols.webp │ │ ├── symbols.japanese-acceptable-button.webp │ │ ├── symbols.japanese-application-button.webp │ │ ├── symbols.japanese-bargain-button.webp │ │ ├── symbols.japanese-congratulations-button.webp │ │ ├── symbols.japanese-discount-button.webp │ │ ├── symbols.japanese-free-of-charge-button.webp │ │ ├── symbols.japanese-here-button.webp │ │ ├── symbols.japanese-monthly-amount-button.webp │ │ ├── symbols.japanese-no-vacancy-button.webp │ │ ├── symbols.japanese-not-free-of-charge-button.webp │ │ ├── symbols.japanese-open-for-business-button.webp │ │ ├── symbols.japanese-passing-grade-button.webp │ │ ├── symbols.japanese-prohibited-button.webp │ │ ├── symbols.japanese-reserved-button.webp │ │ ├── symbols.japanese-secret-button.webp │ │ ├── symbols.japanese-service-charge-button.webp │ │ ├── symbols.japanese-symbol-for-beginner.webp │ │ ├── symbols.japanese-vacancy-button.webp │ │ ├── symbols.keycap-10.webp │ │ ├── symbols.keycap-asterisk.webp │ │ ├── symbols.keycap-digit-eight.webp │ │ ├── symbols.keycap-digit-five.webp │ │ ├── symbols.keycap-digit-four.webp │ │ ├── symbols.keycap-digit-nine.webp │ │ ├── symbols.keycap-digit-one.webp │ │ ├── symbols.keycap-digit-seven.webp │ │ ├── symbols.keycap-digit-six.webp │ │ ├── symbols.keycap-digit-three.webp │ │ ├── symbols.keycap-digit-two.webp │ │ ├── symbols.keycap-digit-zero.webp │ │ ├── symbols.keycap-number-sign.webp │ │ ├── symbols.kiss-mark.webp │ │ ├── symbols.large-blue-circle.webp │ │ ├── symbols.large-blue-diamond.webp │ │ ├── symbols.large-blue-square.webp │ │ ├── symbols.large-brown-circle.webp │ │ ├── symbols.large-brown-square.webp │ │ ├── symbols.large-green-circle.webp │ │ ├── symbols.large-green-square.webp │ │ ├── symbols.large-orange-circle.webp │ │ ├── symbols.large-orange-diamond.webp │ │ ├── symbols.large-orange-square.webp │ │ ├── symbols.large-purple-circle.webp │ │ ├── symbols.large-purple-square.webp │ │ ├── symbols.large-red-circle.webp │ │ ├── symbols.large-red-square.webp │ │ ├── symbols.large-yellow-circle.webp │ │ ├── symbols.large-yellow-square.webp │ │ ├── symbols.last-track-button.webp │ │ ├── symbols.left-arrow-curving-right.webp │ │ ├── symbols.left-arrow.webp │ │ ├── symbols.left-luggage.webp │ │ ├── symbols.left-right-arrow.webp │ │ ├── symbols.left-speech-bubble.webp │ │ ├── symbols.leo.webp │ │ ├── symbols.libra.webp │ │ ├── symbols.lichess-4545-flag.webp │ │ ├── symbols.light-blue-heart.webp │ │ ├── symbols.linux-tux-penguin.webp │ │ ├── symbols.litter-in-bin-sign.webp │ │ ├── symbols.love-letter.webp │ │ ├── symbols.male-sign.webp │ │ ├── symbols.medical-symbol.webp │ │ ├── symbols.mending-heart.webp │ │ ├── symbols.mens-room.webp │ │ ├── symbols.minus.webp │ │ ├── symbols.mobile-phone-off.webp │ │ ├── symbols.move-blunder.webp │ │ ├── symbols.move-brilliant.webp │ │ ├── symbols.move-dubious.webp │ │ ├── symbols.move-good.webp │ │ ├── symbols.move-interesting.webp │ │ ├── symbols.move-mistake.webp │ │ ├── symbols.multiply.webp │ │ ├── symbols.name-badge.webp │ │ ├── symbols.neovim-mark.webp │ │ ├── symbols.new-button.webp │ │ ├── symbols.next-track-button.webp │ │ ├── symbols.ng-button.webp │ │ ├── symbols.no-bicycles.webp │ │ ├── symbols.no-entry.webp │ │ ├── symbols.no-littering.webp │ │ ├── symbols.no-mobile-phones.webp │ │ ├── symbols.no-one-under-eighteen.webp │ │ ├── symbols.no-pedestrians.webp │ │ ├── symbols.no-smoking.webp │ │ ├── symbols.non-potable-water.webp │ │ ├── symbols.number-sign.webp │ │ ├── symbols.o-button-blood-type.webp │ │ ├── symbols.ok-button.webp │ │ ├── symbols.on-arrow.webp │ │ ├── symbols.ophiuchus.webp │ │ ├── symbols.orange-heart.webp │ │ ├── symbols.p-button.webp │ │ ├── symbols.part-alternation-mark.webp │ │ ├── symbols.passport-control.webp │ │ ├── symbols.pause-button.webp │ │ ├── symbols.peace-symbol.webp │ │ ├── symbols.pink-heart.webp │ │ ├── symbols.pirate-flag.webp │ │ ├── symbols.pisces.webp │ │ ├── symbols.play-button.webp │ │ ├── symbols.play-or-pause-button.webp │ │ ├── symbols.plus.webp │ │ ├── symbols.potable-water.webp │ │ ├── symbols.purple-heart.webp │ │ ├── symbols.puzzle-racer.webp │ │ ├── symbols.puzzle-storm.webp │ │ ├── symbols.puzzle-streak.webp │ │ ├── symbols.question-mark.webp │ │ ├── symbols.radio-button.webp │ │ ├── symbols.rainbow-flag.webp │ │ ├── symbols.record-button.webp │ │ ├── symbols.recycling-symbol.webp │ │ ├── symbols.red-heart.webp │ │ ├── symbols.red-triangle-pointed-down.webp │ │ ├── symbols.red-triangle-pointed-up.webp │ │ ├── symbols.registered.webp │ │ ├── symbols.repeat-button.webp │ │ ├── symbols.repeat-single-button.webp │ │ ├── symbols.restroom.webp │ │ ├── symbols.reverse-button.webp │ │ ├── symbols.revolving-hearts.webp │ │ ├── symbols.right-anger-bubble.webp │ │ ├── symbols.right-arrow-curving-down.webp │ │ ├── symbols.right-arrow-curving-left.webp │ │ ├── symbols.right-arrow-curving-up.webp │ │ ├── symbols.right-arrow.webp │ │ ├── symbols.sagittarius.webp │ │ ├── symbols.scorpio.webp │ │ ├── symbols.shuffle-tracks-button.webp │ │ ├── symbols.small-blue-diamond.webp │ │ ├── symbols.small-orange-diamond.webp │ │ ├── symbols.soon-arrow.webp │ │ ├── symbols.sos-button.webp │ │ ├── symbols.sparkle.webp │ │ ├── symbols.sparkling-heart.webp │ │ ├── symbols.speech-balloon.webp │ │ ├── symbols.stop-button.webp │ │ ├── symbols.taurus.webp │ │ ├── symbols.thought-balloon.webp │ │ ├── symbols.top-arrow.webp │ │ ├── symbols.trade-mark.webp │ │ ├── symbols.transgender-flag.webp │ │ ├── symbols.transgender-symbol.webp │ │ ├── symbols.triangular-flag.webp │ │ ├── symbols.trident-emblem.webp │ │ ├── symbols.two-hearts.webp │ │ ├── symbols.up-arrow.webp │ │ ├── symbols.up-button.webp │ │ ├── symbols.up-down-arrow.webp │ │ ├── symbols.up-left-arrow.webp │ │ ├── symbols.up-right-arrow.webp │ │ ├── symbols.upwards-button.webp │ │ ├── symbols.vibration-mode.webp │ │ ├── symbols.vim-logo.webp │ │ ├── symbols.virgo.webp │ │ ├── symbols.vs-button.webp │ │ ├── symbols.water-closet.webp │ │ ├── symbols.wavy-dash.webp │ │ ├── symbols.wheelchair-symbol.webp │ │ ├── symbols.white-circle.webp │ │ ├── symbols.white-exclamation-mark.webp │ │ ├── symbols.white-flag.webp │ │ ├── symbols.white-heart.webp │ │ ├── symbols.white-large-square.webp │ │ ├── symbols.white-medium-small-square.webp │ │ ├── symbols.white-question-mark.webp │ │ ├── symbols.white-square-button.webp │ │ ├── symbols.white-star.webp │ │ ├── symbols.wireless.webp │ │ ├── symbols.womens-room.webp │ │ ├── symbols.yellow-heart.webp │ │ ├── symbols.zzz.webp │ │ ├── travel-places.aerial-tramway.webp │ │ ├── travel-places.airplane-arrival.webp │ │ ├── travel-places.airplane-departure.webp │ │ ├── travel-places.airplane.webp │ │ ├── travel-places.ambulance.webp │ │ ├── travel-places.anchor.webp │ │ ├── travel-places.articulated-lorry.webp │ │ ├── travel-places.auto-rickshaw.webp │ │ ├── travel-places.automobile.webp │ │ ├── travel-places.bank.webp │ │ ├── travel-places.barber-pole.webp │ │ ├── travel-places.beach-with-umbrella.webp │ │ ├── travel-places.bicycle.webp │ │ ├── travel-places.brick.webp │ │ ├── travel-places.bridge-at-night.webp │ │ ├── travel-places.building-construction.webp │ │ ├── travel-places.bullet-train.webp │ │ ├── travel-places.bus-stop.webp │ │ ├── travel-places.bus.webp │ │ ├── travel-places.camping.webp │ │ ├── travel-places.canoe.webp │ │ ├── travel-places.carousel-horse.webp │ │ ├── travel-places.castle.webp │ │ ├── travel-places.church.webp │ │ ├── travel-places.circus-tent.webp │ │ ├── travel-places.cityscape-at-dusk.webp │ │ ├── travel-places.cityscape.webp │ │ ├── travel-places.classical-building.webp │ │ ├── travel-places.compass.webp │ │ ├── travel-places.construction.webp │ │ ├── travel-places.convenience-store.webp │ │ ├── travel-places.delivery-truck.webp │ │ ├── travel-places.department-store.webp │ │ ├── travel-places.derelict-house.webp │ │ ├── travel-places.desert-island.webp │ │ ├── travel-places.desert.webp │ │ ├── travel-places.earth-blue.webp │ │ ├── travel-places.factory.webp │ │ ├── travel-places.ferris-wheel.webp │ │ ├── travel-places.ferry.webp │ │ ├── travel-places.fire-engine.webp │ │ ├── travel-places.flying-saucer.webp │ │ ├── travel-places.foggy.webp │ │ ├── travel-places.fountain.webp │ │ ├── travel-places.fuel-pump.webp │ │ ├── travel-places.globe-showing-americas.webp │ │ ├── travel-places.globe-showing-asia-australia.webp │ │ ├── travel-places.globe-showing-europe-africa.webp │ │ ├── travel-places.globe-with-meridians.webp │ │ ├── travel-places.helicopter.webp │ │ ├── travel-places.high-speed-train.webp │ │ ├── travel-places.hindu-temple.webp │ │ ├── travel-places.horizontal-traffic-light.webp │ │ ├── travel-places.hospital.webp │ │ ├── travel-places.hot-springs.webp │ │ ├── travel-places.hotel.webp │ │ ├── travel-places.house-with-garden.webp │ │ ├── travel-places.house.webp │ │ ├── travel-places.houses.webp │ │ ├── travel-places.hut.webp │ │ ├── travel-places.japanese-castle.webp │ │ ├── travel-places.japanese-post-office.webp │ │ ├── travel-places.kaaba.webp │ │ ├── travel-places.kick-scooter.webp │ │ ├── travel-places.landslide.webp │ │ ├── travel-places.light-rail.webp │ │ ├── travel-places.locomotive.webp │ │ ├── travel-places.love-hotel.webp │ │ ├── travel-places.manual-wheelchair.webp │ │ ├── travel-places.map-of-japan.webp │ │ ├── travel-places.metro.webp │ │ ├── travel-places.minibus.webp │ │ ├── travel-places.moai.webp │ │ ├── travel-places.monorail.webp │ │ ├── travel-places.mosque.webp │ │ ├── travel-places.motor-boat.webp │ │ ├── travel-places.motor-scooter.webp │ │ ├── travel-places.motorcycle.webp │ │ ├── travel-places.motorized-wheelchair.webp │ │ ├── travel-places.motorway.webp │ │ ├── travel-places.mount-fuji.webp │ │ ├── travel-places.mountain-cableway.webp │ │ ├── travel-places.mountain-railway.webp │ │ ├── travel-places.mountain.webp │ │ ├── travel-places.national-park.webp │ │ ├── travel-places.night-with-stars.webp │ │ ├── travel-places.office-building.webp │ │ ├── travel-places.oil-drum.webp │ │ ├── travel-places.oncoming-automobile.webp │ │ ├── travel-places.oncoming-bus.webp │ │ ├── travel-places.oncoming-police-car.webp │ │ ├── travel-places.oncoming-taxi.webp │ │ ├── travel-places.parachute.webp │ │ ├── travel-places.passenger-ship.webp │ │ ├── travel-places.pickup-truck.webp │ │ ├── travel-places.playground-slide.webp │ │ ├── travel-places.police-car-light.webp │ │ ├── travel-places.police-car.webp │ │ ├── travel-places.post-office.webp │ │ ├── travel-places.racing-car.webp │ │ ├── travel-places.railway-car.webp │ │ ├── travel-places.railway-track.webp │ │ ├── travel-places.ring-buoy.webp │ │ ├── travel-places.rocket.webp │ │ ├── travel-places.roller-coaster.webp │ │ ├── travel-places.roller-skate.webp │ │ ├── travel-places.sailboat.webp │ │ ├── travel-places.satellite.webp │ │ ├── travel-places.school.webp │ │ ├── travel-places.seat.webp │ │ ├── travel-places.shinto-shrine.webp │ │ ├── travel-places.ship.webp │ │ ├── travel-places.skateboard.webp │ │ ├── travel-places.small-airplane.webp │ │ ├── travel-places.snow-capped-mountain.webp │ │ ├── travel-places.speedboat.webp │ │ ├── travel-places.sport-utility-vehicle.webp │ │ ├── travel-places.stadium.webp │ │ ├── travel-places.station.webp │ │ ├── travel-places.statue-of-liberty.webp │ │ ├── travel-places.stop-sign.webp │ │ ├── travel-places.sunrise-over-mountains.webp │ │ ├── travel-places.sunrise.webp │ │ ├── travel-places.sunset.webp │ │ ├── travel-places.suspension-railway.webp │ │ ├── travel-places.synagogue.webp │ │ ├── travel-places.taxi.webp │ │ ├── travel-places.tent.webp │ │ ├── travel-places.tokyo-tower.webp │ │ ├── travel-places.tractor.webp │ │ ├── travel-places.train.webp │ │ ├── travel-places.tram-car.webp │ │ ├── travel-places.tram.webp │ │ ├── travel-places.trolleybus.webp │ │ ├── travel-places.vertical-traffic-light.webp │ │ ├── travel-places.volcano.webp │ │ ├── travel-places.wedding.webp │ │ ├── travel-places.wheel.webp │ │ ├── travel-places.wooden-ship.webp │ │ └── travel-places.world-map.webp │ └── list.txt ├── font │ ├── lichess-chess.sfd │ ├── lichess-chess.woff2 │ ├── lichess.sfd │ ├── lichess.ttf │ ├── lichess.woff2 │ ├── noto-sans-cyrillic-ext.woff2 │ ├── noto-sans-cyrillic.woff2 │ ├── noto-sans-devanagari.woff2 │ ├── noto-sans-greek-ext.woff2 │ ├── noto-sans-greek.woff2 │ ├── noto-sans-latin-ext.woff2 │ ├── noto-sans-latin.woff2 │ ├── noto-sans-vietnamese.woff2 │ ├── racer-car.sfd │ ├── racer-car.woff2 │ ├── roboto-cyrillic-ext.woff2 │ ├── roboto-cyrillic.woff2 │ ├── roboto-greek-ext.woff2 │ ├── roboto-greek.woff2 │ ├── roboto-latin-ext.woff2 │ ├── roboto-latin.woff2 │ ├── roboto-vietnamese.woff2 │ ├── storm.sfd │ └── storm.woff2 ├── glyphs.json ├── images │ ├── add-to-slack.png │ ├── architecture.dark.png │ ├── architecture.png │ ├── background │ │ └── landscape.jpg │ ├── bar-highlight.png │ ├── bitchess.logo.png │ ├── board │ │ ├── blue-marble.jpg │ │ ├── blue-marble.orig.jpg │ │ ├── blue-marble.thumbnail.jpg │ │ ├── blue.png │ │ ├── blue.thumbnail.png │ │ ├── blue2.jpg │ │ ├── blue2.thumbnail.jpg │ │ ├── blue3.jpg │ │ ├── blue3.thumbnail.jpg │ │ ├── brown.png │ │ ├── brown.thumbnail.png │ │ ├── canvas2.jpg │ │ ├── canvas2.orig.jpg │ │ ├── canvas2.thumbnail.jpg │ │ ├── green-plastic.png │ │ ├── green-plastic.thumbnail.png │ │ ├── green.png │ │ ├── green.thumbnail.png │ │ ├── grey.jpg │ │ ├── grey.thumbnail.jpg │ │ ├── horsey.current-premove.png │ │ ├── horsey.jpg │ │ ├── horsey.last-move.png │ │ ├── horsey.move-dest.png │ │ ├── horsey.selected.png │ │ ├── horsey.thumbnail.jpg │ │ ├── ic.png │ │ ├── ic.thumbnail.png │ │ ├── leather.jpg │ │ ├── leather.orig.jpg │ │ ├── leather.thumbnail.jpg │ │ ├── maple.jpg │ │ ├── maple.thumbnail.jpg │ │ ├── maple2.jpg │ │ ├── maple2.orig.jpg │ │ ├── maple2.thumbnail.jpg │ │ ├── marble.jpg │ │ ├── marble.thumbnail.jpg │ │ ├── metal.jpg │ │ ├── metal.orig.jpg │ │ ├── metal.thumbnail.jpg │ │ ├── ncf-board.png │ │ ├── olive.jpg │ │ ├── olive.thumbnail.jpg │ │ ├── pink-pyramid.png │ │ ├── pink-pyramid.thumbnail.png │ │ ├── purple-diag.png │ │ ├── purple-diag.thumbnail.png │ │ ├── purple.png │ │ ├── purple.thumbnail.png │ │ ├── svg │ │ │ └── newspaper.svg │ │ ├── wood.jpg │ │ ├── wood.thumbnail.jpg │ │ ├── wood2.jpg │ │ ├── wood2.thumbnail.jpg │ │ ├── wood3.jpg │ │ ├── wood3.orig.jpg │ │ ├── wood3.thumbnail.jpg │ │ ├── wood4.jpg │ │ ├── wood4.orig.jpg │ │ └── wood4.thumbnail.jpg │ ├── browserstack.png │ ├── buttons │ │ ├── add-photo-outline-material.svg │ │ ├── minus-button-mask.webp │ │ ├── play-as-black.svg │ │ ├── play-as-random.svg │ │ ├── play-as-white.svg │ │ └── plus-button-mask.webp │ ├── chessat3.logo.png │ ├── chesswhiz.logo.png │ ├── connection-info.png │ ├── darksquares.jpg │ ├── emoji │ │ ├── +1.png │ │ ├── -1.png │ │ ├── confused.png │ │ ├── heart.png │ │ ├── hooray.png │ │ ├── horsey.png │ │ ├── laugh.png │ │ └── thinking.png │ ├── fire-silhouette.svg │ ├── fischer-simul.jpg │ ├── futurist-set.jpg │ ├── globe.svg │ ├── grain.png │ ├── help │ │ ├── disclosure-arrows.webp │ │ └── disclosure-buttons.webp │ ├── home-bicolor.png │ ├── icons │ │ ├── bot.png │ │ ├── brain.blue.svg │ │ ├── certification.svg │ │ ├── first33.svg │ │ ├── g5726.png │ │ ├── ico-laurel.svg │ │ ├── multiple-select.png │ │ ├── octopus.svg │ │ ├── pointer.svg │ │ ├── sports27.svg │ │ ├── tornado-white.svg │ │ ├── tornado.svg │ │ ├── trash.svg │ │ ├── trophy-1.png │ │ ├── trophy-1.svg │ │ ├── trophy-2.min.svg │ │ ├── trophy-2.png │ │ ├── trophy-2.svg │ │ ├── trophy-3.min.svg │ │ └── trophy-3.svg │ ├── learn │ │ ├── battle-gear.svg │ │ ├── beams-aura.svg │ │ ├── big_castle.png │ │ ├── bolt-shield.svg │ │ ├── bordered-shield.svg │ │ ├── bowman.svg │ │ ├── brutal-helm.svg │ │ ├── bullseye.svg │ │ ├── castle.png │ │ ├── castle.svg │ │ ├── crossed-swords.svg │ │ ├── guards.svg │ │ ├── guillotine.svg │ │ ├── help.svg │ │ ├── mushroom.png │ │ ├── pieces │ │ │ ├── B.svg │ │ │ ├── K.svg │ │ │ ├── N.svg │ │ │ ├── P.svg │ │ │ ├── Q.svg │ │ │ └── R.svg │ │ ├── rally-the-troops.svg │ │ ├── robot-golem.svg │ │ ├── sabers-choc.svg │ │ ├── scales.svg │ │ ├── scythe.svg │ │ ├── spinning-blades.svg │ │ ├── sprint.svg │ │ ├── star.png │ │ ├── sword-clash.svg │ │ ├── tied-scroll.svg │ │ ├── treasure-map.svg │ │ ├── unlocking.svg │ │ ├── vintage-robot.svg │ │ └── winged-sword.svg │ ├── lichess.event.png │ ├── loader │ │ ├── blackx1.png │ │ └── whitex1.png │ ├── maintenance.jpg │ ├── mascot │ │ ├── octopus-shadow.svg │ │ └── octopus.svg │ ├── mobile │ │ ├── apple-store.svg │ │ ├── google-play.png │ │ ├── lichess-mobile-screen.png │ │ ├── lichesstv-mobile.png │ │ └── nexus5-playing.png │ ├── mod │ │ ├── reward1.png │ │ ├── reward2.png │ │ └── reward3.png │ ├── offerspill.logo.png │ ├── opensource.png │ ├── placeholder.png │ ├── practice │ │ ├── arrowed.svg │ │ ├── back-forth.svg │ │ ├── backstab.svg │ │ ├── bolt-shield.svg │ │ ├── boxing-glove-surprise.svg │ │ ├── breaking-chain.svg │ │ ├── catapult.svg │ │ ├── cement-shoes.svg │ │ ├── detour.svg │ │ ├── divert.svg │ │ ├── ghost-ally.svg │ │ ├── guarded-tower.svg │ │ ├── help.svg │ │ ├── key.svg │ │ ├── locked-fortress.svg │ │ ├── magnet.svg │ │ ├── mining.svg │ │ ├── musket.svg │ │ ├── pierced-body.svg │ │ ├── pocket-bow.svg │ │ ├── push.svg │ │ ├── quicksand.svg │ │ ├── robot-golem.svg │ │ ├── rogue.svg │ │ ├── siege-tower.svg │ │ ├── skeletal-hand.svg │ │ ├── stone-pile.svg │ │ ├── stone-spear.svg │ │ ├── stone-tower.svg │ │ ├── sword-in-stone.svg │ │ ├── tower-fall.svg │ │ ├── trident.svg │ │ ├── trojan-horse.svg │ │ ├── two-shadows.svg │ │ ├── upgrade.svg │ │ └── voodoo-doll.svg │ ├── puzzle-themes │ │ ├── advancedPawn.svg │ │ ├── advantage.svg │ │ ├── anastasiaMate.svg │ │ ├── arabianMate.svg │ │ ├── attackingF2F7.svg │ │ ├── attraction.svg │ │ ├── backRankMate.svg │ │ ├── balestraMate.svg │ │ ├── bishopEndgame.svg │ │ ├── blindSwineMate.svg │ │ ├── bodenMate.svg │ │ ├── capturingDefender.svg │ │ ├── castling.svg │ │ ├── clearance.svg │ │ ├── cornerMate.svg │ │ ├── crushing.svg │ │ ├── defensiveMove.svg │ │ ├── deflection.svg │ │ ├── discoveredAttack.svg │ │ ├── discoveredCheck.svg │ │ ├── doubleBishopMate.svg │ │ ├── doubleCheck.svg │ │ ├── dovetailMate.svg │ │ ├── enPassant.svg │ │ ├── endgame.svg │ │ ├── equality.svg │ │ ├── exposedKing.svg │ │ ├── fork.svg │ │ ├── hangingPiece.svg │ │ ├── hookMate.svg │ │ ├── interference.svg │ │ ├── intermezzo.svg │ │ ├── killBoxMate.svg │ │ ├── kingsideAttack.svg │ │ ├── knightEndgame.svg │ │ ├── long.svg │ │ ├── master.svg │ │ ├── masterVsMaster.svg │ │ ├── mate.svg │ │ ├── middlegame.svg │ │ ├── mix.svg │ │ ├── oneMove.svg │ │ ├── opening.svg │ │ ├── pawnEndgame.svg │ │ ├── pin.svg │ │ ├── playerGames.svg │ │ ├── promotion.svg │ │ ├── queenEndgame.svg │ │ ├── queenRookEndgame.svg │ │ ├── queensideAttack.svg │ │ ├── quietMove.svg │ │ ├── rookEndgame.svg │ │ ├── sacrifice.svg │ │ ├── short.svg │ │ ├── skewer.svg │ │ ├── smotheredMate.svg │ │ ├── superGM.svg │ │ ├── trappedPiece.svg │ │ ├── triangleMate.svg │ │ ├── underPromotion.svg │ │ ├── veryLong.svg │ │ ├── vukovicMate.svg │ │ ├── xRayAttack.svg │ │ └── zugzwang.svg │ ├── racer │ │ ├── checkered-flag-grey.svg │ │ ├── checkered-flag.svg │ │ ├── gear-stick.svg │ │ └── road1.webp │ ├── relay-default.png │ ├── staunton │ │ ├── board │ │ │ ├── Black-White-Aluminium.png │ │ │ ├── Black-White-Aluminium.thumbnail.png │ │ │ ├── Brushed-Aluminium.png │ │ │ ├── Brushed-Aluminium.thumbnail.png │ │ │ ├── China-Blue.png │ │ │ ├── China-Blue.thumbnail.png │ │ │ ├── China-Green.png │ │ │ ├── China-Green.thumbnail.png │ │ │ ├── China-Grey.png │ │ │ ├── China-Grey.thumbnail.png │ │ │ ├── China-Scarlet.png │ │ │ ├── China-Scarlet.thumbnail.png │ │ │ ├── China-Yellow.png │ │ │ ├── China-Yellow.thumbnail.png │ │ │ ├── Classic-Blue.png │ │ │ ├── Classic-Blue.thumbnail.png │ │ │ ├── Glass.png │ │ │ ├── Glass.thumbnail.png │ │ │ ├── Gold-Silver.png │ │ │ ├── Gold-Silver.thumbnail.png │ │ │ ├── Green-Glass.png │ │ │ ├── Green-Glass.thumbnail.png │ │ │ ├── Jade.png │ │ │ ├── Jade.thumbnail.png │ │ │ ├── Light-Wood.png │ │ │ ├── Light-Wood.thumbnail.png │ │ │ ├── Marble.png │ │ │ ├── Marble.thumbnail.png │ │ │ ├── Power-Coated.png │ │ │ ├── Power-Coated.thumbnail.png │ │ │ ├── Purple-Black.png │ │ │ ├── Purple-Black.thumbnail.png │ │ │ ├── Rosewood.png │ │ │ ├── Rosewood.thumbnail.png │ │ │ ├── Wax.png │ │ │ ├── Wax.thumbnail.png │ │ │ ├── Wood-Glass.png │ │ │ ├── Wood-Glass.thumbnail.png │ │ │ ├── Woodi.png │ │ │ └── Woodi.thumbnail.png │ │ └── piece │ │ │ ├── Basic │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── CubesAndPi │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── Experimental │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── Glass │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── Metal │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── ModernJade │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── ModernWood │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── RedVBlue │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── Staunton │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Preview.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ ├── Trimmed │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ │ │ └── Wood │ │ │ ├── Black-Bishop-Flipped.png │ │ │ ├── Black-Bishop.png │ │ │ ├── Black-King.png │ │ │ ├── Black-Knight-Flipped.png │ │ │ ├── Black-Knight.png │ │ │ ├── Black-Pawn.png │ │ │ ├── Black-Queen.png │ │ │ ├── Black-Rook.png │ │ │ ├── White-Bishop-Flipped.png │ │ │ ├── White-Bishop.png │ │ │ ├── White-King.png │ │ │ ├── White-Knight-Flipped.png │ │ │ ├── White-Knight.png │ │ │ ├── White-Pawn.png │ │ │ ├── White-Queen.png │ │ │ └── White-Rook.png │ ├── trophy.event.png │ ├── trophy │ │ ├── 3wc20.png │ │ ├── 3wc21.png │ │ ├── 3wc22.png │ │ ├── 3wc23.png │ │ ├── 3wc24.png │ │ ├── Big-Gold-Cup.png │ │ ├── Big-Silver-Cup.png │ │ ├── Fancy-Diamond.png │ │ ├── Fancy-Gold.png │ │ ├── Gold-Cup.png │ │ ├── acwc18.png │ │ ├── acwc19.png │ │ ├── acwc20.png │ │ ├── acwc21.png │ │ ├── acwc22.png │ │ ├── acwc23.png │ │ ├── acwc24.png │ │ ├── atomicwc16.png │ │ ├── atomicwc17.png │ │ ├── atomicwc18.png │ │ ├── atomicwc19.png │ │ ├── atomicwc20.png │ │ ├── atomicwc21.png │ │ ├── atomicwc22.png │ │ ├── atomicwc23.png │ │ ├── atomicwc24.png │ │ ├── fscday25.png │ │ ├── gold-cup-2.png │ │ ├── hwc19.png │ │ ├── hwc20.png │ │ ├── hwc21.png │ │ ├── hwc22.png │ │ ├── hwc23.png │ │ ├── kothwc23.png │ │ ├── lichess-bronze-2.svg │ │ ├── lichess-gold-1.svg │ │ ├── lichess-massive.svg │ │ ├── lichess-silver-1.svg │ │ ├── lichess-silver-2.svg │ │ ├── rkwc19.png │ │ ├── rkwc20.png │ │ ├── rkwc21.png │ │ ├── rkwc22.png │ │ ├── rkwc23.png │ │ ├── round-star.png │ │ ├── shield-gold.png │ │ ├── silver-cup-2.png │ │ ├── zhwc17.png │ │ ├── zhwc18.png │ │ ├── zhwc20.png │ │ ├── zhwc21.png │ │ ├── zhwc22.png │ │ ├── zhwcup23.png │ │ └── zug-trophy.png │ ├── user-blog-default.png │ └── wbK.svg ├── javascripts │ ├── fipr.js │ └── vendor │ │ └── cash.min.js ├── lifat │ ├── README.md │ ├── background │ │ ├── README.md │ │ ├── gallery.json │ │ ├── gallery │ │ │ ├── bg01-thumb.webp │ │ │ ├── bg01.webp │ │ │ ├── bg02-thumb.webp │ │ │ ├── bg02.webp │ │ │ ├── bg03-thumb.webp │ │ │ ├── bg03.webp │ │ │ ├── bg04-thumb.webp │ │ │ ├── bg04.webp │ │ │ ├── bg05-thumb.webp │ │ │ ├── bg05.webp │ │ │ ├── bg06-thumb.webp │ │ │ ├── bg06.webp │ │ │ ├── bg07-thumb.webp │ │ │ ├── bg07.webp │ │ │ ├── bg08-thumb.webp │ │ │ ├── bg08.webp │ │ │ ├── bg09-thumb.webp │ │ │ ├── bg09.webp │ │ │ ├── bg10-thumb.webp │ │ │ ├── bg10.webp │ │ │ ├── bg11-thumb.webp │ │ │ ├── bg11.webp │ │ │ ├── bg12-thumb.webp │ │ │ ├── bg12.webp │ │ │ ├── bg13-thumb.webp │ │ │ ├── bg13.webp │ │ │ ├── bg14-thumb.webp │ │ │ ├── bg14.webp │ │ │ ├── bg15-thumb.webp │ │ │ ├── bg15.webp │ │ │ ├── bg16-thumb.webp │ │ │ ├── bg16.webp │ │ │ ├── bg17-thumb.webp │ │ │ ├── bg17.webp │ │ │ ├── bg18-thumb.webp │ │ │ ├── bg18.webp │ │ │ ├── bg19-thumb.webp │ │ │ ├── bg19.webp │ │ │ ├── bg20-thumb.webp │ │ │ ├── bg20.webp │ │ │ ├── bg21-thumb.webp │ │ │ ├── bg21.webp │ │ │ ├── bg22-thumb.webp │ │ │ ├── bg22.webp │ │ │ ├── bg23-thumb.webp │ │ │ ├── bg23.webp │ │ │ ├── bg24-thumb.webp │ │ │ ├── bg24.webp │ │ │ ├── bg25-thumb.webp │ │ │ ├── bg25.webp │ │ │ ├── bg26-thumb.webp │ │ │ ├── bg26.webp │ │ │ ├── bg27-thumb.webp │ │ │ ├── bg27.webp │ │ │ ├── bg28-thumb.webp │ │ │ └── bg28.webp │ │ ├── make-gallery.js │ │ ├── montage2.webp │ │ └── montage4.webp │ ├── nnue │ │ ├── 3check-cb5f517c228b.nnue │ │ ├── antichess-dd3cbe53cd4e.nnue │ │ ├── atomic-2cf13ff256cc.nnue │ │ ├── crazyhouse-8ebf84784ad2.nnue │ │ ├── horde-28173ddccabe.nnue │ │ ├── kingofthehill-978b86d0e6a4.nnue │ │ ├── nn-1111cefa1111.nnue │ │ ├── nn-1c0000000000.nnue │ │ ├── nn-37f18f62d772.nnue │ │ ├── nn-9067e33176e8.nnue │ │ ├── nn-ecb35f70ff2a.nnue │ │ └── racingkings-636b95f085e3.nnue │ └── vosk │ │ ├── model-en-us-0.15.tar.gz │ │ ├── model-fr-0.22.tar.gz │ │ └── model-pl-0.22.tar.gz ├── logo │ ├── lichess-2048x1024.png │ ├── lichess-box-1024.png │ ├── lichess-box-4500.png │ ├── lichess-discord.png │ ├── lichess-favicon-1024.png │ ├── lichess-favicon-128.png │ ├── lichess-favicon-192.png │ ├── lichess-favicon-256.png │ ├── lichess-favicon-32-invert.png │ ├── lichess-favicon-32.png │ ├── lichess-favicon-512.png │ ├── lichess-favicon-64.png │ ├── lichess-mono-128.png │ ├── lichess-pad1-1024.png │ ├── lichess-pad12.svg │ ├── lichess-pad4.svg │ ├── lichess-pad8-1024.png │ ├── lichess-pad8.svg │ ├── lichess-stripe.png │ ├── lichess-thick2.svg │ ├── lichess-thick3.svg │ ├── lichess-tile-wide.png │ ├── lichess-tile.png │ ├── lichess-white.svg │ ├── lichess.svg │ ├── logo-black.png │ ├── logo-with-name-card.png │ ├── logo-with-name-card.xcf │ ├── logo-with-name-dark.png │ ├── logo-with-name-light.png │ └── logo.xcf ├── oops │ ├── 429.html │ ├── broadcast-embed-demo.html │ ├── diagnostics.html │ ├── disabled.html │ ├── flair.html │ ├── font.html │ ├── scheduled-maintenance.html │ ├── servererror.html │ ├── sounds.html │ ├── timeout.html │ └── toomanyrequests.html ├── piece │ ├── alpha │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── anarcandy │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── caliente │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── california │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── cardinal │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── cburnett │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── celtic │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── chess7 │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── chessnut │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── companion │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── cooke │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── disguised │ │ ├── b.svg │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── w.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── dubrovny │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── fantasy │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── firi │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── fresca │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── gioco │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── governor │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── horsey │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── icpieces │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── kiwen-suwi │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── kosal │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── leipzig │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── letter │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── maestro │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── merida │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── monarchy │ │ ├── bB.webp │ │ ├── bK.webp │ │ ├── bN.webp │ │ ├── bP.webp │ │ ├── bQ.webp │ │ ├── bR.webp │ │ ├── wB.webp │ │ ├── wK.webp │ │ ├── wN.webp │ │ ├── wP.webp │ │ ├── wQ.webp │ │ └── wR.webp │ ├── mono │ │ ├── B.svg │ │ ├── K.svg │ │ ├── N.svg │ │ ├── P.svg │ │ ├── Q.svg │ │ └── R.svg │ ├── mpchess │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── pirouetti │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── pixel │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── reillycraig │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── rhosgfx │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── riohacha │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── shapes │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── spatial │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── staunty │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ ├── tatiana │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg │ └── xkcd │ │ ├── bB.svg │ │ ├── bK.svg │ │ ├── bN.svg │ │ ├── bP.svg │ │ ├── bQ.svg │ │ ├── bR.svg │ │ ├── wB.svg │ │ ├── wK.svg │ │ ├── wN.svg │ │ ├── wP.svg │ │ ├── wQ.svg │ │ └── wR.svg ├── sound │ ├── Silence.mp3 │ ├── Silence.ogg │ ├── futuristic │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewChatMessage.mp3 │ │ ├── NewChatMessage.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Playlist (2).m3u │ │ ├── Playlist.m3u │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ └── Victory.ogg │ ├── instrument │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── celesta │ │ │ ├── c001.mp3 │ │ │ ├── c001.ogg │ │ │ ├── c002.mp3 │ │ │ ├── c002.ogg │ │ │ ├── c003.mp3 │ │ │ ├── c003.ogg │ │ │ ├── c004.mp3 │ │ │ ├── c004.ogg │ │ │ ├── c005.mp3 │ │ │ ├── c005.ogg │ │ │ ├── c006.mp3 │ │ │ ├── c006.ogg │ │ │ ├── c007.mp3 │ │ │ ├── c007.ogg │ │ │ ├── c008.mp3 │ │ │ ├── c008.ogg │ │ │ ├── c009.mp3 │ │ │ ├── c009.ogg │ │ │ ├── c010.mp3 │ │ │ ├── c010.ogg │ │ │ ├── c011.mp3 │ │ │ ├── c011.ogg │ │ │ ├── c012.mp3 │ │ │ ├── c012.ogg │ │ │ ├── c013.mp3 │ │ │ ├── c013.ogg │ │ │ ├── c014.mp3 │ │ │ ├── c014.ogg │ │ │ ├── c015.mp3 │ │ │ ├── c015.ogg │ │ │ ├── c016.mp3 │ │ │ ├── c016.ogg │ │ │ ├── c017.mp3 │ │ │ ├── c017.ogg │ │ │ ├── c018.mp3 │ │ │ ├── c018.ogg │ │ │ ├── c019.mp3 │ │ │ ├── c019.ogg │ │ │ ├── c020.mp3 │ │ │ ├── c020.ogg │ │ │ ├── c021.mp3 │ │ │ ├── c021.ogg │ │ │ ├── c022.mp3 │ │ │ ├── c022.ogg │ │ │ ├── c023.mp3 │ │ │ ├── c023.ogg │ │ │ ├── c024.mp3 │ │ │ ├── c024.ogg │ │ │ ├── c025.mp3 │ │ │ ├── c025.ogg │ │ │ ├── c026.mp3 │ │ │ ├── c026.ogg │ │ │ ├── c027.mp3 │ │ │ └── c027.ogg │ │ ├── clav │ │ │ ├── c001.mp3 │ │ │ ├── c001.ogg │ │ │ ├── c002.mp3 │ │ │ ├── c002.ogg │ │ │ ├── c003.mp3 │ │ │ ├── c003.ogg │ │ │ ├── c004.mp3 │ │ │ ├── c004.ogg │ │ │ ├── c005.mp3 │ │ │ ├── c005.ogg │ │ │ ├── c006.mp3 │ │ │ ├── c006.ogg │ │ │ ├── c007.mp3 │ │ │ ├── c007.ogg │ │ │ ├── c008.mp3 │ │ │ ├── c008.ogg │ │ │ ├── c009.mp3 │ │ │ ├── c009.ogg │ │ │ ├── c010.mp3 │ │ │ ├── c010.ogg │ │ │ ├── c011.mp3 │ │ │ ├── c011.ogg │ │ │ ├── c012.mp3 │ │ │ ├── c012.ogg │ │ │ ├── c013.mp3 │ │ │ ├── c013.ogg │ │ │ ├── c014.mp3 │ │ │ ├── c014.ogg │ │ │ ├── c015.mp3 │ │ │ ├── c015.ogg │ │ │ ├── c016.mp3 │ │ │ ├── c016.ogg │ │ │ ├── c017.mp3 │ │ │ ├── c017.ogg │ │ │ ├── c018.mp3 │ │ │ ├── c018.ogg │ │ │ ├── c019.mp3 │ │ │ ├── c019.ogg │ │ │ ├── c020.mp3 │ │ │ ├── c020.ogg │ │ │ ├── c021.mp3 │ │ │ ├── c021.ogg │ │ │ ├── c022.mp3 │ │ │ ├── c022.ogg │ │ │ ├── c023.mp3 │ │ │ ├── c023.ogg │ │ │ ├── c024.mp3 │ │ │ ├── c024.ogg │ │ │ ├── c025.mp3 │ │ │ ├── c025.ogg │ │ │ ├── c026.mp3 │ │ │ ├── c026.ogg │ │ │ ├── c027.mp3 │ │ │ └── c027.ogg │ │ └── swells │ │ │ ├── swell1.mp3 │ │ │ ├── swell1.ogg │ │ │ ├── swell2.mp3 │ │ │ ├── swell2.ogg │ │ │ ├── swell3.mp3 │ │ │ └── swell3.ogg │ ├── lisp │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Castles.mp3 │ │ ├── Castles.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── PracticeComplete.mp3 │ │ ├── PracticeComplete.ogg │ │ ├── PuzzleStormEnd.mp3 │ │ ├── PuzzleStormEnd.ogg │ │ ├── PuzzleStormGood.mp3 │ │ ├── PuzzleStormGood.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ └── Victory.ogg │ ├── nes │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ ├── Victory.ogg │ │ └── stock │ │ │ ├── CountDownFast.mp3 │ │ │ ├── CountDownFast.ogg │ │ │ ├── CountDownSlow.mp3 │ │ │ ├── CountDownSlow.ogg │ │ │ ├── NewChat.mp3 │ │ │ ├── NewChat.ogg │ │ │ ├── Playlist (2).m3u │ │ │ └── Playlist.m3u │ ├── other │ │ ├── energy3.mp3 │ │ ├── energy3.ogg │ │ ├── failure2.mp3 │ │ ├── failure2.ogg │ │ ├── gewonnen.mp3 │ │ ├── gewonnen.ogg │ │ ├── guitar.mp3 │ │ ├── guitar.ogg │ │ ├── no-go.mp3 │ │ ├── no-go.ogg │ │ ├── ping.mp3 │ │ ├── ping.ogg │ │ └── yeet.mp3 │ ├── piano │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ ├── Victory.ogg │ │ └── stock │ │ │ ├── NewChatMessage.mp3 │ │ │ └── NewChatMessage.ogg │ ├── robot │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ └── Victory.ogg │ ├── sfx │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ ├── Victory.ogg │ │ └── stock │ │ │ ├── NewChat.mp3 │ │ │ └── NewChat.ogg │ ├── standard │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── OutOfBound.mp3 │ │ ├── OutOfBound.ogg │ │ ├── Select.mp3 │ │ ├── Select.ogg │ │ ├── SocialNotify.mp3 │ │ ├── SocialNotify.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ └── Victory.ogg │ └── woodland │ │ ├── Berserk.mp3 │ │ ├── Berserk.ogg │ │ ├── Capture.mp3 │ │ ├── Capture.ogg │ │ ├── Check.mp3 │ │ ├── Check.ogg │ │ ├── Checkmate.mp3 │ │ ├── Checkmate.ogg │ │ ├── Confirmation.mp3 │ │ ├── Confirmation.ogg │ │ ├── CountDown0.mp3 │ │ ├── CountDown0.ogg │ │ ├── CountDown1.mp3 │ │ ├── CountDown1.ogg │ │ ├── CountDown10.mp3 │ │ ├── CountDown10.ogg │ │ ├── CountDown2.mp3 │ │ ├── CountDown2.ogg │ │ ├── CountDown3.mp3 │ │ ├── CountDown3.ogg │ │ ├── CountDown4.mp3 │ │ ├── CountDown4.ogg │ │ ├── CountDown5.mp3 │ │ ├── CountDown5.ogg │ │ ├── CountDown6.mp3 │ │ ├── CountDown6.ogg │ │ ├── CountDown7.mp3 │ │ ├── CountDown7.ogg │ │ ├── CountDown8.mp3 │ │ ├── CountDown8.ogg │ │ ├── CountDown9.mp3 │ │ ├── CountDown9.ogg │ │ ├── Defeat.mp3 │ │ ├── Defeat.ogg │ │ ├── Draw.mp3 │ │ ├── Draw.ogg │ │ ├── Error.mp3 │ │ ├── Error.ogg │ │ ├── Explosion.mp3 │ │ ├── Explosion.ogg │ │ ├── GenericNotify.mp3 │ │ ├── GenericNotify.ogg │ │ ├── LowTime.mp3 │ │ ├── LowTime.ogg │ │ ├── Move.mp3 │ │ ├── Move.ogg │ │ ├── NewChallenge.mp3 │ │ ├── NewChallenge.ogg │ │ ├── NewPM.mp3 │ │ ├── NewPM.ogg │ │ ├── Tournament1st.mp3 │ │ ├── Tournament1st.ogg │ │ ├── Tournament2nd.mp3 │ │ ├── Tournament2nd.ogg │ │ ├── Tournament3rd.mp3 │ │ ├── Tournament3rd.ogg │ │ ├── TournamentOther.mp3 │ │ ├── TournamentOther.ogg │ │ ├── Victory.mp3 │ │ └── Victory.ogg └── vendor │ └── ChessPursuit │ └── bin-release │ ├── game.js │ └── index.html ├── translation ├── dest │ ├── README.md │ ├── activity │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── appeal │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── arena │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── broadcast │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── challenge │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── class │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── coach │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── contact │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── coordinates │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── dgt │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── emails │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── faq │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── features │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── insight │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── keyboardMove │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── lag │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── learn │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── nvui │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── oauthScope │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── onboarding │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── patron │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── perfStat │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── preferences │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── puzzle │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── puzzleTheme │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── search │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── settings │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── site │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-CH.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── no-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── storm │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── streamer │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── study │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-CH.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── swiss │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── team │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── tfa │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── timeago │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── tourname │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── ublog │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── variant │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ ├── video │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml │ └── voiceCommands │ │ ├── aa-ER.xml │ │ ├── af-ZA.xml │ │ ├── ak-GH.xml │ │ ├── am-ET.xml │ │ ├── an-ES.xml │ │ ├── ar-SA.xml │ │ ├── as-IN.xml │ │ ├── ast-ES.xml │ │ ├── av-RU.xml │ │ ├── az-AZ.xml │ │ ├── ba-RU.xml │ │ ├── be-BY.xml │ │ ├── bg-BG.xml │ │ ├── bn-BD.xml │ │ ├── br-FR.xml │ │ ├── bs-BA.xml │ │ ├── ca-ES.xml │ │ ├── ce-RU.xml │ │ ├── ceb-PH.xml │ │ ├── ckb-IR.xml │ │ ├── co-FR.xml │ │ ├── cs-CZ.xml │ │ ├── cv-CU.xml │ │ ├── cy-GB.xml │ │ ├── da-DK.xml │ │ ├── de-DE.xml │ │ ├── el-GR.xml │ │ ├── en-US.xml │ │ ├── eo-AA.xml │ │ ├── es-ES.xml │ │ ├── et-EE.xml │ │ ├── eu-ES.xml │ │ ├── fa-IR.xml │ │ ├── fi-FI.xml │ │ ├── fo-FO.xml │ │ ├── fr-FR.xml │ │ ├── frp-IT.xml │ │ ├── fur-IT.xml │ │ ├── fy-NL.xml │ │ ├── ga-IE.xml │ │ ├── gd-GB.xml │ │ ├── gl-ES.xml │ │ ├── gn-PY.xml │ │ ├── gsw-CH.xml │ │ ├── gu-IN.xml │ │ ├── ha-NG.xml │ │ ├── he-IL.xml │ │ ├── hi-IN.xml │ │ ├── hr-HR.xml │ │ ├── hu-HU.xml │ │ ├── hy-AM.xml │ │ ├── ia-AA.xml │ │ ├── id-ID.xml │ │ ├── ig-NG.xml │ │ ├── io-AA.xml │ │ ├── is-IS.xml │ │ ├── it-IT.xml │ │ ├── ja-JP.xml │ │ ├── jbo-AA.xml │ │ ├── jv-ID.xml │ │ ├── ka-GE.xml │ │ ├── kaa-UZ.xml │ │ ├── kab-DZ.xml │ │ ├── kk-KZ.xml │ │ ├── km-KH.xml │ │ ├── kmr-TR.xml │ │ ├── kn-IN.xml │ │ ├── ko-KR.xml │ │ ├── ky-KG.xml │ │ ├── la-VA.xml │ │ ├── lb-LU.xml │ │ ├── lg-UG.xml │ │ ├── lo-LA.xml │ │ ├── lt-LT.xml │ │ ├── lv-LV.xml │ │ ├── mai-IN.xml │ │ ├── mdf-RU.xml │ │ ├── mg-MG.xml │ │ ├── mi-NZ.xml │ │ ├── mk-MK.xml │ │ ├── ml-IN.xml │ │ ├── mn-MN.xml │ │ ├── mr-IN.xml │ │ ├── ms-MY.xml │ │ ├── mt-MT.xml │ │ ├── my-MM.xml │ │ ├── nb-NO.xml │ │ ├── ne-NP.xml │ │ ├── nl-NL.xml │ │ ├── nn-NO.xml │ │ ├── nso-ZA.xml │ │ ├── ny-MW.xml │ │ ├── oc-FR.xml │ │ ├── om-ET.xml │ │ ├── or-IN.xml │ │ ├── os-SE.xml │ │ ├── pa-IN.xml │ │ ├── pcd-FR.xml │ │ ├── pi-IN.xml │ │ ├── pl-PL.xml │ │ ├── ps-AF.xml │ │ ├── pt-BR.xml │ │ ├── pt-PT.xml │ │ ├── qu-PE.xml │ │ ├── rn-BI.xml │ │ ├── ro-RO.xml │ │ ├── ru-RU.xml │ │ ├── rw-RW.xml │ │ ├── ry-UA.xml │ │ ├── sa-IN.xml │ │ ├── sc-IT.xml │ │ ├── sco-GB.xml │ │ ├── sd-PK.xml │ │ ├── se-NO.xml │ │ ├── si-LK.xml │ │ ├── sk-SK.xml │ │ ├── sl-SI.xml │ │ ├── sn-ZW.xml │ │ ├── so-SO.xml │ │ ├── sq-AL.xml │ │ ├── sr-SP.xml │ │ ├── st-ZA.xml │ │ ├── sv-SE.xml │ │ ├── sw-KE.xml │ │ ├── ta-IN.xml │ │ ├── te-IN.xml │ │ ├── tg-TJ.xml │ │ ├── th-TH.xml │ │ ├── ti-ER.xml │ │ ├── tk-TM.xml │ │ ├── tl-PH.xml │ │ ├── tlh-AA.xml │ │ ├── tn-ZA.xml │ │ ├── tok-AA.xml │ │ ├── tr-TR.xml │ │ ├── tt-RU.xml │ │ ├── ug-CN.xml │ │ ├── uk-UA.xml │ │ ├── ur-PK.xml │ │ ├── uz-UZ.xml │ │ ├── vi-VN.xml │ │ ├── wo-SN.xml │ │ ├── xh-ZA.xml │ │ ├── yo-NG.xml │ │ ├── zh-CN.xml │ │ ├── zh-TW.xml │ │ └── zu-ZA.xml ├── resources.dtd └── source │ ├── activity.xml │ ├── appeal.xml │ ├── arena.xml │ ├── broadcast.xml │ ├── challenge.xml │ ├── class.xml │ ├── coach.xml │ ├── contact.xml │ ├── coordinates.xml │ ├── dgt.xml │ ├── emails.xml │ ├── faq.xml │ ├── features.xml │ ├── insight.xml │ ├── keyboardMove.xml │ ├── lag.xml │ ├── learn.xml │ ├── nvui.xml │ ├── oauthScope.xml │ ├── onboarding.xml │ ├── patron.xml │ ├── perfStat.xml │ ├── preferences.xml │ ├── puzzle.xml │ ├── puzzleTheme.xml │ ├── search.xml │ ├── settings.xml │ ├── site.xml │ ├── storm.xml │ ├── streamer.xml │ ├── study.xml │ ├── swiss.xml │ ├── team.xml │ ├── tfa.xml │ ├── timeago.xml │ ├── tourname.xml │ ├── ublog.xml │ ├── variant.xml │ ├── video.xml │ └── voiceCommands.xml └── ui ├── .build ├── package.json ├── pnpm-lock.yaml ├── src │ ├── algo.ts │ ├── build.ts │ ├── clean.ts │ ├── console.ts │ ├── env.ts │ ├── esbuild.ts │ ├── hash.ts │ ├── i18n.ts │ ├── main.ts │ ├── manifest.ts │ ├── parse.ts │ ├── sass.ts │ ├── sync.ts │ ├── task.ts │ ├── tsc.ts │ └── tscWorker.ts └── tsconfig.json ├── .prettierrc.json ├── .test ├── helpers.mts ├── resolve.mts ├── runner.mjs └── setup.mts ├── @types └── lichess │ ├── cash.d.ts │ ├── chessground.d.ts │ ├── i18n.d.ts │ ├── index.d.ts │ ├── package.json │ └── tree.d.ts ├── README.md ├── analyse ├── css │ ├── _action-menu.scss │ ├── _analyse.abstract.scss │ ├── _analyse.base.scss │ ├── _analyse.embed.scss │ ├── _analyse.free.scss │ ├── _analyse.round.scss │ ├── _chart-loader.scss │ ├── _context-menu.scss │ ├── _forecast.scss │ ├── _fork.scss │ ├── _keyboard.scss │ ├── _layout.scss │ ├── _persistence.scss │ ├── _player-clock.scss │ ├── _practice.scss │ ├── _retro.scss │ ├── _round-training.scss │ ├── _round-underboard.scss │ ├── _side.scss │ ├── _tools-mobile.scss │ ├── _tools.scss │ ├── _training.scss │ ├── _variables.scss │ ├── _zh.scss │ ├── build │ │ ├── analyse.forecast.scss │ │ ├── analyse.free.embed.scss │ │ ├── analyse.free.scss │ │ ├── analyse.gamebook.edit.scss │ │ ├── analyse.gamebook.play.scss │ │ ├── analyse.keyboard.scss │ │ ├── analyse.practice.scss │ │ ├── analyse.relay-admin.scss │ │ ├── analyse.relay.embed.scss │ │ ├── analyse.relay.scss │ │ ├── analyse.round.scss │ │ ├── analyse.study.create.scss │ │ ├── analyse.study.index.scss │ │ ├── analyse.study.scss │ │ └── analyse.zh.scss │ ├── explorer │ │ ├── _config.scss │ │ └── _explorer.scss │ ├── gamebook │ │ ├── _common.scss │ │ ├── _edit.scss │ │ └── _play.scss │ ├── practice │ │ ├── _layout.scss │ │ ├── _show.scss │ │ ├── _side.scss │ │ └── _underboard.scss │ └── study │ │ ├── _buttons.scss │ │ ├── _chapters.scss │ │ ├── _create.scss │ │ ├── _desc.scss │ │ ├── _editor.scss │ │ ├── _index.scss │ │ ├── _invite.scss │ │ ├── _layout.scss │ │ ├── _list-widget.scss │ │ ├── _list.scss │ │ ├── _members.scss │ │ ├── _modal.scss │ │ ├── _player.scss │ │ ├── _search.scss │ │ ├── _show.scss │ │ ├── _topics.scss │ │ ├── panel │ │ ├── _comment.scss │ │ ├── _glyph.scss │ │ ├── _message.scss │ │ ├── _metadata.scss │ │ ├── _multiboard.scss │ │ ├── _server-eval.scss │ │ └── _share.scss │ │ └── relay │ │ ├── _admin.scss │ │ ├── _back-to-live.scss │ │ ├── _embed.scss │ │ ├── _layout.scss │ │ ├── _rounds.scss │ │ ├── _show.scss │ │ ├── _teams.scss │ │ ├── _tour.scss │ │ └── _video-player.scss ├── package.json ├── src │ ├── analyse.nvui.ts │ ├── analyse.user.ts │ ├── api.ts │ ├── autoShape.ts │ ├── autoplay.ts │ ├── boot.ts │ ├── control.ts │ ├── crazy │ │ ├── crazyCtrl.ts │ │ └── crazyView.ts │ ├── ctrl.ts │ ├── evalCache.ts │ ├── explorer │ │ ├── explorerConfig.ts │ │ ├── explorerCtrl.ts │ │ ├── explorerUtil.ts │ │ ├── explorerView.ts │ │ ├── explorerXhr.ts │ │ ├── interfaces.ts │ │ └── tablebaseView.ts │ ├── forecast │ │ ├── forecastCtrl.ts │ │ ├── forecastView.ts │ │ └── interfaces.ts │ ├── fork.ts │ ├── ground.ts │ ├── idbTree.ts │ ├── interfaces.ts │ ├── keyboard.ts │ ├── nodeFinder.ts │ ├── pgnExport.ts │ ├── pgnImport.ts │ ├── practice │ │ ├── practiceCtrl.ts │ │ └── practiceView.ts │ ├── retrospect │ │ ├── nvuiRetroView.ts │ │ ├── retroCtrl.ts │ │ └── retroView.ts │ ├── serverSideUnderboard.ts │ ├── socket.ts │ ├── start.ts │ ├── study │ │ ├── analyse.study.topic.form.ts │ │ ├── analyse.study.tour.ts │ │ ├── analyse.study.ts │ │ ├── chapterEditForm.ts │ │ ├── chapterNewForm.ts │ │ ├── commentForm.ts │ │ ├── description.ts │ │ ├── gamebook │ │ │ ├── gamebookButtons.ts │ │ │ ├── gamebookEdit.ts │ │ │ ├── gamebookPlayCtrl.ts │ │ │ ├── gamebookPlayView.ts │ │ │ └── interfaces.ts │ │ ├── interfaces.ts │ │ ├── inviteForm.ts │ │ ├── multiBoard.ts │ │ ├── multiCloudEval.ts │ │ ├── nextChapter.ts │ │ ├── notif.ts │ │ ├── playerBars.ts │ │ ├── practice │ │ │ ├── interfaces.ts │ │ │ ├── studyPracticeCtrl.ts │ │ │ ├── studyPracticeSuccess.ts │ │ │ └── studyPracticeView.ts │ │ ├── relay │ │ │ ├── deepLink.ts │ │ │ ├── interfaces.ts │ │ │ ├── liveboardPlugin.ts │ │ │ ├── relayCtrl.ts │ │ │ ├── relayGames.ts │ │ │ ├── relayManagerView.ts │ │ │ ├── relayPlayers.ts │ │ │ ├── relayStats.ts │ │ │ ├── relayTeams.ts │ │ │ ├── relayTourView.ts │ │ │ ├── relayView.ts │ │ │ └── videoPlayer.ts │ │ ├── serverEval.ts │ │ ├── studyChapters.ts │ │ ├── studyComments.ts │ │ ├── studyCtrl.ts │ │ ├── studyDeps.ts │ │ ├── studyForm.ts │ │ ├── studyGlyph.ts │ │ ├── studyMembers.ts │ │ ├── studySearch.ts │ │ ├── studyShare.ts │ │ ├── studyTags.ts │ │ ├── studyView.ts │ │ ├── studyXhr.ts │ │ └── topics.ts │ ├── treeView │ │ ├── columnView.ts │ │ ├── contextMenu.ts │ │ ├── inlineView.ts │ │ └── treeView.ts │ ├── util.ts │ ├── view │ │ ├── actionMenu.ts │ │ ├── clocks.ts │ │ ├── components.ts │ │ ├── controls.ts │ │ ├── main.ts │ │ ├── nvuiView.ts │ │ ├── roundTraining.ts │ │ └── util.ts │ └── wiki.ts ├── tests │ └── deepLink.test.ts └── tsconfig.json ├── bits ├── README.md ├── css │ ├── _appeal.scss │ ├── _auth.scss │ ├── _blind.scss │ ├── _clas.scss │ ├── _cms.scss │ ├── _cropDialog.scss │ ├── _dailyFeed.scss │ ├── _diagnosticDialog.scss │ ├── _email-confirm.scss │ ├── _event.scss │ ├── _faq.scss │ ├── _feature.scss │ ├── _fide.scss │ ├── _importer.scss │ ├── _lag.scss │ ├── _linkPopup.scss │ ├── _lpv.embed.scss │ ├── _markdown-preview.scss │ ├── _markdown-textarea.scss │ ├── _markdown-toastui.scss │ ├── _mobile.scss │ ├── _not-found.scss │ ├── _oauth.scss │ ├── _page.scss │ ├── _relation.scss │ ├── _search.scss │ ├── _titleRequest.scss │ ├── _variant.scss │ ├── _video.scss │ ├── build │ │ ├── bits.appeal.scss │ │ ├── bits.auth.scss │ │ ├── bits.blind.scss │ │ ├── bits.clas.scss │ │ ├── bits.cms.scss │ │ ├── bits.coach.editor.scss │ │ ├── bits.coach.scss │ │ ├── bits.contact.scss │ │ ├── bits.cropDialog.scss │ │ ├── bits.dailyFeed.scss │ │ ├── bits.diagnosticDialog.scss │ │ ├── bits.email-confirm.scss │ │ ├── bits.event.scss │ │ ├── bits.faq.scss │ │ ├── bits.feature.scss │ │ ├── bits.fide.scss │ │ ├── bits.flairPicker.scss │ │ ├── bits.flatpickr.scss │ │ ├── bits.form3.scss │ │ ├── bits.forum.scss │ │ ├── bits.importer.scss │ │ ├── bits.lag.scss │ │ ├── bits.linkPopup.scss │ │ ├── bits.lpv.embed.scss │ │ ├── bits.lpv.scss │ │ ├── bits.markdownTextarea.scss │ │ ├── bits.mobile.scss │ │ ├── bits.not-found-embed.scss │ │ ├── bits.not-found.scss │ │ ├── bits.oauth.scss │ │ ├── bits.page.scss │ │ ├── bits.plan.scss │ │ ├── bits.practice.index.scss │ │ ├── bits.relation.scss │ │ ├── bits.relay.calendar.scss │ │ ├── bits.relay.form.scss │ │ ├── bits.relay.group.scss │ │ ├── bits.relay.index.scss │ │ ├── bits.search.scss │ │ ├── bits.shepherd.scss │ │ ├── bits.slist.scss │ │ ├── bits.source.scss │ │ ├── bits.streamer.form.scss │ │ ├── bits.streamer.list.scss │ │ ├── bits.streamer.show.scss │ │ ├── bits.tagify.scss │ │ ├── bits.team.scss │ │ ├── bits.titleRequest.scss │ │ ├── bits.tv.embed.scss │ │ ├── bits.tv.games.scss │ │ ├── bits.tv.single.scss │ │ ├── bits.ublog.form.scss │ │ ├── bits.ublog.scss │ │ ├── bits.variant.scss │ │ └── bits.video.scss │ ├── coach │ │ ├── _coach.scss │ │ ├── _editor.scss │ │ ├── _layout.scss │ │ ├── _list.scss │ │ ├── _show.scss │ │ └── _widget.scss │ ├── forum │ │ ├── _completion.scss │ │ ├── _forum.scss │ │ ├── _mention.scss │ │ ├── _post.scss │ │ ├── _reactions.scss │ │ ├── _search.scss │ │ ├── _table.scss │ │ └── _topic.scss │ ├── plan │ │ ├── _icon-shiny.scss │ │ ├── _page.scss │ │ └── _style-selector.scss │ ├── practice │ │ ├── _app.scss │ │ ├── _icons.scss │ │ ├── _index.scss │ │ └── _side.scss │ ├── relay │ │ ├── _announcement.scss │ │ ├── _calendar.scss │ │ ├── _card.scss │ │ ├── _form.scss │ │ ├── _group.scss │ │ ├── _image.scss │ │ └── _relay.scss │ ├── streamer │ │ ├── _form.scss │ │ ├── _header.scss │ │ ├── _list.scss │ │ └── _show.scss │ ├── team │ │ ├── _admin.scss │ │ ├── _declined-request.scss │ │ ├── _forum.scss │ │ ├── _list.scss │ │ ├── _show.scss │ │ ├── _team.scss │ │ └── _tournaments.scss │ ├── tv │ │ ├── _embed.scss │ │ ├── _games.scss │ │ ├── _side.scss │ │ └── _single.scss │ └── ublog │ │ ├── _form.scss │ │ ├── _markup.scss │ │ ├── _post.scss │ │ ├── _topic.scss │ │ └── _ublog.scss ├── package.json ├── patches │ └── @toast-ui__editor.patch ├── src │ ├── bits.captcha.ts │ ├── bits.challengePage.ts │ ├── bits.checkout.ts │ ├── bits.clas.ts │ ├── bits.cms.ts │ ├── bits.coachForm.ts │ ├── bits.confetti.ts │ ├── bits.cropDialog.ts │ ├── bits.devMode.ts │ ├── bits.diagnosticDialog.ts │ ├── bits.dropdownOverflow.ts │ ├── bits.expandText.ts │ ├── bits.fipr.ts │ ├── bits.flairPicker.ts │ ├── bits.flatpickr.ts │ ├── bits.forum.ts │ ├── bits.gameSearch.ts │ ├── bits.infiniteScroll.ts │ ├── bits.login.ts │ ├── bits.lpv.ts │ ├── bits.markdownTextarea.ts │ ├── bits.oauth.inline.ts │ ├── bits.oauthPopup.ts │ ├── bits.passwordComplexity.ts │ ├── bits.plan.ts │ ├── bits.polyglot.ts │ ├── bits.publicChats.ts │ ├── bits.qrcode.ts │ ├── bits.relayForm.ts │ ├── bits.soundMove.ts │ ├── bits.streamerEdit.ts │ ├── bits.team.ts │ ├── bits.teamBattleForm.ts │ ├── bits.tourForm.ts │ ├── bits.ts │ ├── bits.tvGames.ts │ ├── bits.ublog.ts │ ├── bits.ublogForm.ts │ ├── bits.voiceChat.ts │ ├── crop.ts │ ├── flairPicker.ts │ ├── markdownTextarea.ts │ └── toastEditor.ts └── tsconfig.json ├── botDev ├── bin │ └── export-bots.js ├── css │ ├── _asset-dialog.scss │ ├── _base-dialog.scss │ ├── _bot-dev.scss │ ├── _bot-dev.setup.scss │ ├── _edit-dialog.scss │ ├── _from-position.scss │ ├── _hand-of-cards.scss │ ├── _history-dialog.scss │ ├── _json-dialog.scss │ └── build │ │ ├── botDev.scss │ │ └── botDev.setup.scss ├── package.json ├── src │ ├── analyse.ts │ ├── assetDialog.ts │ ├── booksPane.ts │ ├── botDev.ts │ ├── botDev.user.ts │ ├── devAssets.ts │ ├── devBotCtrl.ts │ ├── devCtrl.ts │ ├── devEnv.ts │ ├── devSideView.ts │ ├── devTypes.ts │ ├── devUtil.ts │ ├── editDialog.ts │ ├── filterPane.ts │ ├── gameCtrl.ts │ ├── gameView.ts │ ├── handOfCards.ts │ ├── historyDialog.ts │ ├── localDb.ts │ ├── localGame.ts │ ├── pane.ts │ ├── panes.ts │ ├── pushCtrl.ts │ ├── rateBot.ts │ ├── roundProxy.ts │ ├── schema.ts │ ├── setupDialog.ts │ └── soundEventPane.ts └── tsconfig.json ├── botPlay ├── css │ ├── _colors.scss │ ├── build │ │ └── botPlay.scss │ ├── play │ │ ├── _clock.scss │ │ ├── _layout.scss │ │ ├── _opponent.scss │ │ ├── _play.scss │ │ ├── _table.scss │ │ └── _zen.scss │ └── setup │ │ ├── _card.scss │ │ ├── _dialog.scss │ │ ├── _layout.scss │ │ ├── _ongoing.scss │ │ └── _setup.scss ├── package.json ├── src │ ├── botCtrl.ts │ ├── botPlay.main.ts │ ├── chess.ts │ ├── clock.ts │ ├── debug.ts │ ├── game.ts │ ├── ground.ts │ ├── interfaces.ts │ ├── play │ │ ├── botMove.ts │ │ ├── keyboard.ts │ │ ├── playCtrl.ts │ │ ├── sound.ts │ │ └── view │ │ │ ├── autoScroll.ts │ │ │ ├── boardMenu.ts │ │ │ └── playView.ts │ ├── setup │ │ ├── setupCtrl.ts │ │ └── view │ │ │ ├── setupDialog.ts │ │ │ └── setupView.ts │ └── storage.ts └── tsconfig.json ├── build ├── challenge ├── css │ ├── _challenge.scss │ ├── _page.scss │ └── build │ │ ├── challenge.page.scss │ │ └── challenge.scss ├── package.json ├── src │ ├── challenge.ts │ ├── ctrl.ts │ ├── interfaces.ts │ └── view.ts └── tsconfig.json ├── chart ├── package.json ├── src │ ├── acpl.ts │ ├── chart.game.ts │ ├── chart.lag.ts │ ├── chart.ratingDistribution.ts │ ├── chart.ratingHistory.ts │ ├── chart.relayStats.ts │ ├── division.ts │ ├── index.ts │ ├── interface.ts │ └── movetime.ts └── tsconfig.json ├── cli ├── css │ ├── _clinput.scss │ ├── _help.scss │ └── build │ │ └── cli.help.scss ├── package.json ├── src │ └── cli.ts └── tsconfig.json ├── coordinateTrainer ├── css │ ├── _coordinateTrainer.scss │ ├── _layout.scss │ ├── _svgAnimation.scss │ ├── _zen.scss │ └── build │ │ └── coordinateTrainer.scss ├── package.json ├── src │ ├── chessground.ts │ ├── coordinateTrainer.ts │ ├── ctrl.ts │ ├── interfaces.ts │ ├── side.ts │ └── view.ts └── tsconfig.json ├── dasher ├── css │ ├── _board.scss │ ├── _dasher.scss │ ├── _link.scss │ ├── _piece.scss │ └── build │ │ └── dasher.scss ├── package.json ├── src │ ├── background.ts │ ├── board.ts │ ├── ctrl.ts │ ├── dasher.ts │ ├── interfaces.ts │ ├── langs.ts │ ├── links.ts │ ├── piece.ts │ ├── ping.ts │ ├── sound.ts │ └── util.ts └── tsconfig.json ├── dgt ├── css │ ├── _dgt.scss │ └── build │ │ └── dgt.scss ├── package.json ├── src │ ├── config.ts │ ├── dgt.ts │ └── play.ts └── tsconfig.json ├── editor ├── css │ ├── _editor.scss │ ├── _layout.scss │ ├── _spare.scss │ ├── _tools.scss │ └── build │ │ └── editor.scss ├── package.json ├── src │ ├── chessground.ts │ ├── ctrl.ts │ ├── editor.ts │ ├── interfaces.ts │ └── view.ts └── tsconfig.json ├── eslint.config.mjs ├── insight ├── css │ ├── _filters.scss │ ├── _insight.scss │ └── build │ │ └── insight.scss ├── package.json ├── src │ ├── axis.ts │ ├── boards.ts │ ├── chart.ts │ ├── ctrl.ts │ ├── filters.ts │ ├── global.d.ts │ ├── help.ts │ ├── info.ts │ ├── insight.refresh.ts │ ├── insight.ts │ ├── interfaces.ts │ ├── multipleSelect.ts │ ├── presets.ts │ ├── table.ts │ └── view.ts └── tsconfig.json ├── keyboardMove ├── css │ ├── _keyboardMove.scss │ └── build │ │ └── keyboardMove.scss ├── package.json ├── src │ ├── exports.ts │ ├── keyboardChecker.ts │ ├── keyboardMove.ts │ └── keyboardSubmit.ts ├── tests │ └── keyboardSubmit.test.ts └── tsconfig.json ├── learn ├── css │ ├── _board.scss │ ├── _layout.scss │ ├── _learn.scss │ ├── _map.scss │ ├── _screen.scss │ ├── _side-home.scss │ ├── _side-map.scss │ ├── _table.scss │ └── build │ │ └── learn.scss ├── package.json ├── src │ ├── apple.ts │ ├── assert.ts │ ├── chess.ts │ ├── chessground.ts │ ├── ctrl.ts │ ├── hashRouting.ts │ ├── item.ts │ ├── learn.ts │ ├── levelCtrl.ts │ ├── mapSideView.ts │ ├── progressView.ts │ ├── promotionCtrl.ts │ ├── promotionView.ts │ ├── run │ │ ├── congrats.ts │ │ ├── runCtrl.ts │ │ ├── runView.ts │ │ ├── stageComplete.ts │ │ └── stageStarting.ts │ ├── scenario.ts │ ├── score.ts │ ├── sideCtrl.ts │ ├── sound.ts │ ├── stage │ │ ├── bishop.ts │ │ ├── capture.ts │ │ ├── castling.ts │ │ ├── check1.ts │ │ ├── check2.ts │ │ ├── checkmate1.ts │ │ ├── combat.ts │ │ ├── enpassant.ts │ │ ├── fork.ts │ │ ├── king.ts │ │ ├── knight.ts │ │ ├── list.ts │ │ ├── outOfCheck.ts │ │ ├── pawn.ts │ │ ├── protection.ts │ │ ├── queen.ts │ │ ├── rook.ts │ │ ├── setup.ts │ │ ├── stalemate.ts │ │ └── value.ts │ ├── storage.ts │ ├── timeouts.ts │ ├── util.ts │ └── view.ts └── tsconfig.json ├── lib ├── css │ ├── _embed.scss │ ├── _lichess.scss │ ├── _plugin.scss │ ├── abstract │ │ ├── _all.scss │ │ ├── _box.scss │ │ ├── _dir.scss │ │ ├── _extends.scss │ │ ├── _flex.scss │ │ ├── _fluid-size.scss │ │ ├── _functions.scss │ │ ├── _licon.scss │ │ ├── _media-queries.scss │ │ ├── _mixins.scss │ │ ├── _patron-colors.scss │ │ ├── _theme.scss │ │ ├── _uniboard.scss │ │ ├── _variables.scss │ │ └── _z-index.scss │ ├── base │ │ ├── _data-icon.scss │ │ ├── _elements.scss │ │ ├── _form.scss │ │ ├── _scrollbar.scss │ │ ├── _typography.scss │ │ ├── _unread.scss │ │ └── _util.scss │ ├── build │ │ ├── lib.board-3d.scss │ │ ├── lib.theme.all.scss │ │ └── lib.theme.embed.scss │ ├── ceval │ │ ├── _ceval.scss │ │ ├── _ctrl.scss │ │ ├── _eval-gauge.scss │ │ ├── _pv.scss │ │ └── _settings.scss │ ├── chat │ │ ├── _chat.mod.scss │ │ ├── _chat.scss │ │ ├── _discussion.scss │ │ ├── _members.scss │ │ ├── _preset.scss │ │ ├── _tab.scss │ │ ├── _voicechat.scss │ │ └── build │ │ │ └── lib.chat.mod.scss │ ├── chess │ │ ├── _blindfold.scss │ │ ├── _control.scss │ │ ├── _promotion.scss │ │ ├── _variant-style.scss │ │ └── _zh-pocket.scss │ ├── component │ │ ├── _announce.scss │ │ ├── _bar-glider.scss │ │ ├── _blind-mode.scss │ │ ├── _board-menu.scss │ │ ├── _board-resize.scss │ │ ├── _board.scss │ │ ├── _box.scss │ │ ├── _btn-rack.scss │ │ ├── _button.scss │ │ ├── _calendar-mselect.scss │ │ ├── _chart.scss │ │ ├── _color-icon.scss │ │ ├── _complete.scss │ │ ├── _context-streamer.scss │ │ ├── _continue-with.scss │ │ ├── _copy-me.scss │ │ ├── _crosstable.scss │ │ ├── _dialog.scss │ │ ├── _fbt.scss │ │ ├── _fire-trophy.scss │ │ ├── _flash-absolute.scss │ │ ├── _flash.scss │ │ ├── _friend-box.scss │ │ ├── _glowing.scss │ │ ├── _help.scss │ │ ├── _hover-text.scss │ │ ├── _loader.scss │ │ ├── _markdown-img-resizer.scss │ │ ├── _markdown.scss │ │ ├── _mascot.scss │ │ ├── _material.scss │ │ ├── _mini-game.scss │ │ ├── _mselect.scss │ │ ├── _nav-tree.scss │ │ ├── _now-playing.scss │ │ ├── _pagination.scss │ │ ├── _pgn-viewer.scss │ │ ├── _podium.scss │ │ ├── _power-tip.scss │ │ ├── _quote.scss │ │ ├── _reconnecting.scss │ │ ├── _signal.scss │ │ ├── _slist.scss │ │ ├── _sparkline.scss │ │ ├── _subnav.scss │ │ ├── _tablesort.scss │ │ ├── _tabs-horiz.scss │ │ ├── _tagify.scss │ │ ├── _toggle-box.scss │ │ ├── _ublog-card.scss │ │ ├── _user-link.scss │ │ ├── _vertical-resize.scss │ │ └── _zen-toggle.scss │ ├── form │ │ ├── _captcha.scss │ │ ├── _cmn-toggle.scss │ │ ├── _emoji-picker.scss │ │ ├── _form3.scss │ │ ├── _image.scss │ │ ├── _password.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ └── _ui-slider.scss │ ├── game │ │ ├── _clock.scss │ │ └── _row.scss │ ├── header │ │ ├── _buttons.scss │ │ ├── _header.scss │ │ ├── _title.scss │ │ ├── _topnav-hidden.scss │ │ └── _topnav-visible.scss │ ├── layout │ │ ├── _base.scss │ │ ├── _page-menu.scss │ │ ├── _uniboard.scss │ │ └── _vars.scss │ ├── puz │ │ ├── _clock.scss │ │ ├── _combo.scss │ │ ├── _history.scss │ │ ├── _puz.scss │ │ └── _side.scss │ ├── setup │ │ └── _colorChoice.scss │ ├── theme │ │ ├── README.md │ │ ├── _font-face.scss │ │ ├── _pieces.scss │ │ ├── _theme.default.scss │ │ ├── _theme.light.scss │ │ ├── _theme.transp.scss │ │ └── board │ │ │ ├── _board-2d.scss │ │ │ ├── _board-3d.scss │ │ │ ├── _boards.scss │ │ │ ├── _chessground.scss │ │ │ ├── _coords-colors.scss │ │ │ ├── _coords-in.scss │ │ │ └── _coords.scss │ ├── tree │ │ └── _tree.scss │ └── vendor │ │ ├── _flatpickr.scss │ │ └── _multiple-select.scss ├── package.json ├── src │ ├── algo.ts │ ├── api.ts │ ├── async.ts │ ├── bigFileStorage.ts │ ├── bot │ │ ├── bot.ts │ │ ├── botLoader.ts │ │ ├── filter.ts │ │ ├── filters.ts │ │ ├── filters │ │ │ ├── aggression.ts │ │ │ └── pawnStructure.ts │ │ ├── lichessBook.ts │ │ ├── movetime.ts │ │ └── types.ts │ ├── ceval │ │ ├── cache.ts │ │ ├── ceval.ts │ │ ├── ctrl.ts │ │ ├── engines │ │ │ ├── engines.ts │ │ │ ├── externalEngine.ts │ │ │ ├── simpleEngine.ts │ │ │ ├── stockfishWebEngine.ts │ │ │ └── threadedEngine.ts │ │ ├── index.ts │ │ ├── protocol.ts │ │ ├── types.ts │ │ ├── util.ts │ │ ├── view │ │ │ ├── main.ts │ │ │ └── settings.ts │ │ └── winningChances.ts │ ├── chat │ │ ├── chatCtrl.ts │ │ ├── discussion.ts │ │ ├── interfaces.ts │ │ ├── moderation.ts │ │ ├── note.ts │ │ ├── preset.ts │ │ ├── renderChat.ts │ │ ├── spam.ts │ │ ├── standalone.ts │ │ └── xhr.ts │ ├── chessgroundResize.ts │ ├── common.ts │ ├── data.ts │ ├── device.ts │ ├── event.ts │ ├── game │ │ ├── chess.ts │ │ ├── clock │ │ │ ├── clockCtrl.ts │ │ │ ├── clockView.ts │ │ │ └── clockWidget.ts │ │ ├── glyphs.ts │ │ ├── ground.ts │ │ ├── hash.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── material.ts │ │ ├── moveRootCtrl.ts │ │ ├── perfIcons.ts │ │ ├── polyglot.ts │ │ ├── promotion.ts │ │ ├── router.ts │ │ ├── sanWriter.ts │ │ ├── status.ts │ │ ├── uciChar.ts │ │ └── view │ │ │ ├── material.ts │ │ │ └── status.ts │ ├── highlight.ts │ ├── i18n.ts │ ├── index.ts │ ├── licon.ts │ ├── menuHover.ts │ ├── notification.ts │ ├── nvui │ │ ├── chess.ts │ │ ├── command.ts │ │ ├── directionScan.ts │ │ ├── handler.ts │ │ ├── notify.ts │ │ ├── render.ts │ │ └── setting.ts │ ├── objectStorage.ts │ ├── permalog.ts │ ├── pointer.ts │ ├── poolRangeStorage.ts │ ├── prefs.ts │ ├── pubsub.ts │ ├── puz │ │ ├── clock.ts │ │ ├── combo.ts │ │ ├── current.ts │ │ ├── filters.ts │ │ ├── interfaces.ts │ │ ├── run.ts │ │ ├── sign.ts │ │ ├── util.ts │ │ └── view │ │ │ ├── chessground.ts │ │ │ ├── clock.ts │ │ │ ├── history.ts │ │ │ └── util.ts │ ├── richText.ts │ ├── setup │ │ ├── color.ts │ │ ├── interfaces.ts │ │ ├── option.ts │ │ ├── timeControl.ts │ │ └── view │ │ │ ├── color.ts │ │ │ └── timeControl.ts │ ├── socket.ts │ ├── storage.ts │ ├── tablesort.ts │ ├── tree │ │ ├── index.ts │ │ ├── ops.ts │ │ ├── path.ts │ │ └── tree.ts │ ├── view │ │ ├── boardMenu.ts │ │ ├── controls.ts │ │ ├── dialog.ts │ │ ├── dialogs.ts │ │ ├── index.ts │ │ ├── linkPopup.ts │ │ ├── markdownImgResizer.ts │ │ ├── miniBoard.ts │ │ ├── snabbdom.ts │ │ ├── userComplete.ts │ │ ├── userLink.ts │ │ ├── util.ts │ │ ├── verticalResize.ts │ │ └── watchers.ts │ ├── wakeLock.ts │ └── xhr.ts ├── tests │ ├── command.test.ts │ ├── device.test.ts │ ├── nvui.test.ts │ ├── once.test.ts │ ├── pubsub.test.ts │ ├── richText.test.ts │ ├── spam.test.ts │ ├── status.test.ts │ ├── timeago.test.ts │ └── winningChances.test.ts └── tsconfig.json ├── lint-staged.config.mjs ├── lobby ├── css │ ├── _about.scss │ ├── _box.scss │ ├── _carousel.scss │ ├── _defs.scss │ ├── _feed.scss │ ├── _layout.scss │ ├── _lobby.scss │ ├── _setup.scss │ ├── _spotlight.scss │ ├── _stream.scss │ ├── _support.scss │ ├── _table.scss │ ├── _timeline.scss │ ├── app │ │ ├── _app.scss │ │ ├── _hook-chart.scss │ │ ├── _hook-filters.scss │ │ ├── _hook-list.scss │ │ ├── _playing.scss │ │ └── _pool.scss │ └── build │ │ ├── lobby.scss │ │ └── lobby.setup.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── filter.ts │ ├── form.ts │ ├── hookRepo.ts │ ├── interfaces.ts │ ├── lobby.inline.ts │ ├── lobby.ts │ ├── main.ts │ ├── options.ts │ ├── seekRepo.ts │ ├── setupCtrl.ts │ ├── socket.ts │ ├── store.ts │ ├── variant.ts │ ├── view │ │ ├── carousel.ts │ │ ├── correspondence.ts │ │ ├── main.ts │ │ ├── playing.ts │ │ ├── pools.ts │ │ ├── realTime │ │ │ ├── chart.ts │ │ │ ├── filter.ts │ │ │ ├── list.ts │ │ │ └── main.ts │ │ ├── setup │ │ │ ├── components │ │ │ │ ├── colorButtons.ts │ │ │ │ ├── fenInput.ts │ │ │ │ ├── gameModeButtons.ts │ │ │ │ ├── levelButtons.ts │ │ │ │ ├── ratingDifferenceSliders.ts │ │ │ │ ├── ratingView.ts │ │ │ │ └── variantPicker.ts │ │ │ └── modal.ts │ │ ├── table.ts │ │ ├── tabs.ts │ │ └── util.ts │ └── xhr.ts └── tsconfig.json ├── mod ├── css │ ├── _activity.scss │ ├── _communication.scss │ ├── _crud.scss │ ├── _dev.scss │ ├── _games.scss │ ├── _gamify.scss │ ├── _image-queue.scss │ ├── _impersonate.scss │ ├── _inquiry.scss │ ├── _irwin.scss │ ├── _misc.scss │ ├── _mod-timeline.scss │ ├── _permission.scss │ ├── _practice.scss │ ├── _publicChats.scss │ ├── _report.form.scss │ ├── _report.scss │ ├── _user-marks.scss │ ├── _user.scss │ └── build │ │ ├── mod.activity.scss │ │ ├── mod.communication.scss │ │ ├── mod.form.scss │ │ ├── mod.games.scss │ │ ├── mod.gamify.scss │ │ ├── mod.imageQueue.scss │ │ ├── mod.impersonate.scss │ │ ├── mod.inquiry.scss │ │ ├── mod.misc.scss │ │ ├── mod.permission.scss │ │ ├── mod.publicChats.scss │ │ ├── mod.report.form.scss │ │ ├── mod.report.scss │ │ └── mod.user.scss ├── package.json ├── src │ ├── checkBoxes.ts │ ├── mod.activity.ts │ ├── mod.autolink.ts │ ├── mod.emailConfirmation.ts │ ├── mod.games.ts │ ├── mod.inquiry.ts │ ├── mod.search.ts │ ├── mod.teamAdmin.ts │ └── mod.user.ts ├── tests │ └── mod.autolink.test.ts └── tsconfig.json ├── msg ├── css │ ├── _convo.scss │ ├── _convoMsgs.scss │ ├── _msg.scss │ ├── _side.scss │ └── build │ │ └── msg.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── interfaces.ts │ ├── msg.ts │ ├── network.ts │ └── view │ │ ├── actions.ts │ │ ├── contact.ts │ │ ├── convo.ts │ │ ├── enhance.ts │ │ ├── interact.ts │ │ ├── main.ts │ │ ├── msgs.ts │ │ ├── scroller.ts │ │ └── search.ts ├── tests │ └── enhance.test.ts └── tsconfig.json ├── notify ├── css │ ├── _notify.scss │ └── build │ │ └── notify.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── interfaces.ts │ ├── notify.ts │ ├── renderers.ts │ └── view.ts └── tsconfig.json ├── opening ├── css │ ├── _config.scss │ ├── _games.scss │ ├── _next.scss │ ├── _opening.scss │ ├── _panels.scss │ ├── _result.scss │ ├── _search.scss │ ├── _show.scss │ ├── _tree.scss │ ├── _wiki.scss │ └── build │ │ └── opening.scss ├── package.json ├── src │ ├── chart.ts │ ├── interfaces.ts │ ├── opening.ts │ ├── panels.ts │ ├── search.ts │ └── wiki.ts └── tsconfig.json ├── puzzle ├── css │ ├── _after.scss │ ├── _dashboard.scss │ ├── _history.scss │ ├── _layout.scss │ ├── _of-player.scss │ ├── _openings.scss │ ├── _page.scss │ ├── _puzzle.scss │ ├── _session.scss │ ├── _side.scss │ ├── _themes.scss │ ├── _tools.scss │ ├── _zen.scss │ └── build │ │ ├── puzzle.dashboard.scss │ │ ├── puzzle.page.scss │ │ └── puzzle.scss ├── package.json ├── src │ ├── autoShape.ts │ ├── control.ts │ ├── ctrl.ts │ ├── interfaces.ts │ ├── keyboard.ts │ ├── moveTest.ts │ ├── moveTree.ts │ ├── puzzle.dashboard.ts │ ├── puzzle.nvui.ts │ ├── puzzle.opening.ts │ ├── puzzle.ts │ ├── report.ts │ ├── session.ts │ ├── streak.ts │ ├── view │ │ ├── after.ts │ │ ├── boardMenu.ts │ │ ├── chessground.ts │ │ ├── feedback.ts │ │ ├── main.ts │ │ ├── nvuiView.ts │ │ ├── side.ts │ │ ├── theme.ts │ │ └── tree.ts │ └── xhr.ts └── tsconfig.json ├── racer ├── css │ ├── _countdown.scss │ ├── _home.scss │ ├── _race.scss │ ├── _racer.scss │ ├── _zen.scss │ └── build │ │ ├── racer.home.scss │ │ └── racer.scss ├── package.json ├── src │ ├── boost.ts │ ├── config.ts │ ├── countdown.ts │ ├── ctrl.ts │ ├── interfaces.ts │ ├── racer.ts │ └── view │ │ ├── board.ts │ │ ├── main.ts │ │ └── race.ts └── tsconfig.json ├── recap ├── css │ ├── _recap.scss │ └── build │ │ └── recap.scss ├── package.json ├── src │ ├── constants.ts │ ├── interfaces.ts │ ├── recap.ts │ ├── slides.ts │ ├── swiper.ts │ ├── ui.ts │ ├── util.ts │ └── view.ts ├── tests │ └── duration.test.ts └── tsconfig.json ├── round ├── css │ ├── _app-layout.scss │ ├── _clock.scss │ ├── _constants.scss │ ├── _control.scss │ ├── _forecast-info.scss │ ├── _icon.scss │ ├── _layout.scss │ ├── _material.scss │ ├── _meta.scss │ ├── _moves-col1.scss │ ├── _moves-col2.scss │ ├── _moves.scss │ ├── _now-playing.scss │ ├── _nvui.scss │ ├── _round.scss │ ├── _side.scss │ ├── _table.scss │ ├── _tour-standing.scss │ ├── _user.scss │ ├── _zen.scss │ ├── _zh.scss │ └── build │ │ ├── round.nvui.scss │ │ ├── round.scss │ │ ├── round.tour-standing.scss │ │ └── round.zh.scss ├── package.json ├── src │ ├── atomic.ts │ ├── blur.ts │ ├── cevalSub.ts │ ├── corresClock │ │ ├── corresClockCtrl.ts │ │ └── corresClockView.ts │ ├── crazy │ │ ├── crazyCtrl.ts │ │ └── crazyView.ts │ ├── ctrl.ts │ ├── ground.ts │ ├── interfaces.ts │ ├── keyboard.ts │ ├── moveOn.ts │ ├── plugins │ │ ├── round.tour.ts │ │ └── round.yeet.ts │ ├── premove.ts │ ├── round.nvui.ts │ ├── round.ts │ ├── server.ts │ ├── socket.ts │ ├── title.ts │ ├── tourStanding.ts │ ├── transientMove.ts │ ├── util.ts │ ├── view │ │ ├── boardMenu.ts │ │ ├── button.ts │ │ ├── clock.ts │ │ ├── expiration.ts │ │ ├── main.ts │ │ ├── nvuiView.ts │ │ ├── replay.ts │ │ ├── table.ts │ │ └── user.ts │ └── xhr.ts ├── tests │ └── premove.test.ts ├── tsconfig.json └── types │ └── ab.d.ts ├── serviceWorker ├── .eslintrc.json ├── package.json ├── src │ └── serviceWorker.ts └── tsconfig.json ├── simul ├── css │ ├── _created.scss │ ├── _form.scss │ ├── _layout.scss │ ├── _list.scss │ ├── _show.scss │ ├── _side.scss │ ├── _started.scss │ ├── _user-list.scss │ └── build │ │ ├── simul.form.scss │ │ ├── simul.list.scss │ │ ├── simul.show.scss │ │ └── simul.user.list.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── interfaces.ts │ ├── simul.home.ts │ ├── simul.ts │ ├── socket.ts │ ├── view │ │ ├── created.ts │ │ ├── main.ts │ │ ├── pairings.ts │ │ ├── results.ts │ │ └── util.ts │ └── xhr.ts └── tsconfig.json ├── site ├── README.md ├── css │ └── build │ │ └── site.scss ├── package.json ├── src │ ├── announce.ts │ ├── asset.ts │ ├── boot.ts │ ├── domHandlers.ts │ ├── friends.ts │ ├── mousetrap.ts │ ├── polyfill.ts │ ├── powertip.ts │ ├── reload.ts │ ├── renderTimeAgo.ts │ ├── serviceWorker.ts │ ├── site.inline.ts │ ├── site.lpvEmbed.ts │ ├── site.puzzleEmbed.ts │ ├── site.ts │ ├── site.tvEmbed.ts │ ├── sound.ts │ ├── topBar.ts │ └── unhandledError.ts └── tsconfig.json ├── storm ├── css │ ├── _dashboard.scss │ ├── _end.scss │ ├── _high.scss │ ├── _play-again.scss │ ├── _play.scss │ ├── _storm.scss │ ├── _zen.scss │ └── build │ │ ├── storm.dashboard.scss │ │ └── storm.scss ├── package.json ├── src │ ├── config.ts │ ├── ctrl.ts │ ├── interfaces.ts │ ├── storm.ts │ ├── view │ │ ├── end.ts │ │ └── main.ts │ └── xhr.ts └── tsconfig.json ├── swiss ├── css │ ├── _app-control.scss │ ├── _app-header.scss │ ├── _app-notice.scss │ ├── _app-standing.scss │ ├── _boards.scss │ ├── _form.scss │ ├── _home.scss │ ├── _layout.scss │ ├── _player-info.scss │ ├── _round-pairings.scss │ ├── _show.scss │ ├── _side.scss │ ├── _stats.scss │ └── build │ │ ├── swiss.form.scss │ │ ├── swiss.home.scss │ │ └── swiss.show.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── interfaces.ts │ ├── pagination.ts │ ├── search.ts │ ├── socket.ts │ ├── swiss.ts │ ├── util.ts │ ├── view │ │ ├── boards.ts │ │ ├── header.ts │ │ ├── main.ts │ │ ├── playerInfo.ts │ │ ├── podium.ts │ │ ├── standing.ts │ │ └── util.ts │ └── xhr.ts └── tsconfig.json ├── test ├── tournament ├── css │ ├── _actor-info.scss │ ├── _app-control.scss │ ├── _app-header.scss │ ├── _app-notice.scss │ ├── _app-standing.scss │ ├── _calendar.scss │ ├── _duel.scss │ ├── _featured.scss │ ├── _layout.scss │ ├── _leaderboard.scss │ ├── _mod.scss │ ├── _player-info.scss │ ├── _show.scss │ ├── _side.scss │ ├── _stats.scss │ ├── _table.scss │ ├── _team-battle.scss │ ├── _team-info.scss │ ├── _user.scss │ ├── build │ │ ├── tournament.calendar.scss │ │ ├── tournament.form.scss │ │ ├── tournament.history.scss │ │ ├── tournament.home.scss │ │ ├── tournament.leaderboard.scss │ │ ├── tournament.mod.scss │ │ ├── tournament.show.scss │ │ ├── tournament.show.team-battle.scss │ │ └── tournament.user.scss │ └── schedule │ │ ├── _finished.scss │ │ ├── _form.scss │ │ ├── _history.scss │ │ ├── _home.scss │ │ ├── _layout.scss │ │ ├── _schedule.scss │ │ └── _side.scss ├── package.json ├── src │ ├── ctrl.ts │ ├── interfaces.ts │ ├── pagination.ts │ ├── search.ts │ ├── socket.ts │ ├── sound.ts │ ├── tournament.calendar.ts │ ├── tournament.schedule.ts │ ├── tournament.ts │ ├── view │ │ ├── arena.ts │ │ ├── battle.ts │ │ ├── button.ts │ │ ├── calendarView.ts │ │ ├── created.ts │ │ ├── finished.ts │ │ ├── header.ts │ │ ├── main.ts │ │ ├── playerInfo.ts │ │ ├── scheduleView.ts │ │ ├── started.ts │ │ ├── table.ts │ │ ├── teamInfo.ts │ │ └── util.ts │ └── xhr.ts └── tsconfig.json ├── tsconfig.base.json ├── tutor ├── css │ ├── _card.scss │ ├── _grade.scss │ ├── _home.scss │ ├── _opening.scss │ ├── _openings.scss │ ├── _phases.scss │ ├── _util.scss │ └── build │ │ └── tutor.scss ├── package.json ├── src │ └── tutor.ts └── tsconfig.json ├── user ├── css │ ├── _account.scss │ ├── _activity.scss │ ├── _games.scss │ ├── _header.scss │ ├── _list-bot.scss │ ├── _list.scss │ ├── _note-zone.scss │ ├── _number-menu.scss │ ├── _perf-stat.scss │ ├── _profile.scss │ ├── _rating.stats.scss │ ├── _search.scss │ ├── _show.scss │ ├── _sub-rating.scss │ ├── _trophy.scss │ └── build │ │ ├── user.account.scss │ │ ├── user.activity.scss │ │ ├── user.bot.list.scss │ │ ├── user.list.scss │ │ ├── user.perf.stat.scss │ │ ├── user.rating.stats.scss │ │ ├── user.show.scss │ │ └── user.show.search.scss ├── package.json ├── src │ ├── user.account.ts │ ├── user.gamesDownload.ts │ └── user.ts └── tsconfig.json └── voice ├── README.md ├── css ├── _voice.scss ├── _voiceMove.help.scss └── build │ ├── voice.move.help.scss │ └── voice.scss ├── grammar ├── move-de.json ├── move-en.json ├── move-fr.json ├── move-it.json ├── move-pl.json ├── move-ru.json ├── move-sv.json ├── move-tr.json └── move-vi.json ├── lexicon ├── move-de-lex.json ├── move-en-lex.json ├── move-en-patch.json ├── move-fr-lex.json ├── move-it-lex.json ├── move-pl-lex.json ├── move-ru-lex.json ├── move-sv-lex.json ├── move-tr-lex.json └── move-vi-lex.json ├── makeGrammar.mts ├── package.json ├── src ├── interfaces.ts ├── mic.ts ├── move │ ├── arrows.ts │ ├── interfaces.ts │ ├── view.ts │ └── voice.move.ts ├── switch.ts ├── util.ts ├── view.ts ├── voice.ts └── voice.vosk.ts └── tsconfig.json /.envrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.ignore -------------------------------------------------------------------------------- /.lfsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.lfsconfig -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v24.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.prettierignore -------------------------------------------------------------------------------- /.sbtopts.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.sbtopts.default -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.scala-steward.conf -------------------------------------------------------------------------------- /.scalafix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.scalafix.conf -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/COPYING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/README.md -------------------------------------------------------------------------------- /app/Env.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/Env.scala -------------------------------------------------------------------------------- /app/Lila.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/Lila.scala -------------------------------------------------------------------------------- /app/UiEnv.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/UiEnv.scala -------------------------------------------------------------------------------- /app/http/CtrlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/http/CtrlPage.scala -------------------------------------------------------------------------------- /app/http/KeyPages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/http/KeyPages.scala -------------------------------------------------------------------------------- /app/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/package.scala -------------------------------------------------------------------------------- /app/views/analyse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/analyse.scala -------------------------------------------------------------------------------- /app/views/clas.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/clas.scala -------------------------------------------------------------------------------- /app/views/coach.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/coach.scala -------------------------------------------------------------------------------- /app/views/fide.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/fide.scala -------------------------------------------------------------------------------- /app/views/game/ui.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/game/ui.scala -------------------------------------------------------------------------------- /app/views/insight.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/insight.scala -------------------------------------------------------------------------------- /app/views/mod/ui.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/mod/ui.scala -------------------------------------------------------------------------------- /app/views/msg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/msg.scala -------------------------------------------------------------------------------- /app/views/relay.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/relay.scala -------------------------------------------------------------------------------- /app/views/report.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/report.scala -------------------------------------------------------------------------------- /app/views/simul.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/simul.scala -------------------------------------------------------------------------------- /app/views/site.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/site.scala -------------------------------------------------------------------------------- /app/views/study.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/study.scala -------------------------------------------------------------------------------- /app/views/swiss.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/swiss.scala -------------------------------------------------------------------------------- /app/views/title.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/title.scala -------------------------------------------------------------------------------- /app/views/tutor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/tutor.scala -------------------------------------------------------------------------------- /app/views/tv.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/tv.scala -------------------------------------------------------------------------------- /app/views/ublog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/ublog.scala -------------------------------------------------------------------------------- /app/views/ui.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/ui.scala -------------------------------------------------------------------------------- /app/views/user/ui.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/app/views/user/ui.scala -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/cli -------------------------------------------------------------------------------- /bin/cli-prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/cli-prod -------------------------------------------------------------------------------- /bin/dependency-graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/dependency-graph.py -------------------------------------------------------------------------------- /bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/deploy -------------------------------------------------------------------------------- /bin/diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/diagnostic -------------------------------------------------------------------------------- /bin/flair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/flair/README.md -------------------------------------------------------------------------------- /bin/flair/custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/flair/custom.txt -------------------------------------------------------------------------------- /bin/flair/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/flair/generate.ts -------------------------------------------------------------------------------- /bin/gen/board-thumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/gen/board-thumbnail -------------------------------------------------------------------------------- /bin/gen/favicons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/gen/favicons -------------------------------------------------------------------------------- /bin/gen/licon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/gen/licon.py -------------------------------------------------------------------------------- /bin/i18n-file-gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/i18n-file-gen.ts -------------------------------------------------------------------------------- /bin/mongodb/clas_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/clas_v2.js -------------------------------------------------------------------------------- /bin/mongodb/game3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/game3.js -------------------------------------------------------------------------------- /bin/mongodb/game4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/game4.js -------------------------------------------------------------------------------- /bin/mongodb/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/history.js -------------------------------------------------------------------------------- /bin/mongodb/history2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/history2.js -------------------------------------------------------------------------------- /bin/mongodb/horde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/horde.js -------------------------------------------------------------------------------- /bin/mongodb/indexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/indexes.js -------------------------------------------------------------------------------- /bin/mongodb/msg-dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/msg-dump.js -------------------------------------------------------------------------------- /bin/mongodb/play21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/play21.js -------------------------------------------------------------------------------- /bin/mongodb/pref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/pref.js -------------------------------------------------------------------------------- /bin/mongodb/survivor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/survivor.js -------------------------------------------------------------------------------- /bin/mongodb/swiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/swiss.js -------------------------------------------------------------------------------- /bin/mongodb/tor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/tor.js -------------------------------------------------------------------------------- /bin/mongodb/user3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/user3.js -------------------------------------------------------------------------------- /bin/mongodb/wesley02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/wesley02.js -------------------------------------------------------------------------------- /bin/mongodb/wid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/wid.js -------------------------------------------------------------------------------- /bin/mongodb/winner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/mongodb/winner.js -------------------------------------------------------------------------------- /bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/package.json -------------------------------------------------------------------------------- /bin/schlawg-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/schlawg-dev -------------------------------------------------------------------------------- /bin/svg-fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/svg-fix -------------------------------------------------------------------------------- /bin/trans-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/trans-issues -------------------------------------------------------------------------------- /bin/trans-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/trans-lint -------------------------------------------------------------------------------- /bin/trans-unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/trans-unused -------------------------------------------------------------------------------- /bin/ublog-automod.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/ublog-automod.mjs -------------------------------------------------------------------------------- /bin/validate-flair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/bin/validate-flair -------------------------------------------------------------------------------- /conf/appeal.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/appeal.routes -------------------------------------------------------------------------------- /conf/base.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/base.conf -------------------------------------------------------------------------------- /conf/clas.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/clas.routes -------------------------------------------------------------------------------- /conf/logger.dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/logger.dev.xml -------------------------------------------------------------------------------- /conf/report.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/report.routes -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/routes -------------------------------------------------------------------------------- /conf/team.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/conf/team.routes -------------------------------------------------------------------------------- /cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/cron/README.md -------------------------------------------------------------------------------- /cron/geoip-update-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/cron/geoip-update-db.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/crowdin.yml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/flake.nix -------------------------------------------------------------------------------- /lila.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/lila.sh -------------------------------------------------------------------------------- /modules/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/modules/web/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /project/I18n.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/project/I18n.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /public/architecture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/architecture.xml -------------------------------------------------------------------------------- /public/data/bot/README.md: -------------------------------------------------------------------------------- 1 | dynamic bot assets, not to be versioned. 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fide/fed-webp/BLR.webp: -------------------------------------------------------------------------------- 1 | W.webp -------------------------------------------------------------------------------- /public/fide/fed-webp/RUS.webp: -------------------------------------------------------------------------------- 1 | W.webp -------------------------------------------------------------------------------- /public/fide/fed/AFG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AFG.svg -------------------------------------------------------------------------------- /public/fide/fed/AHO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AHO.svg -------------------------------------------------------------------------------- /public/fide/fed/ALB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ALB.svg -------------------------------------------------------------------------------- /public/fide/fed/ALG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ALG.svg -------------------------------------------------------------------------------- /public/fide/fed/AND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AND.svg -------------------------------------------------------------------------------- /public/fide/fed/ANG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ANG.svg -------------------------------------------------------------------------------- /public/fide/fed/ANT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ANT.svg -------------------------------------------------------------------------------- /public/fide/fed/ARG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ARG.svg -------------------------------------------------------------------------------- /public/fide/fed/ARM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ARM.svg -------------------------------------------------------------------------------- /public/fide/fed/ARU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ARU.svg -------------------------------------------------------------------------------- /public/fide/fed/AUS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AUS.svg -------------------------------------------------------------------------------- /public/fide/fed/AUT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AUT.svg -------------------------------------------------------------------------------- /public/fide/fed/AZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/AZE.svg -------------------------------------------------------------------------------- /public/fide/fed/BAH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BAH.svg -------------------------------------------------------------------------------- /public/fide/fed/BAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BAN.svg -------------------------------------------------------------------------------- /public/fide/fed/BAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BAR.svg -------------------------------------------------------------------------------- /public/fide/fed/BDI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BDI.svg -------------------------------------------------------------------------------- /public/fide/fed/BEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BEL.svg -------------------------------------------------------------------------------- /public/fide/fed/BER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BER.svg -------------------------------------------------------------------------------- /public/fide/fed/BHU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BHU.svg -------------------------------------------------------------------------------- /public/fide/fed/BIH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BIH.svg -------------------------------------------------------------------------------- /public/fide/fed/BIZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BIZ.svg -------------------------------------------------------------------------------- /public/fide/fed/BLR.svg: -------------------------------------------------------------------------------- 1 | W.svg -------------------------------------------------------------------------------- /public/fide/fed/BOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BOL.svg -------------------------------------------------------------------------------- /public/fide/fed/BOT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BOT.svg -------------------------------------------------------------------------------- /public/fide/fed/BRA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BRA.svg -------------------------------------------------------------------------------- /public/fide/fed/BRN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BRN.svg -------------------------------------------------------------------------------- /public/fide/fed/BRU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BRU.svg -------------------------------------------------------------------------------- /public/fide/fed/BUL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BUL.svg -------------------------------------------------------------------------------- /public/fide/fed/BUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/BUR.svg -------------------------------------------------------------------------------- /public/fide/fed/CAF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CAF.svg -------------------------------------------------------------------------------- /public/fide/fed/CAM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CAM.svg -------------------------------------------------------------------------------- /public/fide/fed/CAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CAN.svg -------------------------------------------------------------------------------- /public/fide/fed/CAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CAY.svg -------------------------------------------------------------------------------- /public/fide/fed/CGO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CGO.svg -------------------------------------------------------------------------------- /public/fide/fed/CHA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CHA.svg -------------------------------------------------------------------------------- /public/fide/fed/CHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CHI.svg -------------------------------------------------------------------------------- /public/fide/fed/CHN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CHN.svg -------------------------------------------------------------------------------- /public/fide/fed/CIV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CIV.svg -------------------------------------------------------------------------------- /public/fide/fed/CMR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CMR.svg -------------------------------------------------------------------------------- /public/fide/fed/COD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/COD.svg -------------------------------------------------------------------------------- /public/fide/fed/COL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/COL.svg -------------------------------------------------------------------------------- /public/fide/fed/COM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/COM.svg -------------------------------------------------------------------------------- /public/fide/fed/CPV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CPV.svg -------------------------------------------------------------------------------- /public/fide/fed/CRC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CRC.svg -------------------------------------------------------------------------------- /public/fide/fed/CRO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CRO.svg -------------------------------------------------------------------------------- /public/fide/fed/CUB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CUB.svg -------------------------------------------------------------------------------- /public/fide/fed/CYP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CYP.svg -------------------------------------------------------------------------------- /public/fide/fed/CZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/CZE.svg -------------------------------------------------------------------------------- /public/fide/fed/DEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/DEN.svg -------------------------------------------------------------------------------- /public/fide/fed/DJI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/DJI.svg -------------------------------------------------------------------------------- /public/fide/fed/DMA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/DMA.svg -------------------------------------------------------------------------------- /public/fide/fed/DOM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/DOM.svg -------------------------------------------------------------------------------- /public/fide/fed/ECU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ECU.svg -------------------------------------------------------------------------------- /public/fide/fed/EGY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/EGY.svg -------------------------------------------------------------------------------- /public/fide/fed/ENG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ENG.svg -------------------------------------------------------------------------------- /public/fide/fed/ERI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ERI.svg -------------------------------------------------------------------------------- /public/fide/fed/ESA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ESA.svg -------------------------------------------------------------------------------- /public/fide/fed/ESP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ESP.svg -------------------------------------------------------------------------------- /public/fide/fed/EST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/EST.svg -------------------------------------------------------------------------------- /public/fide/fed/ETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ETH.svg -------------------------------------------------------------------------------- /public/fide/fed/FAI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/FAI.svg -------------------------------------------------------------------------------- /public/fide/fed/FID.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/FID.svg -------------------------------------------------------------------------------- /public/fide/fed/FIJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/FIJ.svg -------------------------------------------------------------------------------- /public/fide/fed/FIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/FIN.svg -------------------------------------------------------------------------------- /public/fide/fed/FRA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/FRA.svg -------------------------------------------------------------------------------- /public/fide/fed/GAB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GAB.svg -------------------------------------------------------------------------------- /public/fide/fed/GAM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GAM.svg -------------------------------------------------------------------------------- /public/fide/fed/GCI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GCI.svg -------------------------------------------------------------------------------- /public/fide/fed/GEO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GEO.svg -------------------------------------------------------------------------------- /public/fide/fed/GEQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GEQ.svg -------------------------------------------------------------------------------- /public/fide/fed/GER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GER.svg -------------------------------------------------------------------------------- /public/fide/fed/GHA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GHA.svg -------------------------------------------------------------------------------- /public/fide/fed/GRE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GRE.svg -------------------------------------------------------------------------------- /public/fide/fed/GRL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GRL.svg -------------------------------------------------------------------------------- /public/fide/fed/GRN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GRN.svg -------------------------------------------------------------------------------- /public/fide/fed/GUA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GUA.svg -------------------------------------------------------------------------------- /public/fide/fed/GUM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GUM.svg -------------------------------------------------------------------------------- /public/fide/fed/GUY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/GUY.svg -------------------------------------------------------------------------------- /public/fide/fed/HAI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/HAI.svg -------------------------------------------------------------------------------- /public/fide/fed/HKG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/HKG.svg -------------------------------------------------------------------------------- /public/fide/fed/HON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/HON.svg -------------------------------------------------------------------------------- /public/fide/fed/HUN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/HUN.svg -------------------------------------------------------------------------------- /public/fide/fed/INA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/INA.svg -------------------------------------------------------------------------------- /public/fide/fed/IND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IND.svg -------------------------------------------------------------------------------- /public/fide/fed/IOM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IOM.svg -------------------------------------------------------------------------------- /public/fide/fed/IRI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IRI.svg -------------------------------------------------------------------------------- /public/fide/fed/IRL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IRL.svg -------------------------------------------------------------------------------- /public/fide/fed/IRQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IRQ.svg -------------------------------------------------------------------------------- /public/fide/fed/ISL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ISL.svg -------------------------------------------------------------------------------- /public/fide/fed/ISR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ISR.svg -------------------------------------------------------------------------------- /public/fide/fed/ISV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ISV.svg -------------------------------------------------------------------------------- /public/fide/fed/ITA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ITA.svg -------------------------------------------------------------------------------- /public/fide/fed/IVB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/IVB.svg -------------------------------------------------------------------------------- /public/fide/fed/JAM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/JAM.svg -------------------------------------------------------------------------------- /public/fide/fed/JCI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/JCI.svg -------------------------------------------------------------------------------- /public/fide/fed/JOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/JOR.svg -------------------------------------------------------------------------------- /public/fide/fed/JPN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/JPN.svg -------------------------------------------------------------------------------- /public/fide/fed/KAZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KAZ.svg -------------------------------------------------------------------------------- /public/fide/fed/KEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KEN.svg -------------------------------------------------------------------------------- /public/fide/fed/KGZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KGZ.svg -------------------------------------------------------------------------------- /public/fide/fed/KOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KOR.svg -------------------------------------------------------------------------------- /public/fide/fed/KOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KOS.svg -------------------------------------------------------------------------------- /public/fide/fed/KSA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KSA.svg -------------------------------------------------------------------------------- /public/fide/fed/KUW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/KUW.svg -------------------------------------------------------------------------------- /public/fide/fed/LAO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LAO.svg -------------------------------------------------------------------------------- /public/fide/fed/LAT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LAT.svg -------------------------------------------------------------------------------- /public/fide/fed/LBA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LBA.svg -------------------------------------------------------------------------------- /public/fide/fed/LBN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LBN.svg -------------------------------------------------------------------------------- /public/fide/fed/LBR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LBR.svg -------------------------------------------------------------------------------- /public/fide/fed/LCA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LCA.svg -------------------------------------------------------------------------------- /public/fide/fed/LES.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LES.svg -------------------------------------------------------------------------------- /public/fide/fed/LIE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LIE.svg -------------------------------------------------------------------------------- /public/fide/fed/LTU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LTU.svg -------------------------------------------------------------------------------- /public/fide/fed/LUX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/LUX.svg -------------------------------------------------------------------------------- /public/fide/fed/MAC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MAC.svg -------------------------------------------------------------------------------- /public/fide/fed/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MAD.svg -------------------------------------------------------------------------------- /public/fide/fed/MAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MAR.svg -------------------------------------------------------------------------------- /public/fide/fed/MAS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MAS.svg -------------------------------------------------------------------------------- /public/fide/fed/MAW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MAW.svg -------------------------------------------------------------------------------- /public/fide/fed/MDA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MDA.svg -------------------------------------------------------------------------------- /public/fide/fed/MDV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MDV.svg -------------------------------------------------------------------------------- /public/fide/fed/MEX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MEX.svg -------------------------------------------------------------------------------- /public/fide/fed/MGL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MGL.svg -------------------------------------------------------------------------------- /public/fide/fed/MKD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MKD.svg -------------------------------------------------------------------------------- /public/fide/fed/MLI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MLI.svg -------------------------------------------------------------------------------- /public/fide/fed/MLT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MLT.svg -------------------------------------------------------------------------------- /public/fide/fed/MNC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MNC.svg -------------------------------------------------------------------------------- /public/fide/fed/MNE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MNE.svg -------------------------------------------------------------------------------- /public/fide/fed/MOZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MOZ.svg -------------------------------------------------------------------------------- /public/fide/fed/MRI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MRI.svg -------------------------------------------------------------------------------- /public/fide/fed/MTN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MTN.svg -------------------------------------------------------------------------------- /public/fide/fed/MYA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/MYA.svg -------------------------------------------------------------------------------- /public/fide/fed/NAM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NAM.svg -------------------------------------------------------------------------------- /public/fide/fed/NCA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NCA.svg -------------------------------------------------------------------------------- /public/fide/fed/NCL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NCL.svg -------------------------------------------------------------------------------- /public/fide/fed/NED.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NED.svg -------------------------------------------------------------------------------- /public/fide/fed/NEP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NEP.svg -------------------------------------------------------------------------------- /public/fide/fed/NGR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NGR.svg -------------------------------------------------------------------------------- /public/fide/fed/NIG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NIG.svg -------------------------------------------------------------------------------- /public/fide/fed/NOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NOR.svg -------------------------------------------------------------------------------- /public/fide/fed/NRU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NRU.svg -------------------------------------------------------------------------------- /public/fide/fed/NZL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/NZL.svg -------------------------------------------------------------------------------- /public/fide/fed/OMA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/OMA.svg -------------------------------------------------------------------------------- /public/fide/fed/PAK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PAK.svg -------------------------------------------------------------------------------- /public/fide/fed/PAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PAN.svg -------------------------------------------------------------------------------- /public/fide/fed/PAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PAR.svg -------------------------------------------------------------------------------- /public/fide/fed/PER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PER.svg -------------------------------------------------------------------------------- /public/fide/fed/PHI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PHI.svg -------------------------------------------------------------------------------- /public/fide/fed/PLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PLE.svg -------------------------------------------------------------------------------- /public/fide/fed/PLW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PLW.svg -------------------------------------------------------------------------------- /public/fide/fed/PNG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PNG.svg -------------------------------------------------------------------------------- /public/fide/fed/POL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/POL.svg -------------------------------------------------------------------------------- /public/fide/fed/POR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/POR.svg -------------------------------------------------------------------------------- /public/fide/fed/PUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/PUR.svg -------------------------------------------------------------------------------- /public/fide/fed/QAT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/QAT.svg -------------------------------------------------------------------------------- /public/fide/fed/ROU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ROU.svg -------------------------------------------------------------------------------- /public/fide/fed/RSA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/RSA.svg -------------------------------------------------------------------------------- /public/fide/fed/RUS.svg: -------------------------------------------------------------------------------- 1 | W.svg -------------------------------------------------------------------------------- /public/fide/fed/RWA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/RWA.svg -------------------------------------------------------------------------------- /public/fide/fed/SCO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SCO.svg -------------------------------------------------------------------------------- /public/fide/fed/SEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SEN.svg -------------------------------------------------------------------------------- /public/fide/fed/SEY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SEY.svg -------------------------------------------------------------------------------- /public/fide/fed/SGP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SGP.svg -------------------------------------------------------------------------------- /public/fide/fed/SKN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SKN.svg -------------------------------------------------------------------------------- /public/fide/fed/SLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SLE.svg -------------------------------------------------------------------------------- /public/fide/fed/SLO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SLO.svg -------------------------------------------------------------------------------- /public/fide/fed/SMR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SMR.svg -------------------------------------------------------------------------------- /public/fide/fed/SOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SOL.svg -------------------------------------------------------------------------------- /public/fide/fed/SOM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SOM.svg -------------------------------------------------------------------------------- /public/fide/fed/SRB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SRB.svg -------------------------------------------------------------------------------- /public/fide/fed/SRI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SRI.svg -------------------------------------------------------------------------------- /public/fide/fed/SSD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SSD.svg -------------------------------------------------------------------------------- /public/fide/fed/STP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/STP.svg -------------------------------------------------------------------------------- /public/fide/fed/SUD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SUD.svg -------------------------------------------------------------------------------- /public/fide/fed/SUI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SUI.svg -------------------------------------------------------------------------------- /public/fide/fed/SUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SUR.svg -------------------------------------------------------------------------------- /public/fide/fed/SVK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SVK.svg -------------------------------------------------------------------------------- /public/fide/fed/SWE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SWE.svg -------------------------------------------------------------------------------- /public/fide/fed/SWZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SWZ.svg -------------------------------------------------------------------------------- /public/fide/fed/SYR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/SYR.svg -------------------------------------------------------------------------------- /public/fide/fed/TAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TAN.svg -------------------------------------------------------------------------------- /public/fide/fed/TGA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TGA.svg -------------------------------------------------------------------------------- /public/fide/fed/THA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/THA.svg -------------------------------------------------------------------------------- /public/fide/fed/TJK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TJK.svg -------------------------------------------------------------------------------- /public/fide/fed/TKM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TKM.svg -------------------------------------------------------------------------------- /public/fide/fed/TLS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TLS.svg -------------------------------------------------------------------------------- /public/fide/fed/TOG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TOG.svg -------------------------------------------------------------------------------- /public/fide/fed/TPE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TPE.svg -------------------------------------------------------------------------------- /public/fide/fed/TTO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TTO.svg -------------------------------------------------------------------------------- /public/fide/fed/TUN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TUN.svg -------------------------------------------------------------------------------- /public/fide/fed/TUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/TUR.svg -------------------------------------------------------------------------------- /public/fide/fed/UAE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/UAE.svg -------------------------------------------------------------------------------- /public/fide/fed/UGA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/UGA.svg -------------------------------------------------------------------------------- /public/fide/fed/UKR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/UKR.svg -------------------------------------------------------------------------------- /public/fide/fed/URU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/URU.svg -------------------------------------------------------------------------------- /public/fide/fed/USA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/USA.svg -------------------------------------------------------------------------------- /public/fide/fed/UZB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/UZB.svg -------------------------------------------------------------------------------- /public/fide/fed/VAN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/VAN.svg -------------------------------------------------------------------------------- /public/fide/fed/VEN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/VEN.svg -------------------------------------------------------------------------------- /public/fide/fed/VIE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/VIE.svg -------------------------------------------------------------------------------- /public/fide/fed/VIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/VIN.svg -------------------------------------------------------------------------------- /public/fide/fed/W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/W.svg -------------------------------------------------------------------------------- /public/fide/fed/WLS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/WLS.svg -------------------------------------------------------------------------------- /public/fide/fed/YEM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/YEM.svg -------------------------------------------------------------------------------- /public/fide/fed/ZAM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ZAM.svg -------------------------------------------------------------------------------- /public/fide/fed/ZIM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/fide/fed/ZIM.svg -------------------------------------------------------------------------------- /public/flags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AD.png -------------------------------------------------------------------------------- /public/flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AE.png -------------------------------------------------------------------------------- /public/flags/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AF.png -------------------------------------------------------------------------------- /public/flags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AG.png -------------------------------------------------------------------------------- /public/flags/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AI.png -------------------------------------------------------------------------------- /public/flags/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AL.png -------------------------------------------------------------------------------- /public/flags/AM-RA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AM-RA.png -------------------------------------------------------------------------------- /public/flags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AM.png -------------------------------------------------------------------------------- /public/flags/AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AN.png -------------------------------------------------------------------------------- /public/flags/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AO.png -------------------------------------------------------------------------------- /public/flags/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AQ.png -------------------------------------------------------------------------------- /public/flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AR.png -------------------------------------------------------------------------------- /public/flags/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AS.png -------------------------------------------------------------------------------- /public/flags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AT.png -------------------------------------------------------------------------------- /public/flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AU.png -------------------------------------------------------------------------------- /public/flags/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AW.png -------------------------------------------------------------------------------- /public/flags/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AX.png -------------------------------------------------------------------------------- /public/flags/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/AZ.png -------------------------------------------------------------------------------- /public/flags/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BA.png -------------------------------------------------------------------------------- /public/flags/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BB.png -------------------------------------------------------------------------------- /public/flags/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BD.png -------------------------------------------------------------------------------- /public/flags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BE.png -------------------------------------------------------------------------------- /public/flags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BF.png -------------------------------------------------------------------------------- /public/flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BG.png -------------------------------------------------------------------------------- /public/flags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BH.png -------------------------------------------------------------------------------- /public/flags/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BI.png -------------------------------------------------------------------------------- /public/flags/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BJ.png -------------------------------------------------------------------------------- /public/flags/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BL.png -------------------------------------------------------------------------------- /public/flags/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BM.png -------------------------------------------------------------------------------- /public/flags/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BN.png -------------------------------------------------------------------------------- /public/flags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BO.png -------------------------------------------------------------------------------- /public/flags/BQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BQ.png -------------------------------------------------------------------------------- /public/flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BR.png -------------------------------------------------------------------------------- /public/flags/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BS.png -------------------------------------------------------------------------------- /public/flags/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BT.png -------------------------------------------------------------------------------- /public/flags/BV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BV.png -------------------------------------------------------------------------------- /public/flags/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BW.png -------------------------------------------------------------------------------- /public/flags/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BY.png -------------------------------------------------------------------------------- /public/flags/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/BZ.png -------------------------------------------------------------------------------- /public/flags/CA-QC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CA-QC.png -------------------------------------------------------------------------------- /public/flags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CA.png -------------------------------------------------------------------------------- /public/flags/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CC.png -------------------------------------------------------------------------------- /public/flags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CD.png -------------------------------------------------------------------------------- /public/flags/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CF.png -------------------------------------------------------------------------------- /public/flags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CG.png -------------------------------------------------------------------------------- /public/flags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CH.png -------------------------------------------------------------------------------- /public/flags/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CI.png -------------------------------------------------------------------------------- /public/flags/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CK.png -------------------------------------------------------------------------------- /public/flags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CL.png -------------------------------------------------------------------------------- /public/flags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CM.png -------------------------------------------------------------------------------- /public/flags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CN.png -------------------------------------------------------------------------------- /public/flags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CO.png -------------------------------------------------------------------------------- /public/flags/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CR.png -------------------------------------------------------------------------------- /public/flags/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CU.png -------------------------------------------------------------------------------- /public/flags/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CV.png -------------------------------------------------------------------------------- /public/flags/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CW.png -------------------------------------------------------------------------------- /public/flags/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CX.png -------------------------------------------------------------------------------- /public/flags/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CY.png -------------------------------------------------------------------------------- /public/flags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/CZ.png -------------------------------------------------------------------------------- /public/flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DE.png -------------------------------------------------------------------------------- /public/flags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DJ.png -------------------------------------------------------------------------------- /public/flags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DK.png -------------------------------------------------------------------------------- /public/flags/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DM.png -------------------------------------------------------------------------------- /public/flags/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DO.png -------------------------------------------------------------------------------- /public/flags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/DZ.png -------------------------------------------------------------------------------- /public/flags/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/EC.png -------------------------------------------------------------------------------- /public/flags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/EE.png -------------------------------------------------------------------------------- /public/flags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/EG.png -------------------------------------------------------------------------------- /public/flags/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/EH.png -------------------------------------------------------------------------------- /public/flags/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ER.png -------------------------------------------------------------------------------- /public/flags/ES-AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-AN.png -------------------------------------------------------------------------------- /public/flags/ES-AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-AR.png -------------------------------------------------------------------------------- /public/flags/ES-AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-AS.png -------------------------------------------------------------------------------- /public/flags/ES-CT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-CT.png -------------------------------------------------------------------------------- /public/flags/ES-EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-EU.png -------------------------------------------------------------------------------- /public/flags/ES-GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES-GA.png -------------------------------------------------------------------------------- /public/flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ES.png -------------------------------------------------------------------------------- /public/flags/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ET.png -------------------------------------------------------------------------------- /public/flags/EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/EU.png -------------------------------------------------------------------------------- /public/flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FI.png -------------------------------------------------------------------------------- /public/flags/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FJ.png -------------------------------------------------------------------------------- /public/flags/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FK.png -------------------------------------------------------------------------------- /public/flags/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FM.png -------------------------------------------------------------------------------- /public/flags/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FO.png -------------------------------------------------------------------------------- /public/flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/FR.png -------------------------------------------------------------------------------- /public/flags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GA.png -------------------------------------------------------------------------------- /public/flags/GB-ENG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GB-ENG.png -------------------------------------------------------------------------------- /public/flags/GB-NIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GB-NIR.png -------------------------------------------------------------------------------- /public/flags/GB-SCT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GB-SCT.png -------------------------------------------------------------------------------- /public/flags/GB-WLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GB-WLS.png -------------------------------------------------------------------------------- /public/flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GB.png -------------------------------------------------------------------------------- /public/flags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GD.png -------------------------------------------------------------------------------- /public/flags/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GE.png -------------------------------------------------------------------------------- /public/flags/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GF.png -------------------------------------------------------------------------------- /public/flags/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GG.png -------------------------------------------------------------------------------- /public/flags/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GH.png -------------------------------------------------------------------------------- /public/flags/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GI.png -------------------------------------------------------------------------------- /public/flags/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GL.png -------------------------------------------------------------------------------- /public/flags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GM.png -------------------------------------------------------------------------------- /public/flags/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GN.png -------------------------------------------------------------------------------- /public/flags/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GP.png -------------------------------------------------------------------------------- /public/flags/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GQ.png -------------------------------------------------------------------------------- /public/flags/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GR.png -------------------------------------------------------------------------------- /public/flags/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GS.png -------------------------------------------------------------------------------- /public/flags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GT.png -------------------------------------------------------------------------------- /public/flags/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GU.png -------------------------------------------------------------------------------- /public/flags/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GW.png -------------------------------------------------------------------------------- /public/flags/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/GY.png -------------------------------------------------------------------------------- /public/flags/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HK.png -------------------------------------------------------------------------------- /public/flags/HM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HM.png -------------------------------------------------------------------------------- /public/flags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HN.png -------------------------------------------------------------------------------- /public/flags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HR.png -------------------------------------------------------------------------------- /public/flags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HT.png -------------------------------------------------------------------------------- /public/flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/HU.png -------------------------------------------------------------------------------- /public/flags/IC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IC.png -------------------------------------------------------------------------------- /public/flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ID.png -------------------------------------------------------------------------------- /public/flags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IE.png -------------------------------------------------------------------------------- /public/flags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IL.png -------------------------------------------------------------------------------- /public/flags/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IM.png -------------------------------------------------------------------------------- /public/flags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IN.png -------------------------------------------------------------------------------- /public/flags/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IO.png -------------------------------------------------------------------------------- /public/flags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IQ.png -------------------------------------------------------------------------------- /public/flags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IR.png -------------------------------------------------------------------------------- /public/flags/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IS.png -------------------------------------------------------------------------------- /public/flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/IT.png -------------------------------------------------------------------------------- /public/flags/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/JE.png -------------------------------------------------------------------------------- /public/flags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/JM.png -------------------------------------------------------------------------------- /public/flags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/JO.png -------------------------------------------------------------------------------- /public/flags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/JP.png -------------------------------------------------------------------------------- /public/flags/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KE.png -------------------------------------------------------------------------------- /public/flags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KG.png -------------------------------------------------------------------------------- /public/flags/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KH.png -------------------------------------------------------------------------------- /public/flags/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KI.png -------------------------------------------------------------------------------- /public/flags/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KM.png -------------------------------------------------------------------------------- /public/flags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KN.png -------------------------------------------------------------------------------- /public/flags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KP.png -------------------------------------------------------------------------------- /public/flags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KR.png -------------------------------------------------------------------------------- /public/flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KW.png -------------------------------------------------------------------------------- /public/flags/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KY.png -------------------------------------------------------------------------------- /public/flags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/KZ.png -------------------------------------------------------------------------------- /public/flags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LA.png -------------------------------------------------------------------------------- /public/flags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LB.png -------------------------------------------------------------------------------- /public/flags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LC.png -------------------------------------------------------------------------------- /public/flags/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LI.png -------------------------------------------------------------------------------- /public/flags/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LK.png -------------------------------------------------------------------------------- /public/flags/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LR.png -------------------------------------------------------------------------------- /public/flags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LS.png -------------------------------------------------------------------------------- /public/flags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LT.png -------------------------------------------------------------------------------- /public/flags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LU.png -------------------------------------------------------------------------------- /public/flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LV.png -------------------------------------------------------------------------------- /public/flags/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/LY.png -------------------------------------------------------------------------------- /public/flags/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MA.png -------------------------------------------------------------------------------- /public/flags/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MC.png -------------------------------------------------------------------------------- /public/flags/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MD.png -------------------------------------------------------------------------------- /public/flags/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ME.png -------------------------------------------------------------------------------- /public/flags/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MF.png -------------------------------------------------------------------------------- /public/flags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MG.png -------------------------------------------------------------------------------- /public/flags/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MH.png -------------------------------------------------------------------------------- /public/flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MK.png -------------------------------------------------------------------------------- /public/flags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ML.png -------------------------------------------------------------------------------- /public/flags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MM.png -------------------------------------------------------------------------------- /public/flags/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MN.png -------------------------------------------------------------------------------- /public/flags/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MO.png -------------------------------------------------------------------------------- /public/flags/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MP.png -------------------------------------------------------------------------------- /public/flags/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MQ.png -------------------------------------------------------------------------------- /public/flags/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MR.png -------------------------------------------------------------------------------- /public/flags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MS.png -------------------------------------------------------------------------------- /public/flags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MT.png -------------------------------------------------------------------------------- /public/flags/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MU.png -------------------------------------------------------------------------------- /public/flags/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MV.png -------------------------------------------------------------------------------- /public/flags/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MW.png -------------------------------------------------------------------------------- /public/flags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MX.png -------------------------------------------------------------------------------- /public/flags/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MY.png -------------------------------------------------------------------------------- /public/flags/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/MZ.png -------------------------------------------------------------------------------- /public/flags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NA.png -------------------------------------------------------------------------------- /public/flags/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NC.png -------------------------------------------------------------------------------- /public/flags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NE.png -------------------------------------------------------------------------------- /public/flags/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NF.png -------------------------------------------------------------------------------- /public/flags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NG.png -------------------------------------------------------------------------------- /public/flags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NI.png -------------------------------------------------------------------------------- /public/flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NL.png -------------------------------------------------------------------------------- /public/flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NO.png -------------------------------------------------------------------------------- /public/flags/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NP.png -------------------------------------------------------------------------------- /public/flags/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NR.png -------------------------------------------------------------------------------- /public/flags/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NU.png -------------------------------------------------------------------------------- /public/flags/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/NZ.png -------------------------------------------------------------------------------- /public/flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/OM.png -------------------------------------------------------------------------------- /public/flags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PA.png -------------------------------------------------------------------------------- /public/flags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PE.png -------------------------------------------------------------------------------- /public/flags/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PF.png -------------------------------------------------------------------------------- /public/flags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PG.png -------------------------------------------------------------------------------- /public/flags/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PH.png -------------------------------------------------------------------------------- /public/flags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PK.png -------------------------------------------------------------------------------- /public/flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PL.png -------------------------------------------------------------------------------- /public/flags/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PM.png -------------------------------------------------------------------------------- /public/flags/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PN.png -------------------------------------------------------------------------------- /public/flags/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PR.png -------------------------------------------------------------------------------- /public/flags/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PS.png -------------------------------------------------------------------------------- /public/flags/PT-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PT-20.png -------------------------------------------------------------------------------- /public/flags/PT-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PT-30.png -------------------------------------------------------------------------------- /public/flags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PT.png -------------------------------------------------------------------------------- /public/flags/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PW.png -------------------------------------------------------------------------------- /public/flags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/PY.png -------------------------------------------------------------------------------- /public/flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/QA.png -------------------------------------------------------------------------------- /public/flags/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RE.png -------------------------------------------------------------------------------- /public/flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RO.png -------------------------------------------------------------------------------- /public/flags/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RS.png -------------------------------------------------------------------------------- /public/flags/RU-TAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RU-TAT.png -------------------------------------------------------------------------------- /public/flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RU.png -------------------------------------------------------------------------------- /public/flags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/RW.png -------------------------------------------------------------------------------- /public/flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SA.png -------------------------------------------------------------------------------- /public/flags/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SB.png -------------------------------------------------------------------------------- /public/flags/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SC.png -------------------------------------------------------------------------------- /public/flags/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SD.png -------------------------------------------------------------------------------- /public/flags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SE.png -------------------------------------------------------------------------------- /public/flags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SG.png -------------------------------------------------------------------------------- /public/flags/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SH.png -------------------------------------------------------------------------------- /public/flags/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SI.png -------------------------------------------------------------------------------- /public/flags/SJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SJ.png -------------------------------------------------------------------------------- /public/flags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SK.png -------------------------------------------------------------------------------- /public/flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SL.png -------------------------------------------------------------------------------- /public/flags/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SM.png -------------------------------------------------------------------------------- /public/flags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SN.png -------------------------------------------------------------------------------- /public/flags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SO.png -------------------------------------------------------------------------------- /public/flags/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SR.png -------------------------------------------------------------------------------- /public/flags/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SS.png -------------------------------------------------------------------------------- /public/flags/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ST.png -------------------------------------------------------------------------------- /public/flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SV.png -------------------------------------------------------------------------------- /public/flags/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SX.png -------------------------------------------------------------------------------- /public/flags/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SY.png -------------------------------------------------------------------------------- /public/flags/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/SZ.png -------------------------------------------------------------------------------- /public/flags/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TC.png -------------------------------------------------------------------------------- /public/flags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TD.png -------------------------------------------------------------------------------- /public/flags/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TF.png -------------------------------------------------------------------------------- /public/flags/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TG.png -------------------------------------------------------------------------------- /public/flags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TH.png -------------------------------------------------------------------------------- /public/flags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TJ.png -------------------------------------------------------------------------------- /public/flags/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TK.png -------------------------------------------------------------------------------- /public/flags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TL.png -------------------------------------------------------------------------------- /public/flags/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TM.png -------------------------------------------------------------------------------- /public/flags/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TN.png -------------------------------------------------------------------------------- /public/flags/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TO.png -------------------------------------------------------------------------------- /public/flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TR.png -------------------------------------------------------------------------------- /public/flags/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TT.png -------------------------------------------------------------------------------- /public/flags/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TV.png -------------------------------------------------------------------------------- /public/flags/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TW.png -------------------------------------------------------------------------------- /public/flags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/TZ.png -------------------------------------------------------------------------------- /public/flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/UA.png -------------------------------------------------------------------------------- /public/flags/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/UG.png -------------------------------------------------------------------------------- /public/flags/UM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/UM.png -------------------------------------------------------------------------------- /public/flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/US.png -------------------------------------------------------------------------------- /public/flags/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/UY.png -------------------------------------------------------------------------------- /public/flags/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/UZ.png -------------------------------------------------------------------------------- /public/flags/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VA.png -------------------------------------------------------------------------------- /public/flags/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VC.png -------------------------------------------------------------------------------- /public/flags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VE.png -------------------------------------------------------------------------------- /public/flags/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VG.png -------------------------------------------------------------------------------- /public/flags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VI.png -------------------------------------------------------------------------------- /public/flags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VN.png -------------------------------------------------------------------------------- /public/flags/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/VU.png -------------------------------------------------------------------------------- /public/flags/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/WF.png -------------------------------------------------------------------------------- /public/flags/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/WS.png -------------------------------------------------------------------------------- /public/flags/XK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/XK.png -------------------------------------------------------------------------------- /public/flags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/YE.png -------------------------------------------------------------------------------- /public/flags/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/YT.png -------------------------------------------------------------------------------- /public/flags/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ZA.png -------------------------------------------------------------------------------- /public/flags/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ZM.png -------------------------------------------------------------------------------- /public/flags/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/ZW.png -------------------------------------------------------------------------------- /public/flags/_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flags/_earth.png -------------------------------------------------------------------------------- /public/flair/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/flair/list.txt -------------------------------------------------------------------------------- /public/font/lichess.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/font/lichess.sfd -------------------------------------------------------------------------------- /public/font/lichess.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/font/lichess.ttf -------------------------------------------------------------------------------- /public/font/storm.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/font/storm.sfd -------------------------------------------------------------------------------- /public/font/storm.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/font/storm.woff2 -------------------------------------------------------------------------------- /public/glyphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/glyphs.json -------------------------------------------------------------------------------- /public/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/images/globe.svg -------------------------------------------------------------------------------- /public/images/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/images/grain.png -------------------------------------------------------------------------------- /public/images/wbK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/images/wbK.svg -------------------------------------------------------------------------------- /public/lifat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/lifat/README.md -------------------------------------------------------------------------------- /public/logo/lichess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/logo/lichess.svg -------------------------------------------------------------------------------- /public/logo/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/logo/logo.xcf -------------------------------------------------------------------------------- /public/oops/429.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/oops/429.html -------------------------------------------------------------------------------- /public/oops/flair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/oops/flair.html -------------------------------------------------------------------------------- /public/oops/font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/oops/font.html -------------------------------------------------------------------------------- /public/oops/sounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/oops/sounds.html -------------------------------------------------------------------------------- /public/piece/disguised/bB.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/bK.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/bN.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/bP.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/bQ.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/bR.svg: -------------------------------------------------------------------------------- 1 | b.svg -------------------------------------------------------------------------------- /public/piece/disguised/wB.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/disguised/wK.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/disguised/wN.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/disguised/wP.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/disguised/wQ.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/disguised/wR.svg: -------------------------------------------------------------------------------- 1 | w.svg -------------------------------------------------------------------------------- /public/piece/mono/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/B.svg -------------------------------------------------------------------------------- /public/piece/mono/K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/K.svg -------------------------------------------------------------------------------- /public/piece/mono/N.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/N.svg -------------------------------------------------------------------------------- /public/piece/mono/P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/P.svg -------------------------------------------------------------------------------- /public/piece/mono/Q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/Q.svg -------------------------------------------------------------------------------- /public/piece/mono/R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/public/piece/mono/R.svg -------------------------------------------------------------------------------- /public/sound/futuristic/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/futuristic/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/futuristic/Confirmation.mp3: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/futuristic/Confirmation.ogg: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/futuristic/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/futuristic/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/futuristic/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/futuristic/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/instrument/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/instrument/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/instrument/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/instrument/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/lisp/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown0.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown0.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown0.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown0.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown1.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown1.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown1.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown1.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown10.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown10.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown10.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown10.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown2.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown2.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown2.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown2.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown3.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown3.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown3.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown3.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown4.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown4.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown4.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown4.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown5.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown5.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown5.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown5.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown6.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown6.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown6.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown6.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown7.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown7.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown7.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown7.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown8.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown8.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown8.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown8.ogg -------------------------------------------------------------------------------- /public/sound/lisp/CountDown9.mp3: -------------------------------------------------------------------------------- 1 | ../standard/CountDown9.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/CountDown9.ogg: -------------------------------------------------------------------------------- 1 | ../standard/CountDown9.ogg -------------------------------------------------------------------------------- /public/sound/lisp/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/lisp/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/nes/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/nes/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/nes/Confirmation.mp3: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/nes/Confirmation.ogg: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown1.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown1.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown10.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown10.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown2.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown2.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown3.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown3.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown4.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown4.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown5.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown5.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownFast.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown6.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown6.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown7.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown7.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown8.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown8.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.ogg -------------------------------------------------------------------------------- /public/sound/nes/CountDown9.mp3: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.mp3 -------------------------------------------------------------------------------- /public/sound/nes/CountDown9.ogg: -------------------------------------------------------------------------------- 1 | stock/CountDownSlow.ogg -------------------------------------------------------------------------------- /public/sound/nes/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/nes/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/nes/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/nes/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/piano/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/piano/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/piano/Confirmation.mp3: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/piano/Confirmation.ogg: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/piano/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/piano/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/piano/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/piano/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/robot/Confirmation.mp3: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/robot/Confirmation.ogg: -------------------------------------------------------------------------------- 1 | ../sfx/GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/robot/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/robot/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/robot/Move.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Move.mp3 -------------------------------------------------------------------------------- /public/sound/robot/Move.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Move.ogg -------------------------------------------------------------------------------- /public/sound/robot/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/robot/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/robot/TournamentOther.mp3: -------------------------------------------------------------------------------- 1 | ../piano/TournamentOther.mp3 -------------------------------------------------------------------------------- /public/sound/robot/TournamentOther.ogg: -------------------------------------------------------------------------------- 1 | ../piano/TournamentOther.ogg -------------------------------------------------------------------------------- /public/sound/sfx/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/sfx/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/sfx/Confirmation.mp3: -------------------------------------------------------------------------------- 1 | GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/sfx/Confirmation.ogg: -------------------------------------------------------------------------------- 1 | GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/sfx/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/sfx/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /public/sound/sfx/OutOfBound.mp3: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.mp3 -------------------------------------------------------------------------------- /public/sound/sfx/OutOfBound.ogg: -------------------------------------------------------------------------------- 1 | ../standard/OutOfBound.ogg -------------------------------------------------------------------------------- /public/sound/standard/Check.mp3: -------------------------------------------------------------------------------- 1 | ../Silence.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Check.ogg: -------------------------------------------------------------------------------- 1 | ../Silence.ogg -------------------------------------------------------------------------------- /public/sound/standard/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/standard/Defeat.mp3: -------------------------------------------------------------------------------- 1 | GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Defeat.ogg: -------------------------------------------------------------------------------- 1 | GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/standard/Draw.mp3: -------------------------------------------------------------------------------- 1 | GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Draw.ogg: -------------------------------------------------------------------------------- 1 | GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/standard/NewChallenge.mp3: -------------------------------------------------------------------------------- 1 | SocialNotify.mp3 -------------------------------------------------------------------------------- /public/sound/standard/NewChallenge.ogg: -------------------------------------------------------------------------------- 1 | SocialNotify.ogg -------------------------------------------------------------------------------- /public/sound/standard/NewPM.mp3: -------------------------------------------------------------------------------- 1 | SocialNotify.mp3 -------------------------------------------------------------------------------- /public/sound/standard/NewPM.ogg: -------------------------------------------------------------------------------- 1 | SocialNotify.ogg -------------------------------------------------------------------------------- /public/sound/standard/Tournament1st.mp3: -------------------------------------------------------------------------------- 1 | ../piano/Tournament1st.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Tournament1st.ogg: -------------------------------------------------------------------------------- 1 | ../piano/Tournament1st.ogg -------------------------------------------------------------------------------- /public/sound/standard/Tournament2nd.mp3: -------------------------------------------------------------------------------- 1 | ../piano/Tournament2nd.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Tournament2nd.ogg: -------------------------------------------------------------------------------- 1 | ../piano/Tournament2nd.ogg -------------------------------------------------------------------------------- /public/sound/standard/Tournament3rd.mp3: -------------------------------------------------------------------------------- 1 | ../piano/Tournament3rd.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Tournament3rd.ogg: -------------------------------------------------------------------------------- 1 | ../piano/Tournament3rd.ogg -------------------------------------------------------------------------------- /public/sound/standard/TournamentOther.mp3: -------------------------------------------------------------------------------- 1 | ../piano/TournamentOther.mp3 -------------------------------------------------------------------------------- /public/sound/standard/TournamentOther.ogg: -------------------------------------------------------------------------------- 1 | ../piano/TournamentOther.ogg -------------------------------------------------------------------------------- /public/sound/standard/Victory.mp3: -------------------------------------------------------------------------------- 1 | GenericNotify.mp3 -------------------------------------------------------------------------------- /public/sound/standard/Victory.ogg: -------------------------------------------------------------------------------- 1 | GenericNotify.ogg -------------------------------------------------------------------------------- /public/sound/woodland/Checkmate.mp3: -------------------------------------------------------------------------------- 1 | Check.mp3 -------------------------------------------------------------------------------- /public/sound/woodland/Checkmate.ogg: -------------------------------------------------------------------------------- 1 | Check.ogg -------------------------------------------------------------------------------- /public/sound/woodland/Error.mp3: -------------------------------------------------------------------------------- 1 | ../standard/Error.mp3 -------------------------------------------------------------------------------- /public/sound/woodland/Error.ogg: -------------------------------------------------------------------------------- 1 | ../standard/Error.ogg -------------------------------------------------------------------------------- /ui/.build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/package.json -------------------------------------------------------------------------------- /ui/.build/src/algo.ts: -------------------------------------------------------------------------------- 1 | ../../lib/src/algo.ts -------------------------------------------------------------------------------- /ui/.build/src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/build.ts -------------------------------------------------------------------------------- /ui/.build/src/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/clean.ts -------------------------------------------------------------------------------- /ui/.build/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/env.ts -------------------------------------------------------------------------------- /ui/.build/src/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/hash.ts -------------------------------------------------------------------------------- /ui/.build/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/i18n.ts -------------------------------------------------------------------------------- /ui/.build/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/main.ts -------------------------------------------------------------------------------- /ui/.build/src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/parse.ts -------------------------------------------------------------------------------- /ui/.build/src/sass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/sass.ts -------------------------------------------------------------------------------- /ui/.build/src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/sync.ts -------------------------------------------------------------------------------- /ui/.build/src/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/task.ts -------------------------------------------------------------------------------- /ui/.build/src/tsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/src/tsc.ts -------------------------------------------------------------------------------- /ui/.build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.build/tsconfig.json -------------------------------------------------------------------------------- /ui/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.prettierrc.json -------------------------------------------------------------------------------- /ui/.test/helpers.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.test/helpers.mts -------------------------------------------------------------------------------- /ui/.test/resolve.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.test/resolve.mts -------------------------------------------------------------------------------- /ui/.test/runner.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.test/runner.mjs -------------------------------------------------------------------------------- /ui/.test/setup.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/.test/setup.mts -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/analyse/css/_zh.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/css/_zh.scss -------------------------------------------------------------------------------- /ui/analyse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/package.json -------------------------------------------------------------------------------- /ui/analyse/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/api.ts -------------------------------------------------------------------------------- /ui/analyse/src/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/boot.ts -------------------------------------------------------------------------------- /ui/analyse/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/ctrl.ts -------------------------------------------------------------------------------- /ui/analyse/src/fork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/fork.ts -------------------------------------------------------------------------------- /ui/analyse/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/start.ts -------------------------------------------------------------------------------- /ui/analyse/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/util.ts -------------------------------------------------------------------------------- /ui/analyse/src/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/analyse/src/wiki.ts -------------------------------------------------------------------------------- /ui/bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/README.md -------------------------------------------------------------------------------- /ui/bits/css/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_auth.scss -------------------------------------------------------------------------------- /ui/bits/css/_blind.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_blind.scss -------------------------------------------------------------------------------- /ui/bits/css/_clas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_clas.scss -------------------------------------------------------------------------------- /ui/bits/css/_cms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_cms.scss -------------------------------------------------------------------------------- /ui/bits/css/_event.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_event.scss -------------------------------------------------------------------------------- /ui/bits/css/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_faq.scss -------------------------------------------------------------------------------- /ui/bits/css/_fide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_fide.scss -------------------------------------------------------------------------------- /ui/bits/css/_lag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_lag.scss -------------------------------------------------------------------------------- /ui/bits/css/_oauth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_oauth.scss -------------------------------------------------------------------------------- /ui/bits/css/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_page.scss -------------------------------------------------------------------------------- /ui/bits/css/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/css/_video.scss -------------------------------------------------------------------------------- /ui/bits/css/build/bits.blind.scss: -------------------------------------------------------------------------------- 1 | @import '../blind'; 2 | -------------------------------------------------------------------------------- /ui/bits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/package.json -------------------------------------------------------------------------------- /ui/bits/src/bits.cms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/src/bits.cms.ts -------------------------------------------------------------------------------- /ui/bits/src/bits.lpv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/src/bits.lpv.ts -------------------------------------------------------------------------------- /ui/bits/src/bits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/src/bits.ts -------------------------------------------------------------------------------- /ui/bits/src/crop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/src/crop.ts -------------------------------------------------------------------------------- /ui/bits/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/bits/tsconfig.json -------------------------------------------------------------------------------- /ui/botDev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/package.json -------------------------------------------------------------------------------- /ui/botDev/src/botDev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/src/botDev.ts -------------------------------------------------------------------------------- /ui/botDev/src/devEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/src/devEnv.ts -------------------------------------------------------------------------------- /ui/botDev/src/pane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/src/pane.ts -------------------------------------------------------------------------------- /ui/botDev/src/panes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/src/panes.ts -------------------------------------------------------------------------------- /ui/botDev/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/src/schema.ts -------------------------------------------------------------------------------- /ui/botDev/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botDev/tsconfig.json -------------------------------------------------------------------------------- /ui/botPlay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botPlay/package.json -------------------------------------------------------------------------------- /ui/botPlay/src/chess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botPlay/src/chess.ts -------------------------------------------------------------------------------- /ui/botPlay/src/clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botPlay/src/clock.ts -------------------------------------------------------------------------------- /ui/botPlay/src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botPlay/src/debug.ts -------------------------------------------------------------------------------- /ui/botPlay/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/botPlay/src/game.ts -------------------------------------------------------------------------------- /ui/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/build -------------------------------------------------------------------------------- /ui/chart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/chart/package.json -------------------------------------------------------------------------------- /ui/chart/src/acpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/chart/src/acpl.ts -------------------------------------------------------------------------------- /ui/chart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/chart/src/index.ts -------------------------------------------------------------------------------- /ui/chart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/chart/tsconfig.json -------------------------------------------------------------------------------- /ui/cli/css/_help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/cli/css/_help.scss -------------------------------------------------------------------------------- /ui/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/cli/package.json -------------------------------------------------------------------------------- /ui/cli/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/cli/src/cli.ts -------------------------------------------------------------------------------- /ui/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/cli/tsconfig.json -------------------------------------------------------------------------------- /ui/dasher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/package.json -------------------------------------------------------------------------------- /ui/dasher/src/board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/board.ts -------------------------------------------------------------------------------- /ui/dasher/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/ctrl.ts -------------------------------------------------------------------------------- /ui/dasher/src/dasher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/dasher.ts -------------------------------------------------------------------------------- /ui/dasher/src/langs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/langs.ts -------------------------------------------------------------------------------- /ui/dasher/src/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/links.ts -------------------------------------------------------------------------------- /ui/dasher/src/piece.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/piece.ts -------------------------------------------------------------------------------- /ui/dasher/src/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/ping.ts -------------------------------------------------------------------------------- /ui/dasher/src/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/sound.ts -------------------------------------------------------------------------------- /ui/dasher/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/src/util.ts -------------------------------------------------------------------------------- /ui/dasher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dasher/tsconfig.json -------------------------------------------------------------------------------- /ui/dgt/css/_dgt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/css/_dgt.scss -------------------------------------------------------------------------------- /ui/dgt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/package.json -------------------------------------------------------------------------------- /ui/dgt/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/src/config.ts -------------------------------------------------------------------------------- /ui/dgt/src/dgt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/src/dgt.ts -------------------------------------------------------------------------------- /ui/dgt/src/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/src/play.ts -------------------------------------------------------------------------------- /ui/dgt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/dgt/tsconfig.json -------------------------------------------------------------------------------- /ui/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/editor/package.json -------------------------------------------------------------------------------- /ui/editor/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/editor/src/ctrl.ts -------------------------------------------------------------------------------- /ui/editor/src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/editor/src/editor.ts -------------------------------------------------------------------------------- /ui/editor/src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/editor/src/view.ts -------------------------------------------------------------------------------- /ui/editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/editor/tsconfig.json -------------------------------------------------------------------------------- /ui/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/eslint.config.mjs -------------------------------------------------------------------------------- /ui/insight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/package.json -------------------------------------------------------------------------------- /ui/insight/src/axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/axis.ts -------------------------------------------------------------------------------- /ui/insight/src/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/chart.ts -------------------------------------------------------------------------------- /ui/insight/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/ctrl.ts -------------------------------------------------------------------------------- /ui/insight/src/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/help.ts -------------------------------------------------------------------------------- /ui/insight/src/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/info.ts -------------------------------------------------------------------------------- /ui/insight/src/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/table.ts -------------------------------------------------------------------------------- /ui/insight/src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/insight/src/view.ts -------------------------------------------------------------------------------- /ui/learn/css/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/css/_map.scss -------------------------------------------------------------------------------- /ui/learn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/package.json -------------------------------------------------------------------------------- /ui/learn/src/apple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/apple.ts -------------------------------------------------------------------------------- /ui/learn/src/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/assert.ts -------------------------------------------------------------------------------- /ui/learn/src/chess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/chess.ts -------------------------------------------------------------------------------- /ui/learn/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/ctrl.ts -------------------------------------------------------------------------------- /ui/learn/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/item.ts -------------------------------------------------------------------------------- /ui/learn/src/learn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/learn.ts -------------------------------------------------------------------------------- /ui/learn/src/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/score.ts -------------------------------------------------------------------------------- /ui/learn/src/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/sound.ts -------------------------------------------------------------------------------- /ui/learn/src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/storage.ts -------------------------------------------------------------------------------- /ui/learn/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/util.ts -------------------------------------------------------------------------------- /ui/learn/src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/src/view.ts -------------------------------------------------------------------------------- /ui/learn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/learn/tsconfig.json -------------------------------------------------------------------------------- /ui/lib/css/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/css/_embed.scss -------------------------------------------------------------------------------- /ui/lib/css/_plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/css/_plugin.scss -------------------------------------------------------------------------------- /ui/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/package.json -------------------------------------------------------------------------------- /ui/lib/src/algo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/algo.ts -------------------------------------------------------------------------------- /ui/lib/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/api.ts -------------------------------------------------------------------------------- /ui/lib/src/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/async.ts -------------------------------------------------------------------------------- /ui/lib/src/bot/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/bot/bot.ts -------------------------------------------------------------------------------- /ui/lib/src/bot/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/bot/types.ts -------------------------------------------------------------------------------- /ui/lib/src/chat/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/chat/note.ts -------------------------------------------------------------------------------- /ui/lib/src/chat/spam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/chat/spam.ts -------------------------------------------------------------------------------- /ui/lib/src/chat/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/chat/xhr.ts -------------------------------------------------------------------------------- /ui/lib/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/common.ts -------------------------------------------------------------------------------- /ui/lib/src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/data.ts -------------------------------------------------------------------------------- /ui/lib/src/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/device.ts -------------------------------------------------------------------------------- /ui/lib/src/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/event.ts -------------------------------------------------------------------------------- /ui/lib/src/game/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/game/hash.ts -------------------------------------------------------------------------------- /ui/lib/src/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/highlight.ts -------------------------------------------------------------------------------- /ui/lib/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/i18n.ts -------------------------------------------------------------------------------- /ui/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/index.ts -------------------------------------------------------------------------------- /ui/lib/src/licon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/licon.ts -------------------------------------------------------------------------------- /ui/lib/src/menuHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/menuHover.ts -------------------------------------------------------------------------------- /ui/lib/src/permalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/permalog.ts -------------------------------------------------------------------------------- /ui/lib/src/pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/pointer.ts -------------------------------------------------------------------------------- /ui/lib/src/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/prefs.ts -------------------------------------------------------------------------------- /ui/lib/src/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/pubsub.ts -------------------------------------------------------------------------------- /ui/lib/src/puz/clock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/puz/clock.ts -------------------------------------------------------------------------------- /ui/lib/src/puz/combo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/puz/combo.ts -------------------------------------------------------------------------------- /ui/lib/src/puz/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/puz/run.ts -------------------------------------------------------------------------------- /ui/lib/src/puz/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/puz/sign.ts -------------------------------------------------------------------------------- /ui/lib/src/puz/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/puz/util.ts -------------------------------------------------------------------------------- /ui/lib/src/richText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/richText.ts -------------------------------------------------------------------------------- /ui/lib/src/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/socket.ts -------------------------------------------------------------------------------- /ui/lib/src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/storage.ts -------------------------------------------------------------------------------- /ui/lib/src/tablesort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/tablesort.ts -------------------------------------------------------------------------------- /ui/lib/src/tree/ops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/tree/ops.ts -------------------------------------------------------------------------------- /ui/lib/src/tree/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/tree/path.ts -------------------------------------------------------------------------------- /ui/lib/src/tree/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/tree/tree.ts -------------------------------------------------------------------------------- /ui/lib/src/view/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/view/util.ts -------------------------------------------------------------------------------- /ui/lib/src/wakeLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/wakeLock.ts -------------------------------------------------------------------------------- /ui/lib/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lib/src/xhr.ts -------------------------------------------------------------------------------- /ui/lib/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /ui/lobby/css/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/css/_box.scss -------------------------------------------------------------------------------- /ui/lobby/css/_defs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/css/_defs.scss -------------------------------------------------------------------------------- /ui/lobby/css/_feed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/css/_feed.scss -------------------------------------------------------------------------------- /ui/lobby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/package.json -------------------------------------------------------------------------------- /ui/lobby/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/ctrl.ts -------------------------------------------------------------------------------- /ui/lobby/src/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/filter.ts -------------------------------------------------------------------------------- /ui/lobby/src/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/form.ts -------------------------------------------------------------------------------- /ui/lobby/src/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/lobby.ts -------------------------------------------------------------------------------- /ui/lobby/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/main.ts -------------------------------------------------------------------------------- /ui/lobby/src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/options.ts -------------------------------------------------------------------------------- /ui/lobby/src/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/socket.ts -------------------------------------------------------------------------------- /ui/lobby/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/store.ts -------------------------------------------------------------------------------- /ui/lobby/src/variant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/variant.ts -------------------------------------------------------------------------------- /ui/lobby/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/src/xhr.ts -------------------------------------------------------------------------------- /ui/lobby/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/lobby/tsconfig.json -------------------------------------------------------------------------------- /ui/mod/css/_crud.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_crud.scss -------------------------------------------------------------------------------- /ui/mod/css/_dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_dev.scss -------------------------------------------------------------------------------- /ui/mod/css/_games.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_games.scss -------------------------------------------------------------------------------- /ui/mod/css/_gamify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_gamify.scss -------------------------------------------------------------------------------- /ui/mod/css/_irwin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_irwin.scss -------------------------------------------------------------------------------- /ui/mod/css/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_misc.scss -------------------------------------------------------------------------------- /ui/mod/css/_report.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_report.scss -------------------------------------------------------------------------------- /ui/mod/css/_user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/css/_user.scss -------------------------------------------------------------------------------- /ui/mod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/package.json -------------------------------------------------------------------------------- /ui/mod/src/mod.games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/src/mod.games.ts -------------------------------------------------------------------------------- /ui/mod/src/mod.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/src/mod.user.ts -------------------------------------------------------------------------------- /ui/mod/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/mod/tsconfig.json -------------------------------------------------------------------------------- /ui/msg/css/_convo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/css/_convo.scss -------------------------------------------------------------------------------- /ui/msg/css/_msg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/css/_msg.scss -------------------------------------------------------------------------------- /ui/msg/css/_side.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/css/_side.scss -------------------------------------------------------------------------------- /ui/msg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/package.json -------------------------------------------------------------------------------- /ui/msg/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/src/ctrl.ts -------------------------------------------------------------------------------- /ui/msg/src/msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/src/msg.ts -------------------------------------------------------------------------------- /ui/msg/src/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/src/network.ts -------------------------------------------------------------------------------- /ui/msg/src/view/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/src/view/main.ts -------------------------------------------------------------------------------- /ui/msg/src/view/msgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/src/view/msgs.ts -------------------------------------------------------------------------------- /ui/msg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/msg/tsconfig.json -------------------------------------------------------------------------------- /ui/notify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/notify/package.json -------------------------------------------------------------------------------- /ui/notify/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/notify/src/ctrl.ts -------------------------------------------------------------------------------- /ui/puzzle/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/puzzle/src/xhr.ts -------------------------------------------------------------------------------- /ui/racer/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/racer/src/ctrl.ts -------------------------------------------------------------------------------- /ui/recap/src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/recap/src/ui.ts -------------------------------------------------------------------------------- /ui/recap/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/recap/src/util.ts -------------------------------------------------------------------------------- /ui/recap/src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/recap/src/view.ts -------------------------------------------------------------------------------- /ui/round/src/blur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/round/src/blur.ts -------------------------------------------------------------------------------- /ui/round/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/round/src/ctrl.ts -------------------------------------------------------------------------------- /ui/round/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/round/src/util.ts -------------------------------------------------------------------------------- /ui/round/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/round/src/xhr.ts -------------------------------------------------------------------------------- /ui/simul/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/simul/src/ctrl.ts -------------------------------------------------------------------------------- /ui/simul/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/simul/src/xhr.ts -------------------------------------------------------------------------------- /ui/site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/README.md -------------------------------------------------------------------------------- /ui/site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/package.json -------------------------------------------------------------------------------- /ui/site/src/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/src/asset.ts -------------------------------------------------------------------------------- /ui/site/src/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/src/boot.ts -------------------------------------------------------------------------------- /ui/site/src/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/src/site.ts -------------------------------------------------------------------------------- /ui/site/src/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/site/src/sound.ts -------------------------------------------------------------------------------- /ui/storm/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/storm/src/ctrl.ts -------------------------------------------------------------------------------- /ui/storm/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/storm/src/xhr.ts -------------------------------------------------------------------------------- /ui/swiss/src/ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/swiss/src/ctrl.ts -------------------------------------------------------------------------------- /ui/swiss/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/swiss/src/util.ts -------------------------------------------------------------------------------- /ui/swiss/src/xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/swiss/src/xhr.ts -------------------------------------------------------------------------------- /ui/test: -------------------------------------------------------------------------------- 1 | .test/runner.mjs -------------------------------------------------------------------------------- /ui/tournament/css/_mod.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/tournament/css/_table.scss: -------------------------------------------------------------------------------- 1 | .tour__table { 2 | @extend %flex-column; 3 | } 4 | -------------------------------------------------------------------------------- /ui/user/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/user/package.json -------------------------------------------------------------------------------- /ui/user/src/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/user/src/user.ts -------------------------------------------------------------------------------- /ui/voice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/voice/README.md -------------------------------------------------------------------------------- /ui/voice/src/mic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/voice/src/mic.ts -------------------------------------------------------------------------------- /ui/voice/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/voice/src/util.ts -------------------------------------------------------------------------------- /ui/voice/src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichess-org/lila/HEAD/ui/voice/src/view.ts --------------------------------------------------------------------------------