gitextract_yhze04p5/ ├── .gitignore ├── IdleMaster/ │ ├── IdleMaster/ │ │ ├── AlwaysIdleList.Designer.cs │ │ ├── AlwaysIdleList.cs │ │ ├── AlwaysIdleList.resx │ │ ├── AvgValues.cs │ │ ├── Badge.cs │ │ ├── CookieClient.cs │ │ ├── IdleMaster.csproj │ │ ├── Logger.cs │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ ├── Settings.settings │ │ │ └── app.manifest │ │ ├── Resources/ │ │ │ └── Changelog.rtf │ │ ├── Statistics.cs │ │ ├── SteamProfile.cs │ │ ├── app.config │ │ ├── frmAbout.Designer.cs │ │ ├── frmAbout.cs │ │ ├── frmAbout.resx │ │ ├── frmBlacklist.Designer.cs │ │ ├── frmBlacklist.cs │ │ ├── frmBlacklist.resx │ │ ├── frmBrowser.Designer.cs │ │ ├── frmBrowser.cs │ │ ├── frmBrowser.resx │ │ ├── frmChangelog.Designer.cs │ │ ├── frmChangelog.cs │ │ ├── frmChangelog.resx │ │ ├── frmMain.Designer.cs │ │ ├── frmMain.cs │ │ ├── frmMain.resx │ │ ├── frmSettings.Designer.cs │ │ ├── frmSettings.cs │ │ ├── frmSettings.resx │ │ ├── frmSettingsAdvanced.Designer.cs │ │ ├── frmSettingsAdvanced.cs │ │ ├── frmSettingsAdvanced.resx │ │ ├── frmStatistics.Designer.cs │ │ ├── frmStatistics.cs │ │ ├── frmStatistics.resx │ │ ├── frmWagaSettings.Designer.cs │ │ ├── frmWagaSettings.cs │ │ ├── frmWagaSettings.resx │ │ ├── localization/ │ │ │ ├── strings.Designer.cs │ │ │ ├── strings.cs.resx │ │ │ ├── strings.de.resx │ │ │ ├── strings.el.resx │ │ │ ├── strings.es.resx │ │ │ ├── strings.fi.resx │ │ │ ├── strings.fr.resx │ │ │ ├── strings.hu.resx │ │ │ ├── strings.it.resx │ │ │ ├── strings.ja.resx │ │ │ ├── strings.ko.resx │ │ │ ├── strings.nl.resx │ │ │ ├── strings.no.resx │ │ │ ├── strings.pl.resx │ │ │ ├── strings.pt-BR.resx │ │ │ ├── strings.pt.resx │ │ │ ├── strings.resx │ │ │ ├── strings.ro.resx │ │ │ ├── strings.ru.resx │ │ │ ├── strings.sv.resx │ │ │ ├── strings.th.resx │ │ │ ├── strings.tr.resx │ │ │ ├── strings.uk.resx │ │ │ ├── strings.zh-TW.resx │ │ │ └── strings.zh.resx │ │ └── packages.config │ └── IdleMaster.sln ├── LICENSE ├── README.md └── steam-idle Source/ ├── steam-idle/ │ ├── Fakes/ │ │ └── Steamworks.NET.fakes │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ ├── frmMain.resx │ └── steam-idle.csproj └── steam-idle.sln