├── .browserslistrc ├── .editorconfig ├── .env.development ├── .env.master ├── .env.steam-development ├── .env.steam-release ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── balance-issue.md │ ├── bug_report.md │ ├── feature_request.md │ ├── performance-issue.md │ ├── qol-feature-request.md │ ├── ui-improvement.md │ └── visual-bug-or-grammer.md └── workflows │ ├── deploy-master.yml │ ├── deploy-release.yml │ └── stale.yml ├── .gitignore ├── .stylelintignore ├── .stylelintrc.json ├── LICENSE ├── MonospaceTypewriter.sfd ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── public ├── about.html ├── audio │ ├── credits.mp3 │ ├── news.mp3 │ ├── note1.mp3 │ ├── note10.mp3 │ ├── note2.mp3 │ ├── note3.mp3 │ ├── note4.mp3 │ ├── note5.mp3 │ ├── note6.mp3 │ ├── note7.mp3 │ ├── note8.mp3 │ ├── note9.mp3 │ └── s12-startup.mp3 ├── font_test.html ├── fungame │ ├── depression.css │ ├── depression.html │ └── depression.js ├── icon.icns ├── icon.png ├── images │ ├── achhidden.png │ ├── cage.png │ ├── cancer achievements.png │ ├── celestial-navigation-bg.webp │ ├── dark-bg.png │ ├── kred_single.png │ ├── laitela-icon-dark.svg │ ├── laitela-icon.svg │ ├── loading - Copy.png │ ├── loading.png │ ├── noise.png │ ├── normal achievements.png │ ├── realityanimbg.webm │ ├── s1-bg.svg │ ├── s12-bg.jpg │ ├── s12 │ │ ├── achievements.png │ │ ├── automation.png │ │ ├── celestials.png │ │ ├── challenges.png │ │ ├── desktop--discord-logo.png │ │ ├── desktop--games.png │ │ ├── desktop--windows-media-player.png │ │ ├── dimensions.png │ │ ├── eternity.png │ │ ├── game--alkahistorian.png │ │ ├── game--anti-idle.png │ │ ├── game--hex-game.png │ │ ├── game--melvor-idle.svg │ │ ├── game--mine-defense.png │ │ ├── game--monies2.png │ │ ├── game--synergism.png │ │ ├── game--trimps.png │ │ ├── game--universal-paperclips.png │ │ ├── game--wami.png │ │ ├── infinity.png │ │ ├── mending.png │ │ ├── options.png │ │ ├── reality.png │ │ ├── shop.png │ │ ├── statistics.png │ │ ├── win7-start-menu-inactive.png │ │ └── xmark.png │ ├── s2-bg.svg │ ├── s5-bg.jpg │ ├── s8-bg.jpg │ ├── secret achievements.png │ ├── snow1.png │ ├── snow2.png │ ├── snow3.png │ ├── stars-bg.png │ ├── stars-bg.webm │ ├── std_coin.png │ ├── synergismUI │ │ ├── AntimatterDimensions.png │ │ ├── challenges.png │ │ ├── corruption.png │ │ ├── dimensions.png │ │ ├── eternity.png │ │ ├── infinity.png │ │ ├── pre-mend-upgrades.png │ │ ├── prestige-buttons.png │ │ ├── reality.png │ │ └── time-studies.png │ └── unsmith.png ├── index.html ├── stylesheets │ ├── Barrio-Regular.ttf │ ├── BlobEmoji-Bold.ttf │ ├── MonospaceTypewriter.190830-2211.ttf │ ├── MonospaceTypewriter.ttf │ ├── Runescape.ttf │ ├── ad-slider-component.css │ ├── automator.css │ ├── classic.css │ ├── codemirror │ │ ├── codemirror.css │ │ ├── lint.css │ │ ├── liquibyte.css │ │ ├── panda-syntax.css │ │ └── show-hint.css │ ├── cursor.cur │ ├── cursor2.cur │ ├── fa-solid-900.ttf │ ├── fontawesome │ │ ├── css │ │ │ └── all.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── github-light.css │ ├── glyphs.css │ ├── modern-styles.css │ ├── styles.css │ ├── synergism.css │ ├── theme-AMOLED Metro.css │ ├── theme-AMOLED.css │ ├── theme-Dark Metro.css │ ├── theme-Dark.css │ ├── theme-Inverted Metro.css │ ├── theme-Inverted.css │ ├── theme-Metro.css │ ├── theme-S1.css │ ├── theme-S10.css │ ├── theme-S11.css │ ├── theme-S12.css │ ├── theme-S2.css │ ├── theme-S3.css │ ├── theme-S4.css │ ├── theme-S5.css │ ├── theme-S6.css │ ├── theme-S7.css │ ├── theme-S8.css │ ├── theme-S9.css │ ├── time-studies.css │ ├── tooltips.css │ ├── vis-network.css │ └── vue-sfc-classes.css └── version.txt ├── src ├── commit-watcher.js ├── components │ ├── BackgroundAnimations.vue │ ├── BlobBackground.vue │ ├── BlobSnowflake.vue │ ├── BlobSnowflakes.vue │ ├── ButtonCycle.vue │ ├── CelestialQuoteHistory.vue │ ├── ChallengeBox.vue │ ├── ChallengeGrid.vue │ ├── ChallengeGridCell.vue │ ├── ChallengeTabHeader.vue │ ├── CostDisplay.vue │ ├── CreditsDisplay.vue │ ├── CustomizeableTooltip.vue │ ├── DescriptionDisplay.vue │ ├── EffectDisplay.vue │ ├── EternityPointsHeader.vue │ ├── ExpandingControlBox.vue │ ├── GameSpeedDisplay.vue │ ├── GameUIComponent.vue │ ├── GameUiComponentFixed.vue │ ├── GenericDimensionRowText.vue │ ├── GlyphComponent.vue │ ├── GlyphSetName.vue │ ├── GlyphSetPreview.vue │ ├── GlyphTooltip.vue │ ├── GlyphTooltipEffect.vue │ ├── HintText.vue │ ├── HowToPlay.vue │ ├── InfinityPointsHeader.vue │ ├── InfinityUpgradeButton.vue │ ├── MendingPointsHeader.vue │ ├── ModalOptionsToggleButton.vue │ ├── OfflineSpeedupButton.vue │ ├── OpenModalHotkeysButton.vue │ ├── OptionsButton.vue │ ├── PlusMinusButton.vue │ ├── PrimaryButton.vue │ ├── PrimaryToggleButton.vue │ ├── RealityCurrencyHeader.vue │ ├── SaveTimer.vue │ ├── SliderComponent.vue │ ├── SpectateGame.vue │ ├── SpeedrunStatus.vue │ ├── ToggleButton.vue │ ├── modals │ │ ├── AmalgamGlyphCreationModal.vue │ │ ├── AutobuyerEditModal.vue │ │ ├── AutomatorScriptTemplate.vue │ │ ├── AwayProgressEntry.vue │ │ ├── AwayProgressModal.vue │ │ ├── BreakInfinityModal.vue │ │ ├── ChangeNameModal.vue │ │ ├── ChangelogModal.vue │ │ ├── ClearConstantsModal.vue │ │ ├── CorruptionFullEffectsModal.vue │ │ ├── CreditsModal.vue │ │ ├── DeleteAutomatorScriptModal.vue │ │ ├── EnslavedHintsModal.vue │ │ ├── GlyphSetSaveDeleteModal.vue │ │ ├── GlyphShowcasePanelEntry.vue │ │ ├── GlyphShowcasePanelModal.vue │ │ ├── H2PModal.vue │ │ ├── ImportAutomatorDataModal.vue │ │ ├── ImportFilterModal.vue │ │ ├── ImportFilterSingleType.vue │ │ ├── ImportSaveModal.vue │ │ ├── ImportTimeStudyConstants.vue │ │ ├── InformationModal.vue │ │ ├── InformationModalButton.vue │ │ ├── LoadGameEntry.vue │ │ ├── LoadGameModal.vue │ │ ├── MessageModal.vue │ │ ├── ModalCloseButton.vue │ │ ├── ModalConfirmationCheck.vue │ │ ├── ModalProgressBar.vue │ │ ├── ModalWrapper.vue │ │ ├── ModalWrapperChoice.vue │ │ ├── ModifySeedModal.vue │ │ ├── PelleEffectsModal.vue │ │ ├── PopupModal.vue │ │ ├── RealityGlyphCreationModal.vue │ │ ├── ReplaceGlyphModal.vue │ │ ├── RespecIAPModal.vue │ │ ├── SacrificeModal.vue │ │ ├── SingularityMilestonesModal.vue │ │ ├── SpeedrunModeModal.vue │ │ ├── StdStoreModal.vue │ │ ├── StdStoreRow.vue │ │ ├── StudyStringLine.vue │ │ ├── StudyStringModal.vue │ │ ├── StudyTreeInfo.vue │ │ ├── SwitchAutomatorEditorModal.vue │ │ ├── UiChoiceModal.vue │ │ ├── UndoGlyphModal.vue │ │ ├── UpgradeMechanicLockModal.vue │ │ ├── WarpRealityModal.vue │ │ ├── catchup │ │ │ ├── CatchupEntry.vue │ │ │ ├── CatchupGroup.vue │ │ │ └── CatchupModal.vue │ │ ├── celestial-quotes │ │ │ ├── CelestialQuoteBackground.vue │ │ │ ├── CelestialQuoteHistoryDisplay.vue │ │ │ ├── CelestialQuoteLine.vue │ │ │ ├── CelestialQuoteModal.vue │ │ │ └── templates │ │ │ │ └── CelestialQuoteLineBasicInteractable.vue │ │ ├── challenges │ │ │ ├── EternityChallengeStartModal.vue │ │ │ ├── InfinityChallengeStartModal.vue │ │ │ └── NormalChallengeStartModal.vue │ │ ├── cloud │ │ │ ├── CloudInvalidDataModal.vue │ │ │ ├── CloudLoadConflictModal.vue │ │ │ ├── CloudSaveConflictModal.vue │ │ │ └── SaveInfoEntry.vue │ │ ├── glyph-management │ │ │ ├── DeleteCompanionGlyphModal.vue │ │ │ ├── DeleteGlyphModal.vue │ │ │ ├── PurgeAllRejectedGlyphsModal.vue │ │ │ ├── PurgeAllUnprotectedGlyphsModal.vue │ │ │ ├── PurgeGlyphModal.vue │ │ │ ├── RefineGlyphModal.vue │ │ │ └── SacrificeGlyphModal.vue │ │ ├── options │ │ │ ├── AnimationOptionsModal.vue │ │ │ ├── AwayProgressOptionsEntry.vue │ │ │ ├── AwayProgressOptionsModal.vue │ │ │ ├── BackupEntry.vue │ │ │ ├── BackupWindowModal.vue │ │ │ ├── ConfirmationOptionsEntry.vue │ │ │ ├── ConfirmationOptionsModal.vue │ │ │ ├── HotkeysModal.vue │ │ │ ├── InfoDisplayOptionsModal.vue │ │ │ ├── ModalWrapperOptions.vue │ │ │ ├── NewsOptionsModal.vue │ │ │ ├── PreferredTreeModal.vue │ │ │ ├── SelectGlyphInfoDropdown.vue │ │ │ ├── SpeedUpModal.vue │ │ │ ├── SpeedUpReportModal.vue │ │ │ ├── glyph-appearance │ │ │ │ ├── CosmeticSetChoiceModal.vue │ │ │ │ ├── CosmeticSetDropdown.vue │ │ │ │ ├── GlyphCustomization.vue │ │ │ │ ├── GlyphCustomizationSingleType.vue │ │ │ │ ├── GlyphCustomizationSlidingWindow.vue │ │ │ │ ├── GlyphDisplayOptionsModal.vue │ │ │ │ └── SingleGlyphAppearanceModal.vue │ │ │ └── hidden-tabs │ │ │ │ ├── HiddenSubtabsButton.vue │ │ │ │ ├── HiddenTabGroup.vue │ │ │ │ └── HiddenTabsModal.vue │ │ ├── prestige │ │ │ ├── AntimatterGalaxyModal.vue │ │ │ ├── ArmageddonModal.vue │ │ │ ├── BigCrunchModal.vue │ │ │ ├── DimensionBoostModal.vue │ │ │ ├── EnterCelestialsModal.vue │ │ │ ├── EnterCelestialsRaPet.vue │ │ │ ├── EnterDilationModal.vue │ │ │ ├── EternityModal.vue │ │ │ ├── ExitChallengeModal.vue │ │ │ ├── ExitDilationModal.vue │ │ │ ├── HardResetModal.vue │ │ │ ├── RealityModal.vue │ │ │ ├── ReplicantiGalaxyModal.vue │ │ │ ├── ResetMendingModal.vue │ │ │ ├── ResetModal.vue │ │ │ └── ResetRealityModal.vue │ │ ├── secret-themes │ │ │ ├── S12GameEntries.vue │ │ │ ├── S12GamesModal.vue │ │ │ └── s12-games.js │ │ └── time-study-modal-preview │ │ │ ├── PseudoTimeStudyButton.vue │ │ │ ├── PseudoTimeStudyConnection.vue │ │ │ └── StudyStringPreview.vue │ ├── tabs │ │ ├── alchemy │ │ │ ├── AlchemyCircleNode.vue │ │ │ ├── AlchemyResourceArc.vue │ │ │ ├── AlchemyResourceInfo.vue │ │ │ ├── AlchemyTab.vue │ │ │ └── alchemy-circle-layout.js │ │ ├── antimatter-dimensions │ │ │ ├── AntimatterDimensionProgressBar.vue │ │ │ ├── AntimatterDimensionsTab.vue │ │ │ ├── ClassicAntimatterDimensionRow.vue │ │ │ ├── ClassicAntimatterDimensionsTab.vue │ │ │ ├── ClassicAntimatterDimensionsTabHeader.vue │ │ │ ├── ClassicAntimatterGalaxyRow.vue │ │ │ ├── ClassicDimensionBoostRow.vue │ │ │ ├── ModernAntimatterDimensionRow.vue │ │ │ ├── ModernAntimatterDimensionsTab.vue │ │ │ ├── ModernAntimatterGalaxyRow.vue │ │ │ ├── ModernDimensionBoostRow.vue │ │ │ ├── SynergismAntimatterDimensionRow.vue │ │ │ ├── SynergismAntimatterDimensionsTab.vue │ │ │ ├── SynergismAntimatterDimensionsTabHeader.vue │ │ │ ├── SynergismAntimatterGalaxyRow.vue │ │ │ ├── SynergismDimensionBoostRow.vue │ │ │ ├── SynergismTickspeed.vue │ │ │ └── TickspeedRow.vue │ │ ├── autobuyers │ │ │ ├── AutobuyerBox.vue │ │ │ ├── AutobuyerDropdownEntry.vue │ │ │ ├── AutobuyerGroupToggleLabel.vue │ │ │ ├── AutobuyerInput.vue │ │ │ ├── AutobuyerIntervalButton.vue │ │ │ ├── AutobuyerIntervalLabel.vue │ │ │ ├── AutobuyerModeButton.vue │ │ │ ├── AutobuyerSingleToggleLabel.vue │ │ │ ├── AutobuyerToggleLabel.vue │ │ │ ├── AutobuyerToggles.vue │ │ │ ├── AutobuyersTab.vue │ │ │ ├── BigCrunchAutobuyerBox.vue │ │ │ ├── DimensionAutobuyerBox.vue │ │ │ ├── DimensionBoostAutobuyerBox.vue │ │ │ ├── DimensionBulkButton.vue │ │ │ ├── EternityAutobuyerBox.vue │ │ │ ├── GalaxyAutobuyerBox.vue │ │ │ ├── MendingAutobuyerBox.vue │ │ │ ├── MultipleAutobuyersBox.vue │ │ │ ├── MultipleSingleAutobuyersGroup.vue │ │ │ ├── RealityAutobuyerBox.vue │ │ │ ├── SimpleAutobuyersMultiBox.vue │ │ │ ├── SingleAutobuyerBox.vue │ │ │ ├── SingleAutobuyerInRow.vue │ │ │ └── TickspeedAutobuyerBox.vue │ │ ├── automator │ │ │ ├── AutomatorBlockEditor.vue │ │ │ ├── AutomatorBlockSingleInput.vue │ │ │ ├── AutomatorBlockSingleRow.vue │ │ │ ├── AutomatorBlocks.vue │ │ │ ├── AutomatorButton.vue │ │ │ ├── AutomatorControls.vue │ │ │ ├── AutomatorDataTransferPage.vue │ │ │ ├── AutomatorDataTransferSingleEntry.vue │ │ │ ├── AutomatorDefinePage.vue │ │ │ ├── AutomatorDefineSingleEntry.vue │ │ │ ├── AutomatorDocs.vue │ │ │ ├── AutomatorDocsCommandList.vue │ │ │ ├── AutomatorDocsIntroPage.vue │ │ │ ├── AutomatorDocsManPage.vue │ │ │ ├── AutomatorDocsTemplateList.vue │ │ │ ├── AutomatorEditor.vue │ │ │ ├── AutomatorErrorPage.vue │ │ │ ├── AutomatorEventLog.vue │ │ │ ├── AutomatorModeSwitch.vue │ │ │ ├── AutomatorPointsList.vue │ │ │ ├── AutomatorScriptDropdownEntryList.vue │ │ │ ├── AutomatorTab.vue │ │ │ └── AutomatorTextEditor.vue │ │ ├── black-hole │ │ │ ├── BlackHoleChargingSliders.vue │ │ │ ├── BlackHoleStateRow.vue │ │ │ ├── BlackHoleTab.vue │ │ │ ├── BlackHoleUnlockButton.vue │ │ │ ├── BlackHoleUpgradeButton.vue │ │ │ ├── BlackHoleUpgradeRow.vue │ │ │ ├── ExpoBlackHoleUpgradeButton.vue │ │ │ ├── ExpoBlackHoleUpgradeRow.vue │ │ │ └── black-hole-animation.js │ │ ├── break-infinity │ │ │ ├── BreakInfinityButton.vue │ │ │ └── BreakInfinityTab.vue │ │ ├── celestial-effarig │ │ │ ├── EffarigRunUnlockReward.vue │ │ │ ├── EffarigTab.vue │ │ │ └── EffarigUnlockButton.vue │ │ ├── celestial-enslaved │ │ │ └── EnslavedTab.vue │ │ ├── celestial-laitela │ │ │ ├── AnnihilationButton.vue │ │ │ ├── DarkMatterDimensionGroup.vue │ │ │ ├── DarkMatterDimensionRow.vue │ │ │ ├── LaitelaAutobuyerPane.vue │ │ │ ├── LaitelaRunButton.vue │ │ │ ├── LaitelaTab.vue │ │ │ ├── SingularityMilestoneComponent.vue │ │ │ ├── SingularityMilestonePane.vue │ │ │ └── SingularityPane.vue │ │ ├── celestial-navigation │ │ │ ├── CelestialNavigationTab.vue │ │ │ ├── NodeBackground.vue │ │ │ ├── NodeOverlay.vue │ │ │ ├── NodeRing.vue │ │ │ ├── ProgressConnector.vue │ │ │ └── svg-ring-path.js │ │ ├── celestial-pelle │ │ │ ├── ArmageddonButton.vue │ │ │ ├── CreditsContainer.vue │ │ │ ├── FadeAway.vue │ │ │ ├── NewGame.vue │ │ │ ├── PelleBarPanel.vue │ │ │ ├── PelleGalaxyGeneratorPanel.vue │ │ │ ├── PelleRift.vue │ │ │ ├── PelleRiftBar.vue │ │ │ ├── PelleStrike.vue │ │ │ ├── PelleTab.vue │ │ │ ├── PelleUpgrade.vue │ │ │ ├── PelleUpgradePanel.vue │ │ │ └── RemnantGainFactor.vue │ │ ├── celestial-ra │ │ │ ├── RaPet.vue │ │ │ ├── RaPetLevelBar.vue │ │ │ ├── RaPetRemembranceButton.vue │ │ │ ├── RaTab.vue │ │ │ ├── RaUpgrade.vue │ │ │ ├── RaUpgradeIcon.vue │ │ │ └── RaUpgradePanel.vue │ │ ├── celestial-teresa │ │ │ ├── PerkShopUpgradeButton.vue │ │ │ └── TeresaTab.vue │ │ ├── celestial-v │ │ │ ├── VTab.vue │ │ │ └── VUnlockRequirement.vue │ │ ├── challenge-records │ │ │ ├── ChallengeRecordsList.vue │ │ │ └── ChallengeRecordsTab.vue │ │ ├── corruption │ │ │ ├── CorruptionChallengeTab.vue │ │ │ └── CorruptionUpgradeButton.vue │ │ ├── eternity-challenges │ │ │ ├── EternityChallengeBox.vue │ │ │ ├── EternityChallengeBoxWrapper.vue │ │ │ └── EternityChallengesTab.vue │ │ ├── eternity-milestones │ │ │ ├── EternityMilestoneButton.vue │ │ │ └── EternityMilestonesTab.vue │ │ ├── eternity-upgrades │ │ │ ├── EPMultiplierButton.vue │ │ │ ├── EternityUpgradeButton.vue │ │ │ └── EternityUpgradesTab.vue │ │ ├── glyph-set-records │ │ │ └── GlyphSetRecordsTab.vue │ │ ├── glyphs │ │ │ ├── CurrentGlyphEffect.vue │ │ │ ├── CurrentGlyphEffects.vue │ │ │ ├── EquippedGlyphs.vue │ │ │ ├── GlyphInventory.vue │ │ │ ├── GlyphLevelsAndWeights.vue │ │ │ ├── GlyphPeek.vue │ │ │ ├── GlyphsTab.vue │ │ │ ├── RealityAmplifyButton.vue │ │ │ ├── RealityReminder.vue │ │ │ ├── ResetRealityButton.vue │ │ │ ├── SacrificedGlyphs.vue │ │ │ ├── SingleGlyphCustomzationPanel.vue │ │ │ ├── TypeSacrifice.vue │ │ │ └── sidebar │ │ │ │ ├── AutoSacrificeAdvancedTab.vue │ │ │ │ ├── AutoSacrificeEffectTab.vue │ │ │ │ ├── GlyphAutosortButtonGroup.vue │ │ │ │ ├── GlyphCleanButtonGroup.vue │ │ │ │ ├── GlyphFilterPanel.vue │ │ │ │ ├── GlyphInventoryManagementPanel.vue │ │ │ │ ├── GlyphProtectedRowButtonGroup.vue │ │ │ │ ├── GlyphRejectionPanel.vue │ │ │ │ ├── GlyphSetSavePanel.vue │ │ │ │ ├── GlyphSortButtonGroup.vue │ │ │ │ ├── GlyphTabSidebar.vue │ │ │ │ └── SelectedEffectToggle.vue │ │ ├── imaginary-upgrades │ │ │ ├── ImaginaryUpgradeButton.vue │ │ │ └── ImaginaryUpgradesTab.vue │ │ ├── index.js │ │ ├── infinity-challenges │ │ │ ├── InfinityChallengeBox.vue │ │ │ └── InfinityChallengesTab.vue │ │ ├── infinity-dimensions │ │ │ ├── ClassicInfinityDimensionRow.vue │ │ │ ├── ClassicInfinityDimensionsTab.vue │ │ │ ├── InfinityDimensionsTab.vue │ │ │ ├── ModernInfinityDimensionRow.vue │ │ │ └── ModernInfinityDimensionsTab.vue │ │ ├── infinity-upgrades │ │ │ ├── InfinityUpgradesTab.vue │ │ │ ├── IpMultiplierButton.vue │ │ │ ├── KohlerInfinityUpgradeButton.vue │ │ │ └── KohlerInfinityUpgrades.vue │ │ ├── matter │ │ │ ├── MatterUpgradeButton.vue │ │ │ ├── MatterUpgrades.vue │ │ │ └── matter-dimensions │ │ │ │ ├── ClassicMatterDimensionRow.vue │ │ │ │ ├── ClassicMatterDimensionsTab.vue │ │ │ │ ├── ClassicMatterDimensionsTabHeader.vue │ │ │ │ ├── MatterDimensionsTab.vue │ │ │ │ ├── ModernMatterDimensionRow.vue │ │ │ │ ├── ModernMatterDimensionsTab.vue │ │ │ │ ├── SynergismMatterDimensionRow.vue │ │ │ │ ├── SynergismMatterDimensionsTab.vue │ │ │ │ └── SynergismMatterDimensionsTabHeader.vue │ │ ├── mending │ │ │ ├── KohlerMilestone.vue │ │ │ ├── KohlerMilestoneRow.vue │ │ │ ├── KohlerUpgradeButton.vue │ │ │ ├── KohlersRealm.vue │ │ │ ├── MendingMilestoneButton.vue │ │ │ ├── MendingMilestones.vue │ │ │ ├── MendingUpgradeButton.vue │ │ │ ├── MendingUpgrades.vue │ │ │ ├── WarpReality.vue │ │ │ ├── WarpRealityButton.vue │ │ │ └── WarpUpgradeButton.vue │ │ ├── multiversal-dimensions │ │ │ ├── ClassicMultiversalDimensionRow.vue │ │ │ ├── ClassicMultiversalDimensionsTab.vue │ │ │ ├── ModernMultiversalDimensionRow.vue │ │ │ ├── ModernMultiversalDimensionsTab.vue │ │ │ └── MultiversalDimensionsTab.vue │ │ ├── normal-achievements │ │ │ ├── NormalAchievement.vue │ │ │ ├── NormalAchievementRow.vue │ │ │ ├── NormalAchievementsTab.vue │ │ │ └── SwapAchievementImagesButton.vue │ │ ├── normal-challenges │ │ │ ├── NormalChallengeBox.vue │ │ │ └── NormalChallengesTab.vue │ │ ├── options-gameplay │ │ │ └── OptionsGameplayTab.vue │ │ ├── options-saving │ │ │ ├── AutosaveIntervalSlider.vue │ │ │ ├── OptionsSavingTab.vue │ │ │ └── SaveFileName.vue │ │ ├── options-visual │ │ │ ├── OptionsVisualTab.vue │ │ │ ├── SelectNotationDropdown.vue │ │ │ ├── SelectThemeDropdown.vue │ │ │ └── UpdateRateSlider.vue │ │ ├── past-prestige-runs │ │ │ ├── PastPrestigeRunsContainer.vue │ │ │ └── PastPrestigeRunsTab.vue │ │ ├── perks │ │ │ ├── PerkPointLabel.vue │ │ │ └── PerksTab.vue │ │ ├── reality-upgrades │ │ │ ├── RealityUpgradeButton.vue │ │ │ └── RealityUpgradesTab.vue │ │ ├── replicanti │ │ │ ├── ReplicantiGainText.vue │ │ │ ├── ReplicantiGalaxyButton.vue │ │ │ ├── ReplicantiTab.vue │ │ │ └── ReplicantiUpgradeButton.vue │ │ ├── secret-achievements │ │ │ ├── SecretAchievement.vue │ │ │ ├── SecretAchievementRow.vue │ │ │ └── SecretAchievementTab.vue │ │ ├── shop │ │ │ ├── ShopButton.vue │ │ │ └── ShopTab.vue │ │ ├── speedrun-milestones │ │ │ ├── PreviousSpeedrunInfo.vue │ │ │ ├── PreviousSpeedrunTab.vue │ │ │ ├── SpeedrunMilestoneCompare.vue │ │ │ ├── SpeedrunMilestoneSingle.vue │ │ │ └── SpeedrunMilestonesTab.vue │ │ ├── statistics │ │ │ ├── MultiplierBreakdownEntry.vue │ │ │ ├── MultiplierBreakdownTab.vue │ │ │ ├── StatisticsTab.vue │ │ │ ├── breakdown-entry-info-group.js │ │ │ ├── breakdown-entry-info.js │ │ │ ├── matter-scale.js │ │ │ └── percentage-rolling-average.js │ │ ├── time-dilation │ │ │ ├── DilationButton.vue │ │ │ ├── DilationUpgradeButton.vue │ │ │ ├── TachyonParticle.vue │ │ │ ├── TachyonParticles.vue │ │ │ └── TimeDilationTab.vue │ │ ├── time-dimensions │ │ │ ├── ClassicTimeDimensionRow.vue │ │ │ ├── ClassicTimeDimensionsTab.vue │ │ │ ├── ModernTimeDimensionRow.vue │ │ │ ├── ModernTimeDimensionsTab.vue │ │ │ └── TimeDimensionsTab.vue │ │ └── time-studies │ │ │ ├── DilationTimeStudy.vue │ │ │ ├── ECTimeStudy.vue │ │ │ ├── EnslavedTimeStudy.vue │ │ │ ├── HiddenTimeStudyConnection.vue │ │ │ ├── KohlerTimeStudy.vue │ │ │ ├── MyriadTimeStudy.vue │ │ │ ├── NormalTimeStudy.vue │ │ │ ├── SecretTimeStudy.vue │ │ │ ├── TimeStudiesTab.vue │ │ │ ├── TimeStudyButton.vue │ │ │ ├── TimeStudyConnection.vue │ │ │ ├── TriadTimeStudy.vue │ │ │ ├── time-study-tree-layout.js │ │ │ └── tt-shop │ │ │ ├── HoverMenu.vue │ │ │ ├── TimeStudySaveLoadButton.vue │ │ │ ├── TimeTheoremBuyButton.vue │ │ │ └── TimeTheoremShop.vue │ └── ui-modes │ │ ├── BigCrunchButton.vue │ │ ├── FailableEcText.vue │ │ ├── GameHeader.vue │ │ ├── HeaderBlackHole.vue │ │ ├── HeaderBlackHoleStatusText.vue │ │ ├── HeaderChallengeDisplay.vue │ │ ├── HeaderChallengeEffects.vue │ │ ├── HeaderPrestigeGroup.vue │ │ ├── HeaderTickspeedInfo.vue │ │ ├── NewsTicker.vue │ │ ├── classic │ │ ├── ClassicSubtabBar.vue │ │ ├── ClassicSubtabButton.vue │ │ ├── ClassicTabBar.vue │ │ ├── ClassicTabButton.vue │ │ └── ClassicUi.vue │ │ ├── modern │ │ ├── ModernSidebar.vue │ │ ├── ModernSidebarCurrency.vue │ │ ├── ModernTabButton.vue │ │ └── ModernUi.vue │ │ ├── prestige-header │ │ ├── BigCrunchButton.vue │ │ ├── EternityButton.vue │ │ ├── HeaderCenterContainer.vue │ │ ├── HeaderEternityContainer.vue │ │ ├── HeaderInfinityContainer.vue │ │ ├── MendingButton.vue │ │ ├── RealityButton.vue │ │ └── UnlockInfinityDimButton.vue │ │ ├── s12 │ │ ├── DesktopIcons.vue │ │ ├── README.md │ │ ├── S12Subtabs.vue │ │ ├── S12Taskbar.vue │ │ ├── S12Ui.vue │ │ ├── S12UiFixed.vue │ │ ├── TaskbarIcon.vue │ │ ├── desktop-icons.js │ │ └── windows.js │ │ └── synergism │ │ ├── SynergismEpHeader.vue │ │ ├── SynergismGameHeader.vue │ │ ├── SynergismHeaderPrestigeGroup.vue │ │ ├── SynergismSubtabBar.vue │ │ ├── SynergismSubtabButton.vue │ │ ├── SynergismTabBar.vue │ │ ├── SynergismTabButton.vue │ │ ├── SynergismUi.vue │ │ └── prestige-header │ │ ├── MendingButton.vue │ │ ├── SynergismBigCrunchButton.vue │ │ ├── SynergismEPHeaderContainer.vue │ │ ├── SynergismEternityButton.vue │ │ ├── SynergismHeaderCenterContainer.vue │ │ ├── SynergismHeaderInfinityContainer.vue │ │ └── SynergismRealityButton.vue ├── core │ ├── achievements │ │ ├── achievement-timer.js │ │ ├── normal-achievement.js │ │ └── secret-achievement.js │ ├── async-utils.js │ ├── autobuyers │ │ ├── annihilation-autobuyer.js │ │ ├── antimatter-dimension-autobuyer.js │ │ ├── autobuyer.js │ │ ├── autobuyers.js │ │ ├── big-crunch-autobuyer.js │ │ ├── black-hole-power-autobuyer.js │ │ ├── dark-matter-dimension-ascension-autobuyer.js │ │ ├── dark-matter-dimension-autobuyer.js │ │ ├── dilation-upgrade-autobuyer.js │ │ ├── dimboost-autobuyer.js │ │ ├── eternity-autobuyer.js │ │ ├── expo-black-hole-power-autobuyer.js │ │ ├── galaxy-autobuyer.js │ │ ├── galgen-autobuyer.js │ │ ├── imaginary-upgrade-autobuyer.js │ │ ├── infinity-dimension-autobuyer.js │ │ ├── memory-autobuyer.js │ │ ├── mending-autobuyer.js │ │ ├── music-glyph-autobuyer.js │ │ ├── nr-imaginary-upgrade-autobuyer.js │ │ ├── nr-reality-upgrade-autobuyer.js │ │ ├── pelle-upgrade-autobuyer.js │ │ ├── prestige-currency-multiplier-autobuyer.js │ │ ├── ra-pet-autobuyer.js │ │ ├── reality-autobuyer.js │ │ ├── reality-upgrade-autobuyer.js │ │ ├── replicanti-galaxy-autobuyer.js │ │ ├── replicanti-upgrade-autobuyer.js │ │ ├── sacrifice-autobuyer.js │ │ ├── singulaity-cap-autobuyer.js │ │ ├── singularity-autobuyer.js │ │ ├── tesseract-autobuyer.js │ │ ├── tickspeed-autobuyer.js │ │ ├── time-dimension-autobuyer.js │ │ └── time-theorem-autobuyer.js │ ├── automator │ │ ├── automator-backend.js │ │ ├── automator-codemirror.js │ │ ├── automator-commands.js │ │ ├── automator-points.js │ │ ├── compiler.js │ │ ├── index.js │ │ ├── lexer.js │ │ ├── parser.js │ │ └── script-templates.js │ ├── away-progress.js │ ├── big-crunch.js │ ├── black-hole.js │ ├── break-infinity-upgrades.js │ ├── cache.js │ ├── celestials │ │ ├── V.js │ │ ├── celestials.js │ │ ├── destroyer.js │ │ ├── effarig.js │ │ ├── enslaved.js │ │ ├── kohler.js │ │ ├── laitela │ │ │ ├── dark-matter-dimension.js │ │ │ ├── dark-matter-dimension_rewrite.js │ │ │ ├── laitela.js │ │ │ └── singularity.js │ │ ├── pelle │ │ │ ├── galaxy-generator.js │ │ │ ├── game-end.js │ │ │ ├── pelle.js │ │ │ ├── rifts.js │ │ │ ├── strikes.js │ │ │ └── zalgo.js │ │ ├── quotes.js │ │ ├── ra │ │ │ ├── alchemy.js │ │ │ ├── ra-upgrades.js │ │ │ └── ra.js │ │ └── teresa.js │ ├── confirmations.js │ ├── constants.js │ ├── corruption-upgrades.js │ ├── corruption.js │ ├── crash.js │ ├── currency.js │ ├── devtools.js │ ├── dilation.js │ ├── dimboost.js │ ├── dimensions │ │ ├── antimatter-dimension.js │ │ ├── dimension.js │ │ ├── infinity-dimension.js │ │ ├── matter-dimension.js │ │ ├── multiversal-dimension.js │ │ └── time-dimension.js │ ├── discord-parser.js │ ├── eternity-challenge.js │ ├── eternity.js │ ├── event-hub.js │ ├── expo-black-hole.js │ ├── extensions.js │ ├── format.js │ ├── full-screen-animation-handler.js │ ├── galaxy.js │ ├── game-mechanics │ │ ├── bit-purchasable.js │ │ ├── bit-upgrade-state.js │ │ ├── effect.js │ │ ├── effects.js │ │ ├── game-mechanic.js │ │ ├── index.js │ │ ├── puchasable.js │ │ ├── rebuyable.js │ │ └── set-purchasable.js │ ├── garble-text.js │ ├── globals.js │ ├── glyph-effects.js │ ├── glyphs │ │ ├── auto-glyph-processor.js │ │ ├── glyph-core.js │ │ ├── glyph-cosmetics.js │ │ ├── glyph-effects.js │ │ ├── glyph-generator.js │ │ └── glyph-purge-handler.js │ ├── hotkeys.js │ ├── imaginary-upgrades.js │ ├── infinity-challenges.js │ ├── infinity-upgrades.js │ ├── intervals.js │ ├── keyboard.js │ ├── kohler-infinity-upgrades.js │ ├── kohler-milestones.js │ ├── kohler-upgrades.js │ ├── longpress.js │ ├── machines.js │ ├── math.js │ ├── matter-upgrades.js │ ├── mending-upgrades.js │ ├── mending.js │ ├── modal.js │ ├── new-game.js │ ├── news-ticker.js │ ├── normal-challenges.js │ ├── notations.js │ ├── notify.js │ ├── options.js │ ├── payments.js │ ├── performance-stats.js │ ├── perks.js │ ├── player-progress.js │ ├── player.js │ ├── polyfill.js │ ├── reality-upgrades.js │ ├── reality.js │ ├── replicanti.js │ ├── sacrifice.js │ ├── secret-formula │ │ ├── achievements │ │ │ ├── index.js │ │ │ ├── normal-achievements.js │ │ │ └── secret-achievements.js │ │ ├── away-progress-types.js │ │ ├── catchup-resources.js │ │ ├── celestials │ │ │ ├── alchemy.js │ │ │ ├── effarig.js │ │ │ ├── enslaved.js │ │ │ ├── galaxy-generator.js │ │ │ ├── index.js │ │ │ ├── navigation-sigils │ │ │ │ ├── final-sigil.js │ │ │ │ └── galaxy-icon.js │ │ │ ├── navigation.js │ │ │ ├── pelle-upgrades.js │ │ │ ├── perk-shop.js │ │ │ ├── quotes │ │ │ │ ├── destroyer.js │ │ │ │ ├── effarig.js │ │ │ │ ├── enslaved.js │ │ │ │ ├── index.js │ │ │ │ ├── kohler.js │ │ │ │ ├── laitela.js │ │ │ │ ├── pelle.js │ │ │ │ ├── ra.js │ │ │ │ ├── teresa.js │ │ │ │ └── v.js │ │ │ ├── ra-upgrades.js │ │ │ ├── ra.js │ │ │ ├── rifts.js │ │ │ ├── singularity-milestones.js │ │ │ ├── strikes.js │ │ │ ├── teresa.js │ │ │ └── v.js │ │ ├── challenges │ │ │ ├── corruption-challenge.js │ │ │ ├── eternity-challenges.js │ │ │ ├── index.js │ │ │ ├── infinity-challenges.js │ │ │ └── normal-challenges.js │ │ ├── changelog.js │ │ ├── confirmation-types.js │ │ ├── credits.js │ │ ├── discord-rich-presence.js │ │ ├── eternity │ │ │ ├── dilation-upgrades.js │ │ │ ├── eternity-milestones.js │ │ │ ├── eternity-upgrades.js │ │ │ ├── index.js │ │ │ └── time-studies │ │ │ │ ├── dilation-time-studies.js │ │ │ │ ├── ec-time-studies.js │ │ │ │ └── normal-time-studies.js │ │ ├── game-database.js │ │ ├── h2p.js │ │ ├── index.js │ │ ├── infinity │ │ │ ├── break-infinity-upgrades.js │ │ │ ├── index.js │ │ │ └── infinity-upgrades.js │ │ ├── mending │ │ │ ├── corruption-upgrades.js │ │ │ ├── corruption.js │ │ │ ├── index.js │ │ │ ├── kohler-infinity-upgrades.js │ │ │ ├── kohler-milestones.js │ │ │ ├── kohler-unlock-progress.js │ │ │ ├── kohler-upgrades.js │ │ │ ├── matter-upgrades.js │ │ │ ├── mending-milestones.js │ │ │ ├── mending-upgrades.js │ │ │ └── warp-upgrades.js │ │ ├── multiplier-tab │ │ │ ├── antimatter-dimensions.js │ │ │ ├── antimatter.js │ │ │ ├── dilated-time.js │ │ │ ├── eternities.js │ │ │ ├── eternity-points.js │ │ │ ├── galaxies.js │ │ │ ├── gamespeed.js │ │ │ ├── general.js │ │ │ ├── helper-functions.js │ │ │ ├── icons.js │ │ │ ├── index.js │ │ │ ├── infinities.js │ │ │ ├── infinity-dimensions.js │ │ │ ├── infinity-points.js │ │ │ ├── replicanti.js │ │ │ ├── score.js │ │ │ ├── tachyon-particles.js │ │ │ ├── tickspeed.js │ │ │ ├── time-dimensions.js │ │ │ ├── tree.js │ │ │ └── values.js │ │ ├── news.js │ │ ├── progress-checker.js │ │ ├── reality │ │ │ ├── automator.js │ │ │ ├── glyph-cosmetics.js │ │ │ ├── glyph-effects.js │ │ │ ├── glyph-sacrifices.js │ │ │ ├── glyph-types.js │ │ │ ├── imaginary-upgrades.js │ │ │ ├── index.js │ │ │ ├── perks.js │ │ │ └── reality-upgrades.js │ │ ├── script-templates.js │ │ ├── shop-purchases.js │ │ ├── speedrun-milestones.js │ │ ├── tab-notifications.js │ │ └── tabs.js │ ├── shop.js │ ├── speedrun.js │ ├── storage │ │ ├── base64-binary.js │ │ ├── cloud-saving.js │ │ ├── dev-migrations.js │ │ ├── firebase-config.js │ │ ├── index.js │ │ ├── migrations.js │ │ ├── progress-checker.js │ │ ├── serializer.js │ │ └── storage.js │ ├── tab-notifications.js │ ├── tabs.js │ ├── themes.js │ ├── tickspeed.js │ ├── time-studies │ │ ├── dilation-time-study.js │ │ ├── ec-time-study.js │ │ ├── index.js │ │ ├── normal-time-study.js │ │ ├── time-studies.js │ │ ├── time-study-connections.js │ │ └── time-study-tree.js │ ├── time-theorems.js │ ├── time.js │ ├── timespan.js │ ├── tutorial.js │ ├── ui.init.js │ ├── ui.js │ ├── utils.js │ ├── warp-upgrades.js │ └── word-shift.js ├── env.js ├── game.js ├── main.js ├── merge-globals.js ├── shims.js ├── steam │ ├── bindings │ │ ├── PlayFabClientApi.js │ │ ├── electron.js │ │ ├── greenworks.js │ │ ├── node-module.js │ │ └── playfab.js │ ├── electron-runtime.js │ ├── index.js │ ├── steam-purchases.js │ └── steam-runtime.js ├── supported-browsers.js ├── typings │ ├── PlayFabClientApi.d.ts │ ├── Playfab.d.ts │ ├── break_infinity.d.ts │ └── greenworks.d.ts └── utility │ ├── deepmerge.js │ ├── index.js │ ├── open-external-link.js │ └── type-check.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | VUE_APP_DEV=true 2 | -------------------------------------------------------------------------------- /.env.master: -------------------------------------------------------------------------------- 1 | VUE_APP_DEV=true -------------------------------------------------------------------------------- /.env.steam-development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.env.steam-development -------------------------------------------------------------------------------- /.env.steam-release: -------------------------------------------------------------------------------- 1 | VUE_APP_STEAM=true 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/balance-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/balance-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/performance-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/qol-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/qol-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ui-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/ui-improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/visual-bug-or-grammer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/ISSUE_TEMPLATE/visual-bug-or-grammer.md -------------------------------------------------------------------------------- /.github/workflows/deploy-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/workflows/deploy-master.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/workflows/deploy-release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/LICENSE -------------------------------------------------------------------------------- /MonospaceTypewriter.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/MonospaceTypewriter.sfd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/babel.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/package.json -------------------------------------------------------------------------------- /public/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/about.html -------------------------------------------------------------------------------- /public/audio/credits.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/credits.mp3 -------------------------------------------------------------------------------- /public/audio/news.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/news.mp3 -------------------------------------------------------------------------------- /public/audio/note1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note1.mp3 -------------------------------------------------------------------------------- /public/audio/note10.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note10.mp3 -------------------------------------------------------------------------------- /public/audio/note2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note2.mp3 -------------------------------------------------------------------------------- /public/audio/note3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note3.mp3 -------------------------------------------------------------------------------- /public/audio/note4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note4.mp3 -------------------------------------------------------------------------------- /public/audio/note5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note5.mp3 -------------------------------------------------------------------------------- /public/audio/note6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note6.mp3 -------------------------------------------------------------------------------- /public/audio/note7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note7.mp3 -------------------------------------------------------------------------------- /public/audio/note8.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note8.mp3 -------------------------------------------------------------------------------- /public/audio/note9.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/note9.mp3 -------------------------------------------------------------------------------- /public/audio/s12-startup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/audio/s12-startup.mp3 -------------------------------------------------------------------------------- /public/font_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/font_test.html -------------------------------------------------------------------------------- /public/fungame/depression.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/fungame/depression.css -------------------------------------------------------------------------------- /public/fungame/depression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/fungame/depression.html -------------------------------------------------------------------------------- /public/fungame/depression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/fungame/depression.js -------------------------------------------------------------------------------- /public/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/icon.icns -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/images/achhidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/achhidden.png -------------------------------------------------------------------------------- /public/images/cage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/cage.png -------------------------------------------------------------------------------- /public/images/cancer achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/cancer achievements.png -------------------------------------------------------------------------------- /public/images/celestial-navigation-bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/celestial-navigation-bg.webp -------------------------------------------------------------------------------- /public/images/dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/dark-bg.png -------------------------------------------------------------------------------- /public/images/kred_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/kred_single.png -------------------------------------------------------------------------------- /public/images/laitela-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/laitela-icon-dark.svg -------------------------------------------------------------------------------- /public/images/laitela-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/laitela-icon.svg -------------------------------------------------------------------------------- /public/images/loading - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/loading - Copy.png -------------------------------------------------------------------------------- /public/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/loading.png -------------------------------------------------------------------------------- /public/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/noise.png -------------------------------------------------------------------------------- /public/images/normal achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/normal achievements.png -------------------------------------------------------------------------------- /public/images/realityanimbg.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/realityanimbg.webm -------------------------------------------------------------------------------- /public/images/s1-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s1-bg.svg -------------------------------------------------------------------------------- /public/images/s12-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12-bg.jpg -------------------------------------------------------------------------------- /public/images/s12/achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/achievements.png -------------------------------------------------------------------------------- /public/images/s12/automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/automation.png -------------------------------------------------------------------------------- /public/images/s12/celestials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/celestials.png -------------------------------------------------------------------------------- /public/images/s12/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/challenges.png -------------------------------------------------------------------------------- /public/images/s12/desktop--discord-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/desktop--discord-logo.png -------------------------------------------------------------------------------- /public/images/s12/desktop--games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/desktop--games.png -------------------------------------------------------------------------------- /public/images/s12/desktop--windows-media-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/desktop--windows-media-player.png -------------------------------------------------------------------------------- /public/images/s12/dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/dimensions.png -------------------------------------------------------------------------------- /public/images/s12/eternity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/eternity.png -------------------------------------------------------------------------------- /public/images/s12/game--alkahistorian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--alkahistorian.png -------------------------------------------------------------------------------- /public/images/s12/game--anti-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--anti-idle.png -------------------------------------------------------------------------------- /public/images/s12/game--hex-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--hex-game.png -------------------------------------------------------------------------------- /public/images/s12/game--melvor-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--melvor-idle.svg -------------------------------------------------------------------------------- /public/images/s12/game--mine-defense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--mine-defense.png -------------------------------------------------------------------------------- /public/images/s12/game--monies2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--monies2.png -------------------------------------------------------------------------------- /public/images/s12/game--synergism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--synergism.png -------------------------------------------------------------------------------- /public/images/s12/game--trimps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--trimps.png -------------------------------------------------------------------------------- /public/images/s12/game--universal-paperclips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--universal-paperclips.png -------------------------------------------------------------------------------- /public/images/s12/game--wami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/game--wami.png -------------------------------------------------------------------------------- /public/images/s12/infinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/infinity.png -------------------------------------------------------------------------------- /public/images/s12/mending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/mending.png -------------------------------------------------------------------------------- /public/images/s12/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/options.png -------------------------------------------------------------------------------- /public/images/s12/reality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/reality.png -------------------------------------------------------------------------------- /public/images/s12/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/shop.png -------------------------------------------------------------------------------- /public/images/s12/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/statistics.png -------------------------------------------------------------------------------- /public/images/s12/win7-start-menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/win7-start-menu-inactive.png -------------------------------------------------------------------------------- /public/images/s12/xmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s12/xmark.png -------------------------------------------------------------------------------- /public/images/s2-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s2-bg.svg -------------------------------------------------------------------------------- /public/images/s5-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s5-bg.jpg -------------------------------------------------------------------------------- /public/images/s8-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/s8-bg.jpg -------------------------------------------------------------------------------- /public/images/secret achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/secret achievements.png -------------------------------------------------------------------------------- /public/images/snow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/snow1.png -------------------------------------------------------------------------------- /public/images/snow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/snow2.png -------------------------------------------------------------------------------- /public/images/snow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/snow3.png -------------------------------------------------------------------------------- /public/images/stars-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/stars-bg.png -------------------------------------------------------------------------------- /public/images/stars-bg.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/stars-bg.webm -------------------------------------------------------------------------------- /public/images/std_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/std_coin.png -------------------------------------------------------------------------------- /public/images/synergismUI/AntimatterDimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/AntimatterDimensions.png -------------------------------------------------------------------------------- /public/images/synergismUI/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/challenges.png -------------------------------------------------------------------------------- /public/images/synergismUI/corruption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/corruption.png -------------------------------------------------------------------------------- /public/images/synergismUI/dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/dimensions.png -------------------------------------------------------------------------------- /public/images/synergismUI/eternity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/eternity.png -------------------------------------------------------------------------------- /public/images/synergismUI/infinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/infinity.png -------------------------------------------------------------------------------- /public/images/synergismUI/pre-mend-upgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/pre-mend-upgrades.png -------------------------------------------------------------------------------- /public/images/synergismUI/prestige-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/prestige-buttons.png -------------------------------------------------------------------------------- /public/images/synergismUI/reality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/reality.png -------------------------------------------------------------------------------- /public/images/synergismUI/time-studies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/synergismUI/time-studies.png -------------------------------------------------------------------------------- /public/images/unsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/images/unsmith.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/index.html -------------------------------------------------------------------------------- /public/stylesheets/Barrio-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/Barrio-Regular.ttf -------------------------------------------------------------------------------- /public/stylesheets/BlobEmoji-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/BlobEmoji-Bold.ttf -------------------------------------------------------------------------------- /public/stylesheets/MonospaceTypewriter.190830-2211.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/MonospaceTypewriter.190830-2211.ttf -------------------------------------------------------------------------------- /public/stylesheets/MonospaceTypewriter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/MonospaceTypewriter.ttf -------------------------------------------------------------------------------- /public/stylesheets/Runescape.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/Runescape.ttf -------------------------------------------------------------------------------- /public/stylesheets/ad-slider-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/ad-slider-component.css -------------------------------------------------------------------------------- /public/stylesheets/automator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/automator.css -------------------------------------------------------------------------------- /public/stylesheets/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/classic.css -------------------------------------------------------------------------------- /public/stylesheets/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/codemirror/codemirror.css -------------------------------------------------------------------------------- /public/stylesheets/codemirror/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/codemirror/lint.css -------------------------------------------------------------------------------- /public/stylesheets/codemirror/liquibyte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/codemirror/liquibyte.css -------------------------------------------------------------------------------- /public/stylesheets/codemirror/panda-syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/codemirror/panda-syntax.css -------------------------------------------------------------------------------- /public/stylesheets/codemirror/show-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/codemirror/show-hint.css -------------------------------------------------------------------------------- /public/stylesheets/cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/cursor.cur -------------------------------------------------------------------------------- /public/stylesheets/cursor2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/cursor2.cur -------------------------------------------------------------------------------- /public/stylesheets/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/css/all.css -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/stylesheets/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/github-light.css -------------------------------------------------------------------------------- /public/stylesheets/glyphs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/glyphs.css -------------------------------------------------------------------------------- /public/stylesheets/modern-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/modern-styles.css -------------------------------------------------------------------------------- /public/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/styles.css -------------------------------------------------------------------------------- /public/stylesheets/synergism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/synergism.css -------------------------------------------------------------------------------- /public/stylesheets/theme-AMOLED Metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-AMOLED Metro.css -------------------------------------------------------------------------------- /public/stylesheets/theme-AMOLED.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-AMOLED.css -------------------------------------------------------------------------------- /public/stylesheets/theme-Dark Metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-Dark Metro.css -------------------------------------------------------------------------------- /public/stylesheets/theme-Dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-Dark.css -------------------------------------------------------------------------------- /public/stylesheets/theme-Inverted Metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-Inverted Metro.css -------------------------------------------------------------------------------- /public/stylesheets/theme-Inverted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-Inverted.css -------------------------------------------------------------------------------- /public/stylesheets/theme-Metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-Metro.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S1.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S10.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S10.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S11.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S11.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S12.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S12.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S2.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S3.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S4.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S5.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S6.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S7.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S8.css -------------------------------------------------------------------------------- /public/stylesheets/theme-S9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/theme-S9.css -------------------------------------------------------------------------------- /public/stylesheets/time-studies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/time-studies.css -------------------------------------------------------------------------------- /public/stylesheets/tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/tooltips.css -------------------------------------------------------------------------------- /public/stylesheets/vis-network.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/vis-network.css -------------------------------------------------------------------------------- /public/stylesheets/vue-sfc-classes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/stylesheets/vue-sfc-classes.css -------------------------------------------------------------------------------- /public/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/public/version.txt -------------------------------------------------------------------------------- /src/commit-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/commit-watcher.js -------------------------------------------------------------------------------- /src/components/BackgroundAnimations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/BackgroundAnimations.vue -------------------------------------------------------------------------------- /src/components/BlobBackground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/BlobBackground.vue -------------------------------------------------------------------------------- /src/components/BlobSnowflake.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/BlobSnowflake.vue -------------------------------------------------------------------------------- /src/components/BlobSnowflakes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/BlobSnowflakes.vue -------------------------------------------------------------------------------- /src/components/ButtonCycle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ButtonCycle.vue -------------------------------------------------------------------------------- /src/components/CelestialQuoteHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/CelestialQuoteHistory.vue -------------------------------------------------------------------------------- /src/components/ChallengeBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ChallengeBox.vue -------------------------------------------------------------------------------- /src/components/ChallengeGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ChallengeGrid.vue -------------------------------------------------------------------------------- /src/components/ChallengeGridCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ChallengeGridCell.vue -------------------------------------------------------------------------------- /src/components/ChallengeTabHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ChallengeTabHeader.vue -------------------------------------------------------------------------------- /src/components/CostDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/CostDisplay.vue -------------------------------------------------------------------------------- /src/components/CreditsDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/CreditsDisplay.vue -------------------------------------------------------------------------------- /src/components/CustomizeableTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/CustomizeableTooltip.vue -------------------------------------------------------------------------------- /src/components/DescriptionDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/DescriptionDisplay.vue -------------------------------------------------------------------------------- /src/components/EffectDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/EffectDisplay.vue -------------------------------------------------------------------------------- /src/components/EternityPointsHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/EternityPointsHeader.vue -------------------------------------------------------------------------------- /src/components/ExpandingControlBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ExpandingControlBox.vue -------------------------------------------------------------------------------- /src/components/GameSpeedDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GameSpeedDisplay.vue -------------------------------------------------------------------------------- /src/components/GameUIComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GameUIComponent.vue -------------------------------------------------------------------------------- /src/components/GameUiComponentFixed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GameUiComponentFixed.vue -------------------------------------------------------------------------------- /src/components/GenericDimensionRowText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GenericDimensionRowText.vue -------------------------------------------------------------------------------- /src/components/GlyphComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GlyphComponent.vue -------------------------------------------------------------------------------- /src/components/GlyphSetName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GlyphSetName.vue -------------------------------------------------------------------------------- /src/components/GlyphSetPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GlyphSetPreview.vue -------------------------------------------------------------------------------- /src/components/GlyphTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GlyphTooltip.vue -------------------------------------------------------------------------------- /src/components/GlyphTooltipEffect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/GlyphTooltipEffect.vue -------------------------------------------------------------------------------- /src/components/HintText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/HintText.vue -------------------------------------------------------------------------------- /src/components/HowToPlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/HowToPlay.vue -------------------------------------------------------------------------------- /src/components/InfinityPointsHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/InfinityPointsHeader.vue -------------------------------------------------------------------------------- /src/components/InfinityUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/InfinityUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/MendingPointsHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/MendingPointsHeader.vue -------------------------------------------------------------------------------- /src/components/ModalOptionsToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ModalOptionsToggleButton.vue -------------------------------------------------------------------------------- /src/components/OfflineSpeedupButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/OfflineSpeedupButton.vue -------------------------------------------------------------------------------- /src/components/OpenModalHotkeysButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/OpenModalHotkeysButton.vue -------------------------------------------------------------------------------- /src/components/OptionsButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/OptionsButton.vue -------------------------------------------------------------------------------- /src/components/PlusMinusButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/PlusMinusButton.vue -------------------------------------------------------------------------------- /src/components/PrimaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/PrimaryButton.vue -------------------------------------------------------------------------------- /src/components/PrimaryToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/PrimaryToggleButton.vue -------------------------------------------------------------------------------- /src/components/RealityCurrencyHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/RealityCurrencyHeader.vue -------------------------------------------------------------------------------- /src/components/SaveTimer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/SaveTimer.vue -------------------------------------------------------------------------------- /src/components/SliderComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/SliderComponent.vue -------------------------------------------------------------------------------- /src/components/SpectateGame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/SpectateGame.vue -------------------------------------------------------------------------------- /src/components/SpeedrunStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/SpeedrunStatus.vue -------------------------------------------------------------------------------- /src/components/ToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ToggleButton.vue -------------------------------------------------------------------------------- /src/components/modals/AmalgamGlyphCreationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/AmalgamGlyphCreationModal.vue -------------------------------------------------------------------------------- /src/components/modals/AutobuyerEditModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/AutobuyerEditModal.vue -------------------------------------------------------------------------------- /src/components/modals/AutomatorScriptTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/AutomatorScriptTemplate.vue -------------------------------------------------------------------------------- /src/components/modals/AwayProgressEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/AwayProgressEntry.vue -------------------------------------------------------------------------------- /src/components/modals/AwayProgressModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/AwayProgressModal.vue -------------------------------------------------------------------------------- /src/components/modals/BreakInfinityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/BreakInfinityModal.vue -------------------------------------------------------------------------------- /src/components/modals/ChangeNameModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ChangeNameModal.vue -------------------------------------------------------------------------------- /src/components/modals/ChangelogModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ChangelogModal.vue -------------------------------------------------------------------------------- /src/components/modals/ClearConstantsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ClearConstantsModal.vue -------------------------------------------------------------------------------- /src/components/modals/CorruptionFullEffectsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/CorruptionFullEffectsModal.vue -------------------------------------------------------------------------------- /src/components/modals/CreditsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/CreditsModal.vue -------------------------------------------------------------------------------- /src/components/modals/DeleteAutomatorScriptModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/DeleteAutomatorScriptModal.vue -------------------------------------------------------------------------------- /src/components/modals/EnslavedHintsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/EnslavedHintsModal.vue -------------------------------------------------------------------------------- /src/components/modals/GlyphSetSaveDeleteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/GlyphSetSaveDeleteModal.vue -------------------------------------------------------------------------------- /src/components/modals/GlyphShowcasePanelEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/GlyphShowcasePanelEntry.vue -------------------------------------------------------------------------------- /src/components/modals/GlyphShowcasePanelModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/GlyphShowcasePanelModal.vue -------------------------------------------------------------------------------- /src/components/modals/H2PModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/H2PModal.vue -------------------------------------------------------------------------------- /src/components/modals/ImportAutomatorDataModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ImportAutomatorDataModal.vue -------------------------------------------------------------------------------- /src/components/modals/ImportFilterModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ImportFilterModal.vue -------------------------------------------------------------------------------- /src/components/modals/ImportFilterSingleType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ImportFilterSingleType.vue -------------------------------------------------------------------------------- /src/components/modals/ImportSaveModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ImportSaveModal.vue -------------------------------------------------------------------------------- /src/components/modals/ImportTimeStudyConstants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ImportTimeStudyConstants.vue -------------------------------------------------------------------------------- /src/components/modals/InformationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/InformationModal.vue -------------------------------------------------------------------------------- /src/components/modals/InformationModalButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/InformationModalButton.vue -------------------------------------------------------------------------------- /src/components/modals/LoadGameEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/LoadGameEntry.vue -------------------------------------------------------------------------------- /src/components/modals/LoadGameModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/LoadGameModal.vue -------------------------------------------------------------------------------- /src/components/modals/MessageModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/MessageModal.vue -------------------------------------------------------------------------------- /src/components/modals/ModalCloseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModalCloseButton.vue -------------------------------------------------------------------------------- /src/components/modals/ModalConfirmationCheck.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModalConfirmationCheck.vue -------------------------------------------------------------------------------- /src/components/modals/ModalProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModalProgressBar.vue -------------------------------------------------------------------------------- /src/components/modals/ModalWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModalWrapper.vue -------------------------------------------------------------------------------- /src/components/modals/ModalWrapperChoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModalWrapperChoice.vue -------------------------------------------------------------------------------- /src/components/modals/ModifySeedModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ModifySeedModal.vue -------------------------------------------------------------------------------- /src/components/modals/PelleEffectsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/PelleEffectsModal.vue -------------------------------------------------------------------------------- /src/components/modals/PopupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/PopupModal.vue -------------------------------------------------------------------------------- /src/components/modals/RealityGlyphCreationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/RealityGlyphCreationModal.vue -------------------------------------------------------------------------------- /src/components/modals/ReplaceGlyphModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/ReplaceGlyphModal.vue -------------------------------------------------------------------------------- /src/components/modals/RespecIAPModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/RespecIAPModal.vue -------------------------------------------------------------------------------- /src/components/modals/SacrificeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/SacrificeModal.vue -------------------------------------------------------------------------------- /src/components/modals/SingularityMilestonesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/SingularityMilestonesModal.vue -------------------------------------------------------------------------------- /src/components/modals/SpeedrunModeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/SpeedrunModeModal.vue -------------------------------------------------------------------------------- /src/components/modals/StdStoreModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/StdStoreModal.vue -------------------------------------------------------------------------------- /src/components/modals/StdStoreRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/StdStoreRow.vue -------------------------------------------------------------------------------- /src/components/modals/StudyStringLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/StudyStringLine.vue -------------------------------------------------------------------------------- /src/components/modals/StudyStringModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/StudyStringModal.vue -------------------------------------------------------------------------------- /src/components/modals/StudyTreeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/StudyTreeInfo.vue -------------------------------------------------------------------------------- /src/components/modals/SwitchAutomatorEditorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/SwitchAutomatorEditorModal.vue -------------------------------------------------------------------------------- /src/components/modals/UiChoiceModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/UiChoiceModal.vue -------------------------------------------------------------------------------- /src/components/modals/UndoGlyphModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/UndoGlyphModal.vue -------------------------------------------------------------------------------- /src/components/modals/UpgradeMechanicLockModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/UpgradeMechanicLockModal.vue -------------------------------------------------------------------------------- /src/components/modals/WarpRealityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/WarpRealityModal.vue -------------------------------------------------------------------------------- /src/components/modals/catchup/CatchupEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/catchup/CatchupEntry.vue -------------------------------------------------------------------------------- /src/components/modals/catchup/CatchupGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/catchup/CatchupGroup.vue -------------------------------------------------------------------------------- /src/components/modals/catchup/CatchupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/catchup/CatchupModal.vue -------------------------------------------------------------------------------- /src/components/modals/cloud/CloudInvalidDataModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/cloud/CloudInvalidDataModal.vue -------------------------------------------------------------------------------- /src/components/modals/cloud/CloudLoadConflictModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/cloud/CloudLoadConflictModal.vue -------------------------------------------------------------------------------- /src/components/modals/cloud/CloudSaveConflictModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/cloud/CloudSaveConflictModal.vue -------------------------------------------------------------------------------- /src/components/modals/cloud/SaveInfoEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/cloud/SaveInfoEntry.vue -------------------------------------------------------------------------------- /src/components/modals/glyph-management/DeleteGlyphModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/glyph-management/DeleteGlyphModal.vue -------------------------------------------------------------------------------- /src/components/modals/glyph-management/PurgeGlyphModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/glyph-management/PurgeGlyphModal.vue -------------------------------------------------------------------------------- /src/components/modals/glyph-management/RefineGlyphModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/glyph-management/RefineGlyphModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/AnimationOptionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/AnimationOptionsModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/AwayProgressOptionsEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/AwayProgressOptionsEntry.vue -------------------------------------------------------------------------------- /src/components/modals/options/AwayProgressOptionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/AwayProgressOptionsModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/BackupEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/BackupEntry.vue -------------------------------------------------------------------------------- /src/components/modals/options/BackupWindowModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/BackupWindowModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/ConfirmationOptionsEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/ConfirmationOptionsEntry.vue -------------------------------------------------------------------------------- /src/components/modals/options/ConfirmationOptionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/ConfirmationOptionsModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/HotkeysModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/HotkeysModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/InfoDisplayOptionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/InfoDisplayOptionsModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/ModalWrapperOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/ModalWrapperOptions.vue -------------------------------------------------------------------------------- /src/components/modals/options/NewsOptionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/NewsOptionsModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/PreferredTreeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/PreferredTreeModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/SelectGlyphInfoDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/SelectGlyphInfoDropdown.vue -------------------------------------------------------------------------------- /src/components/modals/options/SpeedUpModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/SpeedUpModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/SpeedUpReportModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/SpeedUpReportModal.vue -------------------------------------------------------------------------------- /src/components/modals/options/hidden-tabs/HiddenTabGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/options/hidden-tabs/HiddenTabGroup.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/AntimatterGalaxyModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/AntimatterGalaxyModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ArmageddonModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ArmageddonModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/BigCrunchModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/BigCrunchModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/DimensionBoostModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/DimensionBoostModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/EnterCelestialsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/EnterCelestialsModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/EnterCelestialsRaPet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/EnterCelestialsRaPet.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/EnterDilationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/EnterDilationModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/EternityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/EternityModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ExitChallengeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ExitChallengeModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ExitDilationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ExitDilationModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/HardResetModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/HardResetModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/RealityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/RealityModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ReplicantiGalaxyModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ReplicantiGalaxyModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ResetMendingModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ResetMendingModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ResetModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ResetModal.vue -------------------------------------------------------------------------------- /src/components/modals/prestige/ResetRealityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/prestige/ResetRealityModal.vue -------------------------------------------------------------------------------- /src/components/modals/secret-themes/S12GameEntries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/secret-themes/S12GameEntries.vue -------------------------------------------------------------------------------- /src/components/modals/secret-themes/S12GamesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/secret-themes/S12GamesModal.vue -------------------------------------------------------------------------------- /src/components/modals/secret-themes/s12-games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/modals/secret-themes/s12-games.js -------------------------------------------------------------------------------- /src/components/tabs/alchemy/AlchemyCircleNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/alchemy/AlchemyCircleNode.vue -------------------------------------------------------------------------------- /src/components/tabs/alchemy/AlchemyResourceArc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/alchemy/AlchemyResourceArc.vue -------------------------------------------------------------------------------- /src/components/tabs/alchemy/AlchemyResourceInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/alchemy/AlchemyResourceInfo.vue -------------------------------------------------------------------------------- /src/components/tabs/alchemy/AlchemyTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/alchemy/AlchemyTab.vue -------------------------------------------------------------------------------- /src/components/tabs/alchemy/alchemy-circle-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/alchemy/alchemy-circle-layout.js -------------------------------------------------------------------------------- /src/components/tabs/antimatter-dimensions/TickspeedRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/antimatter-dimensions/TickspeedRow.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerDropdownEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerDropdownEntry.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerGroupToggleLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerGroupToggleLabel.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerInput.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerIntervalButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerIntervalButton.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerIntervalLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerIntervalLabel.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerModeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerModeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerToggleLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerToggleLabel.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyerToggles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyerToggles.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/AutobuyersTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/AutobuyersTab.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/BigCrunchAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/BigCrunchAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/DimensionAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/DimensionAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/DimensionBulkButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/DimensionBulkButton.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/EternityAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/EternityAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/GalaxyAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/GalaxyAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/MendingAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/MendingAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/MultipleAutobuyersBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/MultipleAutobuyersBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/RealityAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/RealityAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/SimpleAutobuyersMultiBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/SimpleAutobuyersMultiBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/SingleAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/SingleAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/SingleAutobuyerInRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/SingleAutobuyerInRow.vue -------------------------------------------------------------------------------- /src/components/tabs/autobuyers/TickspeedAutobuyerBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/autobuyers/TickspeedAutobuyerBox.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorBlockEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorBlockEditor.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorBlockSingleInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorBlockSingleInput.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorBlockSingleRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorBlockSingleRow.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorBlocks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorBlocks.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorButton.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorControls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorControls.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDataTransferPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDataTransferPage.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDefinePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDefinePage.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDefineSingleEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDefineSingleEntry.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDocs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDocs.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDocsCommandList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDocsCommandList.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDocsIntroPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDocsIntroPage.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDocsManPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDocsManPage.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorDocsTemplateList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorDocsTemplateList.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorEditor.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorErrorPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorErrorPage.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorEventLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorEventLog.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorModeSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorModeSwitch.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorPointsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorPointsList.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorTab.vue -------------------------------------------------------------------------------- /src/components/tabs/automator/AutomatorTextEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/automator/AutomatorTextEditor.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleChargingSliders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleChargingSliders.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleStateRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleStateRow.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleTab.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleUnlockButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleUnlockButton.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/BlackHoleUpgradeRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/BlackHoleUpgradeRow.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/ExpoBlackHoleUpgradeRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/ExpoBlackHoleUpgradeRow.vue -------------------------------------------------------------------------------- /src/components/tabs/black-hole/black-hole-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/black-hole/black-hole-animation.js -------------------------------------------------------------------------------- /src/components/tabs/break-infinity/BreakInfinityButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/break-infinity/BreakInfinityButton.vue -------------------------------------------------------------------------------- /src/components/tabs/break-infinity/BreakInfinityTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/break-infinity/BreakInfinityTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-effarig/EffarigTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-effarig/EffarigTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-enslaved/EnslavedTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-enslaved/EnslavedTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-laitela/AnnihilationButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-laitela/AnnihilationButton.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-laitela/LaitelaRunButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-laitela/LaitelaRunButton.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-laitela/LaitelaTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-laitela/LaitelaTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-laitela/SingularityPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-laitela/SingularityPane.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-navigation/NodeBackground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-navigation/NodeBackground.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-navigation/NodeOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-navigation/NodeOverlay.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-navigation/NodeRing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-navigation/NodeRing.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-navigation/svg-ring-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-navigation/svg-ring-path.js -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/ArmageddonButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/ArmageddonButton.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/CreditsContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/CreditsContainer.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/FadeAway.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/FadeAway.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/NewGame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/NewGame.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleBarPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleBarPanel.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleRift.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleRift.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleRiftBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleRiftBar.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleStrike.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleStrike.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleUpgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleUpgrade.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/PelleUpgradePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/PelleUpgradePanel.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-pelle/RemnantGainFactor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-pelle/RemnantGainFactor.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaPet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaPet.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaPetLevelBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaPetLevelBar.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaPetRemembranceButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaPetRemembranceButton.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaUpgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaUpgrade.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaUpgradeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaUpgradeIcon.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-ra/RaUpgradePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-ra/RaUpgradePanel.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-teresa/TeresaTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-teresa/TeresaTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-v/VTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-v/VTab.vue -------------------------------------------------------------------------------- /src/components/tabs/celestial-v/VUnlockRequirement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/celestial-v/VUnlockRequirement.vue -------------------------------------------------------------------------------- /src/components/tabs/corruption/CorruptionChallengeTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/corruption/CorruptionChallengeTab.vue -------------------------------------------------------------------------------- /src/components/tabs/corruption/CorruptionUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/corruption/CorruptionUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/eternity-upgrades/EPMultiplierButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/eternity-upgrades/EPMultiplierButton.vue -------------------------------------------------------------------------------- /src/components/tabs/glyph-set-records/GlyphSetRecordsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyph-set-records/GlyphSetRecordsTab.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/CurrentGlyphEffect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/CurrentGlyphEffect.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/CurrentGlyphEffects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/CurrentGlyphEffects.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/EquippedGlyphs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/EquippedGlyphs.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/GlyphInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/GlyphInventory.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/GlyphLevelsAndWeights.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/GlyphLevelsAndWeights.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/GlyphPeek.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/GlyphPeek.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/GlyphsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/GlyphsTab.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/RealityAmplifyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/RealityAmplifyButton.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/RealityReminder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/RealityReminder.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/ResetRealityButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/ResetRealityButton.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/SacrificedGlyphs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/SacrificedGlyphs.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/SingleGlyphCustomzationPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/SingleGlyphCustomzationPanel.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/TypeSacrifice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/TypeSacrifice.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphCleanButtonGroup.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphFilterPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphFilterPanel.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphRejectionPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphRejectionPanel.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphSetSavePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphSetSavePanel.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphSortButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphSortButtonGroup.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/GlyphTabSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/GlyphTabSidebar.vue -------------------------------------------------------------------------------- /src/components/tabs/glyphs/sidebar/SelectedEffectToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/glyphs/sidebar/SelectedEffectToggle.vue -------------------------------------------------------------------------------- /src/components/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/index.js -------------------------------------------------------------------------------- /src/components/tabs/infinity-upgrades/IpMultiplierButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/infinity-upgrades/IpMultiplierButton.vue -------------------------------------------------------------------------------- /src/components/tabs/matter/MatterUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/matter/MatterUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/matter/MatterUpgrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/matter/MatterUpgrades.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/KohlerMilestone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/KohlerMilestone.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/KohlerMilestoneRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/KohlerMilestoneRow.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/KohlerUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/KohlerUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/KohlersRealm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/KohlersRealm.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/MendingMilestoneButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/MendingMilestoneButton.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/MendingMilestones.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/MendingMilestones.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/MendingUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/MendingUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/MendingUpgrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/MendingUpgrades.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/WarpReality.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/WarpReality.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/WarpRealityButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/WarpRealityButton.vue -------------------------------------------------------------------------------- /src/components/tabs/mending/WarpUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/mending/WarpUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/normal-challenges/NormalChallengeBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/normal-challenges/NormalChallengeBox.vue -------------------------------------------------------------------------------- /src/components/tabs/options-gameplay/OptionsGameplayTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-gameplay/OptionsGameplayTab.vue -------------------------------------------------------------------------------- /src/components/tabs/options-saving/OptionsSavingTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-saving/OptionsSavingTab.vue -------------------------------------------------------------------------------- /src/components/tabs/options-saving/SaveFileName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-saving/SaveFileName.vue -------------------------------------------------------------------------------- /src/components/tabs/options-visual/OptionsVisualTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-visual/OptionsVisualTab.vue -------------------------------------------------------------------------------- /src/components/tabs/options-visual/SelectThemeDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-visual/SelectThemeDropdown.vue -------------------------------------------------------------------------------- /src/components/tabs/options-visual/UpdateRateSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/options-visual/UpdateRateSlider.vue -------------------------------------------------------------------------------- /src/components/tabs/perks/PerkPointLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/perks/PerkPointLabel.vue -------------------------------------------------------------------------------- /src/components/tabs/perks/PerksTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/perks/PerksTab.vue -------------------------------------------------------------------------------- /src/components/tabs/reality-upgrades/RealityUpgradesTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/reality-upgrades/RealityUpgradesTab.vue -------------------------------------------------------------------------------- /src/components/tabs/replicanti/ReplicantiGainText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/replicanti/ReplicantiGainText.vue -------------------------------------------------------------------------------- /src/components/tabs/replicanti/ReplicantiGalaxyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/replicanti/ReplicantiGalaxyButton.vue -------------------------------------------------------------------------------- /src/components/tabs/replicanti/ReplicantiTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/replicanti/ReplicantiTab.vue -------------------------------------------------------------------------------- /src/components/tabs/replicanti/ReplicantiUpgradeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/replicanti/ReplicantiUpgradeButton.vue -------------------------------------------------------------------------------- /src/components/tabs/shop/ShopButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/shop/ShopButton.vue -------------------------------------------------------------------------------- /src/components/tabs/shop/ShopTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/shop/ShopTab.vue -------------------------------------------------------------------------------- /src/components/tabs/statistics/MultiplierBreakdownEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/MultiplierBreakdownEntry.vue -------------------------------------------------------------------------------- /src/components/tabs/statistics/MultiplierBreakdownTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/MultiplierBreakdownTab.vue -------------------------------------------------------------------------------- /src/components/tabs/statistics/StatisticsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/StatisticsTab.vue -------------------------------------------------------------------------------- /src/components/tabs/statistics/breakdown-entry-info-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/breakdown-entry-info-group.js -------------------------------------------------------------------------------- /src/components/tabs/statistics/breakdown-entry-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/breakdown-entry-info.js -------------------------------------------------------------------------------- /src/components/tabs/statistics/matter-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/matter-scale.js -------------------------------------------------------------------------------- /src/components/tabs/statistics/percentage-rolling-average.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/statistics/percentage-rolling-average.js -------------------------------------------------------------------------------- /src/components/tabs/time-dilation/DilationButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-dilation/DilationButton.vue -------------------------------------------------------------------------------- /src/components/tabs/time-dilation/TachyonParticle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-dilation/TachyonParticle.vue -------------------------------------------------------------------------------- /src/components/tabs/time-dilation/TachyonParticles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-dilation/TachyonParticles.vue -------------------------------------------------------------------------------- /src/components/tabs/time-dilation/TimeDilationTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-dilation/TimeDilationTab.vue -------------------------------------------------------------------------------- /src/components/tabs/time-dimensions/TimeDimensionsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-dimensions/TimeDimensionsTab.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/DilationTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/DilationTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/ECTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/ECTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/EnslavedTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/EnslavedTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/KohlerTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/KohlerTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/MyriadTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/MyriadTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/NormalTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/NormalTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/SecretTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/SecretTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/TimeStudiesTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/TimeStudiesTab.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/TimeStudyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/TimeStudyButton.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/TimeStudyConnection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/TimeStudyConnection.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/TriadTimeStudy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/TriadTimeStudy.vue -------------------------------------------------------------------------------- /src/components/tabs/time-studies/time-study-tree-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/time-study-tree-layout.js -------------------------------------------------------------------------------- /src/components/tabs/time-studies/tt-shop/HoverMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/tabs/time-studies/tt-shop/HoverMenu.vue -------------------------------------------------------------------------------- /src/components/ui-modes/BigCrunchButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/BigCrunchButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/FailableEcText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/FailableEcText.vue -------------------------------------------------------------------------------- /src/components/ui-modes/GameHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/GameHeader.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderBlackHole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderBlackHole.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderBlackHoleStatusText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderBlackHoleStatusText.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderChallengeDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderChallengeDisplay.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderChallengeEffects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderChallengeEffects.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderPrestigeGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderPrestigeGroup.vue -------------------------------------------------------------------------------- /src/components/ui-modes/HeaderTickspeedInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/HeaderTickspeedInfo.vue -------------------------------------------------------------------------------- /src/components/ui-modes/NewsTicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/NewsTicker.vue -------------------------------------------------------------------------------- /src/components/ui-modes/classic/ClassicSubtabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/classic/ClassicSubtabBar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/classic/ClassicSubtabButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/classic/ClassicSubtabButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/classic/ClassicTabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/classic/ClassicTabBar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/classic/ClassicTabButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/classic/ClassicTabButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/classic/ClassicUi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/classic/ClassicUi.vue -------------------------------------------------------------------------------- /src/components/ui-modes/modern/ModernSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/modern/ModernSidebar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/modern/ModernSidebarCurrency.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/modern/ModernSidebarCurrency.vue -------------------------------------------------------------------------------- /src/components/ui-modes/modern/ModernTabButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/modern/ModernTabButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/modern/ModernUi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/modern/ModernUi.vue -------------------------------------------------------------------------------- /src/components/ui-modes/prestige-header/EternityButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/prestige-header/EternityButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/prestige-header/MendingButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/prestige-header/MendingButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/prestige-header/RealityButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/prestige-header/RealityButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/DesktopIcons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/DesktopIcons.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/README.md -------------------------------------------------------------------------------- /src/components/ui-modes/s12/S12Subtabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/S12Subtabs.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/S12Taskbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/S12Taskbar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/S12Ui.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/S12Ui.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/S12UiFixed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/S12UiFixed.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/TaskbarIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/TaskbarIcon.vue -------------------------------------------------------------------------------- /src/components/ui-modes/s12/desktop-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/desktop-icons.js -------------------------------------------------------------------------------- /src/components/ui-modes/s12/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/s12/windows.js -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismEpHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismEpHeader.vue -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismGameHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismGameHeader.vue -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismSubtabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismSubtabBar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismTabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismTabBar.vue -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismTabButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismTabButton.vue -------------------------------------------------------------------------------- /src/components/ui-modes/synergism/SynergismUi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/components/ui-modes/synergism/SynergismUi.vue -------------------------------------------------------------------------------- /src/core/achievements/achievement-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/achievements/achievement-timer.js -------------------------------------------------------------------------------- /src/core/achievements/normal-achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/achievements/normal-achievement.js -------------------------------------------------------------------------------- /src/core/achievements/secret-achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/achievements/secret-achievement.js -------------------------------------------------------------------------------- /src/core/async-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/async-utils.js -------------------------------------------------------------------------------- /src/core/autobuyers/annihilation-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/annihilation-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/antimatter-dimension-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/antimatter-dimension-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/autobuyers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/autobuyers.js -------------------------------------------------------------------------------- /src/core/autobuyers/big-crunch-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/big-crunch-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/black-hole-power-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/black-hole-power-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/dark-matter-dimension-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/dark-matter-dimension-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/dilation-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/dilation-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/dimboost-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/dimboost-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/eternity-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/eternity-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/expo-black-hole-power-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/expo-black-hole-power-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/galaxy-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/galaxy-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/galgen-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/galgen-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/imaginary-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/imaginary-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/infinity-dimension-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/infinity-dimension-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/memory-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/memory-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/mending-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/mending-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/music-glyph-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/music-glyph-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/nr-imaginary-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/nr-imaginary-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/nr-reality-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/nr-reality-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/pelle-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/pelle-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/ra-pet-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/ra-pet-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/reality-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/reality-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/reality-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/reality-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/replicanti-galaxy-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/replicanti-galaxy-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/replicanti-upgrade-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/replicanti-upgrade-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/sacrifice-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/sacrifice-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/singulaity-cap-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/singulaity-cap-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/singularity-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/singularity-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/tesseract-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/tesseract-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/tickspeed-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/tickspeed-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/time-dimension-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/time-dimension-autobuyer.js -------------------------------------------------------------------------------- /src/core/autobuyers/time-theorem-autobuyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/autobuyers/time-theorem-autobuyer.js -------------------------------------------------------------------------------- /src/core/automator/automator-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/automator-backend.js -------------------------------------------------------------------------------- /src/core/automator/automator-codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/automator-codemirror.js -------------------------------------------------------------------------------- /src/core/automator/automator-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/automator-commands.js -------------------------------------------------------------------------------- /src/core/automator/automator-points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/automator-points.js -------------------------------------------------------------------------------- /src/core/automator/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/compiler.js -------------------------------------------------------------------------------- /src/core/automator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/index.js -------------------------------------------------------------------------------- /src/core/automator/lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/lexer.js -------------------------------------------------------------------------------- /src/core/automator/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/parser.js -------------------------------------------------------------------------------- /src/core/automator/script-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/automator/script-templates.js -------------------------------------------------------------------------------- /src/core/away-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/away-progress.js -------------------------------------------------------------------------------- /src/core/big-crunch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/big-crunch.js -------------------------------------------------------------------------------- /src/core/black-hole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/black-hole.js -------------------------------------------------------------------------------- /src/core/break-infinity-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/break-infinity-upgrades.js -------------------------------------------------------------------------------- /src/core/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/cache.js -------------------------------------------------------------------------------- /src/core/celestials/V.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/V.js -------------------------------------------------------------------------------- /src/core/celestials/celestials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/celestials.js -------------------------------------------------------------------------------- /src/core/celestials/destroyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/destroyer.js -------------------------------------------------------------------------------- /src/core/celestials/effarig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/effarig.js -------------------------------------------------------------------------------- /src/core/celestials/enslaved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/enslaved.js -------------------------------------------------------------------------------- /src/core/celestials/kohler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/kohler.js -------------------------------------------------------------------------------- /src/core/celestials/laitela/dark-matter-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/laitela/dark-matter-dimension.js -------------------------------------------------------------------------------- /src/core/celestials/laitela/laitela.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/laitela/laitela.js -------------------------------------------------------------------------------- /src/core/celestials/laitela/singularity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/laitela/singularity.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/galaxy-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/galaxy-generator.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/game-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/game-end.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/pelle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/pelle.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/rifts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/rifts.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/strikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/strikes.js -------------------------------------------------------------------------------- /src/core/celestials/pelle/zalgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/pelle/zalgo.js -------------------------------------------------------------------------------- /src/core/celestials/quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/quotes.js -------------------------------------------------------------------------------- /src/core/celestials/ra/alchemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/ra/alchemy.js -------------------------------------------------------------------------------- /src/core/celestials/ra/ra-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/ra/ra-upgrades.js -------------------------------------------------------------------------------- /src/core/celestials/ra/ra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/ra/ra.js -------------------------------------------------------------------------------- /src/core/celestials/teresa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/celestials/teresa.js -------------------------------------------------------------------------------- /src/core/confirmations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/confirmations.js -------------------------------------------------------------------------------- /src/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/constants.js -------------------------------------------------------------------------------- /src/core/corruption-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/corruption-upgrades.js -------------------------------------------------------------------------------- /src/core/corruption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/corruption.js -------------------------------------------------------------------------------- /src/core/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/crash.js -------------------------------------------------------------------------------- /src/core/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/currency.js -------------------------------------------------------------------------------- /src/core/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/devtools.js -------------------------------------------------------------------------------- /src/core/dilation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dilation.js -------------------------------------------------------------------------------- /src/core/dimboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimboost.js -------------------------------------------------------------------------------- /src/core/dimensions/antimatter-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/antimatter-dimension.js -------------------------------------------------------------------------------- /src/core/dimensions/dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/dimension.js -------------------------------------------------------------------------------- /src/core/dimensions/infinity-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/infinity-dimension.js -------------------------------------------------------------------------------- /src/core/dimensions/matter-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/matter-dimension.js -------------------------------------------------------------------------------- /src/core/dimensions/multiversal-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/multiversal-dimension.js -------------------------------------------------------------------------------- /src/core/dimensions/time-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/dimensions/time-dimension.js -------------------------------------------------------------------------------- /src/core/discord-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/discord-parser.js -------------------------------------------------------------------------------- /src/core/eternity-challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/eternity-challenge.js -------------------------------------------------------------------------------- /src/core/eternity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/eternity.js -------------------------------------------------------------------------------- /src/core/event-hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/event-hub.js -------------------------------------------------------------------------------- /src/core/expo-black-hole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/expo-black-hole.js -------------------------------------------------------------------------------- /src/core/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/extensions.js -------------------------------------------------------------------------------- /src/core/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/format.js -------------------------------------------------------------------------------- /src/core/full-screen-animation-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/full-screen-animation-handler.js -------------------------------------------------------------------------------- /src/core/galaxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/galaxy.js -------------------------------------------------------------------------------- /src/core/game-mechanics/bit-purchasable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/bit-purchasable.js -------------------------------------------------------------------------------- /src/core/game-mechanics/bit-upgrade-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/bit-upgrade-state.js -------------------------------------------------------------------------------- /src/core/game-mechanics/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/effect.js -------------------------------------------------------------------------------- /src/core/game-mechanics/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/effects.js -------------------------------------------------------------------------------- /src/core/game-mechanics/game-mechanic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/game-mechanic.js -------------------------------------------------------------------------------- /src/core/game-mechanics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/index.js -------------------------------------------------------------------------------- /src/core/game-mechanics/puchasable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/puchasable.js -------------------------------------------------------------------------------- /src/core/game-mechanics/rebuyable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/rebuyable.js -------------------------------------------------------------------------------- /src/core/game-mechanics/set-purchasable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/game-mechanics/set-purchasable.js -------------------------------------------------------------------------------- /src/core/garble-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/garble-text.js -------------------------------------------------------------------------------- /src/core/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/globals.js -------------------------------------------------------------------------------- /src/core/glyph-effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyph-effects.js -------------------------------------------------------------------------------- /src/core/glyphs/auto-glyph-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/auto-glyph-processor.js -------------------------------------------------------------------------------- /src/core/glyphs/glyph-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/glyph-core.js -------------------------------------------------------------------------------- /src/core/glyphs/glyph-cosmetics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/glyph-cosmetics.js -------------------------------------------------------------------------------- /src/core/glyphs/glyph-effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/glyph-effects.js -------------------------------------------------------------------------------- /src/core/glyphs/glyph-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/glyph-generator.js -------------------------------------------------------------------------------- /src/core/glyphs/glyph-purge-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/glyphs/glyph-purge-handler.js -------------------------------------------------------------------------------- /src/core/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/hotkeys.js -------------------------------------------------------------------------------- /src/core/imaginary-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/imaginary-upgrades.js -------------------------------------------------------------------------------- /src/core/infinity-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/infinity-challenges.js -------------------------------------------------------------------------------- /src/core/infinity-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/infinity-upgrades.js -------------------------------------------------------------------------------- /src/core/intervals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/intervals.js -------------------------------------------------------------------------------- /src/core/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/keyboard.js -------------------------------------------------------------------------------- /src/core/kohler-infinity-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/kohler-infinity-upgrades.js -------------------------------------------------------------------------------- /src/core/kohler-milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/kohler-milestones.js -------------------------------------------------------------------------------- /src/core/kohler-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/kohler-upgrades.js -------------------------------------------------------------------------------- /src/core/longpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/longpress.js -------------------------------------------------------------------------------- /src/core/machines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/machines.js -------------------------------------------------------------------------------- /src/core/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/math.js -------------------------------------------------------------------------------- /src/core/matter-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/matter-upgrades.js -------------------------------------------------------------------------------- /src/core/mending-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/mending-upgrades.js -------------------------------------------------------------------------------- /src/core/mending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/mending.js -------------------------------------------------------------------------------- /src/core/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/modal.js -------------------------------------------------------------------------------- /src/core/new-game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/new-game.js -------------------------------------------------------------------------------- /src/core/news-ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/news-ticker.js -------------------------------------------------------------------------------- /src/core/normal-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/normal-challenges.js -------------------------------------------------------------------------------- /src/core/notations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/notations.js -------------------------------------------------------------------------------- /src/core/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/notify.js -------------------------------------------------------------------------------- /src/core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/options.js -------------------------------------------------------------------------------- /src/core/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/payments.js -------------------------------------------------------------------------------- /src/core/performance-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/performance-stats.js -------------------------------------------------------------------------------- /src/core/perks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/perks.js -------------------------------------------------------------------------------- /src/core/player-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/player-progress.js -------------------------------------------------------------------------------- /src/core/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/player.js -------------------------------------------------------------------------------- /src/core/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/polyfill.js -------------------------------------------------------------------------------- /src/core/reality-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/reality-upgrades.js -------------------------------------------------------------------------------- /src/core/reality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/reality.js -------------------------------------------------------------------------------- /src/core/replicanti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/replicanti.js -------------------------------------------------------------------------------- /src/core/sacrifice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/sacrifice.js -------------------------------------------------------------------------------- /src/core/secret-formula/achievements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/achievements/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/away-progress-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/away-progress-types.js -------------------------------------------------------------------------------- /src/core/secret-formula/catchup-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/catchup-resources.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/alchemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/alchemy.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/effarig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/effarig.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/enslaved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/enslaved.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/galaxy-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/galaxy-generator.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/navigation.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/pelle-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/pelle-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/perk-shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/perk-shop.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/destroyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/destroyer.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/effarig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/effarig.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/enslaved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/enslaved.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/kohler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/kohler.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/laitela.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/laitela.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/pelle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/pelle.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/ra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/ra.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/teresa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/teresa.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/quotes/v.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/quotes/v.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/ra-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/ra-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/ra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/ra.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/rifts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/rifts.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/strikes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/strikes.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/teresa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/teresa.js -------------------------------------------------------------------------------- /src/core/secret-formula/celestials/v.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/celestials/v.js -------------------------------------------------------------------------------- /src/core/secret-formula/challenges/corruption-challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/challenges/corruption-challenge.js -------------------------------------------------------------------------------- /src/core/secret-formula/challenges/eternity-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/challenges/eternity-challenges.js -------------------------------------------------------------------------------- /src/core/secret-formula/challenges/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/challenges/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/challenges/infinity-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/challenges/infinity-challenges.js -------------------------------------------------------------------------------- /src/core/secret-formula/challenges/normal-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/challenges/normal-challenges.js -------------------------------------------------------------------------------- /src/core/secret-formula/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/changelog.js -------------------------------------------------------------------------------- /src/core/secret-formula/confirmation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/confirmation-types.js -------------------------------------------------------------------------------- /src/core/secret-formula/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/credits.js -------------------------------------------------------------------------------- /src/core/secret-formula/discord-rich-presence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/discord-rich-presence.js -------------------------------------------------------------------------------- /src/core/secret-formula/eternity/dilation-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/eternity/dilation-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/eternity/eternity-milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/eternity/eternity-milestones.js -------------------------------------------------------------------------------- /src/core/secret-formula/eternity/eternity-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/eternity/eternity-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/eternity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/eternity/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/game-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/game-database.js -------------------------------------------------------------------------------- /src/core/secret-formula/h2p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/h2p.js -------------------------------------------------------------------------------- /src/core/secret-formula/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/infinity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/infinity/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/infinity/infinity-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/infinity/infinity-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/corruption-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/corruption-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/corruption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/corruption.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/kohler-milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/kohler-milestones.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/kohler-unlock-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/kohler-unlock-progress.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/kohler-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/kohler-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/matter-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/matter-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/mending-milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/mending-milestones.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/mending-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/mending-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/mending/warp-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/mending/warp-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/antimatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/antimatter.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/dilated-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/dilated-time.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/eternities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/eternities.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/eternity-points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/eternity-points.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/galaxies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/galaxies.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/gamespeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/gamespeed.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/general.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/helper-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/helper-functions.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/icons.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/infinities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/infinities.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/infinity-points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/infinity-points.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/replicanti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/replicanti.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/score.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/tickspeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/tickspeed.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/time-dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/time-dimensions.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/tree.js -------------------------------------------------------------------------------- /src/core/secret-formula/multiplier-tab/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/multiplier-tab/values.js -------------------------------------------------------------------------------- /src/core/secret-formula/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/news.js -------------------------------------------------------------------------------- /src/core/secret-formula/progress-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/progress-checker.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/automator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/automator.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/glyph-cosmetics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/glyph-cosmetics.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/glyph-effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/glyph-effects.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/glyph-sacrifices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/glyph-sacrifices.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/glyph-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/glyph-types.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/imaginary-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/imaginary-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/index.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/perks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/perks.js -------------------------------------------------------------------------------- /src/core/secret-formula/reality/reality-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/reality/reality-upgrades.js -------------------------------------------------------------------------------- /src/core/secret-formula/script-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/script-templates.js -------------------------------------------------------------------------------- /src/core/secret-formula/shop-purchases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/shop-purchases.js -------------------------------------------------------------------------------- /src/core/secret-formula/speedrun-milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/speedrun-milestones.js -------------------------------------------------------------------------------- /src/core/secret-formula/tab-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/tab-notifications.js -------------------------------------------------------------------------------- /src/core/secret-formula/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/secret-formula/tabs.js -------------------------------------------------------------------------------- /src/core/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/shop.js -------------------------------------------------------------------------------- /src/core/speedrun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/speedrun.js -------------------------------------------------------------------------------- /src/core/storage/base64-binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/base64-binary.js -------------------------------------------------------------------------------- /src/core/storage/cloud-saving.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/cloud-saving.js -------------------------------------------------------------------------------- /src/core/storage/dev-migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/dev-migrations.js -------------------------------------------------------------------------------- /src/core/storage/firebase-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/firebase-config.js -------------------------------------------------------------------------------- /src/core/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/index.js -------------------------------------------------------------------------------- /src/core/storage/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/migrations.js -------------------------------------------------------------------------------- /src/core/storage/progress-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/progress-checker.js -------------------------------------------------------------------------------- /src/core/storage/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/serializer.js -------------------------------------------------------------------------------- /src/core/storage/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/storage/storage.js -------------------------------------------------------------------------------- /src/core/tab-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/tab-notifications.js -------------------------------------------------------------------------------- /src/core/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/tabs.js -------------------------------------------------------------------------------- /src/core/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/themes.js -------------------------------------------------------------------------------- /src/core/tickspeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/tickspeed.js -------------------------------------------------------------------------------- /src/core/time-studies/dilation-time-study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/dilation-time-study.js -------------------------------------------------------------------------------- /src/core/time-studies/ec-time-study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/ec-time-study.js -------------------------------------------------------------------------------- /src/core/time-studies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/index.js -------------------------------------------------------------------------------- /src/core/time-studies/normal-time-study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/normal-time-study.js -------------------------------------------------------------------------------- /src/core/time-studies/time-studies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/time-studies.js -------------------------------------------------------------------------------- /src/core/time-studies/time-study-connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/time-study-connections.js -------------------------------------------------------------------------------- /src/core/time-studies/time-study-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-studies/time-study-tree.js -------------------------------------------------------------------------------- /src/core/time-theorems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time-theorems.js -------------------------------------------------------------------------------- /src/core/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/time.js -------------------------------------------------------------------------------- /src/core/timespan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/timespan.js -------------------------------------------------------------------------------- /src/core/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/tutorial.js -------------------------------------------------------------------------------- /src/core/ui.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/ui.init.js -------------------------------------------------------------------------------- /src/core/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/ui.js -------------------------------------------------------------------------------- /src/core/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/utils.js -------------------------------------------------------------------------------- /src/core/warp-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/warp-upgrades.js -------------------------------------------------------------------------------- /src/core/word-shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/core/word-shift.js -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/env.js -------------------------------------------------------------------------------- /src/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/game.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/main.js -------------------------------------------------------------------------------- /src/merge-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/merge-globals.js -------------------------------------------------------------------------------- /src/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/shims.js -------------------------------------------------------------------------------- /src/steam/bindings/PlayFabClientApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/bindings/PlayFabClientApi.js -------------------------------------------------------------------------------- /src/steam/bindings/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/bindings/electron.js -------------------------------------------------------------------------------- /src/steam/bindings/greenworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/bindings/greenworks.js -------------------------------------------------------------------------------- /src/steam/bindings/node-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/bindings/node-module.js -------------------------------------------------------------------------------- /src/steam/bindings/playfab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/bindings/playfab.js -------------------------------------------------------------------------------- /src/steam/electron-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/electron-runtime.js -------------------------------------------------------------------------------- /src/steam/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/index.js -------------------------------------------------------------------------------- /src/steam/steam-purchases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/steam-purchases.js -------------------------------------------------------------------------------- /src/steam/steam-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/steam/steam-runtime.js -------------------------------------------------------------------------------- /src/supported-browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/supported-browsers.js -------------------------------------------------------------------------------- /src/typings/PlayFabClientApi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/typings/PlayFabClientApi.d.ts -------------------------------------------------------------------------------- /src/typings/Playfab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/typings/Playfab.d.ts -------------------------------------------------------------------------------- /src/typings/break_infinity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/typings/break_infinity.d.ts -------------------------------------------------------------------------------- /src/typings/greenworks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/typings/greenworks.d.ts -------------------------------------------------------------------------------- /src/utility/deepmerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/utility/deepmerge.js -------------------------------------------------------------------------------- /src/utility/index.js: -------------------------------------------------------------------------------- 1 | export * from "./type-check"; 2 | -------------------------------------------------------------------------------- /src/utility/open-external-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/utility/open-external-link.js -------------------------------------------------------------------------------- /src/utility/type-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/src/utility/type-check.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toilet45/ADRedemption/HEAD/vue.config.js --------------------------------------------------------------------------------