├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── RibbonDonateBitcoin.png ├── btc.png ├── external.png ├── paypal.png └── workflows │ └── php.yml ├── .gitignore ├── .htaccess ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── app ├── .htaccess ├── bootstrap.php ├── config │ ├── config.local.example.neon │ ├── config.neon │ ├── items.neon │ └── jobs.neon ├── database │ ├── .htaccess │ ├── 0001.sql │ ├── 0002.sql │ ├── 0003.sql │ ├── 0004.sql │ ├── 0005.sql │ ├── 0006.sql │ ├── 0007.sql │ ├── 0008.sql │ ├── 0009.sql │ ├── 0010.sql │ ├── 0011.sql │ ├── 0012.sql │ ├── 0013.sql │ ├── 0014.sql │ ├── 0015.sql │ ├── globalcollapse.mwb │ ├── globalcollapse.mwb.bak │ └── init-db.sql ├── extensions │ ├── TracySessionPanel.php │ └── templates │ │ ├── TracySessionPanel.panel.phtml │ │ └── TracySessionPanel.tab.phtml ├── filters │ ├── ImageFilter.php │ └── StaticFilters.php ├── lang │ ├── general.cs_CZ.neon │ ├── general.en_US.neon │ ├── general.ru_RU.neon │ └── terms.en_US.neon ├── libs │ └── Mailer │ │ ├── Mailer.php │ │ └── emailTemplateRecoverPassword.latte ├── model │ ├── ArticlesRepository.php │ ├── AssaultsRepository.php │ ├── Authenticator.php │ ├── Authorizator.php │ ├── BarRepository.php │ ├── BuildingsRepository.php │ ├── ContactFormRepository.php │ ├── DrugsRepository.php │ ├── EventsRepository.php │ ├── InventoryRepository.php │ ├── ItemsRepository.php │ ├── MarketRepository.php │ ├── MiscRepository.php │ ├── PagesRepository.php │ ├── StatisticsRepository.php │ ├── StripeOrdersRepository.php │ ├── UnlockablesRepository.php │ ├── UserRepository.php │ └── entity │ │ ├── Item.php │ │ └── PlayerBody.php ├── modules │ ├── Admin │ │ ├── components │ │ │ ├── DataTable │ │ │ │ ├── Column.php │ │ │ │ ├── DataTable.latte │ │ │ │ ├── DataTable.php │ │ │ │ └── DataTableFactory.php │ │ │ ├── DropUpload │ │ │ │ ├── DropUpload.js │ │ │ │ └── DropUpload.latte │ │ │ ├── FilterForm │ │ │ │ ├── FilterForm.latte │ │ │ │ ├── FilterForm.php │ │ │ │ └── FilterFormFactory.php │ │ │ ├── Modals │ │ │ │ └── deleteConfirm.latte │ │ │ ├── Navigation │ │ │ │ └── Navigation.latte │ │ │ └── SortLink │ │ │ │ └── SortLink.latte │ │ ├── presenters │ │ │ ├── ArticlePresenter.php │ │ │ ├── BasePresenter.php │ │ │ ├── DefaultPresenter.php │ │ │ ├── ItemsPresenter.php │ │ │ ├── OffersPresenter.php │ │ │ ├── PagePresenter.php │ │ │ ├── SignPresenter.php │ │ │ ├── UserPresenter.php │ │ │ └── VendorPresenter.php │ │ └── templates │ │ │ ├── @layout.latte │ │ │ ├── @layoutSignedIn.latte │ │ │ ├── Article │ │ │ ├── default.latte │ │ │ └── edit.latte │ │ │ ├── Default │ │ │ └── default.latte │ │ │ ├── Items │ │ │ ├── default.latte │ │ │ └── edit.latte │ │ │ ├── Offers │ │ │ ├── default.latte │ │ │ └── edit.latte │ │ │ ├── Page │ │ │ ├── default.latte │ │ │ └── edit.latte │ │ │ ├── Sign │ │ │ └── in.latte │ │ │ ├── User │ │ │ ├── default.latte │ │ │ └── edit.latte │ │ │ └── Vendor │ │ │ ├── default.latte │ │ │ └── edit.latte │ ├── Base │ │ ├── BasePresenter.php │ │ ├── Error4xxPresenter.php │ │ ├── ErrorPresenter.php │ │ └── templates │ │ │ ├── @layout.latte │ │ │ └── Error │ │ │ ├── 404.latte │ │ │ └── 500.phtml │ └── Front │ │ ├── components │ │ ├── AccountForms │ │ │ ├── ChangeEmailForm │ │ │ │ ├── ChangeEmailForm.latte │ │ │ │ └── ChangeEmailForm.php │ │ │ ├── ChangePasswordForm │ │ │ │ ├── ChangePasswordForm.latte │ │ │ │ └── ChangePasswordForm.php │ │ │ ├── DatetimeForm │ │ │ │ ├── DatetimeForm.js │ │ │ │ ├── DatetimeForm.latte │ │ │ │ └── DatetimeForm.php │ │ │ ├── PasswordRecoveryForm │ │ │ │ ├── PasswordRecoveryForm.css │ │ │ │ ├── PasswordRecoveryForm.latte │ │ │ │ └── PasswordRecoveryForm.php │ │ │ ├── RegistrationForm │ │ │ │ ├── RegistrationForm.latte │ │ │ │ └── RegistrationForm.php │ │ │ └── ResetPasswordForm │ │ │ │ ├── ResetPasswordForm.latte │ │ │ │ └── ResetPasswordForm.php │ │ ├── ActionLocker │ │ │ └── ActionLocker.php │ │ ├── Assault │ │ │ ├── Assault.css │ │ │ ├── AssaultCard.latte │ │ │ ├── AssaultStats.latte │ │ │ ├── AttackerCard.latte │ │ │ ├── LatestAssaults.latte │ │ │ ├── PlayerCard.latte │ │ │ ├── PlayerPopover.js │ │ │ ├── PlayerPopover.latte │ │ │ └── VictimCard.latte │ │ ├── Buildings │ │ │ ├── BuildingCard │ │ │ │ ├── BuildingCard.css │ │ │ │ ├── BuildingCard.js │ │ │ │ ├── BuildingCard.latte │ │ │ │ └── BuildingList.latte │ │ │ └── LandCard │ │ │ │ ├── LandCard.css │ │ │ │ └── LandCard.latte │ │ ├── ContactForm │ │ │ ├── ContactForm.latte │ │ │ ├── ContactForm.php │ │ │ └── ContactFormMail.latte │ │ ├── CountdownBar │ │ │ ├── CountdownBar.js │ │ │ └── CountdownBar.latte │ │ ├── Darknet │ │ │ ├── DrugStash │ │ │ │ └── DrugStash.latte │ │ │ └── Vendors │ │ │ │ ├── VendorCard.latte │ │ │ │ └── VendorOffer.latte │ │ ├── Inventory │ │ │ ├── EquippedItemTooltip.latte │ │ │ ├── Inventory.css │ │ │ ├── Inventory.latte │ │ │ ├── ItemTooltip.latte │ │ │ ├── MarketInventory.latte │ │ │ ├── PlayerBody.latte │ │ │ └── SellItem.latte │ │ ├── Jobs │ │ │ ├── Jobs.css │ │ │ ├── Jobs.js │ │ │ └── Jobs.latte │ │ ├── Leaderboard │ │ │ └── Leaderboard.latte │ │ ├── Statistics │ │ │ ├── MoneySources.latte │ │ │ └── TimeSpent.latte │ │ ├── StructuredData │ │ │ └── StructuredData.latte │ │ ├── Training │ │ │ ├── Training.css │ │ │ ├── Training.latte │ │ │ └── TrainingSkillpoints.latte │ │ ├── UI │ │ │ ├── Bitcoins │ │ │ │ └── BitcoinButton.latte │ │ │ ├── DidYouKnow │ │ │ │ ├── DidYouKnow.css │ │ │ │ └── DidYouKnow.latte │ │ │ ├── Footer │ │ │ │ └── Footer.latte │ │ │ ├── Icon │ │ │ │ └── Icon.latte │ │ │ ├── Modals │ │ │ │ └── DeleteModal.latte │ │ │ ├── Navbar │ │ │ │ └── Navbar.latte │ │ │ ├── NewsFeed │ │ │ │ ├── ArticleCard.latte │ │ │ │ ├── NewsFeed.css │ │ │ │ └── NewsFeed.latte │ │ │ ├── Premium │ │ │ │ ├── BitcoinCard.latte │ │ │ │ ├── Premium.css │ │ │ │ └── PremiumCard.latte │ │ │ ├── ProgressBar │ │ │ │ ├── ProgressBar.css │ │ │ │ └── ProgressBar.latte │ │ │ └── Sidebar │ │ │ │ └── Sidebar.latte │ │ └── Unlockables │ │ │ ├── LockedItem.latte │ │ │ ├── UnlockedItem.css │ │ │ └── UnlockedItem.latte │ │ ├── presenters │ │ ├── AccountPresenter.php │ │ ├── ApiPresenter.php │ │ ├── AssaultsPresenter.php │ │ ├── BarPresenter.php │ │ ├── BasePresenter.php │ │ ├── BuildingsPresenter.php │ │ ├── CityPresenter.php │ │ ├── DefaultPresenter.php │ │ ├── Error4xxPresenter.php │ │ ├── ErrorPresenter.php │ │ ├── GamePresenter.php │ │ ├── InfoPresenter.php │ │ ├── IntroPresenter.php │ │ ├── InventoryPresenter.php │ │ ├── ItemsBasePresenter.php │ │ ├── LoginPresenter.php │ │ ├── MarketPresenter.php │ │ ├── PlayerPresenter.php │ │ ├── PremiumPresenter.php │ │ ├── RecoverPresenter.php │ │ ├── SignupPresenter.php │ │ ├── SitemapPresenter.php │ │ ├── StatisticsPresenter.php │ │ └── WebhookPresenter.php │ │ └── templates │ │ ├── @layout.latte │ │ ├── Account │ │ └── settings.latte │ │ ├── Assaults │ │ ├── assault.latte │ │ ├── default.latte │ │ └── detail.latte │ │ ├── Bar │ │ └── default.latte │ │ ├── Buildings │ │ ├── default.latte │ │ └── lands.latte │ │ ├── City │ │ ├── darknet.latte │ │ └── wastelands.latte │ │ ├── Default │ │ ├── default.latte │ │ ├── rest.latte │ │ ├── training.latte │ │ └── unlockables.latte │ │ ├── Error │ │ ├── 404.latte │ │ └── 500.phtml │ │ ├── Info │ │ ├── copyright.latte │ │ ├── news.latte │ │ ├── post.latte │ │ ├── privacy.latte │ │ ├── support.latte │ │ ├── tos.latte │ │ └── voting.latte │ │ ├── Intro │ │ └── default.latte │ │ ├── Inventory │ │ └── default.latte │ │ ├── Login │ │ ├── default.latte │ │ ├── done.latte │ │ └── restore.latte │ │ ├── Market │ │ └── default.latte │ │ ├── Player │ │ ├── detail.latte │ │ ├── leaderboard.latte │ │ └── statistics.latte │ │ ├── Premium │ │ ├── cancel.latte │ │ ├── default.latte │ │ ├── manage.latte │ │ └── success.latte │ │ ├── Recover │ │ └── default.latte │ │ ├── Signup │ │ └── default.latte │ │ ├── Sitemap │ │ └── default.latte │ │ ├── Statistics │ │ └── default.latte │ │ └── _recoverMail.latte ├── router │ └── RouterFactory.php └── services │ ├── Darknet │ ├── DarknetResponse.php │ └── DarknetService.php │ ├── PaddleService.php │ ├── PaymentService.php │ └── StripeService.php ├── composer.json ├── composer.lock ├── dev ├── admin │ ├── css │ │ ├── imports │ │ │ ├── object.layout.css │ │ │ └── settings.variables.css │ │ └── index.css │ ├── images │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── logo.png │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ └── js │ │ ├── imports │ │ ├── helpers.js │ │ └── settings.js │ │ └── index.js └── front │ ├── css │ ├── common │ │ ├── buttons.css │ │ ├── card.css │ │ ├── flash.css │ │ ├── fonts.css │ │ ├── footer.css │ │ ├── general.css │ │ ├── header.css │ │ ├── mixins.css │ │ ├── sidebar.css │ │ └── variables.css │ ├── index.css │ ├── product.css │ ├── sanitize.css │ ├── sections │ │ ├── darknet.css │ │ ├── info.css │ │ ├── intro.css │ │ ├── job.css │ │ ├── lands.css │ │ └── pvp.css │ └── uikit │ │ ├── uikit-core.css │ │ ├── uikit-core.min.css │ │ ├── uikit-rtl.css │ │ ├── uikit-rtl.min.css │ │ ├── uikit.css │ │ └── uikit.min.css │ ├── etc │ ├── JobWorker.js │ └── audio │ │ └── assaults │ │ ├── hit-1.mp3 │ │ ├── hit-1.webm │ │ ├── hit-2.mp3 │ │ ├── hit-2.webm │ │ ├── hit-3.mp3 │ │ ├── hit-3.webm │ │ ├── miss-1.mp3 │ │ ├── miss-1.webm │ │ ├── miss-2.mp3 │ │ └── miss-2.webm │ ├── icons │ ├── bitcoin.svg │ ├── btc.svg │ ├── external-link.svg │ ├── facebook.svg │ ├── instagram.svg │ ├── linkedin.svg │ └── pinterest.svg │ ├── images │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-ipad-retina.png │ ├── apple-touch-icon-ipad.png │ ├── apple-touch-icon-iphone-retina.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── dead.jpg │ ├── default-avatars │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ ├── matronator.gif │ │ ├── matronator.jpg │ │ └── pase80.jpg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── illustrations │ │ ├── bar.jpg │ │ ├── biohazard.jpg │ │ ├── buildings.jpg │ │ ├── buildings │ │ │ ├── ecstasy_lab.jpg │ │ │ ├── meth_lab.jpg │ │ │ ├── poppy_field.jpg │ │ │ └── weedhouse.jpg │ │ ├── center.jpg │ │ ├── city.jpg │ │ ├── darknet.jpg │ │ ├── drugs.jpg │ │ ├── lands.jpg │ │ ├── market.webp │ │ └── wastelands.jpg │ ├── items │ │ └── slots │ │ │ ├── back.png │ │ │ ├── body.png │ │ │ ├── body2.png │ │ │ ├── boot.png │ │ │ ├── headgear.png │ │ │ ├── helmet.png │ │ │ ├── legs.png │ │ │ ├── mask.png │ │ │ ├── mask2.png │ │ │ ├── melee.png │ │ │ ├── ranged.png │ │ │ ├── shield.png │ │ │ ├── shoulder.png │ │ │ └── two-handed-ranged.png │ ├── logo-black.png │ ├── logo-mobile.png │ ├── logo-small.png │ ├── logo.svg │ ├── mstile-150x150.png │ ├── premium │ │ ├── 1000btc.jpg │ │ ├── 100btc.jpg │ │ ├── 10btc.jpg │ │ ├── 250btc.jpg │ │ ├── 25btc.jpg │ │ ├── 500btc.jpg │ │ ├── 50btc.jpg │ │ ├── gold-border.png │ │ ├── green-frame.png │ │ ├── half-star.png │ │ ├── immune.jpg │ │ ├── infected.jpg │ │ ├── star.png │ │ ├── star2.png │ │ ├── star3.png │ │ └── survivor.jpg │ ├── safari-pinned-tab.svg │ ├── site.webmanifest │ ├── splashscreens │ │ ├── ipad_splash.jpg │ │ ├── ipadpro1_splash.jpg │ │ ├── ipadpro2_splash.jpg │ │ ├── ipadpro3_splash.jpg │ │ ├── iphone5_splash.jpg │ │ ├── iphone6_splash.jpg │ │ ├── iphoneplus_splash.jpg │ │ ├── iphonex_splash.jpg │ │ ├── iphonexr_splash.jpg │ │ └── iphonexsmax_splash.jpg │ ├── support │ │ ├── 0x9981F23fA0374D5A194c2eC1F32093C473c818b9.png │ │ ├── 35VRpVQaqFWjUCnVRpGineShz76QyYgSVg.png │ │ ├── 84yS17W3dLvV6Lj2XaATgYX4Ef7tPpGtmdBoanyL68GofxM2VQD8ZUNWaKpdyerJdZ7mceQ6r7e8G2om6q6k8zEZ4ndy2xG.png │ │ ├── kofi.png │ │ ├── ltc1q9nzu3a4gg240le0e7tch02d5j48arf2zgdz88q.png │ │ ├── patreon.png │ │ └── paypal.png │ └── unlockables │ │ ├── ecstasy-lab.jpg │ │ ├── max-energy.png │ │ └── poppy-field.jpg │ └── js │ ├── assault.js │ ├── bar.js │ ├── buildings.js │ ├── countdownBar.js │ ├── darknet.js │ ├── imports │ ├── dates.js │ ├── helpers.js │ ├── inventorySlots.js │ ├── settings.js │ └── sidebar.js │ ├── index.js │ ├── intro.js │ ├── inventory.js │ ├── market.js │ ├── paddle.js │ ├── serviceWorker.js │ ├── settings.js │ ├── spTrain.js │ ├── statistics.js │ ├── stripe.js │ ├── support.js │ ├── training.js │ └── uikit │ ├── components │ ├── .gitkeep │ ├── countdown.js │ ├── countdown.min.js │ ├── filter.js │ ├── filter.min.js │ ├── lightbox-panel.js │ ├── lightbox-panel.min.js │ ├── lightbox.js │ ├── lightbox.min.js │ ├── notification.js │ ├── notification.min.js │ ├── parallax.js │ ├── parallax.min.js │ ├── slider-parallax.js │ ├── slider-parallax.min.js │ ├── slider.js │ ├── slider.min.js │ ├── slideshow-parallax.js │ ├── slideshow-parallax.min.js │ ├── slideshow.js │ ├── slideshow.min.js │ ├── sortable.js │ ├── sortable.min.js │ ├── tooltip.js │ ├── tooltip.min.js │ ├── upload.js │ └── upload.min.js │ ├── uikit-core.js │ ├── uikit-core.min.js │ ├── uikit-icons.js │ ├── uikit-icons.min.js │ ├── uikit.js │ └── uikit.min.js ├── drugs-prices.php ├── gulpfile.babel.js ├── libs ├── CustomValidators.php ├── ImageGenerator.php ├── ImageStorage.php ├── Math.php ├── Strings.php ├── Timezones.php └── VoteRewards.example.php ├── log ├── .gitignore └── .htaccess ├── mtrgen ├── presenter.json └── repository.json ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── temp ├── .gitignore └── .htaccess └── www ├── .htaccess ├── .maintenance.php ├── .well-known ├── dnt-policy.txt └── security.txt ├── apple-touch-icon.png ├── data ├── items │ └── .gitignore └── user-avatars │ ├── matronator.gif │ ├── matronator.jpg │ └── pase80.jpg ├── favicon.ico ├── humans.txt ├── index.php ├── report.php └── robots.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/RibbonDonateBitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/RibbonDonateBitcoin.png -------------------------------------------------------------------------------- /.github/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/btc.png -------------------------------------------------------------------------------- /.github/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/external.png -------------------------------------------------------------------------------- /.github/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/paypal.png -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.htaccess -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/bootstrap.php -------------------------------------------------------------------------------- /app/config/config.local.example.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/config/config.local.example.neon -------------------------------------------------------------------------------- /app/config/config.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/config/config.neon -------------------------------------------------------------------------------- /app/config/items.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/config/items.neon -------------------------------------------------------------------------------- /app/config/jobs.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/config/jobs.neon -------------------------------------------------------------------------------- /app/database/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/.htaccess -------------------------------------------------------------------------------- /app/database/0001.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0001.sql -------------------------------------------------------------------------------- /app/database/0002.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0002.sql -------------------------------------------------------------------------------- /app/database/0003.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0003.sql -------------------------------------------------------------------------------- /app/database/0004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0004.sql -------------------------------------------------------------------------------- /app/database/0005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0005.sql -------------------------------------------------------------------------------- /app/database/0006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0006.sql -------------------------------------------------------------------------------- /app/database/0007.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `actions` 2 | ADD `offer_refreshed` datetime NULL; 3 | -------------------------------------------------------------------------------- /app/database/0008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0008.sql -------------------------------------------------------------------------------- /app/database/0009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0009.sql -------------------------------------------------------------------------------- /app/database/0010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0010.sql -------------------------------------------------------------------------------- /app/database/0011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0011.sql -------------------------------------------------------------------------------- /app/database/0012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0012.sql -------------------------------------------------------------------------------- /app/database/0013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0013.sql -------------------------------------------------------------------------------- /app/database/0014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0014.sql -------------------------------------------------------------------------------- /app/database/0015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/0015.sql -------------------------------------------------------------------------------- /app/database/globalcollapse.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/globalcollapse.mwb -------------------------------------------------------------------------------- /app/database/globalcollapse.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/globalcollapse.mwb.bak -------------------------------------------------------------------------------- /app/database/init-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/database/init-db.sql -------------------------------------------------------------------------------- /app/extensions/TracySessionPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/extensions/TracySessionPanel.php -------------------------------------------------------------------------------- /app/extensions/templates/TracySessionPanel.panel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/extensions/templates/TracySessionPanel.panel.phtml -------------------------------------------------------------------------------- /app/extensions/templates/TracySessionPanel.tab.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/extensions/templates/TracySessionPanel.tab.phtml -------------------------------------------------------------------------------- /app/filters/ImageFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/filters/ImageFilter.php -------------------------------------------------------------------------------- /app/filters/StaticFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/filters/StaticFilters.php -------------------------------------------------------------------------------- /app/lang/general.cs_CZ.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/lang/general.cs_CZ.neon -------------------------------------------------------------------------------- /app/lang/general.en_US.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/lang/general.en_US.neon -------------------------------------------------------------------------------- /app/lang/general.ru_RU.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/lang/general.ru_RU.neon -------------------------------------------------------------------------------- /app/lang/terms.en_US.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/lang/terms.en_US.neon -------------------------------------------------------------------------------- /app/libs/Mailer/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/libs/Mailer/Mailer.php -------------------------------------------------------------------------------- /app/libs/Mailer/emailTemplateRecoverPassword.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/libs/Mailer/emailTemplateRecoverPassword.latte -------------------------------------------------------------------------------- /app/model/ArticlesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/ArticlesRepository.php -------------------------------------------------------------------------------- /app/model/AssaultsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/AssaultsRepository.php -------------------------------------------------------------------------------- /app/model/Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/Authenticator.php -------------------------------------------------------------------------------- /app/model/Authorizator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/Authorizator.php -------------------------------------------------------------------------------- /app/model/BarRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/BarRepository.php -------------------------------------------------------------------------------- /app/model/BuildingsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/BuildingsRepository.php -------------------------------------------------------------------------------- /app/model/ContactFormRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/ContactFormRepository.php -------------------------------------------------------------------------------- /app/model/DrugsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/DrugsRepository.php -------------------------------------------------------------------------------- /app/model/EventsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/EventsRepository.php -------------------------------------------------------------------------------- /app/model/InventoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/InventoryRepository.php -------------------------------------------------------------------------------- /app/model/ItemsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/ItemsRepository.php -------------------------------------------------------------------------------- /app/model/MarketRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/MarketRepository.php -------------------------------------------------------------------------------- /app/model/MiscRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/MiscRepository.php -------------------------------------------------------------------------------- /app/model/PagesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/PagesRepository.php -------------------------------------------------------------------------------- /app/model/StatisticsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/StatisticsRepository.php -------------------------------------------------------------------------------- /app/model/StripeOrdersRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/StripeOrdersRepository.php -------------------------------------------------------------------------------- /app/model/UnlockablesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/UnlockablesRepository.php -------------------------------------------------------------------------------- /app/model/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/UserRepository.php -------------------------------------------------------------------------------- /app/model/entity/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/entity/Item.php -------------------------------------------------------------------------------- /app/model/entity/PlayerBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/model/entity/PlayerBody.php -------------------------------------------------------------------------------- /app/modules/Admin/components/DataTable/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DataTable/Column.php -------------------------------------------------------------------------------- /app/modules/Admin/components/DataTable/DataTable.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DataTable/DataTable.latte -------------------------------------------------------------------------------- /app/modules/Admin/components/DataTable/DataTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DataTable/DataTable.php -------------------------------------------------------------------------------- /app/modules/Admin/components/DataTable/DataTableFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DataTable/DataTableFactory.php -------------------------------------------------------------------------------- /app/modules/Admin/components/DropUpload/DropUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DropUpload/DropUpload.js -------------------------------------------------------------------------------- /app/modules/Admin/components/DropUpload/DropUpload.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/DropUpload/DropUpload.latte -------------------------------------------------------------------------------- /app/modules/Admin/components/FilterForm/FilterForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/FilterForm/FilterForm.latte -------------------------------------------------------------------------------- /app/modules/Admin/components/FilterForm/FilterForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/FilterForm/FilterForm.php -------------------------------------------------------------------------------- /app/modules/Admin/components/FilterForm/FilterFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/FilterForm/FilterFormFactory.php -------------------------------------------------------------------------------- /app/modules/Admin/components/Modals/deleteConfirm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/Modals/deleteConfirm.latte -------------------------------------------------------------------------------- /app/modules/Admin/components/Navigation/Navigation.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/Navigation/Navigation.latte -------------------------------------------------------------------------------- /app/modules/Admin/components/SortLink/SortLink.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/components/SortLink/SortLink.latte -------------------------------------------------------------------------------- /app/modules/Admin/presenters/ArticlePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/ArticlePresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/BasePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/BasePresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/DefaultPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/DefaultPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/ItemsPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/ItemsPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/OffersPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/OffersPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/PagePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/PagePresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/SignPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/SignPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/UserPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/UserPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/presenters/VendorPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/presenters/VendorPresenter.php -------------------------------------------------------------------------------- /app/modules/Admin/templates/@layout.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/@layout.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/@layoutSignedIn.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/@layoutSignedIn.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Article/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Article/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Article/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Article/edit.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Default/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Default/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Items/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Items/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Items/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Items/edit.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Offers/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Offers/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Offers/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Offers/edit.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Page/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Page/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Page/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Page/edit.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Sign/in.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Sign/in.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/User/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/User/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/User/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/User/edit.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Vendor/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Vendor/default.latte -------------------------------------------------------------------------------- /app/modules/Admin/templates/Vendor/edit.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Admin/templates/Vendor/edit.latte -------------------------------------------------------------------------------- /app/modules/Base/BasePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/BasePresenter.php -------------------------------------------------------------------------------- /app/modules/Base/Error4xxPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/Error4xxPresenter.php -------------------------------------------------------------------------------- /app/modules/Base/ErrorPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/ErrorPresenter.php -------------------------------------------------------------------------------- /app/modules/Base/templates/@layout.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/templates/@layout.latte -------------------------------------------------------------------------------- /app/modules/Base/templates/Error/404.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/templates/Error/404.latte -------------------------------------------------------------------------------- /app/modules/Base/templates/Error/500.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Base/templates/Error/500.phtml -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ChangeEmailForm/ChangeEmailForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ChangeEmailForm/ChangeEmailForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ChangeEmailForm/ChangeEmailForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ChangeEmailForm/ChangeEmailForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ChangePasswordForm/ChangePasswordForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ChangePasswordForm/ChangePasswordForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ChangePasswordForm/ChangePasswordForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ChangePasswordForm/ChangePasswordForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.js -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/DatetimeForm/DatetimeForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.css -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/PasswordRecoveryForm/PasswordRecoveryForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/RegistrationForm/RegistrationForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/RegistrationForm/RegistrationForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/RegistrationForm/RegistrationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/RegistrationForm/RegistrationForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ResetPasswordForm/ResetPasswordForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ResetPasswordForm/ResetPasswordForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/AccountForms/ResetPasswordForm/ResetPasswordForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/AccountForms/ResetPasswordForm/ResetPasswordForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/ActionLocker/ActionLocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/ActionLocker/ActionLocker.php -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/Assault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/Assault.css -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/AssaultCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/AssaultCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/AssaultStats.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/AssaultStats.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/AttackerCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/AttackerCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/LatestAssaults.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/LatestAssaults.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/PlayerCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/PlayerCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/PlayerPopover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/PlayerPopover.js -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/PlayerPopover.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/PlayerPopover.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Assault/VictimCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Assault/VictimCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/BuildingCard/BuildingCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/BuildingCard/BuildingCard.css -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/BuildingCard/BuildingCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/BuildingCard/BuildingCard.js -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/BuildingCard/BuildingCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/BuildingCard/BuildingCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/BuildingCard/BuildingList.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/BuildingCard/BuildingList.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/LandCard/LandCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/LandCard/LandCard.css -------------------------------------------------------------------------------- /app/modules/Front/components/Buildings/LandCard/LandCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Buildings/LandCard/LandCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/ContactForm/ContactForm.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/ContactForm/ContactForm.latte -------------------------------------------------------------------------------- /app/modules/Front/components/ContactForm/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/ContactForm/ContactForm.php -------------------------------------------------------------------------------- /app/modules/Front/components/ContactForm/ContactFormMail.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/ContactForm/ContactFormMail.latte -------------------------------------------------------------------------------- /app/modules/Front/components/CountdownBar/CountdownBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/CountdownBar/CountdownBar.js -------------------------------------------------------------------------------- /app/modules/Front/components/CountdownBar/CountdownBar.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/CountdownBar/CountdownBar.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Darknet/DrugStash/DrugStash.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Darknet/DrugStash/DrugStash.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Darknet/Vendors/VendorCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Darknet/Vendors/VendorCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Darknet/Vendors/VendorOffer.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Darknet/Vendors/VendorOffer.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/EquippedItemTooltip.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/EquippedItemTooltip.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/Inventory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/Inventory.css -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/Inventory.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/Inventory.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/ItemTooltip.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/ItemTooltip.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/MarketInventory.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/MarketInventory.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/PlayerBody.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/PlayerBody.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Inventory/SellItem.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Inventory/SellItem.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Jobs/Jobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Jobs/Jobs.css -------------------------------------------------------------------------------- /app/modules/Front/components/Jobs/Jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Jobs/Jobs.js -------------------------------------------------------------------------------- /app/modules/Front/components/Jobs/Jobs.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Jobs/Jobs.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Leaderboard/Leaderboard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Leaderboard/Leaderboard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Statistics/MoneySources.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Statistics/MoneySources.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Statistics/TimeSpent.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Statistics/TimeSpent.latte -------------------------------------------------------------------------------- /app/modules/Front/components/StructuredData/StructuredData.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/StructuredData/StructuredData.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Training/Training.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Training/Training.css -------------------------------------------------------------------------------- /app/modules/Front/components/Training/Training.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Training/Training.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Training/TrainingSkillpoints.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Training/TrainingSkillpoints.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Bitcoins/BitcoinButton.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Bitcoins/BitcoinButton.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/DidYouKnow/DidYouKnow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/DidYouKnow/DidYouKnow.css -------------------------------------------------------------------------------- /app/modules/Front/components/UI/DidYouKnow/DidYouKnow.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/DidYouKnow/DidYouKnow.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Footer/Footer.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Footer/Footer.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Icon/Icon.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Icon/Icon.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Modals/DeleteModal.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Modals/DeleteModal.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Navbar/Navbar.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Navbar/Navbar.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/NewsFeed/ArticleCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/NewsFeed/ArticleCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/NewsFeed/NewsFeed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/NewsFeed/NewsFeed.css -------------------------------------------------------------------------------- /app/modules/Front/components/UI/NewsFeed/NewsFeed.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/NewsFeed/NewsFeed.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Premium/BitcoinCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Premium/BitcoinCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Premium/Premium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Premium/Premium.css -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Premium/PremiumCard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Premium/PremiumCard.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/ProgressBar/ProgressBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/ProgressBar/ProgressBar.css -------------------------------------------------------------------------------- /app/modules/Front/components/UI/ProgressBar/ProgressBar.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/ProgressBar/ProgressBar.latte -------------------------------------------------------------------------------- /app/modules/Front/components/UI/Sidebar/Sidebar.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/UI/Sidebar/Sidebar.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Unlockables/LockedItem.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Unlockables/LockedItem.latte -------------------------------------------------------------------------------- /app/modules/Front/components/Unlockables/UnlockedItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Unlockables/UnlockedItem.css -------------------------------------------------------------------------------- /app/modules/Front/components/Unlockables/UnlockedItem.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/components/Unlockables/UnlockedItem.latte -------------------------------------------------------------------------------- /app/modules/Front/presenters/AccountPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/AccountPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/ApiPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/ApiPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/AssaultsPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/AssaultsPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/BarPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/BarPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/BasePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/BasePresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/BuildingsPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/BuildingsPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/CityPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/CityPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/DefaultPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/DefaultPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/Error4xxPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/Error4xxPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/ErrorPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/ErrorPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/GamePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/GamePresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/InfoPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/InfoPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/IntroPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/IntroPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/InventoryPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/InventoryPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/ItemsBasePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/ItemsBasePresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/LoginPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/LoginPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/MarketPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/MarketPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/PlayerPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/PlayerPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/PremiumPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/PremiumPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/RecoverPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/RecoverPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/SignupPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/SignupPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/SitemapPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/SitemapPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/StatisticsPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/StatisticsPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/presenters/WebhookPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/presenters/WebhookPresenter.php -------------------------------------------------------------------------------- /app/modules/Front/templates/@layout.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/@layout.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Account/settings.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Account/settings.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Assaults/assault.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Assaults/assault.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Assaults/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Assaults/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Assaults/detail.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Assaults/detail.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Bar/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Bar/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Buildings/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Buildings/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Buildings/lands.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Buildings/lands.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/City/darknet.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/City/darknet.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/City/wastelands.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/City/wastelands.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Default/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Default/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Default/rest.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Default/rest.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Default/training.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Default/training.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Default/unlockables.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Default/unlockables.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Error/404.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Error/404.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Error/500.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Error/500.phtml -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/copyright.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/copyright.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/news.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/news.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/post.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/post.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/privacy.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/privacy.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/support.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/support.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/tos.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/tos.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Info/voting.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Info/voting.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Intro/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Intro/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Inventory/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Inventory/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Login/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Login/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Login/done.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Login/done.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Login/restore.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Login/restore.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Market/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Market/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Player/detail.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Player/detail.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Player/leaderboard.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Player/leaderboard.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Player/statistics.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Player/statistics.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Premium/cancel.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Premium/cancel.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Premium/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Premium/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Premium/manage.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Premium/manage.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Premium/success.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Premium/success.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Recover/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Recover/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Signup/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Signup/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Sitemap/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Sitemap/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/Statistics/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/Statistics/default.latte -------------------------------------------------------------------------------- /app/modules/Front/templates/_recoverMail.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/modules/Front/templates/_recoverMail.latte -------------------------------------------------------------------------------- /app/router/RouterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/router/RouterFactory.php -------------------------------------------------------------------------------- /app/services/Darknet/DarknetResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/services/Darknet/DarknetResponse.php -------------------------------------------------------------------------------- /app/services/Darknet/DarknetService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/services/Darknet/DarknetService.php -------------------------------------------------------------------------------- /app/services/PaddleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/services/PaddleService.php -------------------------------------------------------------------------------- /app/services/PaymentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/services/PaymentService.php -------------------------------------------------------------------------------- /app/services/StripeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/app/services/StripeService.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/composer.lock -------------------------------------------------------------------------------- /dev/admin/css/imports/object.layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/css/imports/object.layout.css -------------------------------------------------------------------------------- /dev/admin/css/imports/settings.variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/css/imports/settings.variables.css -------------------------------------------------------------------------------- /dev/admin/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/css/index.css -------------------------------------------------------------------------------- /dev/admin/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /dev/admin/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /dev/admin/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/apple-touch-icon.png -------------------------------------------------------------------------------- /dev/admin/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/browserconfig.xml -------------------------------------------------------------------------------- /dev/admin/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/favicon-16x16.png -------------------------------------------------------------------------------- /dev/admin/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/favicon-32x32.png -------------------------------------------------------------------------------- /dev/admin/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/favicon.ico -------------------------------------------------------------------------------- /dev/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/logo.png -------------------------------------------------------------------------------- /dev/admin/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/mstile-150x150.png -------------------------------------------------------------------------------- /dev/admin/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dev/admin/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/images/site.webmanifest -------------------------------------------------------------------------------- /dev/admin/js/imports/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/js/imports/helpers.js -------------------------------------------------------------------------------- /dev/admin/js/imports/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/js/imports/settings.js -------------------------------------------------------------------------------- /dev/admin/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/admin/js/index.js -------------------------------------------------------------------------------- /dev/front/css/common/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/buttons.css -------------------------------------------------------------------------------- /dev/front/css/common/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/card.css -------------------------------------------------------------------------------- /dev/front/css/common/flash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/flash.css -------------------------------------------------------------------------------- /dev/front/css/common/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/fonts.css -------------------------------------------------------------------------------- /dev/front/css/common/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/footer.css -------------------------------------------------------------------------------- /dev/front/css/common/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/general.css -------------------------------------------------------------------------------- /dev/front/css/common/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/header.css -------------------------------------------------------------------------------- /dev/front/css/common/mixins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/mixins.css -------------------------------------------------------------------------------- /dev/front/css/common/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/sidebar.css -------------------------------------------------------------------------------- /dev/front/css/common/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/common/variables.css -------------------------------------------------------------------------------- /dev/front/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/index.css -------------------------------------------------------------------------------- /dev/front/css/product.css: -------------------------------------------------------------------------------- 1 | @import "common/card.css"; 2 | -------------------------------------------------------------------------------- /dev/front/css/sanitize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sanitize.css -------------------------------------------------------------------------------- /dev/front/css/sections/darknet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sections/darknet.css -------------------------------------------------------------------------------- /dev/front/css/sections/info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sections/info.css -------------------------------------------------------------------------------- /dev/front/css/sections/intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sections/intro.css -------------------------------------------------------------------------------- /dev/front/css/sections/job.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sections/job.css -------------------------------------------------------------------------------- /dev/front/css/sections/lands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/sections/lands.css -------------------------------------------------------------------------------- /dev/front/css/sections/pvp.css: -------------------------------------------------------------------------------- 1 | .assaults-stat-list { 2 | /* lol */ 3 | } 4 | -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit-core.css -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit-core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit-core.min.css -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit-rtl.css -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit-rtl.min.css -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit.css -------------------------------------------------------------------------------- /dev/front/css/uikit/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/css/uikit/uikit.min.css -------------------------------------------------------------------------------- /dev/front/etc/JobWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/JobWorker.js -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-1.mp3 -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-1.webm -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-2.mp3 -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-2.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-2.webm -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-3.mp3 -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/hit-3.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/hit-3.webm -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/miss-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/miss-1.mp3 -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/miss-1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/miss-1.webm -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/miss-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/miss-2.mp3 -------------------------------------------------------------------------------- /dev/front/etc/audio/assaults/miss-2.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/etc/audio/assaults/miss-2.webm -------------------------------------------------------------------------------- /dev/front/icons/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/bitcoin.svg -------------------------------------------------------------------------------- /dev/front/icons/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/btc.svg -------------------------------------------------------------------------------- /dev/front/icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/external-link.svg -------------------------------------------------------------------------------- /dev/front/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/facebook.svg -------------------------------------------------------------------------------- /dev/front/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/instagram.svg -------------------------------------------------------------------------------- /dev/front/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/linkedin.svg -------------------------------------------------------------------------------- /dev/front/icons/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/icons/pinterest.svg -------------------------------------------------------------------------------- /dev/front/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /dev/front/images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /dev/front/images/apple-touch-icon-ipad-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/apple-touch-icon-ipad-retina.png -------------------------------------------------------------------------------- /dev/front/images/apple-touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/apple-touch-icon-ipad.png -------------------------------------------------------------------------------- /dev/front/images/apple-touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/apple-touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /dev/front/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/apple-touch-icon.png -------------------------------------------------------------------------------- /dev/front/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/browserconfig.xml -------------------------------------------------------------------------------- /dev/front/images/dead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/dead.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/1.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/10.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/11.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/12.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/13.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/14.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/15.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/16.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/17.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/18.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/19.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/2.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/20.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/21.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/22.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/23.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/24.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/25.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/26.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/27.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/28.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/29.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/3.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/30.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/4.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/5.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/6.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/7.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/8.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/9.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/matronator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/matronator.gif -------------------------------------------------------------------------------- /dev/front/images/default-avatars/matronator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/matronator.jpg -------------------------------------------------------------------------------- /dev/front/images/default-avatars/pase80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/default-avatars/pase80.jpg -------------------------------------------------------------------------------- /dev/front/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/favicon-16x16.png -------------------------------------------------------------------------------- /dev/front/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/favicon-32x32.png -------------------------------------------------------------------------------- /dev/front/images/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/favicon-48x48.png -------------------------------------------------------------------------------- /dev/front/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/favicon.ico -------------------------------------------------------------------------------- /dev/front/images/illustrations/bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/bar.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/biohazard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/biohazard.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/buildings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/buildings.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/buildings/ecstasy_lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/buildings/ecstasy_lab.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/buildings/meth_lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/buildings/meth_lab.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/buildings/poppy_field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/buildings/poppy_field.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/buildings/weedhouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/buildings/weedhouse.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/center.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/city.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/darknet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/darknet.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/drugs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/drugs.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/lands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/lands.jpg -------------------------------------------------------------------------------- /dev/front/images/illustrations/market.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/market.webp -------------------------------------------------------------------------------- /dev/front/images/illustrations/wastelands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/illustrations/wastelands.jpg -------------------------------------------------------------------------------- /dev/front/images/items/slots/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/back.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/body.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/body2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/body2.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/boot.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/headgear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/headgear.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/helmet.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/legs.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/mask.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/mask2.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/melee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/melee.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/ranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/ranged.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/shield.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/shoulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/shoulder.png -------------------------------------------------------------------------------- /dev/front/images/items/slots/two-handed-ranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/items/slots/two-handed-ranged.png -------------------------------------------------------------------------------- /dev/front/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/logo-black.png -------------------------------------------------------------------------------- /dev/front/images/logo-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/logo-mobile.png -------------------------------------------------------------------------------- /dev/front/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/logo-small.png -------------------------------------------------------------------------------- /dev/front/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/logo.svg -------------------------------------------------------------------------------- /dev/front/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/mstile-150x150.png -------------------------------------------------------------------------------- /dev/front/images/premium/1000btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/1000btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/100btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/100btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/10btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/10btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/250btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/250btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/25btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/25btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/500btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/500btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/50btc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/50btc.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/gold-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/gold-border.png -------------------------------------------------------------------------------- /dev/front/images/premium/green-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/green-frame.png -------------------------------------------------------------------------------- /dev/front/images/premium/half-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/half-star.png -------------------------------------------------------------------------------- /dev/front/images/premium/immune.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/immune.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/infected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/infected.jpg -------------------------------------------------------------------------------- /dev/front/images/premium/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/star.png -------------------------------------------------------------------------------- /dev/front/images/premium/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/star2.png -------------------------------------------------------------------------------- /dev/front/images/premium/star3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/star3.png -------------------------------------------------------------------------------- /dev/front/images/premium/survivor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/premium/survivor.jpg -------------------------------------------------------------------------------- /dev/front/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dev/front/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/site.webmanifest -------------------------------------------------------------------------------- /dev/front/images/splashscreens/ipad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/ipad_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/ipadpro1_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/ipadpro1_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/ipadpro2_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/ipadpro2_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/ipadpro3_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/ipadpro3_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphone5_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphone5_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphone6_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphone6_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphoneplus_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphoneplus_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphonex_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphonex_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphonexr_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphonexr_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/splashscreens/iphonexsmax_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/splashscreens/iphonexsmax_splash.jpg -------------------------------------------------------------------------------- /dev/front/images/support/0x9981F23fA0374D5A194c2eC1F32093C473c818b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/0x9981F23fA0374D5A194c2eC1F32093C473c818b9.png -------------------------------------------------------------------------------- /dev/front/images/support/35VRpVQaqFWjUCnVRpGineShz76QyYgSVg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/35VRpVQaqFWjUCnVRpGineShz76QyYgSVg.png -------------------------------------------------------------------------------- /dev/front/images/support/84yS17W3dLvV6Lj2XaATgYX4Ef7tPpGtmdBoanyL68GofxM2VQD8ZUNWaKpdyerJdZ7mceQ6r7e8G2om6q6k8zEZ4ndy2xG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/84yS17W3dLvV6Lj2XaATgYX4Ef7tPpGtmdBoanyL68GofxM2VQD8ZUNWaKpdyerJdZ7mceQ6r7e8G2om6q6k8zEZ4ndy2xG.png -------------------------------------------------------------------------------- /dev/front/images/support/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/kofi.png -------------------------------------------------------------------------------- /dev/front/images/support/ltc1q9nzu3a4gg240le0e7tch02d5j48arf2zgdz88q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/ltc1q9nzu3a4gg240le0e7tch02d5j48arf2zgdz88q.png -------------------------------------------------------------------------------- /dev/front/images/support/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/patreon.png -------------------------------------------------------------------------------- /dev/front/images/support/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/support/paypal.png -------------------------------------------------------------------------------- /dev/front/images/unlockables/ecstasy-lab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/unlockables/ecstasy-lab.jpg -------------------------------------------------------------------------------- /dev/front/images/unlockables/max-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/unlockables/max-energy.png -------------------------------------------------------------------------------- /dev/front/images/unlockables/poppy-field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/images/unlockables/poppy-field.jpg -------------------------------------------------------------------------------- /dev/front/js/assault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/assault.js -------------------------------------------------------------------------------- /dev/front/js/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/bar.js -------------------------------------------------------------------------------- /dev/front/js/buildings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/buildings.js -------------------------------------------------------------------------------- /dev/front/js/countdownBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/countdownBar.js -------------------------------------------------------------------------------- /dev/front/js/darknet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/darknet.js -------------------------------------------------------------------------------- /dev/front/js/imports/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/imports/dates.js -------------------------------------------------------------------------------- /dev/front/js/imports/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/imports/helpers.js -------------------------------------------------------------------------------- /dev/front/js/imports/inventorySlots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/imports/inventorySlots.js -------------------------------------------------------------------------------- /dev/front/js/imports/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/imports/settings.js -------------------------------------------------------------------------------- /dev/front/js/imports/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/imports/sidebar.js -------------------------------------------------------------------------------- /dev/front/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/index.js -------------------------------------------------------------------------------- /dev/front/js/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/intro.js -------------------------------------------------------------------------------- /dev/front/js/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/inventory.js -------------------------------------------------------------------------------- /dev/front/js/market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/market.js -------------------------------------------------------------------------------- /dev/front/js/paddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/paddle.js -------------------------------------------------------------------------------- /dev/front/js/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/serviceWorker.js -------------------------------------------------------------------------------- /dev/front/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/settings.js -------------------------------------------------------------------------------- /dev/front/js/spTrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/spTrain.js -------------------------------------------------------------------------------- /dev/front/js/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/statistics.js -------------------------------------------------------------------------------- /dev/front/js/stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/stripe.js -------------------------------------------------------------------------------- /dev/front/js/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/support.js -------------------------------------------------------------------------------- /dev/front/js/training.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/training.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/front/js/uikit/components/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/countdown.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/countdown.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/filter.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/filter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/filter.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/lightbox-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/lightbox-panel.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/lightbox-panel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/lightbox-panel.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/lightbox.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/lightbox.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/notification.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/notification.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/notification.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/parallax.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/parallax.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slider-parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slider-parallax.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slider-parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slider-parallax.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slider.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slider.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slideshow-parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slideshow-parallax.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slideshow-parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slideshow-parallax.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slideshow.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/slideshow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/slideshow.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/sortable.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/sortable.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/tooltip.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/tooltip.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/upload.js -------------------------------------------------------------------------------- /dev/front/js/uikit/components/upload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/components/upload.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit-core.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit-core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit-core.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit-icons.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit-icons.min.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit.js -------------------------------------------------------------------------------- /dev/front/js/uikit/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/dev/front/js/uikit/uikit.min.js -------------------------------------------------------------------------------- /drugs-prices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/drugs-prices.php -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /libs/CustomValidators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/CustomValidators.php -------------------------------------------------------------------------------- /libs/ImageGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/ImageGenerator.php -------------------------------------------------------------------------------- /libs/ImageStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/ImageStorage.php -------------------------------------------------------------------------------- /libs/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/Math.php -------------------------------------------------------------------------------- /libs/Strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/Strings.php -------------------------------------------------------------------------------- /libs/Timezones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/Timezones.php -------------------------------------------------------------------------------- /libs/VoteRewards.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/libs/VoteRewards.example.php -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /log/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/log/.htaccess -------------------------------------------------------------------------------- /mtrgen/presenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/mtrgen/presenter.json -------------------------------------------------------------------------------- /mtrgen/repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/mtrgen/repository.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/renovate.json -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess -------------------------------------------------------------------------------- /temp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/temp/.htaccess -------------------------------------------------------------------------------- /www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/.htaccess -------------------------------------------------------------------------------- /www/.maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/.maintenance.php -------------------------------------------------------------------------------- /www/.well-known/dnt-policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/.well-known/dnt-policy.txt -------------------------------------------------------------------------------- /www/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/.well-known/security.txt -------------------------------------------------------------------------------- /www/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/apple-touch-icon.png -------------------------------------------------------------------------------- /www/data/items/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess -------------------------------------------------------------------------------- /www/data/user-avatars/matronator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/data/user-avatars/matronator.gif -------------------------------------------------------------------------------- /www/data/user-avatars/matronator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/data/user-avatars/matronator.jpg -------------------------------------------------------------------------------- /www/data/user-avatars/pase80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/data/user-avatars/pase80.jpg -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/humans.txt -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/index.php -------------------------------------------------------------------------------- /www/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/report.php -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matronator/GlobalCollapse/HEAD/www/robots.txt --------------------------------------------------------------------------------