Repository: hellzerg/optimizer Branch: master Commit: cc88a0e79bde Files: 172 Total size: 2.5 MB Directory structure: gitextract_akha54_z/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── AUTOMATION.md ├── CHANGELOG.md ├── CONFS.md ├── FAQ.md ├── FEED.md ├── IMAGES.md ├── LEGACY.md ├── LICENSE ├── Optimizer/ │ ├── App.config │ ├── ByteSize/ │ │ ├── BinaryByteSize.cs │ │ ├── ByteSize.cs │ │ └── DecimalByteSize.cs │ ├── CleanHelper.cs │ ├── ColorHelper.cs │ ├── Constants.cs │ ├── Controls/ │ │ ├── AppCard.Designer.cs │ │ ├── AppCard.cs │ │ ├── AppCard.resx │ │ ├── ColorOverrider.cs │ │ ├── ColorPicker.cs │ │ ├── ListViewColumnSorter.cs │ │ ├── MoonCheck.cs │ │ ├── MoonCheckList.cs │ │ ├── MoonList.cs │ │ ├── MoonMenuRenderer.cs │ │ ├── MoonProgress.cs │ │ ├── MoonRadio.cs │ │ ├── MoonSelect.cs │ │ ├── MoonTabs.cs │ │ ├── MoonToggle.cs │ │ ├── MoonTree.cs │ │ ├── ToggleCard.Designer.cs │ │ ├── ToggleCard.cs │ │ └── ToggleCard.resx │ ├── CoreHelper.cs │ ├── DebugHelper.cs │ ├── EmbeddedAssembly.cs │ ├── ErrorLogger.cs │ ├── FileHandleHelper.cs │ ├── FontHelper.cs │ ├── Forms/ │ │ ├── AboutForm.Designer.cs │ │ ├── AboutForm.cs │ │ ├── AboutForm.resx │ │ ├── FileUnlockForm.Designer.cs │ │ ├── FileUnlockForm.cs │ │ ├── FileUnlockForm.resx │ │ ├── FirstRunForm.Designer.cs │ │ ├── FirstRunForm.cs │ │ ├── FirstRunForm.resx │ │ ├── HelperForm.Designer.cs │ │ ├── HelperForm.cs │ │ ├── HelperForm.resx │ │ ├── HostsEditorForm.Designer.cs │ │ ├── HostsEditorForm.cs │ │ ├── HostsEditorForm.resx │ │ ├── InfoForm.Designer.cs │ │ ├── InfoForm.cs │ │ ├── InfoForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── SplashForm.Designer.cs │ │ ├── SplashForm.cs │ │ ├── SplashForm.resx │ │ ├── StartupPreviewForm.Designer.cs │ │ ├── StartupPreviewForm.cs │ │ ├── StartupPreviewForm.resx │ │ ├── StartupRestoreForm.Designer.cs │ │ ├── StartupRestoreForm.cs │ │ ├── StartupRestoreForm.resx │ │ ├── SubForm.Designer.cs │ │ ├── SubForm.cs │ │ ├── SubForm.resx │ │ ├── UpdateForm.Designer.cs │ │ ├── UpdateForm.cs │ │ └── UpdateForm.resx │ ├── HostsHelper.cs │ ├── IndiciumHelper.cs │ ├── IntegratorHelper.cs │ ├── Models/ │ │ ├── AppInfo.cs │ │ ├── Enums.cs │ │ ├── Hardware.cs │ │ ├── Options.cs │ │ ├── SilentConfig.cs │ │ ├── StartupBackupItem.cs │ │ ├── StartupItem.cs │ │ ├── TelemetryData.cs │ │ ├── WorkEvent.cs │ │ └── WorkEventArgs.cs │ ├── NetworkAdapter.cs │ ├── NetworkMonitor.cs │ ├── OptimizeHelper.cs │ ├── Optimizer.csproj │ ├── OptionsHelper.cs │ ├── PingerHelper.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources/ │ │ ├── Scripts/ │ │ │ ├── AddOpenWithCMD.reg │ │ │ ├── DesktopShortcuts.reg │ │ │ ├── DisableClassicPhotoViewer.reg │ │ │ ├── DisableDefenderSafeMode1903Plus.bat │ │ │ ├── DisableOfficeTelemetry.reg │ │ │ ├── DisableOfficeTelemetryTasks.bat │ │ │ ├── DisableTelemetryTasks.bat │ │ │ ├── DisableXboxTasks.bat │ │ │ ├── EnableDefenderSafeMode1903Plus.bat │ │ │ ├── EnableOfficeTelemetry.reg │ │ │ ├── EnableOfficeTelemetryTasks.bat │ │ │ ├── EnableTelemetryTasks.bat │ │ │ ├── EnableXboxTasks.bat │ │ │ ├── GPEditEnablerInHome.bat │ │ │ ├── InstallTakeOwnership.reg │ │ │ ├── PowerMenu.reg │ │ │ ├── RemoveTakeOwnership.reg │ │ │ ├── RestoreClassicPhotoViewer.reg │ │ │ ├── SystemShortcuts.reg │ │ │ ├── SystemTools.reg │ │ │ ├── WindowsApps.reg │ │ │ └── hosts │ │ └── i18n/ │ │ ├── AR.json │ │ ├── BG.json │ │ ├── CN.json │ │ ├── CZ.json │ │ ├── DE.json │ │ ├── EL.json │ │ ├── EN.json │ │ ├── ES.json │ │ ├── FA.json │ │ ├── FR.json │ │ ├── HR.json │ │ ├── HU.json │ │ ├── ID.json │ │ ├── IT.json │ │ ├── JA.json │ │ ├── KO.json │ │ ├── KU.json │ │ ├── NE.json │ │ ├── NL.json │ │ ├── PL.json │ │ ├── PT.json │ │ ├── RO.json │ │ ├── RU.json │ │ ├── TR.json │ │ ├── TW.json │ │ ├── UA.json │ │ ├── UR.json │ │ └── VN.json │ ├── SilentOps.cs │ ├── StartupHelper.cs │ ├── TelemetryHelper.cs │ ├── TokenPrivilegeHelper.cs │ ├── UWPHelper.cs │ ├── Utilities.cs │ └── packages.config ├── Optimizer.sln ├── README.md ├── SECURITY.md ├── feed.json ├── templates/ │ ├── template-windows10.json │ ├── template-windows11.json │ ├── template-windows7.json │ └── template-windows8.json └── version.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto ############################################################################### # Set default behavior for command prompt diff. # # This is need for earlier builds of msysgit that does not have it on by # default for csharp files. # Note: This is only used by command line ############################################################################### #*.cs diff=csharp ############################################################################### # Set the merge driver for project and solution files # # Merging from the command prompt will add diff markers to the files if there # are conflicts (Merging from VS is not affected by the settings below, in VS # the diff markers are never inserted). Diff markers may cause the following # file extensions to fail to load in VS. An alternative would be to treat # these files as binary and thus will always conflict and require user # intervention with every merge. To do so, just uncomment the entries below ############################################################################### #*.sln merge=binary #*.csproj merge=binary #*.vbproj merge=binary #*.vcxproj merge=binary #*.vcproj merge=binary #*.dbproj merge=binary #*.fsproj merge=binary #*.lsproj merge=binary #*.wixproj merge=binary #*.modelproj merge=binary #*.sqlproj merge=binary #*.wwaproj merge=binary ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### #*.jpg binary #*.png binary #*.gif binary ############################################################################### # diff behavior for common document formats # # Convert binary document formats to text before diffing them. This feature # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### #*.doc diff=astextplain #*.DOC diff=astextplain #*.docx diff=astextplain #*.DOCX diff=astextplain #*.dot diff=astextplain #*.DOT diff=astextplain #*.pdf diff=astextplain #*.PDF diff=astextplain #*.rtf diff=astextplain #*.RTF diff=astextplain ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Logs** Please, upload the required log file located in C:\ProgramData\Optimizer\optimizer.log **Desktop (please complete the following information):** - Windows version and build - .NET Frameworks installed - Optimizer version ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/workflows/build.yml ================================================ name: Build on: pull_request: branches: - master jobs: build: name: Build runs-on: windows-2022 steps: - uses: actions/checkout@v3 - name: Setup MSBuild uses: microsoft/setup-msbuild@v1 - name: Setup NuGet uses: nuget/setup-nuget@v1 - name: Navigate to Workspace run: cd $GITHUB_WORKSPACE - name: Restore Packages run: nuget restore Optimizer.sln - name: Build Solution run: msbuild.exe Optimizer.sln ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ # Visual Studio 2015 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUNIT *.VisualState.xml TestResult.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # DNX project.lock.json project.fragment.lock.json artifacts/ *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # TODO: Comment the next line if you want to checkin your web deploy settings # but database connection strings (with potential passwords) will be unencrypted #*.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* # except build/, which is used as an MSBuild target. !**/packages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config # NuGet v3's project.json files produces more ignoreable files *.nuget.props *.nuget.targets # Microsoft Azure Build Output csx/ *.build.csdef # Microsoft Azure Emulator ecf/ rcf/ # Windows Store app package directories and files AppPackages/ BundleArtifacts/ Package.StoreAssociation.xml _pkginfo.txt # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.pfx *.publishsettings node_modules/ orleans.codegen.cs # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files *.mdf *.ldf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # JetBrains Rider .idea/ *.sln.iml # CodeRush .cr/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc ================================================ FILE: AUTOMATION.md ================================================ # Automating a Range of Operations Based on a Template To automate a range of operations using a provided template, follow these steps: 1. **Download the Template**: Obtain the template file for your Windows version: - [Windows 7](https://github.com/hellzerg/optimizer/blob/master/templates/template-windows7.json) - [Windows 8.1](https://github.com/hellzerg/optimizer/blob/master/templates/template-windows8.json) - [Windows 10](https://github.com/hellzerg/optimizer/blob/master/templates/template-windows10.json) - [Windows 11](https://github.com/hellzerg/optimizer/blob/master/templates/template-windows11.json) 2. **Edit the Template**: Customize the template configuration according to your needs. 3. **Execute the Optimizer**: Run the optimizer executable with the edited template configuration using the command: `optimizer.exe /config=template.json` ## Template Configuration Options ### WindowsVersion (required) - Should match your actual Windows version. Available values: `7 | 8 | 10 | 11` ### Cleaner - Choose target folders for cleaning by marking them as `true`. ### Pinger - Choose DNS provider: - Available values: `Automatic | Custom | Cloudflare | OpenDNS | Quad9 | Google | AlternateDNS | Adguard | CleanBrowsing | CleanBrowsing (adult filter)` - If you choose `Custom`, you should define at least one primary IPv4 and IPv6 DNS servers. Alternative DNS serves are optional. - Set FlushDNSCache to `true` to perform DNS cache flushing. Example: #### Using pre-defined options: ``` "Pinger": { "SetDNS": "Cloudflare", "CustomDNSv4": [], "CustomDNSv6": [], "FlushDNSCache": true } ``` #### Using `Custom`: ``` "Pinger": { "SetDNS": "Custom", "CustomDNSv4": ["3.3.3.3"], "CustomDNSv6": ["::1"], "FlushDNSCache": true } ``` ### ProcessControl - Prevent processes from running by providing filenames. - Allow previously prevented processes to run again. Example: ``` "ProcessControl": { "Prevent": ["chrome.exe", "firefox.exe"], "Allow": ["opera.exe"] } ``` ### Hosts - Mark `IncludeWwwCname` to `true` in order to automatically adding an extra `www.` record for each entry. - Entries in the `Remove` list should be the domain names you want remove from the hosts file. - Entries in the `Block` list route to `0.0.0.0`, effectively blocking access. - Entries in the `Add` list are added. Example: ``` "HostsEditor": { "IncludeWwwCname": true, "Block": ["youtube.com", "google.com"], "Remove": ["facebook.com"] "Add": [ { "Domain": "test.com", "IPAddress": "192.168.1.5" }, { "Domain": "test2.com", "IPAddress": "192.168.1.9" } ] } ``` ### RegistryFix - Enable core Windows components by marking them as `true`. Use for repairing computers from malicious actions. ### Integrator - `TakeOwnership`: Add or remove "Take Ownership" option in right-click menu. (`false`) - `OpenWithCMD`: Add or remove "Open CMD here" option in right-click menu. (`false`) ### AdvancedTweaks - Caution: These tweaks are technical, avoid unless you understand them. - `UnlockAllCores`: Leave `null` or `false`. - `DisableHPET`: Enable or disable High Precision Event Timer. - `EnableLoginVerbose`: Enable or disable Detailed Login Screen. - `EnableRegistryBackups`: Enable periodic backups of Registry. #### SvchostProcessSplitting - Mark `true` to reduce svchost.exe processes for optimal memory. - Mark `false` to enable process splitting for optimal performance. ### Tweaks - Mark options to apply as `true`. - Mark options to reset as `false`. - Mark options to ignore as `null`. ### PostAction - Final action after template execution: - Mark `Restart` as `true` to restart and apply changes. - Configure `RestartType` for different restart types (`Normal` or `SafeMode`). - Use `DisableDefender` and `EnableDefender` for automated Windows Defender control. **Note**: Review and customize the template configuration carefully before executing. ================================================ FILE: CHANGELOG.md ================================================ ## [16.7] - 2024-08-18 - New: Disable Edge and Chrome telemetry options now extends Manifest v2 support - New: Enable Registry Periodic Backups - Hotfix: Various UI bugs ## [16.6] - 2024-07-06 - New: System Variables editor in Integrator - New: Disable Copilot + Recall feature - New: Disable Phone Link suggestions - New: Disable Microsoft Services ads showing as suggestions - New: Indonesian and Croatian language added - Hotfix: Malware Tool Removal excluded completely, because of false positives - Improved: Localization updates - Improved: Visual changes ## [16.5] - 2024-05-03 - New: Enable UTC time globally on Windows - New: Disable Modern Standby feature on Windows 10/11 - New: Hide Search & Weather icons from taskbar - New: Disable News & Interests - New: Show all notification icons on taskbar - New: Remove menus delay - New: Vietnamese and Urdu languages - New: Disable CoPilot AI now applies to Edge as well - Improved: Localization updates - Improved: Many quality-of-life changes - Hotfix: Sorting deleting bug in Startup items (#489) ## [16.4] - 2023-12-29 - New: FAQ section link in Options - New: Various performance improvements from code refactoring - Hotfix: Rare bug when checking for update (#444) - Hotfix: SmartScreen resets properly now (#453) - Hotfix: Apps download folder is now by default empty to avoid issues - Hotfix: Rare bug when fetching app feeds (#450) ## [16.3] - 2023-12-22 - New: Check for updates on launch option (#441, #423) - New: Options for hiding Weather and Search in Restore Classic Windows Explorer (#447) - Hotfix: Web search disable for all users (#427) - Hotfix: Tweak options are now dynamically disabled properly (#431) - Hotfix: Disable Automatic Updates does not break Store app install/update - Hotfix: DPI scaling count fallback added ## [16.2] - 2023-10-28 - Regression: 'Remove Microsoft Edge' removed as an option due to too many false positives in VirusTotal ## [16.1] - 2023-10-21 - Hotfix: 'Reinforce policies' issues resolved (#401, #402) - New: Completely 'Remove Microsoft Edge' option in Advanced Tweaks (cannot be reverted!) - New: Selective tweaks for "Optimize Performance" and "Enhance Privacy" (#393, #374) ## [16.0] - 2023-10-14 - Hotfix: 'Reinforce policies' crash resolved (#400) ## [15.9] - 2023-10-14 - New: Disable CoPilot AI (in Windows 11) - New: Fully translated into Bulgarian - New: 'Reinforce policies' in Options re-applies your current enabled tweaks (#389) - Hotfix: Crash on localized versions of Windows (#383) - Hotfix: Various UI bugs - Improved: Optimized images and assets - Improved: Startup items detection ## [15.8] - 2023-08-26 - New: Fully translated into Nepali (thanks to chapagetti) - New: You can now set custom DNS in Pinger, as well as from template - New: Internal settings for controlling which tools to load - Hotfix: Various UI glitches and localization updates ## [15.7] - 2023-08-19 - New: Change Windows default font in Integrator (#358) - New: Template engine now runs on Windows Server 2008 or newer - Hotfix: Rare crash bug in UWP apps loading - Improved: Tab glitching resolved (#376) - Improved: Disable Start Menu ads and Disable Store Updates - Improved: Template engine changes regarding Hosts editing and logging ## [15.6] - 2023-07-22 - Hotfix: Crash on UWP load apps (#369 #370) ## [15.5] - 2023-07-22 - New: Fully translated into Persian/Farsi (thanks to https://github.com/MjavadH - MjavadH) - New: RustDesk in Apps > Internet section - New: Confirmation before restarting (#343) - New: Include WWW CNAME prefix in Hosts - Improved: Various localization updates - Improved: Error logger now supports unhandled exceptions - Improved: UI on low resolution displays - Improved: Default app downloads folder set to user's downloads folder ## [15.4] - 2023-06-14 - New: Restore Classic Photo Viewer in Windows 10/11 (#342) - Hotfix: Addressed various UI glitches ## [15.3] - 2023-05-18 - New: Automation engine by using reusable templates (https://github.com/hellzerg/optimizer/blob/master/AUTOMATION.md) - Hotfix: Various localization updates - Hotfix: Rare bug in Cleaner, when choosing Mozilla Firefox - Hotfix: Improvements on UI scaling ## [15.2] - 2023-05-11 - New: Disable or Reset svchost process splitting mechanism - Hotfix: Rare crash when loading UWP apps - Hotfix: Properly loading UWP apps in Windows 8/8.1 now - Hotfix: Various localization updates ## [15.1] - 2023-04-23 - Hotfix: Disable Edge Discover now works properly - Improve: Disable SmartScreen and Visual Studio Telemetry ## [15.0] - 2023-04-16 - New: Advanced Tab with extra tweaks. Use /unsafe to use this tab - New: Disable HPET in Advanced - New: Enable Verbose Login in Advanced - New: Disable Edge Telemetry - New: Disable Edge Discover bar - New: Minor visual changes - Hotfix: Hosts tab not loading in some occasions - Hotfix: Various localization updates - Removed: Classic Ribbon for Windows 11 because Microsoft dropped it - Removed: Taskbar Size for Windows 11 because Microsoft dropped it - Removed: Optimizer Insights telemetry service ## [14.9] - 2023-02-18 - New: Uninstall OneDrive is ONLY visible in UNSAFE MODE, for apparent reasons... - New: Optimizer Insights collects - with great respect to privacy - every error the app produces for further investigation - New: Of course, you can disable Optimizer Insights in Options - New: Fully translated into Japanese (thanks to Yamada Hayao - https://github.com/Hayao0819 for Japanese translation) (#286) - Improved: Minor code refactoring ## [14.8] - 2023-01-07 - New: Updated to .NET Framework 4.8 for better performance and support - New: Added Restore all UWP apps - Improved: Refactored command-line processor - Hotfix: UWP uninstall confirmation message fixed (#281) ## [14.7] - 2022-12-24 - Hotfix: Theme color bug causing crash on launch ## [14.6] - 2022-12-17 - New: Disable Microsoft Store Updates - Hotfix: Automatic/manual updates working again - Hotfix: Disable NTFS Timestamp now retained after restart - Removed: Disable Feature Updates ## [14.5] - 2022-11-26 - New: Fully translated into Ukrainian (thanks to Kirill Ermakov - https://github.com/kirill0ermakov) (#261) - New: Disable Search service in General (#257) - Hotfix: Weather not being enabled after resetting Classic File Explorer (#263) - Hotfix: Domain will not be prefixed with www in Hosts Editor anymore (#259) - Improved: Assets cleanup, reduced file size (#260) ## [14.4] - 2022-11-05 - Hotfix: Disabling Game Bar does not turn off Game Mode too - Hotfix: Resetting Classic Ribbon for Explorer is working properly (Windows 11) ## [14.3] - 2022-10-26 - New: Disable Virtualization-based security (for Windows 11) - New: Concise categorization for every toggle - New: Grayscale app icon for neutrality - Hotfix: Tab headers scaling problem ## [14.2] - 2022-10-21 - Hotfix: Proper DPI scaling for main tabs (#236) - Hotfix: Not saving and loading Dutch language - Improved: Chrome Telemetry, Enhance Privacy and Optimize Performance - Removed: Network monitoring in tray menu ## [14.1] - 2022-10-18 - New: Theme engine supporting whole color spectrum (thanks to cat - https://github.com/vadiscode) - New: Disable NVIDIA Telemetry in Universal - New: Start Optimizer with Windows in Options (works with proper permissions) - Hotfix: App crashes when no internet connection available - Hotfix: Translation issues - Improved: Enhance Privacy and Superfetch options ## [14.0] - 2022-09-24 - New: Fully translated into Dutch (thanks to svanlaere - https://github.com/svanlaere) - Hotfix: Snap Assist not working - Hotfix: Restart button crash - Hotfix: UWP app image crash - Hotfix: Chinese translation - Improved: Reset Configuration renamed to Repair, because it is an auto-repair mechanism, NOT a Reset ## [13.9] - 2022-08-21 - Hotfix: Help messages for each toggle now appears on a panel - Hotfix: Restarting from inside the app does not save settings ## [13.8] - 2022-08-20 - New: Disable Hibernate in Universal - New: Disable NTFS timestamp in Universal - New: Disable SMBv1 & SMBv2 protocols in Universal - New: Display icons in UWP Apps list (#213) - New: Display Restart prompt when necessary - New: Enable Performance Tweaks renamed to: Optimize Performance - New: Splash art updated - Improved: Reduced memory dump size tweak in Optimize Performance - Hotfix: Disable Telemetry Services no longer stops WdiSystemHost service, which is responsible for battery statistics (#214) ## [13.7] - 2022-08-05 - New: Disable/Enable HPET using ```/disablehpet``` & ```/enablehpet``` switches - New: Allow Optimizer to run on startup using ```/addstartup``` (#206) - Hotfix: Disable Telemetry Services no longer disables Diagnostics Policy service (DPS), which is responsible for network app usage (#212) - Hotfix: Proper DPI scaling for software list in Apps (#193) - Improved: Enhance Privacy now disables Phone Link ## [13.6] - 2022-06-12 - New: Fully translated into Romanian (thanks to BeamingNG - https://github.com/BeamingNG) - New: DPI awareness support - Improved: Proper reset for Enhance Privacy tweak ## [13.5] - 2022-06-05 - New: Fully translated into Hungarian (thanks to Zan) - Hotfix: Disable TPM Check not working - Hotfix: Proper reset for Cloud Clipboard ## [13.4] - 2022-05-14 - Hotfix: Crashes on loading if network is offline ## [13.3] - 2022-05-10 - New: Fully translated into Kurdish (thanks to Parwar Andam) ## [13.2] - 2022-05-08 - New: Brave browser support in Cleaner (#176) - New: Find file lock handles and free it by killing the processes - Hotfix: Uninstalled UWP apps no longer remain in the list (#129) - Hotfix: 'Enable Compact Mode in Files' not reflecting current state ## [13.1] - 2022-05-07 - New: Change DNS servers rapidly using Pinger (Cloudflare, OpenDNS, Quad9, Google, Alternate, Adguard, Cleanbrowsing) - Hotfix: Rare issue with Cleaner not emptying subfolders - Hotfix: Not responding when Enhance Privacy toggle is pressed - Hotfix: FPS drops when moving the entire window (#175) ## [13.0] - 2022-05-04 - New: Enable Compact mode in Files for Windows 11 (removes extra space between files) - New: Cleaner now estimates size based on your preferences - New: Shiny new update window - Hotfix: Using ```/disablehibernate & /enablehibernate``` switches throws config not found error ## [12.9] - 2022-05-03 - New: Enable Defender automatically (```/restart=enabledefender``` switch) - New: Enable/Disable hibernation from command-line (```/disablehibernate & /enablehibernate```) - New: Added accessibility support for toggles (#150) - Hotfix: Warning if choosing to Disable System Restore ## [12.8] - 2022-05-02 - New: Enable Gaming Mode (plus hardware-accelerated GPU scheduling) - New: Added Brave browser in Common Apps - New: Disable Defender automatically (```/restart=disabledefender``` switch) - Hotfix: Warning if choosing to Uninstall OneDrive - Hotfix: Performance Tweaks do not disable tray grouping (arrow icon) - Hotfix: Translation fixes in almost all languages - Improved: Slightly faster loading time - Removed: Disable Notification/Action Center ## [12.7] - 2022-04-3 - New: Fully translated into Arabic (thanks to https://github.com/MesterPerfect - MesterPerfect) ## [12.6] - 2022-04-03 - New: Redesigned Cleaner tool - Hotfix: Enable Classic Ribbon registry key fixed - Hotfix: Translation issues ## [12.5] - 2022-04-02 - New: Fully translated into Polish (thanks to https://github.com/factuall - Adrian Nieściur) ## [12.4] - 2022-03-29 - New: Fully translated into Korean (thanks to https://github.com/VenusGirl - VenusGirl) - New: Updated Newtonsoft.Json from version 12.0.2 to 13.0.1 - Hotfix: Translation additions and fixes in all supported languages - Improved: Performance Tweaks ## [12.3] - 2022-03-27 - Hotfix: Italian translation - Hotfix: Flush DNS cache now requires confirmation - Hotfix: Chinese instead of Taiwanese flag - Removed: Pre-made AdBlock lists in Hosts due to several bugs ## [12.2] - 2022-03-26 - Hotfix: Crash when loading German language ## [12.1] - 2022-03-26 - New: Fully translated into Taiwanese (thanks to https://github.com/H3XDaemon - H3XDaemon) - New: Added ShareX in Common Apps feed - Improved: Fixed translation issues on German and Italian languages - Removed: Hardware-accelerated GPU scheduling from Xbox Live toggle ## [12.0] - 2022-03-06 - New: Fully translated into Czech (thanks to https://github.com/tomlonghorn - Tom Longhorn) ## [11.9] - 2022-02-23 - Hotfix: Permissions issue on Windows 11 (#97) ## [11.8] - 2022-02-21 - New: Restart in normal and minimal safe-mode from command-line - Hotfix: Faster network monitoring initialization - Hotfix: Resize main window based on each language for maximum visibility - Minor visual changes ## [11.7] - 2022-02-10 - Hotfix: Hangs on loading in case network monitoring is not supported (#93, #95) ## [11.6] - 2022-02-08 - New: Disable Google Chrome telemetry and software reporting tool - New: Disable Mozilla Firefox telemetry and data collection service - New: Disable Visual Studio telemetry, feedback and collector service - Improved: Office telemetry tweaks ## [11.5] - 2022-01-31 - Hotfix: Crashing when detecting CPU on Windows 7 (#90) ## [11.4] - 2022-01-30 - New: Hardware specifications inspection tool - New: Network speed monitoring in Quick Access Menu (if enabled) ## [11.3] - 2022-01-29 - Quality improvements in many aspects (Telemetry services, Enhanced privacy, etc.) - Visual changes ## [11.2] - 2022-01-28 - New: Interface has been slightly reworked to be easy on eyes - Couple of bug fixes ## [11.1] - 2022-01-23 - New: Major browsers support in Cleaner (clear cache, cookies, history, session, passwords) ## [11.0] - 2022-01-15 - Improved: Translation fixes in all supported languages ## [10.9] - 2021-12-12 - New: Fully translated into Chinese (thanks to https://github.com/btwise - btwise) ## [10.8] - 2021-12-05 - New: Add/Delete 'Open with CMD' option in Integrator (#73) - Hotfix: Disable Meet icon properly ## [10.7] - 2021-11-23 - New: Disable Meet Now icon (in Restore Classic File Explorer) - New: Disable lockscreen suggestions (in Disable Start Menu Ads) - Hotfix: Portuguese translation corrected - Minor bug fixes ## [10.6] - 2021-11-16 - New: Fully translated into Italian (thanks to https://github.com/Ziocash - Ziocash) - New: Disable File History (in Restore Classic File Explorer) - New: Loading animation for smoother opening ## [10.5] - 2021-11-14 - New: Open Command Prompt here (in Performance Tweaks) - New: Disable News and Weather in taskbar (in Restore Classic File Explorer) ## [10.4] - 2021-10-29 - Hotfix: Crash when Spanish language is selected ## [10.3] - 2021-10-10 - Improved: Disable TPM Check (both 2.0, 1.2 and RAM check) ## [10.2] - 2021-10-07 - New: Optimizer now runs in single-instance mode - Improved: Preview and select files before cleaning - Improved: French translation ## [10.1] - 2021-10-06 - New: Fully compatible with Windows 11 (with silent configuration support) - New: Align taskbar to te left - New: Disable Snap Assist, Widgets and Chat - New: Smaller taskbar size - New: Restore Classic Ribbon in File Explorer - New: Restore Classic Right-Click Menu (no Show More Options) - New: Disable TPM 2.0 checks, allowing the upgrading to Windows 11 - New: Single-instance support - Improved: Exclude Drivers from Windows Update ## [10.0] - 2021-09-14 - Code cleanup - Minor UI changes ## [9.9] - 2021-08-23 - New: Fully translated into French (thanks to https://github.com/RAFF47 - RAFF) ## [9.8] - 2021-08-04 - New: Disable Windows Defender completely in SAFE MODE - run Optimizer.exe /disabledefender (for Windows 10 1903 and later: https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/security-malware-windows-defender-disableantispyware) - New: Cloudflare DNS helper in Pinger - New: System details in error logging ## [9.7] - 2021-08-02 - New: Fully translated into Portuguese (thanks to https://github.com/cassiompf - Cassio) ## [9.6] - 2021-07-24 - New: Fully translated into Spanish (thanks to https://github.com/danielcshn - danielcshn) ## [9.5] - 2021-07-15 - Hotfix: Crash when running with no internet connection - Improved: Startup items can now be checked ## [9.4] - 2021-07-14 - New: App now opens slightly faster - New: Enhance Privacy now attempts to enable Group Policy Editor on Windows 10 Home (gpedit.msc) - Improved: Flush DNS cache - Improved: Privacy tweaks (now disables Cloud Search, Find my Device, Timeline) - Improved: Defender & Xbox tweaks ## [9.3] - 2021-06-29 - New: Fully translated into German (thanks to https://github.com/theflamehd - theflamehd) ## [9.2] - 2021-06-28 - Hotfix: Disable Spell Checking does not disable pen support (Disable Windows Ink now does this) - Hotfix: Feed error label misplaced ## [9.1] - 2021-06-26 - Significantly reduced file size (~1.4 MB) - Improvements in memory management (~60MB instead of ~110MB on load) - Re-designed Common Apps: Categories and full-dynamic app loading - Minor bug fixes ## [9.0] - 2021-06-24 - New apps added: .NET Framework 4.8, Java 8 JDK, Python 3 & 2, K-Lite Codec Pack Mega, VS Codium, Balena Etcher - Minor bug fixes ## [8.9] - 2021-06-17 - New: Now detects .NET Framework installed version - New: Fully translated into Turkish (thanks to https://github.com/Kheasyque - Kheasyque) (#47) - Hotfix: Pinger not working when returning IPv6, now pings IPv4 only ## [8.8] - 2021-06-07 - Choose language if running first time ## [8.7] - 2021-06-06 - Hotfix: Crash when applying "Enhance Privacy" ## [8.6] - 2021-06-06 - Plenty of improvements in Performance, Privacy & Telemetry ## [8.5] - 2021-06-05 - New: Fully translated into Hellenic (thanks to aplenaki) - Corrections to Russian localization ## [8.4] - 2021-06-02 - New: Fully translated into Russian (thanks to https://github.com/mrkaban - mrkaban) (#5) - Hotfix: Sometimes settings not saving (#38, #36) - Hotfix: Improved resetting of Disable Automatic Updates & Defender (#42) - Removed: Change Edge download folder (deprecated) ## [8.3] - 2021-05-31 - Hotfix: Not exiting when updating with Quick Access menu enabled ## [8.2] - 2021-05-31 - New: Added "/reset" switch for troubleshooting - Improved: Enabling Automatic Updates and Defender is better now ## [8.1] - 2021-05-31 - Hotfix: Pinger sometimes not working ## [8.0] - 2021-05-30 - New: Backup & restore Startup items - Improved: Performance tweaks - Improved: Better cconfiguration management - Hotfix: Detect missing apps download path ## [7.9] - 2021-05-27 - Hotfix: Issue #37, crashing when registry key permission is denied ## [7.8] - 2021-04-17 - Hotfix: Crash when Startup folders are missing - Startup can now detect batch files ## [7.7] - 2021-04-15 - Hotfix: Crashes due to localization ## [7.6] - 2021-04-12 - New: Show or hide help tips option - UI polishing ## [7.5] - 2021-04-12 - New: Hover on each switch to read the explanation - Improved: Disable Feature Updates ## [7.4] - 2021-04-11 - Improved: Disable SmartScreen - Improved: Better UI scaling in Common Apps ## [7.3] - 2021-04-11 - New: Flush DNS cache (Pinger) - Hotfix: Some tabs not working when offline - Several improvements on Windows 10 privacy - Removed unnecessary timers ## [7.2] - 2021-04-10 - LICENSES are now visible in Options - Check for update on launch ## [7.1] - 2021-04-10 - New: Pinger allows quick pinging and SHODAN.io search - New: Quick Access menu - enable it in Options - Hotfix: SystemResponsiveness now defaults to 14 - Hotfix: Error handling when HOSTS file is unreadable - again ## [7.0] - 2021-04-08 - New: Check space to be freed before cleaning - Hotfix: Error handling when HOSTS file is unreadable ## [6.9] - 2021-04-03 - New: Added MEGAsync in Common Apps - Moved: Disable Silent App Install to Disable Automatic Updates - Improved: Disable Privacy Options is now smoother ## [6.8] - 2021-03-12 - New: Visual C++ AiO, .NET Frameworks & ViPER4Windows in Common Apps - New: Error logging - Improved: Updates to Common Apps versions - Improved: UI polishing ## [6.7] - 2021-02-25 - Hotfix: Search not working (Reset Superfetch, disable it again and restart Windows to fix) ## [6.6] - 2021-02-24 - Hotfix: Crash when disabling Superfetch service ## [6.5] - 2021-02-23 - Fix: Some options not being saved when running silently - New: Added option to Disable Notification Center (for Windows 10) - New: Show file extensions & hidden files (Enable Performance Tweaks) - Improved: Disable Telemetry Tasks & Services - Improved: Disable Superfetch - Improved: Disable Game Bar (more services) - Improved: Disable Automatic Updates - Minor UI polishing ## [6.4] - 2021-02-22 - Hotfix: Windows 7 crashing now resolved - Hotfix: Changed SystemResponsiveness from 0 to 1 (0 is counting as 10) ## [6.3] - 2021-02-15 - New: Common Apps is getting the links online, no need to update the app to get new links - Improved: Tons of bug fixes to UI and beyond ## [6.2] - 2021-02-14 - New: Nice styling to checkboxes & radios ## [6.1] - 2021-02-14 - Improved: Disable Windows Defender - Improved: Uninstall OneDrive and removing all leftovers - Improved: Hide non-uninstallables UWP Apps option - Updated Chromium links - Minor UI fixes ## [6.0] - 2021-01-20 - Smaller window size, scrollable app list in Common Apps ## [5.9] - 2021-01-19 - Hotfix: Crash when opening folder in Common Apps ## [5.8] - 2020-12-22 - Added: Rufus and Universal USB Installer in Common Apps ## [5.7] - 2020-12-20 - Added: F.lux in Common Apps ## [5.6] - 2020-12-20 - Hotfix: Disable Telemetry Services ## [5.5] - 2020-12-19 - Added: More apps supported in Common Apps - Improved: Disable Windows Defender ## [5.4] - 2020-12-17 - Added: Run & install apps after downloading option - Critical bug fixes regarding app downloader - Properly save MSI packages ## [5.3] - 2020-12-17 - Added: Icons in Common Apps - Added: Additional apps for downloading - Several bug fixes - UI polishing ## [5.2] - 2020-12-17 - Added: Common Apps: Download useful apps quickly at once - Improved: Disable Telemetry Services ## [5.1] - 2020-12-11 - Some UI warnings ## [5.0] - 2020-12-10 - Added: Remove Cast to Device option - Added: Pre-made adblock in HOSTS editor - Added: Allow Optimizer on Windows Server using "/unsafe" switch - Improved: Faster HOSTS file reading - Improved: Disable Network Throttling - Removed: Block Skype ads (useless) ## [4.9] - 2019-11-07 - Added: Run Optimizer silently, using configuration file - Added: Disable Windows Store automatic updates (Disable Silent App Install) ## [4.8] - 2019-05-12 - Added: Disable Sticky Keys (for current user) - Added: Enable Long Paths (removes 260 character path limit, for Windows 10) ## [4.7] - 2019-02-03 - Added: Disable Cloud Clipboard experience (for Windows 10 1809) ## [4.6] - 2019-01-30 - Changed blocked IP from 127.0.0.1 to 0.0.0.0 in HOSTS editor - Changed 'Restart' button to 'Apply & Restart' ## [4.5] - 2018-10-08 - Improved: You can now update the app automatically by clicking Check for update in Options ## [4.4] - 2018-09-21 - Improved: Disable Automatic Updates (Windows 10) - Added: Make HOSTS file read-only ## [4.3] - 2018-09-17 - Added: Disable SmartScreen ## [4.2] - 2018-09-12 - Improved: Disable Silent App Install (Cloud Content) - Improved: Disable Cortana & web search ## [4.1] - 2018-03-09 - Added: Disable forced feature updates on Windows 10 ## [4.0] - 2018-02-21 - Added: Disable Fax service - Added: Disable Windows Insider service ## [3.9] - 2018-01-05 - Added: Disable Program Compatibility Assistant Service - Added: Check for new versions in Options - Added: View changes in Options ## [3.8] - 2017-12-31 - Windows 7 crashing fixed ## [3.7] - 2017-12-22 - Every option can now be reverted back (toggles, finally) - Apply All button removed in favor of toggles - Added Enable Dark Theme toggle for Windows 10 - Disable Diagnostics Tracking, WAP Push & Data Telemetry into one toggle: Disable Telemetry Services - Remove Get Windows 10 button removed as it is no longer needed - Various improvements - Added Reset Configuration button in Options ## [3.6] - 2017-12-11 - Added Select All in UWP uninstaller - Improved Disable Telemetry Tasks - Changes to Disable Automatic Updates ## [3.5] - 2017-11-24 - Added back UWP app uninstaller - Disable Windows Defender also removes tray icon now - Disable Start Menu ads & Silent App Install improved - Added option to restore Taskbar color - Minor visual changes - Hide Sync Provider ads renamed to Disable Quick Access History (disables used files and folders, File Explorer opens 'This PC' by default now, hides Sync Provider ads) ## [3.4] - 2017-10-25 - Performance improvements - Startup crash on x86 systems fixed ## [3.3] - 2017-10-21 - Improved Disable Privacy Options - Added option to disable Windows Ink & suggestions - Added options to disable Spelling & Typing features ## [3.2] - 2017-10-18 - Compatible with Windows 10 Fall Creators Update - Improved Disable Xbox Live & Disable Cortana options - Added option to remove My People from taskbar - Added option to exclude drivers from Windows Update ## [3.1] - 2017-09-26 - Disable Start Menu ads on Windows 10 - Prevent reinstalling Modern Apps on Windows 10 ## [3.0] - 2017-06-28 - Added option to disable Media Player sharing service - Various privacy optimizations for Windows 10 ## [2.9] - 2017-05-17 - Added ability to remove custom commands for Run Dialog ## [2.8] - 2017-05-16 - Further improved Disable Telemetry tasks ## [2.7] - 2017-04-04 - Compatible with Windows 10 Creators Update - Added option to enable/disable Sensor Services - Added option to block domain in HOSTS editor ## [2.6] - 2017-03-14 - Minor visual fixes ## [2.5] - 2017-02-18 - Removed ability to uninstall Modern Apps due to several bugs ## [2.4] - 2017-02-17 - Registry fixer improvements ## [2.3] - 2017-02-15 - Improved Disable Telemetry tasks - Added new performance tweaks ## [2.2] - 2016-12-14 - Minor bug fixes ## [2.1] - 2016-12-05 - Added Take Ownership option in Integrator ready menus - General improvements ## [2.0] - 2016-11-24 - Minor bug fixes - Cosmetic changes ## [1.9] - 2016-11-14 - Further improved Disable Office Telemetry ## [1.8] - 2016-10-27 - More bug fixes ## [1.7] - 2016-10-23 - Minor bug fixes ## [1.6] - 2016-10-20 - Added option to disable Game Bar on Windows 10 ## [1.5] - 2016-09-14 - Major bug fixes ## [1.4] - 2016-09-12 - Added HOSTS editor - Added Integrator tool - Added theme option - Performance improvements - Cosmetic changes ## [1.3] - 2016-09-09 - Improved Startup Items detection ## [1.2] - 2016-09-08 - Compatible with Windows 10 Anniversary Update - Minor visual fixes ## [1.1] - 2016-08-05 - Added option to enable/disable Print Service - Improved Disable Office Telemetry option - Major bug fixes ## [1.0] - 2016-07-26 - Initial release ================================================ FILE: CONFS.md ================================================ ## Run Optimizer on Windows Server 2008-2012-2016-2019-2022 ## #### Some options might not work properly #### - ```optimizer.exe /unsafe``` ## How to disable Windows Defender in Windows 10 1903 and later ## #### https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/security-malware-windows-defender-disableantispyware "DisableAntiSpyware" is discontinued and will be ignored on client devices, as of version 1903. #### - Restart in SAFE MODE - Execute: ```optimizer.exe /disabledefender``` -OR- - Execute: ```optimizer.exe /restart=disabledefender``` and let Optimizer do the rest automatically ## How to re-enable Windows Defender ## - Restart in SAFE MODE - Execute: ```optimizer.exe /enabledefender``` -OR- - Execute: ```optimizer.exe /restart=enabledefender``` and let Optimizer do the rest automatically ## How to restart in SAFE MODE / NORMAL easily ## - ```optimizer.exe /restart=safemode``` - ```optimizer.exe /restart=normal``` ## Display version info from command line using: - ```optimizer.exe /version``` ## You may disable specific tools for troubleshooting purposes ## #### Available list: #### * Hardware inspection utility (```indicium```) * Common Apps downloader tool (```apps```) * HOSTS Editor tool (```hosts```) * UWP Apps Uninstaller (```uwp```) * Startup items tool (```startup```) * Cleaner utility (```cleaner```) * Integrator tool (```integrator```) * Pinger tool (```pinger```) #### Examples #### - ```optimizer.exe /disable=indicium,uwp``` - ```optimizer.exe /disable=indicium,uwp,hosts``` ## Disable or Reset svchost process splitting mechanism ## ### Reduces the amount of svchost processes running, improving RAM usage ### ### To disable it, you need to provide your amount of RAM using this command (example for 8GB RAM): ### ```optimizer.exe /svchostsplit=8``` #### Reset the mechanism to its default configuration using: #### ```optimizer.exe /resetsvchostsplit``` ## Reset Optimizer configuration might fix it when can't open ## ```optimizer.exe /repair``` ## How to disable/enable HPET (High Precision Event Timer) in order to gain a boost when gaming [use at your own risk!] ## - ```optimizer.exe /disablehpet``` - ```optimizer.exe /enablehpet``` ================================================ FILE: FAQ.md ================================================ ## **Frequently Asked Questions (FAQ)** Welcome to our FAQ section, where we address common queries and concerns regarding our application. We're here to help you make the most out of your experience. If you have a question that isn't covered here, please feel free to reach out to our support team. ### **Do I need to restart my computer for the changes to take effect?** Absolutely. Restarting your computer is essential for the changes you've made through our application to be applied and fully functional. ### **Do I need to keep the app running in the background?** No, you don't need to keep the app running in the background. Once you've enabled your preferred options, simply restart your computer to ensure the changes take effect. ### **My Desktop files and documents got suddenly deleted! Why?** If you've experienced unexpected file and document deletions on your Desktop, it's possible that these deletions are related to uninstalling OneDrive. It's crucial to avoid uninstalling OneDrive on a Windows 10/11 system with a Microsoft-synced account setup. It's recommended to uninstall OneDrive only on a fresh Windows installation, before setting up your Microsoft account. ### **How can I disable Windows Defender on Windows 10/11?** Please note that the "Disable Windows Defender" toggle is only functional on Windows 7/8/8.1 systems. To effectively disable Windows Defender on Windows 10/11, follow these steps: 1. Execute the app with the command `/restart=disabledefender`. 2. This will initiate a restart in safe mode, during which Windows Defender will be disabled. 3. After the safe mode restart, your system will restart in normal mode with Windows Defender disabled. 4. You can re-enable Windows Defender at any time using the command `/restart=enabledefender`. ### **My games stopped working or I am experiencing issues with them!** You should reset "Enhance Privacy", "Disable Xbox Live", "Disable Game Bar" and restart your computer. If the problem persists, you may open an issue. ### **Should I disable System Restore?** The decision to disable System Restore is up to you. Keep in mind that disabling it will result in the deletion of your existing backups. Consider the implications and potential risks before making this choice. ### **Should I disable Print Service or Fax Service?** If you actively use printer and/or fax devices, it's advisable not to disable these services. Disabling them might hinder your ability to use these devices effectively. ### **My Windows Hello, Fingerprint and Biometrics stopped working! Why?** You should reset the "Enhance Privacy" and restart your computer. ### **I cannot log in to Xbox Live! Why?** If you're facing login issues with Xbox Live, follow these steps to troubleshoot: 1. Reset both the "Disable Xbox Live" and "Disable Game Bar" options within our application. 2. Restart your computer to ensure the changes take effect. 3. Attempt to log in to Xbox Live again. ### **My digital pen is not working, why?** If your digital pen is not functioning, it might be related to the "Disable Windows Ink" setting. To resolve this: 1. Reset the "Disable Windows Ink" option in our application. 2. Restart your computer. 3. Your digital pen should now be functional again. ### **My clipboard history stopped working, why?** If your clipboard history has stopped working, try these steps: 1. Reset the "Disable Cloud Clipboard" setting in our application. 2. Verify if the clipboard history is now functioning as expected. ### **My Phone Link suddenly stopped working!** You should reset the "Enhance Privacy" and restart your computer. ### **Should I disable Sensor Services?** If your device is a tablet, has various sensors (proximity, auto-brightness, etc.), or features a touch screen, it's recommended not to disable Sensor Services. These services likely contribute to the functionality of these features on your device. We hope these answers have provided clarity on common questions. If you require further assistance, please don't hesitate to reach out to our support team for personalized help. ================================================ FILE: FEED.md ================================================ # Including an App in Common Apps using feed.json To include an app in Common Apps using the `feed.json` file, follow these steps: ## Prerequisites You will need the following information: - Direct download links for both x64 and x86 variants of the app (if one variant is unavailable, provide the available variant). - Official app title. - A tag, usually the app title without spaces, preceded by a 'c'. - A PNG image with a transparent background, up to 256x256 pixels in size and not exceeding 50KB. - The group in which the app will be categorized. ## Available Groups Choose one of the available groups to categorize your app: - SystemTools - Internet - Coding - GraphicsSound ## Example Here's an example of how to structure your entry in the `feed.json` file: ```json { "Title": "Google Chrome", "Link": "", "Link64": "", "Tag": "cChrome", "Image": "", "Group": "Internet" } ================================================ FILE: IMAGES.md ================================================ ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/1.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/2.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/3.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/4.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/5.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/6.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/7.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/8.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/9.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/10.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/11.PNG) ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/12.PNG) ================================================ FILE: LEGACY.md ================================================ ![alt](https://raw.githubusercontent.com/hellzerg/optimizer/master/images/legacy.PNG) ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: Optimizer/App.config ================================================ ================================================ FILE: Optimizer/ByteSize/BinaryByteSize.cs ================================================ using System; using System.Globalization; namespace Optimizer { public partial struct ByteSize { public const long BytesInKibiByte = 1_024; public const long BytesInMebiByte = 1_048_576; public const long BytesInGibiByte = 1_073_741_824; public const long BytesInTebiByte = 1_099_511_627_776; public const long BytesInPebiByte = 1_125_899_906_842_624; public const string KibiByteSymbol = "KiB"; public const string MebiByteSymbol = "MiB"; public const string GibiByteSymbol = "GiB"; public const string TebiByteSymbol = "TiB"; public const string PebiByteSymbol = "PiB"; public double KibiBytes => Bytes / BytesInKibiByte; public double MebiBytes => Bytes / BytesInMebiByte; public double GibiBytes => Bytes / BytesInGibiByte; public double TebiBytes => Bytes / BytesInTebiByte; public double PebiBytes => Bytes / BytesInPebiByte; public static ByteSize FromKibiBytes(double value) { return new ByteSize(value * BytesInKibiByte); } public static ByteSize FromMebiBytes(double value) { return new ByteSize(value * BytesInMebiByte); } public static ByteSize FromGibiBytes(double value) { return new ByteSize(value * BytesInGibiByte); } public static ByteSize FromTebiBytes(double value) { return new ByteSize(value * BytesInTebiByte); } public static ByteSize FromPebiBytes(double value) { return new ByteSize(value * BytesInPebiByte); } public ByteSize AddKibiBytes(double value) { return this + ByteSize.FromKibiBytes(value); } public ByteSize AddMebiBytes(double value) { return this + ByteSize.FromMebiBytes(value); } public ByteSize AddGibiBytes(double value) { return this + ByteSize.FromGibiBytes(value); } public ByteSize AddTebiBytes(double value) { return this + ByteSize.FromTebiBytes(value); } public ByteSize AddPebiBytes(double value) { return this + ByteSize.FromPebiBytes(value); } public string ToBinaryString() { return this.ToString("0.##", CultureInfo.CurrentCulture, useBinaryByte: true); } public string ToBinaryString(IFormatProvider formatProvider) { return this.ToString("0.##", formatProvider, useBinaryByte: true); } } } ================================================ FILE: Optimizer/ByteSize/ByteSize.cs ================================================ using System; using System.Globalization; namespace Optimizer { /// /// Represents a byte size value with support for decimal (KiloByte) and /// binary values (KibiByte). /// public partial struct ByteSize : IComparable, IEquatable { public static readonly ByteSize MinValue = ByteSize.FromBits(long.MinValue); public static readonly ByteSize MaxValue = ByteSize.FromBits(long.MaxValue); public const long BitsInByte = 8; public const string BitSymbol = "b"; public const string ByteSymbol = "B"; public long Bits { get; private set; } public double Bytes { get; private set; } public string LargestWholeNumberBinarySymbol { get { // Absolute value is used to deal with negative values if (Math.Abs(this.PebiBytes) >= 1) return PebiByteSymbol; if (Math.Abs(this.TebiBytes) >= 1) return TebiByteSymbol; if (Math.Abs(this.GibiBytes) >= 1) return GibiByteSymbol; if (Math.Abs(this.MebiBytes) >= 1) return MebiByteSymbol; if (Math.Abs(this.KibiBytes) >= 1) return KibiByteSymbol; if (Math.Abs(this.Bytes) >= 1) return ByteSymbol; return BitSymbol; } } public string LargestWholeNumberDecimalSymbol { get { // Absolute value is used to deal with negative values if (Math.Abs(this.PetaBytes) >= 1) return PetaByteSymbol; if (Math.Abs(this.TeraBytes) >= 1) return TeraByteSymbol; if (Math.Abs(this.GigaBytes) >= 1) return GigaByteSymbol; if (Math.Abs(this.MegaBytes) >= 1) return MegaByteSymbol; if (Math.Abs(this.KiloBytes) >= 1) return KiloByteSymbol; if (Math.Abs(this.Bytes) >= 1) return ByteSymbol; return BitSymbol; } } public double LargestWholeNumberBinaryValue { get { // Absolute value is used to deal with negative values if (Math.Abs(this.PebiBytes) >= 1) return this.PebiBytes; if (Math.Abs(this.TebiBytes) >= 1) return this.TebiBytes; if (Math.Abs(this.GibiBytes) >= 1) return this.GibiBytes; if (Math.Abs(this.MebiBytes) >= 1) return this.MebiBytes; if (Math.Abs(this.KibiBytes) >= 1) return this.KibiBytes; if (Math.Abs(this.Bytes) >= 1) return this.Bytes; return this.Bits; } } public double LargestWholeNumberDecimalValue { get { // Absolute value is used to deal with negative values if (Math.Abs(this.PetaBytes) >= 1) return this.PetaBytes; if (Math.Abs(this.TeraBytes) >= 1) return this.TeraBytes; if (Math.Abs(this.GigaBytes) >= 1) return this.GigaBytes; if (Math.Abs(this.MegaBytes) >= 1) return this.MegaBytes; if (Math.Abs(this.KiloBytes) >= 1) return this.KiloBytes; if (Math.Abs(this.Bytes) >= 1) return this.Bytes; return this.Bits; } } public ByteSize(long bits) : this() { Bits = bits; Bytes = bits / BitsInByte; } public ByteSize(double bytes) : this() { // Get ceiling because bits are whole units Bits = (long)Math.Ceiling(bytes * BitsInByte); Bytes = bytes; } public static ByteSize FromBits(long value) { return new ByteSize(value); } public static ByteSize FromBytes(double value) { return new ByteSize(value); } /// /// Converts the value of the current object to a string. /// The prefix symbol (bit, byte, kilo, mebi, gibi, tebi) used is the /// largest prefix such that the corresponding value is greater than or /// equal to one. /// public override string ToString() { return this.ToString("0.##", CultureInfo.CurrentCulture); } public string ToString(string format) { return this.ToString(format, CultureInfo.CurrentCulture); } public string ToString(string format, IFormatProvider provider, bool useBinaryByte = false) { if (!format.Contains("#") && !format.Contains("0")) format = "0.## " + format; if (provider == null) provider = CultureInfo.CurrentCulture; Func has = s => format.IndexOf(s, StringComparison.CurrentCultureIgnoreCase) != -1; Func output = n => n.ToString(format, provider); // Binary if (has("PiB")) return output(this.PebiBytes); if (has("TiB")) return output(this.TebiBytes); if (has("GiB")) return output(this.GibiBytes); if (has("MiB")) return output(this.MebiBytes); if (has("KiB")) return output(this.KibiBytes); // Decimal if (has("PB")) return output(this.PetaBytes); if (has("TB")) return output(this.TeraBytes); if (has("GB")) return output(this.GigaBytes); if (has("MB")) return output(this.MegaBytes); if (has("KB")) return output(this.KiloBytes); // Byte and Bit symbol must be case-sensitive if (format.IndexOf(ByteSize.ByteSymbol) != -1) return output(this.Bytes); if (format.IndexOf(ByteSize.BitSymbol) != -1) return output(this.Bits); if (useBinaryByte) { return string.Format("{0} {1}", this.LargestWholeNumberBinaryValue.ToString(format, provider), this.LargestWholeNumberBinarySymbol); } else { return string.Format("{0} {1}", this.LargestWholeNumberDecimalValue.ToString(format, provider), this.LargestWholeNumberDecimalSymbol); } } public override bool Equals(object value) { if (value == null) return false; ByteSize other; if (value is ByteSize) other = (ByteSize)value; else return false; return Equals(other); } public bool Equals(ByteSize value) { return this.Bits == value.Bits; } public override int GetHashCode() { return this.Bits.GetHashCode(); } public int CompareTo(ByteSize other) { return this.Bits.CompareTo(other.Bits); } public ByteSize Add(ByteSize bs) { return new ByteSize(this.Bytes + bs.Bytes); } public ByteSize AddBits(long value) { return this + FromBits(value); } public ByteSize AddBytes(double value) { return this + ByteSize.FromBytes(value); } public ByteSize Subtract(ByteSize bs) { return new ByteSize(this.Bytes - bs.Bytes); } public static ByteSize operator +(ByteSize b1, ByteSize b2) { return new ByteSize(b1.Bytes + b2.Bytes); } public static ByteSize operator ++(ByteSize b) { return new ByteSize(b.Bytes + 1); } public static ByteSize operator -(ByteSize b) { return new ByteSize(-b.Bytes); } public static ByteSize operator -(ByteSize b1, ByteSize b2) { return new ByteSize(b1.Bytes - b2.Bytes); } public static ByteSize operator --(ByteSize b) { return new ByteSize(b.Bytes - 1); } public static bool operator ==(ByteSize b1, ByteSize b2) { return b1.Bits == b2.Bits; } public static bool operator !=(ByteSize b1, ByteSize b2) { return b1.Bits != b2.Bits; } public static bool operator <(ByteSize b1, ByteSize b2) { return b1.Bits < b2.Bits; } public static bool operator <=(ByteSize b1, ByteSize b2) { return b1.Bits <= b2.Bits; } public static bool operator >(ByteSize b1, ByteSize b2) { return b1.Bits > b2.Bits; } public static bool operator >=(ByteSize b1, ByteSize b2) { return b1.Bits >= b2.Bits; } public static ByteSize Parse(string s) { return Parse(s, NumberFormatInfo.CurrentInfo); } public static ByteSize Parse(string s, IFormatProvider formatProvider) { return Parse(s, NumberStyles.Float | NumberStyles.AllowThousands, formatProvider); } public static ByteSize Parse(string s, NumberStyles numberStyles, IFormatProvider formatProvider) { // Arg checking if (string.IsNullOrWhiteSpace(s)) throw new ArgumentNullException("s", "String is null or whitespace"); // Get the index of the first non-digit character s = s.TrimStart(); // Protect against leading spaces var num = 0; var found = false; var numberFormatInfo = NumberFormatInfo.GetInstance(formatProvider); var decimalSeparator = Convert.ToChar(numberFormatInfo.NumberDecimalSeparator); var groupSeparator = Convert.ToChar(numberFormatInfo.NumberGroupSeparator); // Pick first non-digit number for (num = 0; num < s.Length; num++) if (!(char.IsDigit(s[num]) || s[num] == decimalSeparator || s[num] == groupSeparator)) { found = true; break; } if (found == false) throw new FormatException($"No byte indicator found in value '{s}'."); int lastNumber = num; // Cut the input string in half string numberPart = s.Substring(0, lastNumber).Trim(); string sizePart = s.Substring(lastNumber, s.Length - lastNumber).Trim(); // Get the numeric part double number; if (!double.TryParse(numberPart, numberStyles, formatProvider, out number)) throw new FormatException($"No number found in value '{s}'."); // Get the magnitude part switch (sizePart) { case "b": if (number % 1 != 0) // Can't have partial bits throw new FormatException($"Can't have partial bits for value '{s}'."); return FromBits((long)number); case "B": return FromBytes(number); } switch (sizePart.ToLowerInvariant()) { // Binary case "kib": return FromKibiBytes(number); case "mib": return FromMebiBytes(number); case "gib": return FromGibiBytes(number); case "tib": return FromTebiBytes(number); case "pib": return FromPebiBytes(number); // Decimal case "kb": return FromKiloBytes(number); case "mb": return FromMegaBytes(number); case "gb": return FromGigaBytes(number); case "tb": return FromTeraBytes(number); case "pb": return FromPetaBytes(number); default: throw new FormatException($"Bytes of magnitude '{sizePart}' is not supported."); } } public static bool TryParse(string s, out ByteSize result) { try { result = Parse(s); return true; } catch { result = new ByteSize(); return false; } } public static bool TryParse(string s, NumberStyles numberStyles, IFormatProvider formatProvider, out ByteSize result) { try { result = Parse(s, numberStyles, formatProvider); return true; } catch { result = new ByteSize(); return false; } } } } ================================================ FILE: Optimizer/ByteSize/DecimalByteSize.cs ================================================ namespace Optimizer { public partial struct ByteSize { public const long BytesInKiloByte = 1_000; public const long BytesInMegaByte = 1_000_000; public const long BytesInGigaByte = 1_000_000_000; public const long BytesInTeraByte = 1_000_000_000_000; public const long BytesInPetaByte = 1_000_000_000_000_000; public const string KiloByteSymbol = "KB"; public const string MegaByteSymbol = "MB"; public const string GigaByteSymbol = "GB"; public const string TeraByteSymbol = "TB"; public const string PetaByteSymbol = "PB"; public double KiloBytes => Bytes / BytesInKiloByte; public double MegaBytes => Bytes / BytesInMegaByte; public double GigaBytes => Bytes / BytesInGigaByte; public double TeraBytes => Bytes / BytesInTeraByte; public double PetaBytes => Bytes / BytesInPetaByte; public static ByteSize FromKiloBytes(double value) { return new ByteSize(value * BytesInKiloByte); } public static ByteSize FromMegaBytes(double value) { return new ByteSize(value * BytesInMegaByte); } public static ByteSize FromGigaBytes(double value) { return new ByteSize(value * BytesInGigaByte); } public static ByteSize FromTeraBytes(double value) { return new ByteSize(value * BytesInTeraByte); } public static ByteSize FromPetaBytes(double value) { return new ByteSize(value * BytesInPetaByte); } public ByteSize AddKiloBytes(double value) { return this + ByteSize.FromKiloBytes(value); } public ByteSize AddMegaBytes(double value) { return this + ByteSize.FromMegaBytes(value); } public ByteSize AddGigaBytes(double value) { return this + ByteSize.FromGigaBytes(value); } public ByteSize AddTeraBytes(double value) { return this + ByteSize.FromTeraBytes(value); } public ByteSize AddPetaBytes(double value) { return this + ByteSize.FromPetaBytes(value); } } } ================================================ FILE: Optimizer/CleanHelper.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices; namespace Optimizer { internal static class CleanHelper { [DllImport("Shell32.dll")] static extern int SHEmptyRecycleBin(IntPtr hwnd, string pszRootPath, RecycleFlag dwFlags); // SYSTEM FOLDERS internal static readonly string System32Folder = Environment.GetFolderPath(Environment.SpecialFolder.System); internal static readonly string TempFolder = Path.GetTempPath(); internal static readonly string ProfileAppDataRoaming = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); internal static readonly string ProgramData = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData); internal static readonly string ProfileAppDataLocal = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData); //internal static readonly string ProfileAppDataLocalLow = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "Low"; //internal static readonly string OSDrive = System32Folder.Substring(0, 3); internal static readonly string OSDriveWindows = Environment.GetEnvironmentVariable("WINDIR", EnvironmentVariableTarget.Machine); // INTERNET EXPLORER CACHE static string[] ieCache = { Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\INetCache\\IE"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WebCache.old") }; // CHROME FOLDERS static string chromeFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "AppData\\Local\\Google\\Chrome\\User Data"); static string[] chromeUserDataCacheDirs = { "Default\\Cache", "Default\\Code Cache\\", "Default\\GPUCache\\", "ShaderCache", "Default\\Service Worker\\CacheStorage\\", "Default\\Service Worker\\ScriptCache\\", "GrShaderCache\\GPUCache\\", "Default\\File System\\", "Default\\JumpListIconsMostVisited\\", "Default\\JumpListIconsRecentClosed\\", "Default\\Service Worker\\Database" }; static string chromePasswordsDir = Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Login Data"); static string[] chromeSessionDirs = { Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Sessions"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Session Storage"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Extension State"), }; static string[] chromeCookiesDirs = { Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\IndexedDB"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Cookies"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\Cookies-journal") }; static string[] chromeHistoryDirs = { Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\History"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\History Provider Cache"), Path.Combine(ProfileAppDataLocal, "Google\\Chrome\\User Data\\Default\\History-journal") }; // FIREFOX FOLDERS static string firefoxRoaming = Path.Combine(ProfileAppDataRoaming, "Mozilla\\Firefox\\Profiles"); static string firefoxLocal = Path.Combine(ProfileAppDataLocal, "Mozilla\\Firefox\\Profiles"); // EDGE FOLDERS static string edgeHistory = Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\History"); static string[] edgeCookies = { Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Cookies"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\IndexedDB"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Local Storage") }; static string[] edgeSession = { Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Sessions"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Session Storage"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Extension State"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Local Extension Settings"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Local Storage") }; static string[] edgeCache = { Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Cache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Code Cache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\GPUCache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\ShaderCache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Service Worker\\CacheStorage"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Service Worker\\ScriptCache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\GrShaderCache\\GPUCache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Service Worker\\Database"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\Service Worker"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\LocalCache"), Path.Combine(ProfileAppDataLocal, "Microsoft\\Edge\\User Data\\Default\\#!001\\Cache") }; // BRAVE FOLDERS static string braveFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "AppData\\Local\\BraveSoftware\\Brave-Browser\\User Data"); static string[] braveUserDataCacheDirs = { "Default\\Cache", "Default\\Code Cache\\", "Default\\GPUCache\\", "ShaderCache", "Default\\Service Worker\\CacheStorage\\", "Default\\Service Worker\\ScriptCache\\", "GrShaderCache\\GPUCache\\", "Default\\File System\\", "Default\\JumpListIconsMostVisited\\", "Default\\JumpListIconsRecentClosed\\", "Default\\Service Worker\\Database" }; static string bravePasswordsDir = Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Login Data"); static string[] braveSessionDirs = { Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Sessions"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Session Storage"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Extension State"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Local Storage"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\IndexedDB"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Service Worker") }; static string[] braveCookiesDirs = { Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\IndexedDB"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Cookies"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Cookies-journal"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Local Storage") }; static string[] braveHistoryDirs = { Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\History"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\History Provider Cache"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\History-journal"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Top Sites"), Path.Combine(ProfileAppDataLocal, "BraveSoftware\\Brave-Browser\\User Data\\Default\\Visited Links") }; internal static List PreviewCleanList = new List(); internal static ByteSize PreviewSizeToBeFreed = new ByteSize(0); internal static void PreviewFolder(string path) { try { if (File.Exists(path)) { PreviewCleanList.Add(path); return; } DirectoryInfo di = new DirectoryInfo(path); foreach (FileInfo file in di.GetFiles("*", SearchOption.AllDirectories)) { try { PreviewCleanList.Add(file.FullName); } catch { } } foreach (DirectoryInfo dir in di.GetDirectories("*", SearchOption.AllDirectories)) { try { PreviewCleanList.Add(dir.FullName); } catch { } } } catch { } } internal static void Clean() { foreach (string x in PreviewCleanList) { try { if (Directory.Exists(x)) Directory.Delete(x); if (File.Exists(x)) File.Delete(x); } catch { continue; } } } internal static void EmptyRecycleBin() { SHEmptyRecycleBin(IntPtr.Zero, null, RecycleFlag.SHERB_NOSOUND | RecycleFlag.SHERB_NOCONFIRMATION); } internal static void PreviewTemp() { PreviewFolder(TempFolder); PreviewSizeToBeFreed += CalculateSize(TempFolder); } internal static void PreviewMinidumps() { PreviewFolder(Path.Combine(OSDriveWindows, "Minidump")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(OSDriveWindows, "Minidump")); } internal static void PreviewErrorReports() { PreviewFolder(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ReportArchive")); PreviewFolder(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ReportQueue")); PreviewFolder(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\Temp")); PreviewFolder(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ERC")); PreviewFolder(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ReportArchive")); PreviewFolder(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ReportQueue")); PreviewFolder(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\Temp")); PreviewFolder(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ERC")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ReportArchive")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ReportQueue")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\Temp")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProfileAppDataLocal, "Microsoft\\Windows\\WER\\ERC")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ReportArchive")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ReportQueue")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\Temp")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(ProgramData, "Microsoft\\Windows\\WER\\ERC")); } internal static ByteSize CalculateSize(string fileOrFolder) { ByteSize totalSize = new ByteSize(0); bool isFolder = Directory.Exists(fileOrFolder); try { if (isFolder) { DirectoryInfo dir = new DirectoryInfo(fileOrFolder); totalSize += totalSize.AddBytes(dir.EnumerateFiles("*", SearchOption.AllDirectories).Sum(file => file.Length)); } else { FileInfo file = new FileInfo(fileOrFolder); totalSize = totalSize.AddBytes(file.Length); } } catch { } return totalSize; } internal static void PreviewEdgeClean(bool cache, bool cookies, bool seachHistory, bool session) { if (cache) { foreach (string x in edgeCache) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (cookies) { foreach (string x in edgeCookies) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (seachHistory) { PreviewFolder(edgeHistory); PreviewSizeToBeFreed += CalculateSize(edgeHistory); } if (session) { foreach (string x in edgeSession) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } } internal static void PreviewInternetExplorerCache() { foreach (string x in ieCache) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } internal static void PreviewFireFoxClean(bool cache, bool cookies, bool searchHistory) { if (Directory.Exists(firefoxRoaming)) { foreach (string x in Directory.EnumerateDirectories(firefoxRoaming)) { if (x.ToLowerInvariant().Contains("release")) { if (cookies) { PreviewFolder(Path.Combine(x, "cookies.sqlite")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(x, "cookies.sqlite")); } if (searchHistory) { PreviewFolder(Path.Combine(x, "places.sqlite")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(x, "places.sqlite")); } if (cache) { PreviewFolder(Path.Combine(x, "shader-cache")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(x, "shader-cache")); } } } } if (cache) { if (Directory.Exists(firefoxLocal)) { foreach (string x in Directory.EnumerateDirectories(firefoxLocal)) { if (x.ToLowerInvariant().Contains("release")) { PreviewFolder(Path.Combine(x, "cache2")); PreviewSizeToBeFreed += CalculateSize(Path.Combine(x, "cache2")); } } } } } internal static void PreviewBraveClean(bool cache, bool cookies, bool searchHistory, bool session, bool passwords) { if (cache) { foreach (string x in braveUserDataCacheDirs) { PreviewFolder(Path.Combine(braveFolder, x)); PreviewSizeToBeFreed += CalculateSize(Path.Combine(braveFolder, x)); } } if (session) { foreach (string x in braveSessionDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (cookies) { foreach (string x in braveCookiesDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (searchHistory) { foreach (string x in braveHistoryDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (passwords) { PreviewFolder(bravePasswordsDir); PreviewSizeToBeFreed += CalculateSize(bravePasswordsDir); } } internal static void PreviewChromeClean(bool cache, bool cookies, bool searchHistory, bool session, bool passwords) { if (cache) { foreach (string x in chromeUserDataCacheDirs) { PreviewFolder(Path.Combine(chromeFolder, x)); PreviewSizeToBeFreed += CalculateSize(Path.Combine(chromeFolder, x)); } } if (session) { foreach (string x in chromeSessionDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (cookies) { foreach (string x in chromeCookiesDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (searchHistory) { foreach (string x in chromeHistoryDirs) { PreviewFolder(x); PreviewSizeToBeFreed += CalculateSize(x); } } if (passwords) { PreviewFolder(chromePasswordsDir); PreviewSizeToBeFreed += CalculateSize(chromePasswordsDir); } } } } ================================================ FILE: Optimizer/ColorHelper.cs ================================================ using System; using System.Drawing; using System.Text; namespace Optimizer { public static class ColorHelper { public static void HSVFromRGB(Color color, out double hue, out double saturation, out double value) { double min, max, delta, r, g, b; r = (double)color.R / 255d; g = (double)color.G / 255d; b = (double)color.B / 255d; min = Math.Min(r, Math.Min(g, b)); max = Math.Max(r, Math.Max(g, b)); value = max; delta = max - min; if (max != 0) saturation = delta / max; else { saturation = 0; hue = -1; return; } if (r == max) hue = (g - b) / delta; else if (g == max) hue = 2 + (b - r) / delta; else hue = 4 + (r - g) / delta; hue *= 60; if (hue < 0) hue += 360; } public static Color ColorFromHSV(double hue, double saturation, double value) { try { int i; double f, p, q, t, r, g, b; if (saturation == 0) { r = g = b = value; return Color.FromArgb((int)(255 * r), (int)(255 * g), (int)(255 * b)); } hue /= 60; i = (int)Math.Floor(hue); f = hue - i; p = value * (1 - saturation); q = value * (1 - saturation * f); t = value * (1 - saturation * (1 - f)); switch (i) { case 0: r = value; g = t; b = p; break; case 1: r = q; g = value; b = p; break; case 2: r = p; g = value; b = t; break; case 3: r = p; g = q; b = value; break; case 4: r = t; g = p; b = value; break; default: r = value; g = p; b = q; break; } return Color.FromArgb((int)(255 * r), (int)(255 * g), (int)(255 * b)); } catch { } return Color.Empty; } public static Color ChangeColorBrightness(Color color, double darkenAmount) { HslColor hslColor = new HslColor(color); hslColor.L *= darkenAmount; return hslColor; } } [Serializable] public struct HslColor { #region Constants public static readonly HslColor Empty; #endregion #region Fields private double hue; private double saturation; private double luminance; private int alpha; private bool isEmpty; #endregion #region Static Constructors static HslColor() { Empty = new HslColor { IsEmpty = true }; } #endregion #region Public Constructors public HslColor(double h, double s, double l) : this(255, h, s, l) { } public HslColor(int a, double h, double s, double l) { this.alpha = a; this.hue = Math.Min(359, h); this.saturation = Math.Min(1, s); this.luminance = Math.Min(1, l); isEmpty = false; } public HslColor(Color color) { this.alpha = color.A; this.hue = color.GetHue(); this.saturation = color.GetSaturation(); this.luminance = color.GetBrightness(); isEmpty = false; } #endregion #region Operators public static bool operator ==(HslColor left, HslColor right) { return (((left.A == right.A) && (left.H == right.H)) && ((left.S == right.S) && (left.L == right.L))); } public static bool operator !=(HslColor left, HslColor right) { return !(left == right); } public static implicit operator HslColor(Color color) { return new HslColor(color); } public static implicit operator Color(HslColor color) { return color.ToRgbColor(); } #endregion #region Overridden Methods public override bool Equals(object obj) { if (obj is HslColor color) { if (((this.A == color.A) && (this.H == color.H)) && ((this.S == color.S) && (this.L == color.L))) { return true; } } return false; } public override int GetHashCode() { return (((this.alpha.GetHashCode() ^ this.hue.GetHashCode()) ^ this.saturation.GetHashCode()) ^ this.luminance.GetHashCode()); } public override string ToString() { StringBuilder builder; builder = new StringBuilder(); builder.Append(this.GetType().Name); builder.Append(" ["); builder.Append("H="); builder.Append(this.H); builder.Append(", S="); builder.Append(this.S); builder.Append(", L="); builder.Append(this.L); builder.Append("]"); return builder.ToString(); } #endregion #region Public Members public double H { get { return this.hue; } set { this.hue = value; this.hue = (this.hue > 359.0) ? 0 : ((this.hue < 0.0) ? 359 : this.hue); } } public double S { get { return this.saturation; } set { this.saturation = Math.Min(1, Math.Max(0, value)); } } public double L { get { return this.luminance; } set { this.luminance = Math.Min(1, Math.Max(0, value)); } } public int A { get { return this.alpha; } set { this.alpha = Math.Min(0, Math.Max(255, value)); } } public bool IsEmpty { get { return isEmpty; } internal set { isEmpty = value; } } public Color ToRgbColor() { return this.ToRgbColor(this.A); } public Color ToRgbColor(int alpha) { double q; if (this.L < 0.5) { q = this.L * (1 + this.S); } else { q = this.L + this.S - (this.L * this.S); } double p = 2 * this.L - q; double hk = this.H / 360; // r,g,b colors double[] tc = new[] { hk + (1d / 3d), hk, hk - (1d / 3d) }; double[] colors = new[] { 0.0, 0.0, 0.0 }; for (int color = 0; color < colors.Length; color++) { if (tc[color] < 0) { tc[color] += 1; } if (tc[color] > 1) { tc[color] -= 1; } if (tc[color] < (1d / 6d)) { colors[color] = p + ((q - p) * 6 * tc[color]); } else if (tc[color] >= (1d / 6d) && tc[color] < (1d / 2d)) { colors[color] = q; } else if (tc[color] >= (1d / 2d) && tc[color] < (2d / 3d)) { colors[color] = p + ((q - p) * 6 * (2d / 3d - tc[color])); } else { colors[color] = p; } colors[color] *= 255; } return Color.FromArgb(alpha, (int)colors[0], (int)colors[1], (int)colors[2]); } #endregion } } ================================================ FILE: Optimizer/Constants.cs ================================================ namespace Optimizer { internal static class Constants { internal static string INTERNAL_DNS = "1.1.1.1"; internal static string THEME_FLAG = "themeable"; internal static int CONTRAST_THRESHOLD = 149; internal static string INDICIUM_TOOL = "indicium"; internal static string UWP_TOOL = "uwp"; internal static string APPS_TOOL = "apps"; internal static string HOSTS_EDITOR = "hosts"; internal static string STARTUP_TOOL = "startup"; internal static string CLEANER_TOOL = "cleaner"; internal static string INTEGRATOR_TOOL = "integrator"; internal static string PINGER_TOOL = "pinger"; internal static string ENGLISH = "English"; internal static string RUSSIAN = "Русский"; internal static string TURKISH = "Türkçe"; internal static string HELLENIC = "Ελληνικά"; internal static string GERMAN = "Deutsch"; internal static string PORTUGUESE = "Português"; internal static string FRENCH = "Français"; internal static string SPANISH = "Español"; internal static string ITALIAN = "Italiano"; internal static string CHINESE = "简体中文"; internal static string TAIWANESE = "繁體中文"; internal static string CZECH = "Čeština"; internal static string KOREAN = "한국어"; internal static string POLISH = "Polski"; internal static string ARABIC = "العربية"; internal static string KURDISH = "کوردی"; internal static string HUNGARIAN = "Magyar"; internal static string ROMANIAN = "Română"; internal static string DUTCH = "Nederlands"; internal static string UKRAINIAN = "українська"; internal static string JAPANESE = "日本語"; internal static string PERSIAN = "فارسی"; internal static string NEPALI = "नेपाली"; internal static string BULGARIAN = "български"; internal static string VIETNAMESE = "Tiếng Việt"; internal static string URDU = "لشکری ‍زبان"; internal static string INDONESIAN = "Bahasa Indonesia"; internal static string CROATIAN = "Hrvat"; internal static string CloudflareDNS = "Cloudflare"; internal static string OpenDNS = "OpenDNS"; internal static string Quad9DNS = "Quad9"; internal static string GoogleDNS = "Google"; internal static string AlternateDNS = "AlternateDNS"; internal static string AdguardDNS = "Adguard"; internal static string CleanBrowsingDNS = "CleanBrowsing"; internal static string CleanBrowsingAdultFilterDNS = "CleanBrowsing (adult filter)"; internal static string AutomaticDNS = "Automatic"; internal static string CustomDNS = "Custom"; } } ================================================ FILE: Optimizer/Controls/AppCard.Designer.cs ================================================  namespace Optimizer { partial class AppCard { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.appTitle = new Optimizer.MoonCheck(); this.appImage = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.appImage)).BeginInit(); this.SuspendLayout(); // // appTitle // this.appTitle.AutoSize = true; this.appTitle.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.appTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.appTitle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.appTitle.Location = new System.Drawing.Point(36, 4); this.appTitle.Name = "appTitle"; this.appTitle.Size = new System.Drawing.Size(89, 24); this.appTitle.TabIndex = 165; this.appTitle.Text = "App Title"; this.appTitle.UseVisualStyleBackColor = true; // // appImage // this.appImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.appImage.Location = new System.Drawing.Point(6, 4); this.appImage.Name = "appImage"; this.appImage.Size = new System.Drawing.Size(24, 24); this.appImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.appImage.TabIndex = 166; this.appImage.TabStop = false; // // AppCard // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.Controls.Add(this.appTitle); this.Controls.Add(this.appImage); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold); this.ForeColor = System.Drawing.Color.White; this.Name = "AppCard"; this.Size = new System.Drawing.Size(172, 33); ((System.ComponentModel.ISupportInitialize)(this.appImage)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion internal MoonCheck appTitle; internal System.Windows.Forms.PictureBox appImage; } } ================================================ FILE: Optimizer/Controls/AppCard.cs ================================================ using System.Windows.Forms; namespace Optimizer { public sealed partial class AppCard : UserControl { public AppCard() { InitializeComponent(); } } } ================================================ FILE: Optimizer/Controls/AppCard.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Controls/ColorOverrider.cs ================================================ using Microsoft.Win32; using System; using System.Collections; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Reflection; namespace Optimizer { public sealed class ColorOverrider { public static event Action SystemColorsChanging; public static event Action SystemColorsChanged; private int[] OriginalColors { get; } private IReadOnlyDictionary KnownOriginalColors; private int[] _colorTable; private readonly FieldInfo _colorTableField; private readonly PropertyInfo _threadDataProperty; public ColorOverrider() { // force init color table byte unused = SystemColors.Window.R; var systemDrawingAssembly = typeof(Color).Assembly; string colorTableField = "colorTable"; _colorTableField = systemDrawingAssembly.GetType("System.Drawing.KnownColorTable") .GetField(colorTableField, BindingFlags.Static | BindingFlags.NonPublic); _colorTable = readColorTable(); SystemEvents.UserPreferenceChanging += userPreferenceChanging; OriginalColors = _colorTable.ToArray(); KnownOriginalColors = KnownColors.Cast() .ToDictionary(i => i, i => OriginalColors[i]); _threadDataProperty = systemDrawingAssembly.GetType("System.Drawing.SafeNativeMethods") .GetNestedType("Gdip", BindingFlags.NonPublic) .GetProperty("ThreadData", BindingFlags.Static | BindingFlags.NonPublic); string systemBrushesKeyField = "SystemBrushesKey"; SystemBrushesKey = typeof(SystemBrushes) .GetField(systemBrushesKeyField, BindingFlags.Static | BindingFlags.NonPublic) ?.GetValue(null); SystemPensKey = typeof(SystemPens) .GetField("SystemPensKey", BindingFlags.Static | BindingFlags.NonPublic) ?.GetValue(null); } private void userPreferenceChanging(object sender, UserPreferenceChangingEventArgs e) { if (e.Category != UserPreferenceCategory.Color) return; _colorTable = readColorTable(); fireColorsChangedEvents(); } private static void fireColorsChangedEvents() { SystemColorsChanging?.Invoke(); SystemColorsChanged?.Invoke(); } private int[] readColorTable() => (int[])_colorTableField.GetValue(null); public void SetColor(KnownColor knownColor, int argb) { setColor(knownColor, argb); if (SystemBrushesKey != null) ThreadData[SystemBrushesKey] = null; if (SystemPensKey != null) ThreadData[SystemPensKey] = null; fireColorsChangedEvents(); } private void setColor(KnownColor knownColor, int argb) => _colorTable[(int)knownColor] = argb; public int GetOriginalColor(KnownColor knownColor) => OriginalColors[(int)knownColor]; public int GetColor(KnownColor knownColor) { if (!KnownColors.Contains(knownColor)) throw new ArgumentException(); return _colorTable[(int)knownColor]; } public IReadOnlyDictionary Save() => KnownColors.Cast() .ToDictionary(i => i, i => _colorTable[i]); public void Load(IReadOnlyDictionary saved) { foreach (var color in KnownColors) { int v; var value = saved.TryGetValue((int)color, out v); setColor(color, v); } if (SystemBrushesKey != null) ThreadData[SystemBrushesKey] = null; if (SystemPensKey != null) ThreadData[SystemPensKey] = null; fireColorsChangedEvents(); } public void Reset(KnownColor color) => SetColor(color, OriginalColors[(int)color]); public void ResetAll() => Load(KnownOriginalColors); private IDictionary ThreadData => (IDictionary)_threadDataProperty.GetValue(null, null); private object SystemBrushesKey { get; } private object SystemPensKey { get; } public readonly HashSet KnownColors = new HashSet( new[] { SystemColors.Control, SystemColors.ControlText, SystemColors.ButtonFace, // menu gradient SystemColors.ButtonShadow, // menu border SystemColors.Window, SystemColors.WindowText, SystemColors.GrayText, SystemColors.HotTrack, SystemColors.Highlight, SystemColors.HighlightText, SystemColors.ActiveCaption, SystemColors.GradientActiveCaption, SystemColors.InactiveCaption, SystemColors.GradientInactiveCaption, SystemColors.ActiveBorder }.Select(_ => _.ToKnownColor()) ); } } ================================================ FILE: Optimizer/Controls/ColorPicker.cs ================================================ using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace Optimizer.Controls { [DefaultProperty("Color")] [DefaultEvent("ColorChanged")] public partial class ColorPicker : Control { #region Fields private Brush _brush; private PointF _centerPoint; private Color _color; private int _colorStep; private bool _dragStartedWithinWheel; private HslColor _hslColor; private int _largeChange; private float _radius; private int _selectionSize; private int _smallChange; private int _updateCount; #endregion #region Constructors public ColorPicker() { this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.Selectable | ControlStyles.StandardClick | ControlStyles.StandardDoubleClick, true); this.Color = Color.Black; this.ColorStep = 4; this.SelectionSize = 10; this.SmallChange = 1; this.LargeChange = 5; this.SelectionGlyph = this.CreateSelectionGlyph(); } #endregion #region Events [Category("Property Changed")] public event EventHandler ColorChanged; [Category("Property Changed")] public event EventHandler ColorStepChanged; [Category("Property Changed")] public event EventHandler HslColorChanged; [Category("Property Changed")] public event EventHandler LargeChangeChanged; [Category("Property Changed")] public event EventHandler SelectionSizeChanged; [Category("Property Changed")] public event EventHandler SmallChangeChanged; #endregion #region Overridden Methods protected override void Dispose(bool disposing) { if (disposing) { if (_brush != null) { _brush.Dispose(); } if (this.SelectionGlyph != null) { this.SelectionGlyph.Dispose(); } } base.Dispose(disposing); } protected override bool IsInputKey(Keys keyData) { bool result; if ((keyData & Keys.Left) == Keys.Left || (keyData & Keys.Up) == Keys.Up || (keyData & Keys.Down) == Keys.Down || (keyData & Keys.Right) == Keys.Right || (keyData & Keys.PageUp) == Keys.PageUp || (keyData & Keys.PageDown) == Keys.PageDown) { result = true; } else { result = base.IsInputKey(keyData); } return result; } protected override void OnGotFocus(EventArgs e) { base.OnGotFocus(e); this.Invalidate(); } protected override void OnKeyDown(KeyEventArgs e) { HslColor color; double hue; int step; color = this.HslColor; hue = color.H; step = e.Shift ? this.LargeChange : this.SmallChange; switch (e.KeyCode) { case Keys.Right: case Keys.Up: hue += step; break; case Keys.Left: case Keys.Down: hue -= step; break; case Keys.PageUp: hue += this.LargeChange; break; case Keys.PageDown: hue -= this.LargeChange; break; } if (hue >= 360) { hue = 0; } if (hue < 0) { hue = 359; } if (hue != color.H) { color.H = hue; this.LockUpdates = true; this.Color = color.ToRgbColor(); this.HslColor = color; this.LockUpdates = false; e.Handled = true; } base.OnKeyDown(e); } protected override void OnLostFocus(EventArgs e) { base.OnLostFocus(e); this.Invalidate(); } protected override void OnMouseDown(MouseEventArgs e) { base.OnMouseDown(e); if (!this.Focused && this.TabStop) { this.Focus(); } if (e.Button == MouseButtons.Left && this.IsPointInWheel(e.Location)) { _dragStartedWithinWheel = true; this.SetColor(e.Location); } } protected override void OnMouseMove(MouseEventArgs e) { base.OnMouseMove(e); if (e.Button == MouseButtons.Left && _dragStartedWithinWheel) { this.SetColor(e.Location); } } protected override void OnMouseUp(MouseEventArgs e) { base.OnMouseUp(e); _dragStartedWithinWheel = false; } protected override void OnPaddingChanged(EventArgs e) { base.OnPaddingChanged(e); this.RefreshWheel(); } protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); if (this.AllowPainting) { base.OnPaintBackground(e); if (this.BackgroundImage == null && this.Parent != null && (this.BackColor == this.Parent.BackColor || this.Parent.BackColor.A != 255)) { ButtonRenderer.DrawParentBackground(e.Graphics, this.DisplayRectangle, this); } if (_brush != null) { e.Graphics.FillPie(_brush, this.ClientRectangle, 0, 360); } e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; using (Pen pen = new Pen(this.BackColor, 2)) { e.Graphics.DrawEllipse(pen, new RectangleF(_centerPoint.X - _radius, _centerPoint.Y - _radius, _radius * 2, _radius * 2)); } if (!this.Color.IsEmpty) { this.PaintCurrentColor(e); } } } protected override void OnResize(EventArgs e) { base.OnResize(e); this.RefreshWheel(); } #endregion #region Public Properties [Category("Appearance")] [DefaultValue(typeof(Color), "Black")] public virtual Color Color { get { return _color; } set { if (this.Color != value) { _color = value; this.OnColorChanged(EventArgs.Empty); } } } [Category("Appearance")] [DefaultValue(4)] public virtual int ColorStep { get { return _colorStep; } set { if (value < 1 || value > 359) { throw new ArgumentOutOfRangeException("value", value, "Value must be between 1 and 359"); } if (this.ColorStep != value) { _colorStep = value; this.OnColorStepChanged(EventArgs.Empty); } } } [Category("Appearance")] [DefaultValue(typeof(HslColor), "0, 0, 0")] [Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual HslColor HslColor { get { return _hslColor; } set { if (this.HslColor != value) { _hslColor = value; this.OnHslColorChanged(EventArgs.Empty); } } } [Category("Behavior")] [DefaultValue(5)] public virtual int LargeChange { get { return _largeChange; } set { if (this.LargeChange != value) { _largeChange = value; this.OnLargeChangeChanged(EventArgs.Empty); } } } [Category("Appearance")] [DefaultValue(10)] public virtual int SelectionSize { get { return _selectionSize; } set { if (this.SelectionSize != value) { _selectionSize = value; this.OnSelectionSizeChanged(EventArgs.Empty); } } } [Category("Behavior")] [DefaultValue(1)] public virtual int SmallChange { get { return _smallChange; } set { if (this.SmallChange != value) { _smallChange = value; this.OnSmallChangeChanged(EventArgs.Empty); } } } #endregion #region Protected Properties protected virtual bool AllowPainting { get { return _updateCount == 0; } } protected Color[] Colors { get; set; } protected bool LockUpdates { get; set; } protected PointF[] Points { get; set; } protected Image SelectionGlyph { get; set; } #endregion #region Public Members public virtual void BeginUpdate() { _updateCount++; } public virtual void EndUpdate() { if (_updateCount > 0) { _updateCount--; } if (this.AllowPainting) { this.Invalidate(); } } #endregion #region Protected Members protected virtual void CalculateWheel() { List points; List colors; points = new List(); colors = new List(); if (this.ClientSize.Width > 16 && this.ClientSize.Height > 16) { int w; int h; w = this.ClientSize.Width; h = this.ClientSize.Height; _centerPoint = new PointF(w / 2.0F, h / 2.0F); _radius = this.GetRadius(_centerPoint); for (double angle = 0; angle < 360; angle += this.ColorStep) { double angleR; PointF location; angleR = angle * (Math.PI / 180); location = this.GetColorLocation(angleR, _radius); points.Add(location); colors.Add(new HslColor(angle, 1, 0.5).ToRgbColor()); } } this.Points = points.ToArray(); this.Colors = colors.ToArray(); } protected virtual Brush CreateGradientBrush() { Brush result; if (this.Points.Length != 0 && this.Points.Length == this.Colors.Length) { result = new PathGradientBrush(this.Points, WrapMode.Clamp) { CenterPoint = _centerPoint, CenterColor = Color.White, SurroundColors = this.Colors }; } else { result = null; } return result; } protected virtual Color GetContrastColor(Color c) { double brightness = c.R * 0.299 + c.G * 0.587 + c.B * 0.114; return brightness > 149 ? Color.Black : Color.White; } protected virtual Image CreateSelectionGlyph() { Image image; int halfSize; halfSize = this.SelectionSize / 2; image = new Bitmap(this.SelectionSize + 1, this.SelectionSize + 1); using (Graphics g = Graphics.FromImage(image)) { g.SmoothingMode = SmoothingMode.AntiAlias; g.PixelOffsetMode = PixelOffsetMode.HighQuality; g.InterpolationMode = InterpolationMode.High; g.DrawEllipse(new Pen(GetContrastColor(Color)), halfSize - 4.5f, halfSize - 4.5f, 4.5f + 4.5f, 4.5f + 4.5f); g.FillEllipse(new SolidBrush(this.Color), halfSize - 4, halfSize - 4, 4 + 4, 4 + 4); } return image; } protected PointF GetColorLocation(Color color) { return this.GetColorLocation(new HslColor(color)); } protected virtual PointF GetColorLocation(HslColor color) { double angle; double radius; angle = color.H * Math.PI / 180; radius = _radius * color.S; return this.GetColorLocation(angle, radius); } protected PointF GetColorLocation(double angleR, double radius) { double x; double y; x = this.Padding.Left + _centerPoint.X + Math.Cos(angleR) * radius; y = this.Padding.Top + _centerPoint.Y - Math.Sin(angleR) * radius; return new PointF((float)x, (float)y); } protected float GetRadius(PointF centerPoint) { return Math.Min(centerPoint.X, centerPoint.Y) - (Math.Max(this.Padding.Horizontal, this.Padding.Vertical) + (this.SelectionSize / 2)); } protected bool IsPointInWheel(Point point) { PointF normalized; normalized = new PointF(point.X - _centerPoint.X, point.Y - _centerPoint.Y); return (normalized.X * normalized.X + normalized.Y * normalized.Y) <= (_radius * _radius); } protected virtual void OnColorChanged(EventArgs e) { EventHandler handler; if (!this.LockUpdates) { this.HslColor = new HslColor(this.Color); } this.SelectionGlyph = this.CreateSelectionGlyph(); this.Refresh(); handler = this.ColorChanged; if (handler != null) { handler(this, e); } } protected virtual void OnColorStepChanged(EventArgs e) { EventHandler handler; this.RefreshWheel(); handler = this.ColorStepChanged; if (handler != null) { handler(this, e); } } protected virtual void OnHslColorChanged(EventArgs e) { EventHandler handler; if (!this.LockUpdates) { this.Color = this.HslColor.ToRgbColor(); } this.Invalidate(); handler = this.HslColorChanged; if (handler != null) { handler(this, e); } } protected virtual void OnLargeChangeChanged(EventArgs e) { EventHandler handler; handler = this.LargeChangeChanged; if (handler != null) { handler(this, e); } } protected virtual void OnSelectionSizeChanged(EventArgs e) { EventHandler handler; if (this.SelectionGlyph != null) { this.SelectionGlyph.Dispose(); } this.SelectionGlyph = this.CreateSelectionGlyph(); this.RefreshWheel(); handler = this.SelectionSizeChanged; if (handler != null) { handler(this, e); } } protected virtual void OnSmallChangeChanged(EventArgs e) { EventHandler handler; handler = this.SmallChangeChanged; if (handler != null) { handler(this, e); } } protected void PaintColor(PaintEventArgs e, HslColor color) { this.PaintColor(e, color, false); } protected virtual void PaintColor(PaintEventArgs e, HslColor color, bool includeFocus) { PointF location; location = this.GetColorLocation(color); if (!float.IsNaN(location.X) && !float.IsNaN(location.Y)) { int x; int y; x = (int)location.X - (this.SelectionSize / 2); y = (int)location.Y - (this.SelectionSize / 2); if (this.SelectionGlyph == null) { e.Graphics.DrawRectangle(Pens.Black, x, y, this.SelectionSize, this.SelectionSize); } else { e.Graphics.DrawImage(this.SelectionGlyph, x, y); } } } protected virtual void PaintCurrentColor(PaintEventArgs e) { this.PaintColor(e, this.HslColor, true); } protected virtual void SetColor(Point point) { double dx; double dy; double angle; double distance; double saturation; dx = Math.Abs(point.X - _centerPoint.X - this.Padding.Left); dy = Math.Abs(point.Y - _centerPoint.Y - this.Padding.Top); angle = Math.Atan(dy / dx) / Math.PI * 180; distance = Math.Pow((Math.Pow(dx, 2) + (Math.Pow(dy, 2))), 0.5); saturation = distance / _radius; if (distance < 6) { saturation = 0; } if (point.X < _centerPoint.X) { angle = 180 - angle; } if (point.Y > _centerPoint.Y) { angle = 360 - angle; } this.LockUpdates = true; this.HslColor = new HslColor(angle, saturation, 0.5); this.Color = this.HslColor.ToRgbColor(); this.LockUpdates = false; } #endregion #region Private Members private void RefreshWheel() { if (_brush != null) { _brush.Dispose(); } this.CalculateWheel(); _brush = this.CreateGradientBrush(); this.Invalidate(); } #endregion } } ================================================ FILE: Optimizer/Controls/ListViewColumnSorter.cs ================================================ using System; using System.Collections; using System.Windows.Forms; namespace Optimizer { internal sealed class ListViewColumnSorter : IComparer { int _columnToSort; SortOrder _sortOrder; CaseInsensitiveComparer _comparer; public ListViewColumnSorter() { _columnToSort = 0; _sortOrder = SortOrder.None; _comparer = new CaseInsensitiveComparer(); } public int CurrentColumn { get { return _columnToSort; } set { _columnToSort = value; } } public SortOrder SortOrder { get { return _sortOrder; } set { _sortOrder = value; } } public int Compare(object x, object y) { int compareResult; ListViewItem listViewX = (ListViewItem)x; ListViewItem listViewY = (ListViewItem)y; try { compareResult = _comparer.Compare(Convert.ToInt64(listViewX.SubItems[_columnToSort].Text), Convert.ToInt64(listViewY.SubItems[_columnToSort].Text)); } catch { compareResult = _comparer.Compare(listViewX.SubItems[_columnToSort].Text, listViewY.SubItems[_columnToSort].Text); } if (_sortOrder == SortOrder.Ascending) { return compareResult; } else if (_sortOrder == SortOrder.Descending) { return -compareResult; } else { return 0; } } } } ================================================ FILE: Optimizer/Controls/MoonCheck.cs ================================================ using System; using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonCheck : CheckBox { public MoonCheck() { DoubleBuffered = true; } protected override void OnCheckedChanged(EventArgs e) { base.OnCheckedChanged(e); // custom theming if (this.Checked) { this.Tag = "themeable"; this.Font = new Font(this.Font, FontStyle.Underline); this.ForeColor = OptionsHelper.ForegroundColor; } else { this.Tag = string.Empty; this.ForeColor = Color.White; this.Font = new Font(this.Font, FontStyle.Regular); } } } } ================================================ FILE: Optimizer/Controls/MoonCheckList.cs ================================================ using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonCheckList : CheckedListBox { public MoonCheckList() { DoubleBuffered = true; } protected override void OnDrawItem(DrawItemEventArgs e) { Color foreColor = Color.White; Color accentColor = OptionsHelper.ForegroundColor; if (this.Items.Count > 0) { if (e.Index >= 0) { foreColor = GetItemChecked(e.Index) ? accentColor : foreColor; } else { foreColor = e.ForeColor; } } var tweakedEventArgs = new DrawItemEventArgs( e.Graphics, e.Font, e.Bounds, e.Index, e.State, foreColor, e.BackColor); base.OnDrawItem(tweakedEventArgs); } } } ================================================ FILE: Optimizer/Controls/MoonList.cs ================================================ using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonList : ListBox { public MoonList() { this.DrawMode = DrawMode.OwnerDrawVariable; this.BorderStyle = BorderStyle.None; this.MeasureItem += MoonListBox_MeasureItem; this.DrawItem += MoonListBox_DrawItem; } private void MoonListBox_DrawItem(object sender, DrawItemEventArgs e) { if (e.Index < 0) return; if (this.Items.Count <= 0) return; e.DrawBackground(); Brush myBrush = new SolidBrush(Color.White); if ((e.State & DrawItemState.Selected) == DrawItemState.Selected) { e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(50, 50, 50)), e.Bounds); } else { e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(20, 20, 20)), e.Bounds); } e.Graphics.DrawString(this.Items[e.Index].ToString(), this.Font, myBrush, e.Bounds); e.DrawFocusRectangle(); } private void MoonListBox_MeasureItem(object sender, MeasureItemEventArgs e) { e.ItemHeight = this.Font.Height; } } } ================================================ FILE: Optimizer/Controls/MoonMenuRenderer.cs ================================================ using System.Drawing; using System.Windows.Forms; namespace Optimizer { internal sealed class MoonMenuRenderer : ToolStripProfessionalRenderer { internal MoonMenuRenderer() : base(new MoonColors()) { } //protected override void OnRenderItemText(ToolStripItemTextRenderEventArgs e) //{ // var tsMenuItem = e.Item as ToolStripMenuItem; // if (tsMenuItem != null) // e.TextColor = Color.GhostWhite; // base.OnRenderItemText(e); //} //protected override void OnRenderSeparator(ToolStripSeparatorRenderEventArgs e) //{ // var tsMenuItem = e.Item as ToolStripMenuItem; // if (tsMenuItem != null) // e.Graphics.bru // base.OnRenderSeparator(e); //} protected override void OnRenderArrow(ToolStripArrowRenderEventArgs e) { var tsMenuItem = e.Item as ToolStripMenuItem; if (tsMenuItem != null) e.ArrowColor = Color.DimGray; base.OnRenderArrow(e); } } internal class MoonColors : ProfessionalColorTable { public override Color SeparatorLight { get { return Color.DimGray; } } public override Color SeparatorDark { get { return Color.DimGray; } } public override Color ToolStripDropDownBackground { get { return OptionsHelper.BackgroundColor; } } public override Color ImageMarginGradientBegin { get { return OptionsHelper.BackgroundColor; } } public override Color ImageMarginGradientMiddle { get { return OptionsHelper.BackgroundColor; } } public override Color ImageMarginGradientEnd { get { return OptionsHelper.BackgroundColor; } } public override Color ToolStripBorder { get { return OptionsHelper.BackgroundColor; } } public override Color MenuBorder { get { return OptionsHelper.BackAccentColor; } } public override Color MenuItemSelected { get { return OptionsHelper.BackAccentColor; } } public override Color MenuItemSelectedGradientBegin { get { return OptionsHelper.BackAccentColor; } } public override Color MenuItemSelectedGradientEnd { get { return OptionsHelper.BackAccentColor; } } public override Color MenuItemBorder { get { return OptionsHelper.BackAccentColor; } } } } ================================================ FILE: Optimizer/Controls/MoonProgress.cs ================================================ using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace Optimizer { internal sealed class MoonProgress : ProgressBar { public MoonProgress() { DoubleBuffered = true; this.SetStyle(ControlStyles.UserPaint, true); } protected override void OnPaint(PaintEventArgs e) { LinearGradientBrush brush = null; Rectangle rec = new Rectangle(0, 0, this.Width, this.Height); if (ProgressBarRenderer.IsSupported) ProgressBarRenderer.DrawHorizontalBar(e.Graphics, rec); rec.Width = (int)(rec.Width * ((double)base.Value / Maximum)) - 4; rec.Height -= 4; brush = new LinearGradientBrush(rec, OptionsHelper.ForegroundAccentColor, OptionsHelper.ForegroundColor, LinearGradientMode.Vertical); e.Graphics.FillRectangle(brush, 2, 2, rec.Width, rec.Height); } } } ================================================ FILE: Optimizer/Controls/MoonRadio.cs ================================================ using System; using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonRadio : RadioButton { public MoonRadio() { DoubleBuffered = true; } protected override void OnCheckedChanged(EventArgs e) { base.OnCheckedChanged(e); // custom theming if (this.Checked) { this.Tag = "themeable"; this.Font = new Font(this.Font, FontStyle.Underline); this.ForeColor = OptionsHelper.ForegroundColor; } else { this.Tag = string.Empty; this.ForeColor = Color.White; this.Font = new Font(this.Font, FontStyle.Regular); } } } } ================================================ FILE: Optimizer/Controls/MoonSelect.cs ================================================ using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonSelect : ComboBox { private const int WM_PAINT = 0xF; private int buttonWidth = SystemInformation.HorizontalScrollBarArrowWidth; Color borderColor = Color.Blue; public Color BorderColor { get { return borderColor; } set { borderColor = value; Invalidate(); } } protected override void WndProc(ref Message m) { base.WndProc(ref m); if (m.Msg == WM_PAINT && DropDownStyle != ComboBoxStyle.Simple) { using (var g = Graphics.FromHwnd(Handle)) { var adjustMent = 0; if (FlatStyle == FlatStyle.Popup || (FlatStyle == FlatStyle.Flat && DropDownStyle == ComboBoxStyle.DropDownList)) adjustMent = 1; var innerBorderWisth = 3; var innerBorderColor = BackColor; if (DropDownStyle == ComboBoxStyle.DropDownList && (FlatStyle == FlatStyle.System || FlatStyle == FlatStyle.Standard)) innerBorderColor = Color.FromArgb(0xCCCCCC); if (DropDownStyle == ComboBoxStyle.DropDownList && !Enabled) innerBorderColor = SystemColors.Control; if (DropDownStyle == ComboBoxStyle.DropDownList || Enabled == false) { using (var p = new Pen(innerBorderColor, innerBorderWisth)) { p.Alignment = System.Drawing.Drawing2D.PenAlignment.Inset; g.DrawRectangle(p, 1, 1, Width - buttonWidth - adjustMent - 1, Height - 1); } } using (var p = new Pen(BorderColor)) { g.DrawRectangle(p, 0, 0, Width - 1, Height - 1); g.DrawLine(p, Width - buttonWidth - adjustMent, 0, Width - buttonWidth - adjustMent, Height); } } } } } } ================================================ FILE: Optimizer/Controls/MoonTabs.cs ================================================ using System; using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Windows.Forms; namespace Optimizer { [ ComVisible(true), ClassInterface(ClassInterfaceType.AutoDispatch), DefaultProperty("TabPages"), DefaultEvent("SelectedIndexChanged") ] public sealed class MoonTabs : TabControl { [System.Runtime.InteropServices.DllImport("user32.dll")] private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp); [Category("Custom"), Description("Indicates whether or not you the components Tabpages Headers have border edges."), DefaultValue(false)] public bool BorderEdges { get; set; } = false; private int _BorderSize = 0; [Category("Custom"), Description("The size of the components border."), DefaultValue(0)] public int BorderSize { get => _BorderSize; set => _BorderSize = 0; } [Category("Custom"), Description("The size of the components Indicator."), DefaultValue(0)] public int IndicatorSize { get; set; } = 0; private int _DividerSize = 0; [Category("Custom"), Description("The size of the components Divider."), DefaultValue(0)] public int DividerSize { get => _DividerSize; set => _DividerSize = value.LimitToRange(0, 0); } [Category("Custom"), Description("Indicates whether or not you can rearrange the components Tabpages. CLICK on the Tabpages HEADER with the LEFT mousebutton and HOLD DOWN the KEY, to drag it LEFT or RIGHT."), DefaultValue(false)] public bool CanDrag { get; set; } StringFormat format = new StringFormat { Alignment = StringAlignment.Center }; private Bitmap bitDrag = default(Bitmap); private bool bDrag, bMouseDown, bShiftKey; private Point ptPreviousLocation, ptMaxDrag; private int DraggedIndex = -1; protected override CreateParams CreateParams { [SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)] get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x02000000; return cp; } } // OVERRIDE TAB HEADER WIDTH protected override void OnHandleCreated(EventArgs e) { base.OnHandleCreated(e); // Send TCM_SETMINTABWIDTH string maxTitle = string.Empty; foreach (TabPage x in this.TabPages) { if (x.Text.Length > maxTitle.Length) maxTitle = x.Text; } Size textSize = TextRenderer.MeasureText(maxTitle, this.Font); SendMessage(this.Handle, 0x1300 + 49, IntPtr.Zero, (IntPtr)textSize.Width); } public MoonTabs() { SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.CacheText, true); Alignment = TabAlignment.Top; Margin = new Padding(0); Padding = new Point(0, 0); this.SizeMode = TabSizeMode.Fixed; } private void SetDragState() => bDrag = (CanDrag && bMouseDown && bShiftKey); protected override void OnMouseDown(MouseEventArgs e) { bMouseDown = true; SetDragState(); if (SelectedIndex == -1) return; Rectangle rectDrag = GetTabRect(SelectedIndex); ptPreviousLocation = new Point(rectDrag.X, rectDrag.Y); rectDrag.Width += 1; rectDrag.Height += 1; Bitmap src = new Bitmap(Width, Height); DrawToBitmap(src, ClientRectangle); using (Graphics g = Graphics.FromImage(bitDrag = new Bitmap(rectDrag.Width, rectDrag.Height))) { g.DrawImage(src, new Rectangle(0, 0, bitDrag.Width, bitDrag.Height), rectDrag, GraphicsUnit.Pixel); } } protected override void OnMouseMove(MouseEventArgs e) { if (bDrag) { if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { ptPreviousLocation = new Point(((e.X < 0) ? 0 : (e.X > ptMaxDrag.X) ? ptMaxDrag.X : e.X), (Alignment == TabAlignment.Top ? BorderSize : ptMaxDrag.Y)); } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { ptPreviousLocation = new Point(ptMaxDrag.X, ((e.Y < 0) ? 0 : (e.Y > ptMaxDrag.Y) ? ptMaxDrag.Y : e.Y)); } for (int i = 0; i < TabCount; i++) { if (GetTabRect(i).Contains(PointToClient(Cursor.Position))) { DraggedIndex = i; break; } } Invalidate(); } } protected override void OnMouseUp(MouseEventArgs e) { void SwapTabPages(TabPage inDestTab) { int SourceIndex = TabPages.IndexOf(SelectedTab); int DestinationIndex = TabPages.IndexOf(inDestTab); TabPages[DestinationIndex] = SelectedTab; TabPages[SourceIndex] = inDestTab; if (SelectedIndex == SourceIndex) { SelectedIndex = DestinationIndex; } else if (SelectedIndex == DestinationIndex) { SelectedIndex = SourceIndex; } } bDrag = bMouseDown = false; if (DraggedIndex > -1) { SwapTabPages(TabPages[DraggedIndex]); DraggedIndex = -1; } SetDragState(); Invalidate(); } protected override void OnKeyDown(KeyEventArgs ke) { bShiftKey = ke.Shift; SetDragState(); } protected override void OnKeyUp(KeyEventArgs e) { bDrag = bShiftKey = false; SetDragState(); } protected override void OnPaint(PaintEventArgs e) { if (DesignMode) return; e.Graphics.Clear(Color.FromArgb(40, 40, 40)); Rectangle container = new Rectangle(0, 0, Width - (BorderSize % 2), Height - (BorderSize % 2)); Rectangle containerHead = default(Rectangle); if (TabCount > 0) { using (SolidBrush brushBackgroundTab = new SolidBrush(Color.FromArgb(40, 40, 40))) using (SolidBrush brushDivider = new SolidBrush(OptionsHelper.ForegroundColor)) { { e.Graphics.FillRectangle(brushBackgroundTab, DisplayRectangle); } { if (SelectedIndex == -1) return; Rectangle rectDivider = GetTabRect(SelectedIndex); if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { e.Graphics.FillRectangle(brushDivider, 0, (((Alignment == TabAlignment.Top) ? (TabPages[SelectedIndex].Top - DividerSize - (DividerSize % 2)) : (TabPages[SelectedIndex].Bottom + (DividerSize % 2)))), (Width - BorderSize), DividerSize ); } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { e.Graphics.FillRectangle(brushDivider, ((Alignment == TabAlignment.Right) ? (TabPages[SelectedIndex].Right + (DividerSize % 2)) : TabPages[SelectedIndex].Left - DividerSize - (DividerSize % 2)), BorderSize, DividerSize, (Height - (BorderSize * 2)) ); } } } } SolidBrush brushActiveText; using (Pen penActive = new Pen(OptionsHelper.ForegroundColor)) using (Pen penBorder = new Pen(Color.FromArgb(40, 40, 40), 0)) using (SolidBrush brushActive = new SolidBrush(OptionsHelper.ForegroundColor)) using (SolidBrush brushInActive = new SolidBrush(Color.FromArgb(40, 40, 40))) using (SolidBrush brushAlternative = new SolidBrush(OptionsHelper.ForegroundColor)) using (SolidBrush brushActiveIndicator = new SolidBrush(ControlPaint.Light(OptionsHelper.ForegroundColor))) using (SolidBrush brushInActiveIndicator = new SolidBrush(OptionsHelper.ForegroundColor)) using (brushActiveText = new SolidBrush(OptionsHelper.TextColor)) using (SolidBrush brushInActiveText = new SolidBrush(Color.White)) using (SolidBrush brushDrag = new SolidBrush(ControlPaint.Dark(OptionsHelper.ForegroundColor))) { //if (MoonManager.THEME_PREFERENCE == THEME.LIGHT) brushActiveText = new SolidBrush(Color.White); penBorder.Alignment = penActive.Alignment = PenAlignment.Inset; e.Graphics.DrawRectangle(penBorder, container); if (TabCount > 0) { ptMaxDrag = new Point(0, 0); for (int i = 0; i < TabCount; i++) { containerHead = GetTabRect(i); e.Graphics.FillRectangle((SelectedIndex == i) ? (bDrag ? brushDrag : brushActive) : brushInActive, containerHead); if (BorderEdges && (i == SelectedIndex)) { Point ptA = new Point(0, 0); Point ptB = new Point(0, 0); Point ptC = new Point(0, 0); Point ptD = new Point(0, 0); ptA.X = ptB.X = ptD.X = containerHead.X; ptA.Y = ptB.Y = ptC.Y = containerHead.Y; ptA.Y = ptC.Y = ptD.Y = containerHead.Y + containerHead.Height - 1; if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { ptD.X = ptC.X = containerHead.X + containerHead.Width; ptC.Y = containerHead.Y; if (Alignment == TabAlignment.Bottom) { MoonTabHelper.Swap(ref ptA, ref ptB); MoonTabHelper.Swap(ref ptC, ref ptD); } } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { ptA.Y = containerHead.Y; ptB.X = ptC.X = containerHead.X + containerHead.Width - 1; if (Alignment == TabAlignment.Left) { MoonTabHelper.Swap(ref ptA, ref ptC); MoonTabHelper.Swap(ref ptB, ref ptD); } } e.Graphics.DrawLine(new Pen(ControlPaint.Light(brushActive.Color)), ptA, ptB); e.Graphics.DrawLine(new Pen(ControlPaint.Light(brushActive.Color)), ptB, ptC); e.Graphics.DrawLine(new Pen(ControlPaint.Dark(brushActive.Color)), ptC, ptD); } { Rectangle rectDivider = default(Rectangle); if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { rectDivider = new Rectangle(containerHead.X, containerHead.Y + ((Alignment == TabAlignment.Top) ? containerHead.Height : -DividerSize), containerHead.Width, DividerSize); } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { rectDivider = new Rectangle(containerHead.X - ((Alignment == TabAlignment.Right) ? DividerSize : -containerHead.Width), containerHead.Y, DividerSize, containerHead.Height); } e.Graphics.FillRectangle(((MoonTabHelper.TagToInt(TabPages[i]) == 1) ? brushAlternative : ((i == SelectedIndex) ? brushActiveIndicator : brushInActiveIndicator)), rectDivider); } if (!(bDrag && i == SelectedIndex)) { int angle = 0; { if (Alignment == TabAlignment.Right) angle = 90; if (Alignment == TabAlignment.Left) angle = 270; } float w, h; w = h = 0f; if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { w = containerHead.X + (containerHead.Width / 2); } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { w = containerHead.X; h = containerHead.Y + (containerHead.Height / 2); } if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { h = containerHead.Y + ((Alignment == TabAlignment.Top) ? IndicatorSize : 0) + ((containerHead.Height - IndicatorSize) / 2); } if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { w += (((Alignment == TabAlignment.Right) ? 0 : IndicatorSize) + ((containerHead.Width - IndicatorSize) / 2)); } e.Graphics.TranslateTransform(w, h); { Size textSize = e.Graphics.MeasureString(TabPages[i].Text, Font).ToSize(); e.Graphics.RotateTransform(angle); e.Graphics.DrawString(TabPages[i].Text, Font, ((SelectedIndex == i) ? brushActiveText : brushInActiveText), new PointF((-textSize.Width / 2f), (-textSize.Height / 2f))); } e.Graphics.ResetTransform(); } if (bMouseDown) { if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { if (i > 0) { ptMaxDrag.X += GetTabRect(i).Width; } } if (Alignment == TabAlignment.Top) { ptMaxDrag.Y = BorderSize; } if (Alignment == TabAlignment.Bottom) { ptMaxDrag.Y = containerHead.Y; }; if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { ptMaxDrag.X = containerHead.X; if (i > 0) { ptMaxDrag.Y += containerHead.Height; } } } if (bDrag && (bitDrag != null)) { e.Graphics.DrawImage(bitDrag, new Point(ptPreviousLocation.X, ptPreviousLocation.Y)); } } } } } } public static class MoonTabHelper { public static int LimitToRange(this int value, int inclusiveMinimum, int inclusiveMaximum) { if (value < inclusiveMinimum) { return inclusiveMinimum; } if (value > inclusiveMaximum) { return inclusiveMaximum; } return value; } public static void Swap(ref T a, ref T b) { T temp = a; a = b; b = temp; } public static int TagToInt(object inObject) => Convert.ToInt32((inObject as Control).Tag); } } ================================================ FILE: Optimizer/Controls/MoonToggle.cs ================================================ using System.ComponentModel; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace Optimizer { public sealed class MoonToggle : CheckBox { bool solidStyle = true; [Browsable(true)] public override string Text { get { return base.Text; } set { } } [DefaultValue(true)] public bool SolidStyle { get { return solidStyle; } set { solidStyle = value; this.Invalidate(); } } public MoonToggle() { this.DoubleBuffered = true; this.MinimumSize = new Size(46, 22); this.ForeColor = Color.White; } private GraphicsPath GetFigurePath() { int arcSize = this.Height - 1; Rectangle leftArc = new Rectangle(0, 0, arcSize, arcSize); Rectangle rightArc = new Rectangle(this.Width - arcSize - 2, 0, arcSize, arcSize); GraphicsPath path = new GraphicsPath(); path.StartFigure(); path.AddArc(leftArc, 90, 180); path.AddArc(rightArc, 270, 180); path.CloseFigure(); return path; } protected override void OnPaint(PaintEventArgs pevent) { int toggleSize = this.Height - 5; pevent.Graphics.SmoothingMode = SmoothingMode.AntiAlias; pevent.Graphics.Clear(this.Parent.BackColor); if (this.Checked) //ON { if (solidStyle) pevent.Graphics.FillPath(new SolidBrush(OptionsHelper.ForegroundColor), GetFigurePath()); else pevent.Graphics.DrawPath(new Pen(OptionsHelper.ForegroundColor, 2), GetFigurePath()); //Draw the toggle pevent.Graphics.FillEllipse(new SolidBrush(OptionsHelper.TextColor), new Rectangle(this.Width - this.Height + 1, 2, toggleSize, toggleSize)); } else //OFF { if (solidStyle) pevent.Graphics.FillPath(new SolidBrush(OptionsHelper.BackAccentColor), GetFigurePath()); else pevent.Graphics.DrawPath(new Pen(OptionsHelper.BackAccentColor, 2), GetFigurePath()); //Draw the toggle pevent.Graphics.FillEllipse(new SolidBrush(Color.White), new Rectangle(2, 2, toggleSize, toggleSize)); } } } } ================================================ FILE: Optimizer/Controls/MoonTree.cs ================================================ using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed class MoonTree : TreeView { string[] rootNodes = { "cpu", "ram", "mobo", "gpu", "disk", "inet", "audio", "dev" }; string _primaryItemTag = "_primary"; public MoonTree() { this.DrawMode = TreeViewDrawMode.OwnerDrawAll; this.BackColor = Color.FromArgb(20, 20, 20); this.ForeColor = Color.White; this.BorderStyle = BorderStyle.None; } private bool FindName(string name) { foreach (string x in rootNodes) { if (x == name) return true; } return false; } protected override void OnDrawNode(DrawTreeNodeEventArgs e) { Rectangle r = new Rectangle(); r.X = 0; r.Y = e.Bounds.Y; r.Height = e.Bounds.Height; r.Width = 100000; if (e.Node.IsSelected) { e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(50, 50, 50)), r); //e.Bounds } else { e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(20, 20, 20)), r); //e.Bounds } if (FindName(e.Node.Name)) TextRenderer.DrawText(e.Graphics, e.Node.Text, this.Font, e.Node.Bounds, Color.Silver); else if (e.Node.Tag != null && e.Node.Tag.ToString() == _primaryItemTag) TextRenderer.DrawText(e.Graphics, e.Node.Text, this.Font, e.Node.Bounds, OptionsHelper.ForegroundColor); else TextRenderer.DrawText(e.Graphics, e.Node.Text, this.Font, e.Node.Bounds, Color.White); if (this.ImageList != null && this.ImageList.Images.Count > 0 && e.Node.SelectedImageIndex > -1) { e.Graphics.DrawImage(this.ImageList.Images[e.Node.SelectedImageIndex], e.Bounds.Left + 15 * e.Node.Level + 5, e.Bounds.Top); } } } } ================================================ FILE: Optimizer/Controls/ToggleCard.Designer.cs ================================================  namespace Optimizer { partial class ToggleCard { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.Label = new System.Windows.Forms.Label(); this.Panel = new System.Windows.Forms.Panel(); this.Toggle = new Optimizer.MoonToggle(); this.Panel.SuspendLayout(); this.SuspendLayout(); // // Label // this.Label.AutoSize = true; this.Label.Cursor = System.Windows.Forms.Cursors.Hand; this.Label.Location = new System.Drawing.Point(52, 1); this.Label.Name = "Label"; this.Label.Size = new System.Drawing.Size(45, 19); this.Label.TabIndex = 1; this.Label.Text = "label1"; this.Label.Click += new System.EventHandler(this.Label_Click); this.Label.MouseEnter += new System.EventHandler(this.Label_MouseEnter); this.Label.MouseLeave += new System.EventHandler(this.Label_MouseLeave); this.Label.MouseHover += new System.EventHandler(this.Label_MouseHover); // // Panel // this.Panel.Controls.Add(this.Label); this.Panel.Controls.Add(this.Toggle); this.Panel.Dock = System.Windows.Forms.DockStyle.Fill; this.Panel.Location = new System.Drawing.Point(0, 0); this.Panel.Name = "Panel"; this.Panel.Size = new System.Drawing.Size(334, 25); this.Panel.TabIndex = 0; // // Toggle // this.Toggle.AutoSize = true; this.Toggle.ForeColor = System.Drawing.Color.White; this.Toggle.Location = new System.Drawing.Point(0, 1); this.Toggle.MinimumSize = new System.Drawing.Size(46, 22); this.Toggle.Name = "Toggle"; this.Toggle.Size = new System.Drawing.Size(46, 22); this.Toggle.TabIndex = 2; this.Toggle.UseVisualStyleBackColor = true; this.Toggle.CheckedChanged += new System.EventHandler(this.Toggle_CheckedChanged); // // ToggleCard // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.Controls.Add(this.Panel); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.Name = "ToggleCard"; this.Size = new System.Drawing.Size(334, 25); this.Panel.ResumeLayout(false); this.Panel.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel Panel; internal System.Windows.Forms.Label Label; internal MoonToggle Toggle; } } ================================================ FILE: Optimizer/Controls/ToggleCard.cs ================================================ using System; using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed partial class ToggleCard : UserControl { public event EventHandler ToggleClicked; SubForm _subForm; public ToggleCard() { InitializeComponent(); this.DoubleBuffered = true; _subForm = new SubForm(); this.IsAccessible = true; Label.IsAccessible = true; Toggle.IsAccessible = true; Panel.IsAccessible = true; this.AccessibleName = LabelText; Label.AccessibleName = LabelText; Toggle.AccessibleName = LabelText; Panel.AccessibleName = LabelText; } public string LabelText { get { return Label.Text; } set { Label.Text = value; this.AccessibleName = value; Label.AccessibleName = value; Toggle.AccessibleName = value; Panel.AccessibleName = LabelText; } } public bool ToggleChecked { get { return Toggle.Checked; } set { Toggle.Checked = value; } } private void Toggle_CheckedChanged(object sender, EventArgs e) { if (ToggleClicked != null) ToggleClicked(sender, e); } private void Label_MouseLeave(object sender, EventArgs e) { Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Regular); Label.ForeColor = Color.White; } private void Label_MouseEnter(object sender, EventArgs e) { Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Underline); Label.ForeColor = OptionsHelper.ForegroundColor; } private void Label_Click(object sender, EventArgs e) { if (Label.Tag == null) return; _subForm.SetTip(Label.Tag.ToString()); _subForm.ShowDialog(this); } private void Label_MouseHover(object sender, EventArgs e) { Label.Font = new System.Drawing.Font(Label.Font, System.Drawing.FontStyle.Underline); Label.ForeColor = OptionsHelper.ForegroundColor; } } } ================================================ FILE: Optimizer/Controls/ToggleCard.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/CoreHelper.cs ================================================ using System.IO; using System.Text; namespace Optimizer { internal static class CoreHelper { internal readonly static string CoreFolder = CleanHelper.ProgramData + "\\Optimizer\\"; internal readonly static string ReadyMadeMenusFolder = CleanHelper.ProgramData + "\\Optimizer\\ReadyMadeMenus\\"; internal readonly static string ScriptsFolder = CleanHelper.ProgramData + "\\Optimizer\\Required\\"; internal readonly static string ExtractedIconsFolder = CleanHelper.ProgramData + "\\Optimizer\\ExtractedIcons\\"; internal readonly static string FavIconsFolder = CleanHelper.ProgramData + "\\Optimizer\\FavIcons\\"; internal readonly static string StartupItemsBackupFolder = CleanHelper.ProgramData + "\\Optimizer\\StartupBackup\\"; readonly static string[] readyMadeMenusItems = { ReadyMadeMenusFolder + "DesktopShortcuts.reg", ReadyMadeMenusFolder + "SystemShortcuts.reg", ReadyMadeMenusFolder + "PowerMenu.reg", ReadyMadeMenusFolder + "SystemTools.reg", ReadyMadeMenusFolder + "WindowsApps.reg", ReadyMadeMenusFolder + "InstallTakeOwnership.reg", ReadyMadeMenusFolder + "RemoveTakeOwnership.reg" }; readonly static string[] readyMadeMenusFiles = { Properties.Resources.DesktopShortcuts, Properties.Resources.SystemShortcuts, Properties.Resources.PowerMenu, Properties.Resources.SystemTools, Properties.Resources.WindowsApps, Properties.Resources.InstallTakeOwnership, Properties.Resources.RemoveTakeOwnership, }; readonly static string[] scriptItems = { ScriptsFolder + "DisableOfficeTelemetryTasks.bat", ScriptsFolder + "DisableOfficeTelemetryTasks.reg", ScriptsFolder + "EnableOfficeTelemetryTasks.bat", ScriptsFolder + "EnableOfficeTelemetryTasks.reg", ScriptsFolder + "DisableTelemetryTasks.bat", ScriptsFolder + "EnableTelemetryTasks.bat", ScriptsFolder + "DisableXboxTasks.bat", ScriptsFolder + "EnableXboxTasks.bat", ScriptsFolder + "OneDrive_Uninstaller.cmd", ScriptsFolder + "GPEditEnablerInHome.bat", ScriptsFolder + "AddOpenWithCMD.reg", ScriptsFolder + "RestoreClassicPhotoViewer.reg", ScriptsFolder + "DisableClassicPhotoViewer.reg" }; readonly static string[] scriptFiles = { Properties.Resources.DisableOfficeTelemetryTasks, Properties.Resources.DisableOfficeTelemetry, Properties.Resources.EnableOfficeTelemetryTasks, Properties.Resources.EnableOfficeTelemetry, Properties.Resources.DisableTelemetryTasks, Properties.Resources.EnableTelemetryTasks, Properties.Resources.DisableXboxTasks, Properties.Resources.EnableXboxTasks, Encoding.UTF8.GetString(Properties.Resources.OneDrive_Uninstaller), Properties.Resources.GPEditEnablerInHome, Properties.Resources.AddOpenWithCMD, Properties.Resources.RestoreClassicPhotoViewer, Properties.Resources.DisableClassicPhotoViewer }; internal static void Deploy() { if (!Directory.Exists(CoreFolder)) { Directory.CreateDirectory(CoreFolder); } if (!Directory.Exists(ReadyMadeMenusFolder)) { Directory.CreateDirectory(ReadyMadeMenusFolder); } if (!Directory.Exists(ScriptsFolder)) { Directory.CreateDirectory(ScriptsFolder); } if (!Directory.Exists(ExtractedIconsFolder)) { Directory.CreateDirectory(ExtractedIconsFolder); } if (!Directory.Exists(FavIconsFolder)) { Directory.CreateDirectory(FavIconsFolder); } if (!Directory.Exists(StartupItemsBackupFolder)) { Directory.CreateDirectory(StartupItemsBackupFolder); } for (int i = 0; i < readyMadeMenusItems.Length; i++) { if (!File.Exists(readyMadeMenusItems[i])) File.WriteAllText(readyMadeMenusItems[i], readyMadeMenusFiles[i]); } for (int i = 0; i < scriptItems.Length; i++) { if (!File.Exists(scriptItems[i])) { if (scriptItems[i].Contains("OneDrive")) { File.WriteAllBytes(scriptItems[i], Encoding.UTF8.GetBytes(scriptFiles[i])); } else { File.WriteAllText(scriptItems[i], scriptFiles[i]); } } } } } } ================================================ FILE: Optimizer/DebugHelper.cs ================================================ using Newtonsoft.Json.Linq; using System; using System.Linq; using System.Text; using System.Windows.Forms; namespace Optimizer { // Collection of useful debugging methods and utilities internal sealed class DebugHelper { // For comparing and detecting missing keys between two translation JSON files internal static void FindDifferenceInTwoJsons() { JObject file1 = JObject.Parse(Properties.Resources.EN); JObject file2 = JObject.Parse(Properties.Resources.ID); var p1 = file1.Properties().ToList(); var p2 = file2.Properties().ToList(); var missingProps = p1.Where(expected => !p2.Where(actual => actual.Name == expected.Name).Any()); StringBuilder sb = new StringBuilder(); foreach (var x in missingProps) { sb.Append(x.Name + Environment.NewLine); } MessageBox.Show(sb.ToString()); } } } ================================================ FILE: Optimizer/EmbeddedAssembly.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Cryptography; namespace Optimizer { internal sealed class EmbeddedAssembly { static Dictionary _dictionary; internal static void Load(string embeddedResource, string fileName) { if (_dictionary == null) _dictionary = new Dictionary(); byte[] bytes = null; Assembly assembly = null; Assembly currentAssembly = Assembly.GetExecutingAssembly(); using (Stream stream = currentAssembly.GetManifestResourceStream(embeddedResource)) { if (stream == null) throw new Exception($"{embeddedResource} is not found in Embedded Resources."); bytes = new byte[(int)stream.Length]; stream.Read(bytes, 0, (int)stream.Length); try { assembly = Assembly.Load(bytes); _dictionary.Add(assembly.FullName, assembly); return; } catch (Exception ex) { Logger.LogError("EmbeddedAssembly.Load", ex.Message, ex.StackTrace); } } bool fileOk = false; string tempFile = string.Empty; using (SHA1CryptoServiceProvider sha1 = new SHA1CryptoServiceProvider()) { string fileHash = BitConverter.ToString(sha1.ComputeHash(bytes)).Replace("-", string.Empty); tempFile = Path.GetTempPath() + fileName; if (File.Exists(tempFile)) { byte[] byteArray = File.ReadAllBytes(tempFile); string fileHash2 = BitConverter.ToString(sha1.ComputeHash(byteArray)).Replace("-", string.Empty); if (fileHash == fileHash2) { fileOk = true; } } else { fileOk = false; } } if (!fileOk) { File.WriteAllBytes(tempFile, bytes); } assembly = Assembly.LoadFile(tempFile); _dictionary.Add(assembly.FullName, assembly); } internal static Assembly Get(string assemblyFullName) { if (_dictionary == null || _dictionary.Count == 0) return null; if (_dictionary.ContainsKey(assemblyFullName)) return _dictionary[assemblyFullName]; return null; } } } ================================================ FILE: Optimizer/ErrorLogger.cs ================================================ using System; using System.IO; using System.Text; namespace Optimizer { internal static class Logger { internal static string ErrorLogFile = Path.Combine(CoreHelper.CoreFolder, "Optimizer.log"); static StringBuilder _silentReportLog; private static void LogErrorSilent(string functionName, string errorMessage, string errorStackTrace) { _silentReportLog.AppendLine(string.Format("[ERROR] [{0}] in function [{1}]", DateTime.Now.ToString(), functionName)); _silentReportLog.AppendLine(); _silentReportLog.AppendLine(errorMessage); _silentReportLog.AppendLine(); _silentReportLog.AppendLine(errorStackTrace); _silentReportLog.AppendLine(); _silentReportLog.AppendLine(); } internal static void LogInfoSilent(string message) { _silentReportLog.AppendLine($"[OK] {message}"); _silentReportLog.AppendLine(); } internal static void InitializeSilentReport() { _silentReportLog = new StringBuilder(); _silentReportLog.AppendLine(Utilities.GetWindowsDetails()); _silentReportLog.AppendLine(string.Format("Optimizer {0} - .NET Framework {1} - Experimental build: {2}", Program.GetCurrentVersionTostring(), Utilities.GetNETFramework(), Program.EXPERIMENTAL_BUILD)); _silentReportLog.AppendLine($"{DateTime.Now.ToLongDateString()} - {DateTime.Now.ToLongTimeString()}"); _silentReportLog.AppendLine(); _silentReportLog.AppendLine(); } internal static void GenerateSilentReport() { try { File.WriteAllText($"Optimizer.SilentReport.{DateTime.Now.ToString("yyyyMMddTHHmm")}.log", _silentReportLog.ToString()); } catch { } } internal static void LogError(string functionName, string errorMessage, string errorStackTrace) { if (Program.SILENT_MODE) { LogErrorSilent(functionName, errorMessage, errorStackTrace); return; } try { if (!File.Exists(ErrorLogFile) || (File.Exists(ErrorLogFile) && File.ReadAllText(ErrorLogFile).Trim() == string.Empty)) { File.AppendAllText(ErrorLogFile, Utilities.GetWindowsDetails()); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, string.Format("Optimizer {0} - .NET Framework {1} - Experimental build: {2}", Program.GetCurrentVersionTostring(), Utilities.GetNETFramework(), Program.EXPERIMENTAL_BUILD)); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, Environment.NewLine); } File.AppendAllText(ErrorLogFile, string.Format("[ERROR] [{0}] in function [{1}]", DateTime.Now.ToString(), functionName)); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, errorMessage); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, errorStackTrace); // seperator File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, Environment.NewLine); File.AppendAllText(ErrorLogFile, Environment.NewLine); } catch { } //finally //{ // if (!Options.CurrentOptions.DisableOptimizerTelemetry) // { // TelemetryHelper.GenerateTelemetryData(functionName, errorMessage, errorStackTrace); // } //} } } } ================================================ FILE: Optimizer/FileHandleHelper.cs ================================================ using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; namespace Optimizer { public static class FileHandleHelper { public static List GetProcessesLockingFile(string path) { uint handle; string key = Guid.NewGuid().ToString(); int res = RmStartSession(out handle, 0, key); if (res != 0) return null; try { const int MORE_DATA = 234; uint pnProcInfoNeeded, pnProcInfo = 0, lpdwRebootReasons = RmRebootReasonNone; string[] resources = { path }; res = RmRegisterResources(handle, (uint)resources.Length, resources, 0, null, 0, null); if (res != 0) return null; res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, null, ref lpdwRebootReasons); if (res == MORE_DATA) { return EnumerateProcesses(pnProcInfoNeeded, handle, lpdwRebootReasons); } else if (res != 0) return null; } finally { RmEndSession(handle); } return new List(); } [StructLayout(LayoutKind.Sequential)] public struct RM_UNIQUE_PROCESS { public int dwProcessId; public System.Runtime.InteropServices.ComTypes.FILETIME ProcessStartTime; } const int RmRebootReasonNone = 0; const int CCH_RM_MAX_APP_NAME = 255; const int CCH_RM_MAX_SVC_NAME = 63; public enum RM_APP_TYPE { RmUnknownApp = 0, RmMainWindow = 1, RmOtherWindow = 2, RmService = 3, RmExplorer = 4, RmConsole = 5, RmCritical = 1000 } [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public struct RM_PROCESS_INFO { public RM_UNIQUE_PROCESS Process; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_APP_NAME + 1)] public string strAppName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_SVC_NAME + 1)] public string strServiceShortName; public RM_APP_TYPE ApplicationType; public uint AppStatus; public uint TSSessionId; [MarshalAs(UnmanagedType.Bool)] public bool bRestartable; } [DllImport("rstrtmgr.dll", CharSet = CharSet.Unicode)] static extern int RmRegisterResources(uint pSessionHandle, uint nFiles, string[] rgsFilenames, uint nApplications, [In] RM_UNIQUE_PROCESS[] rgApplications, uint nServices, string[] rgsServiceNames); [DllImport("rstrtmgr.dll", CharSet = CharSet.Auto)] static extern int RmStartSession(out uint pSessionHandle, int dwSessionFlags, string strSessionKey); [DllImport("rstrtmgr.dll")] static extern int RmEndSession(uint pSessionHandle); [DllImport("rstrtmgr.dll")] static extern int RmGetList(uint dwSessionHandle, out uint pnProcInfoNeeded, ref uint pnProcInfo, [In, Out] RM_PROCESS_INFO[] rgAffectedApps, ref uint lpdwRebootReasons); private static List EnumerateProcesses(uint pnProcInfoNeeded, uint handle, uint lpdwRebootReasons) { var processes = new List(10); var processInfo = new RM_PROCESS_INFO[pnProcInfoNeeded]; var pnProcInfo = pnProcInfoNeeded; // Get the list var res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, processInfo, ref lpdwRebootReasons); if (res != 0) return null; for (int i = 0; i < pnProcInfo; i++) { try { processes.Add(Process.GetProcessById(processInfo[i].Process.dwProcessId)); } catch { } } return processes; } } } ================================================ FILE: Optimizer/FontHelper.cs ================================================ using Microsoft.Win32; using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Text; using System.Linq; namespace Optimizer { internal static class FontHelper { [System.Runtime.InteropServices.DllImport("gdi32.dll")] private static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, [System.Runtime.InteropServices.In] ref uint pcFonts); static PrivateFontCollection fonts = new PrivateFontCollection(); internal static Font Poppins15; internal static void LoadFont() { byte[] fontData = Properties.Resources.Poppins_Regular; IntPtr fontPtr = System.Runtime.InteropServices.Marshal.AllocCoTaskMem(fontData.Length); System.Runtime.InteropServices.Marshal.Copy(fontData, 0, fontPtr, fontData.Length); uint dummy = 0; fonts.AddMemoryFont(fontPtr, Properties.Resources.Poppins_Regular.Length); AddFontMemResourceEx(fontPtr, (uint)Properties.Resources.Poppins_Regular.Length, IntPtr.Zero, ref dummy); System.Runtime.InteropServices.Marshal.FreeCoTaskMem(fontPtr); Poppins15 = new Font(fonts.Families[0], 13f); } internal static IEnumerable GetAvailableFonts() { return new InstalledFontCollection().Families.Select(x => x.Name); } internal static void ChangeGlobalFont(string fontName) { try { using (RegistryKey fontsKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts", true)) { fontsKey.SetValue("Segoe UI (TrueType)", ""); fontsKey.SetValue("Segoe UI Bold (TrueType)", ""); fontsKey.SetValue("Segoe UI Bold Italic (TrueType)", ""); fontsKey.SetValue("Segoe UI Italic (TrueType)", ""); fontsKey.SetValue("Segoe UI Light (TrueType)", ""); fontsKey.SetValue("Segoe UI Semibold (TrueType)", ""); fontsKey.SetValue("Segoe UI Symbol (TrueType)", ""); } using (RegistryKey fontSubstitutesKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes", true)) { fontSubstitutesKey.SetValue("Segoe UI", fontName); } } catch (Exception ex) { Logger.LogError("FontHelper.ChangeGlobalFont", ex.Message, ex.StackTrace); } } internal static string GetCurrentGlobalFont() { try { using (RegistryKey fontSubstitutesKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes", false)) { return fontSubstitutesKey.GetValue("Segoe UI", string.Empty) as string; } } catch (Exception ex) { Logger.LogError("FontHelper.GetCurrentGlobalFont", ex.Message, ex.StackTrace); return string.Empty; } } internal static void RestoreDefaultGlobalFont() { try { using (RegistryKey fontsKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts", true)) { fontsKey.SetValue("Segoe UI (TrueType)", "segoeui.ttf"); fontsKey.SetValue("Segoe UI Black (TrueType)", "seguibl.ttf"); fontsKey.SetValue("Segoe UI Black Italic (TrueType)", "seguibli.ttf"); fontsKey.SetValue("Segoe UI Bold (TrueType)", "segoeuib.ttf"); fontsKey.SetValue("Segoe UI Bold Italic (TrueType)", "segoeuiz.ttf"); fontsKey.SetValue("Segoe UI Emoji (TrueType)", "seguiemj.ttf"); fontsKey.SetValue("Segoe UI Historic (TrueType)", "seguihis.ttf"); fontsKey.SetValue("Segoe UI Italic (TrueType)", "segoeuii.ttf"); fontsKey.SetValue("Segoe UI Light (TrueType)", "segoeuil.ttf"); fontsKey.SetValue("Segoe UI Light Italic (TrueType)", "seguili.ttf"); fontsKey.SetValue("Segoe UI Semibold (TrueType)", "seguisb.ttf"); fontsKey.SetValue("Segoe UI Semibold Italic (TrueType)", "seguisbi.ttf"); fontsKey.SetValue("Segoe UI Semilight (TrueType)", "segoeuisl.ttf"); fontsKey.SetValue("Segoe UI Semilight Italic (TrueType)", "seguisli.ttf"); fontsKey.SetValue("Segoe UI Symbol (TrueType)", "seguisym.ttf"); fontsKey.SetValue("Segoe MDL2 Assets (TrueType)", "segmdl2.ttf"); fontsKey.SetValue("Segoe Print (TrueType)", "segoepr.ttf"); fontsKey.SetValue("Segoe Print Bold (TrueType)", "segoeprb.ttf"); fontsKey.SetValue("Segoe Script (TrueType)", "segoesc.ttf"); fontsKey.SetValue("Segoe Script Bold (TrueType)", "segoescb.ttf"); } using (RegistryKey fontSubstitutesKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes", true)) { fontSubstitutesKey.DeleteValue("Segoe UI", false); } } catch (Exception ex) { Logger.LogError("FontHelper.RestoreDefaultGlobalFont", ex.Message, ex.StackTrace); } } } } ================================================ FILE: Optimizer/Forms/AboutForm.Designer.cs ================================================ namespace Optimizer { partial class AboutForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.l1 = new System.Windows.Forms.Label(); this.l2 = new System.Windows.Forms.LinkLabel(); this.t1 = new System.Windows.Forms.Timer(this.components); this.t2 = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // pictureBox1 // this.pictureBox1.Image = global::Optimizer.Properties.Resources.logo; this.pictureBox1.Location = new System.Drawing.Point(10, 10); this.pictureBox1.Margin = new System.Windows.Forms.Padding(2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(86, 86); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 2; this.pictureBox1.TabStop = false; // // l1 // this.l1.AutoSize = true; this.l1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.l1.ForeColor = System.Drawing.Color.White; this.l1.Location = new System.Drawing.Point(102, 10); this.l1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.l1.Name = "l1"; this.l1.Size = new System.Drawing.Size(0, 28); this.l1.TabIndex = 3; // // l2 // this.l2.AutoSize = true; this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.l2.ForeColor = System.Drawing.Color.DodgerBlue; this.l2.Location = new System.Drawing.Point(102, 68); this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.l2.Name = "l2"; this.l2.Size = new System.Drawing.Size(0, 28); this.l2.TabIndex = 35; this.l2.Tag = "themeable"; this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked); // // t1 // this.t1.Interval = 350; this.t1.Tick += new System.EventHandler(this.t1_Tick); // // t2 // this.t2.Interval = 350; this.t2.Tick += new System.EventHandler(this.t2_Tick); // // AboutForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(387, 108); this.Controls.Add(this.l2); this.Controls.Add(this.l1); this.Controls.Add(this.pictureBox1); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AboutForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Optimizer"; this.Load += new System.EventHandler(this.About_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Label l1; private System.Windows.Forms.LinkLabel l2; private System.Windows.Forms.Timer t1; private System.Windows.Forms.Timer t2; } } ================================================ FILE: Optimizer/Forms/AboutForm.cs ================================================ using System; using System.Diagnostics; using System.Windows.Forms; namespace Optimizer { public sealed partial class AboutForm : Form { public AboutForm() { InitializeComponent(); OptionsHelper.ApplyTheme(this); pictureBox1.BackColor = OptionsHelper.CurrentOptions.Theme; } private void About_Load(object sender, EventArgs e) { t1.Interval = 50; t2.Interval = 50; t1.Start(); } private void t1_Tick(object sender, EventArgs e) { string s0 = ""; string s1 = "O"; string s2 = "Op"; string s3 = "Opt"; string s4 = "Opti"; string s5 = "Optim"; string s6 = "Optimi"; string s7 = "Optimiz"; string s8 = "Optimize"; string s9 = "Optimizer"; switch (l1.Text) { case "": l1.Text = s1; break; case "O": l1.Text = s2; break; case "Op": l1.Text = s3; break; case "Opt": l1.Text = s4; break; case "Opti": l1.Text = s5; break; case "Optim": l1.Text = s6; break; case "Optimi": l1.Text = s7; break; case "Optimiz": l1.Text = s8; break; case "Optimize": l1.Text = s9; t1.Stop(); t2.Start(); break; case "Optimizer": l1.Text = s0; break; } } private void t2_Tick(object sender, EventArgs e) { string s0 = ""; string s1 = "d"; string s2 = "de"; string s3 = "dea"; string s4 = "dead"; string s5 = "deadm"; string s6 = "deadmo"; string s7 = "deadmoo"; string s8 = "deadmoon"; string s9 = "deadmoon © "; string s10 = "deadmoon © ∞"; switch (l2.Text) { case "": l2.Text = s1; break; case "d": l2.Text = s2; break; case "de": l2.Text = s3; break; case "dea": l2.Text = s4; break; case "dead": l2.Text = s5; break; case "deadm": l2.Text = s6; break; case "deadmo": l2.Text = s7; break; case "deadmoo": l2.Text = s8; break; case "deadmoon": l2.Text = s9; break; case "deadmoon © ": l2.Text = s10; t2.Stop(); break; case "deadmoon © ∞": l2.Text = s0; break; } } private void l2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start("https://github.com/hellzerg/optimizer"); } } } ================================================ FILE: Optimizer/Forms/AboutForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 17, 17 118, 17 ================================================ FILE: Optimizer/Forms/FileUnlockForm.Designer.cs ================================================ namespace Optimizer { partial class FileUnlockForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.txtFile = new System.Windows.Forms.TextBox(); this.radioFile = new System.Windows.Forms.Label(); this.btnFind = new System.Windows.Forms.Button(); this.panelModernAppsList = new System.Windows.Forms.Panel(); this.listProcesses = new Optimizer.MoonCheckList(); this.btnKill = new System.Windows.Forms.Button(); this.panelModernAppsList.SuspendLayout(); this.SuspendLayout(); // // txtFile // this.txtFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFile.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtFile.ForeColor = System.Drawing.Color.White; this.txtFile.Location = new System.Drawing.Point(16, 32); this.txtFile.Margin = new System.Windows.Forms.Padding(2); this.txtFile.Name = "txtFile"; this.txtFile.Size = new System.Drawing.Size(333, 25); this.txtFile.TabIndex = 54; // // radioFile // this.radioFile.AutoSize = true; this.radioFile.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.radioFile.ForeColor = System.Drawing.Color.DodgerBlue; this.radioFile.Location = new System.Drawing.Point(11, 9); this.radioFile.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.radioFile.Name = "radioFile"; this.radioFile.Size = new System.Drawing.Size(34, 19); this.radioFile.TabIndex = 55; this.radioFile.Tag = "themeable"; this.radioFile.Text = "File:"; // // btnFind // this.btnFind.BackColor = System.Drawing.Color.DodgerBlue; this.btnFind.FlatAppearance.BorderSize = 0; this.btnFind.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnFind.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnFind.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnFind.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold); this.btnFind.ForeColor = System.Drawing.Color.White; this.btnFind.Location = new System.Drawing.Point(353, 32); this.btnFind.Margin = new System.Windows.Forms.Padding(2); this.btnFind.Name = "btnFind"; this.btnFind.Size = new System.Drawing.Size(50, 25); this.btnFind.TabIndex = 58; this.btnFind.Text = "✓"; this.btnFind.UseVisualStyleBackColor = false; this.btnFind.Click += new System.EventHandler(this.btnFind_Click); // // panelModernAppsList // this.panelModernAppsList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panelModernAppsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panelModernAppsList.Controls.Add(this.listProcesses); this.panelModernAppsList.Location = new System.Drawing.Point(16, 74); this.panelModernAppsList.Name = "panelModernAppsList"; this.panelModernAppsList.Size = new System.Drawing.Size(387, 292); this.panelModernAppsList.TabIndex = 59; // // listProcesses // this.listProcesses.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listProcesses.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listProcesses.CheckOnClick = true; this.listProcesses.Dock = System.Windows.Forms.DockStyle.Fill; this.listProcesses.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listProcesses.ForeColor = System.Drawing.Color.White; this.listProcesses.FormattingEnabled = true; this.listProcesses.HorizontalScrollbar = true; this.listProcesses.Location = new System.Drawing.Point(0, 0); this.listProcesses.Name = "listProcesses"; this.listProcesses.Size = new System.Drawing.Size(385, 290); this.listProcesses.Sorted = true; this.listProcesses.TabIndex = 0; // // btnKill // this.btnKill.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnKill.BackColor = System.Drawing.Color.DodgerBlue; this.btnKill.FlatAppearance.BorderSize = 0; this.btnKill.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnKill.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnKill.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnKill.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold); this.btnKill.ForeColor = System.Drawing.Color.White; this.btnKill.Location = new System.Drawing.Point(255, 371); this.btnKill.Margin = new System.Windows.Forms.Padding(2); this.btnKill.Name = "btnKill"; this.btnKill.Size = new System.Drawing.Size(148, 31); this.btnKill.TabIndex = 61; this.btnKill.Text = "Kill"; this.btnKill.UseVisualStyleBackColor = false; this.btnKill.Click += new System.EventHandler(this.btnKill_Click); // // FileUnlockForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(414, 413); this.Controls.Add(this.btnKill); this.Controls.Add(this.panelModernAppsList); this.Controls.Add(this.btnFind); this.Controls.Add(this.txtFile); this.Controls.Add(this.radioFile); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MinimizeBox = false; this.Name = "FileUnlockForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Load += new System.EventHandler(this.FileUnlockForm_Load); this.panelModernAppsList.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtFile; private System.Windows.Forms.Label radioFile; private System.Windows.Forms.Button btnFind; private System.Windows.Forms.Panel panelModernAppsList; private MoonCheckList listProcesses; private System.Windows.Forms.Button btnKill; } } ================================================ FILE: Optimizer/Forms/FileUnlockForm.cs ================================================ using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; using System.IO; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class FileUnlockForm : Form { List _lockingProcesses; public FileUnlockForm() { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; OptionsHelper.ApplyTheme(this); radioFile.Text = OptionsHelper.TranslationList["radioFile"].ToString(); btnKill.Text = OptionsHelper.TranslationList["btnKill"].ToString(); } private void FileUnlockForm_Load(object sender, EventArgs e) { } private void btnFind_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtFile.Text)) return; if (!File.Exists(txtFile.Text)) return; _lockingProcesses = FileHandleHelper.GetProcessesLockingFile(txtFile.Text); if (_lockingProcesses == null) return; listProcesses.Items.Clear(); listProcesses.Items.AddRange(_lockingProcesses.Select(x => $"[{x.Id}] {x.ProcessName}").ToArray()); } private void btnKill_Click(object sender, EventArgs e) { if (listProcesses.CheckedItems.Count <= 0) return; foreach (string x in listProcesses.CheckedItems) { IEnumerable prs = Process.GetProcesses().Where(pr => pr.ProcessName == x.Replace(x.Substring(0, x.IndexOf("]") + 1), string.Empty).Trim()); foreach (Process z in prs) { try { z.Kill(); } catch { continue; } } } btnFind.PerformClick(); } } } ================================================ FILE: Optimizer/Forms/FileUnlockForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/FirstRunForm.Designer.cs ================================================  namespace Optimizer { partial class FirstRunForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FirstRunForm)); this.pictureBox88 = new System.Windows.Forms.PictureBox(); this.pictureBox87 = new System.Windows.Forms.PictureBox(); this.pictureBox86 = new System.Windows.Forms.PictureBox(); this.btnStart = new System.Windows.Forms.Button(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.pictureBox5 = new System.Windows.Forms.PictureBox(); this.pictureBox6 = new System.Windows.Forms.PictureBox(); this.pictureBox7 = new System.Windows.Forms.PictureBox(); this.pictureBox8 = new System.Windows.Forms.PictureBox(); this.pictureBox9 = new System.Windows.Forms.PictureBox(); this.pictureBox10 = new System.Windows.Forms.PictureBox(); this.radioKorean = new Optimizer.MoonRadio(); this.radioTaiwan = new Optimizer.MoonRadio(); this.radioCzech = new Optimizer.MoonRadio(); this.radioChinese = new Optimizer.MoonRadio(); this.radioItalian = new Optimizer.MoonRadio(); this.radioFrench = new Optimizer.MoonRadio(); this.radioPortuguese = new Optimizer.MoonRadio(); this.radioSpanish = new Optimizer.MoonRadio(); this.radioGerman = new Optimizer.MoonRadio(); this.radioTurkish = new Optimizer.MoonRadio(); this.radioHellenic = new Optimizer.MoonRadio(); this.radioEnglish = new Optimizer.MoonRadio(); this.radioRussian = new Optimizer.MoonRadio(); this.radioPolish = new Optimizer.MoonRadio(); this.pictureBox11 = new System.Windows.Forms.PictureBox(); this.radioArabic = new Optimizer.MoonRadio(); this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.radioKurdish = new Optimizer.MoonRadio(); this.pictureBox13 = new System.Windows.Forms.PictureBox(); this.radioHungarian = new Optimizer.MoonRadio(); this.pictureBox14 = new System.Windows.Forms.PictureBox(); this.radioRomanian = new Optimizer.MoonRadio(); this.pictureBox15 = new System.Windows.Forms.PictureBox(); this.radioDutch = new Optimizer.MoonRadio(); this.pictureBox16 = new System.Windows.Forms.PictureBox(); this.pictureBox17 = new System.Windows.Forms.PictureBox(); this.radioJapanese = new Optimizer.MoonRadio(); this.radioFarsi = new Optimizer.MoonRadio(); this.pictureBox18 = new System.Windows.Forms.PictureBox(); this.radioNepali = new Optimizer.MoonRadio(); this.pictureBox19 = new System.Windows.Forms.PictureBox(); this.radioUkrainian = new Optimizer.MoonRadio(); this.pictureBox20 = new System.Windows.Forms.PictureBox(); this.radioBulgarian = new Optimizer.MoonRadio(); this.pictureBox21 = new System.Windows.Forms.PictureBox(); this.radioVietnam = new Optimizer.MoonRadio(); this.pictureBox22 = new System.Windows.Forms.PictureBox(); this.radioUrdu = new Optimizer.MoonRadio(); this.pictureBox23 = new System.Windows.Forms.PictureBox(); this.radioIndonesian = new Optimizer.MoonRadio(); this.pictureBox24 = new System.Windows.Forms.PictureBox(); this.radioCroatian = new Optimizer.MoonRadio(); this.pictureBox25 = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).BeginInit(); this.SuspendLayout(); // // pictureBox88 // this.pictureBox88.Image = global::Optimizer.Properties.Resources.greece; this.pictureBox88.Location = new System.Drawing.Point(13, 72); this.pictureBox88.Name = "pictureBox88"; this.pictureBox88.Size = new System.Drawing.Size(32, 19); this.pictureBox88.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox88.TabIndex = 83; this.pictureBox88.TabStop = false; this.pictureBox88.Click += new System.EventHandler(this.pictureBox88_Click); // // pictureBox87 // this.pictureBox87.Image = global::Optimizer.Properties.Resources.russia; this.pictureBox87.Location = new System.Drawing.Point(13, 43); this.pictureBox87.Name = "pictureBox87"; this.pictureBox87.Size = new System.Drawing.Size(32, 19); this.pictureBox87.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox87.TabIndex = 82; this.pictureBox87.TabStop = false; this.pictureBox87.Click += new System.EventHandler(this.pictureBox87_Click); // // pictureBox86 // this.pictureBox86.Image = global::Optimizer.Properties.Resources.united_kingdom; this.pictureBox86.Location = new System.Drawing.Point(13, 14); this.pictureBox86.Name = "pictureBox86"; this.pictureBox86.Size = new System.Drawing.Size(32, 19); this.pictureBox86.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox86.TabIndex = 81; this.pictureBox86.TabStop = false; this.pictureBox86.Click += new System.EventHandler(this.pictureBox86_Click); // // btnStart // this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.btnStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(102)))), ((int)(((byte)(204))))); this.btnStart.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnStart.FlatAppearance.BorderColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatAppearance.BorderSize = 0; this.btnStart.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatAppearance.MouseOverBackColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnStart.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnStart.ForeColor = System.Drawing.Color.White; this.btnStart.Location = new System.Drawing.Point(11, 464); this.btnStart.Margin = new System.Windows.Forms.Padding(2); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(406, 31); this.btnStart.TabIndex = 86; this.btnStart.Tag = "themeable"; this.btnStart.Text = "✓"; this.btnStart.UseVisualStyleBackColor = false; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // pictureBox1 // this.pictureBox1.Image = global::Optimizer.Properties.Resources.turkey; this.pictureBox1.Location = new System.Drawing.Point(213, 12); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(32, 19); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 87; this.pictureBox1.TabStop = false; this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); // // pictureBox2 // this.pictureBox2.Image = global::Optimizer.Properties.Resources.germany; this.pictureBox2.Location = new System.Drawing.Point(13, 101); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(32, 19); this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox2.TabIndex = 89; this.pictureBox2.TabStop = false; this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click); // // pictureBox3 // this.pictureBox3.Image = global::Optimizer.Properties.Resources.spain; this.pictureBox3.Location = new System.Drawing.Point(213, 41); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(32, 19); this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox3.TabIndex = 91; this.pictureBox3.TabStop = false; this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click); // // pictureBox4 // this.pictureBox4.Image = global::Optimizer.Properties.Resources.brazil; this.pictureBox4.Location = new System.Drawing.Point(213, 70); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(32, 19); this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox4.TabIndex = 93; this.pictureBox4.TabStop = false; this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click); // // pictureBox5 // this.pictureBox5.Image = global::Optimizer.Properties.Resources.france; this.pictureBox5.Location = new System.Drawing.Point(214, 99); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(32, 19); this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox5.TabIndex = 95; this.pictureBox5.TabStop = false; this.pictureBox5.Click += new System.EventHandler(this.pictureBox5_Click); // // pictureBox6 // this.pictureBox6.Image = global::Optimizer.Properties.Resources.italy; this.pictureBox6.Location = new System.Drawing.Point(13, 130); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new System.Drawing.Size(32, 19); this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox6.TabIndex = 97; this.pictureBox6.TabStop = false; this.pictureBox6.Click += new System.EventHandler(this.pictureBox6_Click); // // pictureBox7 // this.pictureBox7.Image = global::Optimizer.Properties.Resources.china; this.pictureBox7.Location = new System.Drawing.Point(214, 130); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new System.Drawing.Size(32, 19); this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox7.TabIndex = 99; this.pictureBox7.TabStop = false; this.pictureBox7.Click += new System.EventHandler(this.pictureBox7_Click); // // pictureBox8 // this.pictureBox8.Image = global::Optimizer.Properties.Resources.czech; this.pictureBox8.Location = new System.Drawing.Point(13, 159); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new System.Drawing.Size(32, 19); this.pictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox8.TabIndex = 101; this.pictureBox8.TabStop = false; this.pictureBox8.Click += new System.EventHandler(this.pictureBox8_Click); // // pictureBox9 // this.pictureBox9.Image = global::Optimizer.Properties.Resources.china; this.pictureBox9.Location = new System.Drawing.Point(214, 160); this.pictureBox9.Name = "pictureBox9"; this.pictureBox9.Size = new System.Drawing.Size(32, 19); this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox9.TabIndex = 103; this.pictureBox9.TabStop = false; this.pictureBox9.Click += new System.EventHandler(this.pictureBox9_Click); // // pictureBox10 // this.pictureBox10.Image = global::Optimizer.Properties.Resources.korea; this.pictureBox10.Location = new System.Drawing.Point(214, 189); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new System.Drawing.Size(32, 19); this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox10.TabIndex = 105; this.pictureBox10.TabStop = false; this.pictureBox10.Click += new System.EventHandler(this.pictureBox10_Click); // // radioKorean // this.radioKorean.AutoSize = true; this.radioKorean.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioKorean.ForeColor = System.Drawing.Color.White; this.radioKorean.Location = new System.Drawing.Point(254, 186); this.radioKorean.Margin = new System.Windows.Forms.Padding(2); this.radioKorean.Name = "radioKorean"; this.radioKorean.Size = new System.Drawing.Size(76, 25); this.radioKorean.TabIndex = 106; this.radioKorean.Tag = ""; this.radioKorean.Text = "한국어"; this.radioKorean.UseVisualStyleBackColor = true; this.radioKorean.CheckedChanged += new System.EventHandler(this.radioKorean_CheckedChanged); // // radioTaiwan // this.radioTaiwan.AutoSize = true; this.radioTaiwan.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioTaiwan.ForeColor = System.Drawing.Color.White; this.radioTaiwan.Location = new System.Drawing.Point(254, 157); this.radioTaiwan.Margin = new System.Windows.Forms.Padding(2); this.radioTaiwan.Name = "radioTaiwan"; this.radioTaiwan.Size = new System.Drawing.Size(96, 25); this.radioTaiwan.TabIndex = 104; this.radioTaiwan.Tag = ""; this.radioTaiwan.Text = "繁體中文"; this.radioTaiwan.UseVisualStyleBackColor = true; this.radioTaiwan.CheckedChanged += new System.EventHandler(this.radioTaiwan_CheckedChanged); // // radioCzech // this.radioCzech.AutoSize = true; this.radioCzech.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioCzech.ForeColor = System.Drawing.Color.White; this.radioCzech.Location = new System.Drawing.Point(53, 156); this.radioCzech.Margin = new System.Windows.Forms.Padding(2); this.radioCzech.Name = "radioCzech"; this.radioCzech.Size = new System.Drawing.Size(81, 25); this.radioCzech.TabIndex = 102; this.radioCzech.Tag = ""; this.radioCzech.Text = "Čeština"; this.radioCzech.UseVisualStyleBackColor = true; this.radioCzech.CheckedChanged += new System.EventHandler(this.radioCzech_CheckedChanged); // // radioChinese // this.radioChinese.AutoSize = true; this.radioChinese.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioChinese.ForeColor = System.Drawing.Color.White; this.radioChinese.Location = new System.Drawing.Point(254, 127); this.radioChinese.Margin = new System.Windows.Forms.Padding(2); this.radioChinese.Name = "radioChinese"; this.radioChinese.Size = new System.Drawing.Size(96, 25); this.radioChinese.TabIndex = 100; this.radioChinese.Tag = ""; this.radioChinese.Text = "简体中文"; this.radioChinese.UseVisualStyleBackColor = true; this.radioChinese.CheckedChanged += new System.EventHandler(this.radioChinese_CheckedChanged); // // radioItalian // this.radioItalian.AutoSize = true; this.radioItalian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioItalian.ForeColor = System.Drawing.Color.White; this.radioItalian.Location = new System.Drawing.Point(53, 127); this.radioItalian.Margin = new System.Windows.Forms.Padding(2); this.radioItalian.Name = "radioItalian"; this.radioItalian.Size = new System.Drawing.Size(82, 25); this.radioItalian.TabIndex = 98; this.radioItalian.Tag = ""; this.radioItalian.Text = "Italiano"; this.radioItalian.UseVisualStyleBackColor = true; this.radioItalian.CheckedChanged += new System.EventHandler(this.radioitalian_CheckedChanged); // // radioFrench // this.radioFrench.AutoSize = true; this.radioFrench.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioFrench.ForeColor = System.Drawing.Color.White; this.radioFrench.Location = new System.Drawing.Point(254, 96); this.radioFrench.Margin = new System.Windows.Forms.Padding(2); this.radioFrench.Name = "radioFrench"; this.radioFrench.Size = new System.Drawing.Size(86, 25); this.radioFrench.TabIndex = 96; this.radioFrench.Tag = ""; this.radioFrench.Text = "Français"; this.radioFrench.UseVisualStyleBackColor = true; this.radioFrench.CheckedChanged += new System.EventHandler(this.radioFrench_CheckedChanged); // // radioPortuguese // this.radioPortuguese.AutoSize = true; this.radioPortuguese.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioPortuguese.ForeColor = System.Drawing.Color.White; this.radioPortuguese.Location = new System.Drawing.Point(253, 67); this.radioPortuguese.Margin = new System.Windows.Forms.Padding(2); this.radioPortuguese.Name = "radioPortuguese"; this.radioPortuguese.Size = new System.Drawing.Size(102, 25); this.radioPortuguese.TabIndex = 94; this.radioPortuguese.Tag = ""; this.radioPortuguese.Text = "Português"; this.radioPortuguese.UseVisualStyleBackColor = true; this.radioPortuguese.CheckedChanged += new System.EventHandler(this.radioPortuguese_CheckedChanged); // // radioSpanish // this.radioSpanish.AutoSize = true; this.radioSpanish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioSpanish.ForeColor = System.Drawing.Color.White; this.radioSpanish.Location = new System.Drawing.Point(253, 38); this.radioSpanish.Margin = new System.Windows.Forms.Padding(2); this.radioSpanish.Name = "radioSpanish"; this.radioSpanish.Size = new System.Drawing.Size(84, 25); this.radioSpanish.TabIndex = 92; this.radioSpanish.Tag = ""; this.radioSpanish.Text = "Español"; this.radioSpanish.UseVisualStyleBackColor = true; this.radioSpanish.CheckedChanged += new System.EventHandler(this.radioSpanish_CheckedChanged); // // radioGerman // this.radioGerman.AutoSize = true; this.radioGerman.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioGerman.ForeColor = System.Drawing.Color.White; this.radioGerman.Location = new System.Drawing.Point(53, 98); this.radioGerman.Margin = new System.Windows.Forms.Padding(2); this.radioGerman.Name = "radioGerman"; this.radioGerman.Size = new System.Drawing.Size(87, 25); this.radioGerman.TabIndex = 90; this.radioGerman.Tag = ""; this.radioGerman.Text = "Deutsch"; this.radioGerman.UseVisualStyleBackColor = true; this.radioGerman.CheckedChanged += new System.EventHandler(this.radioGerman_CheckedChanged); // // radioTurkish // this.radioTurkish.AutoSize = true; this.radioTurkish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioTurkish.ForeColor = System.Drawing.Color.White; this.radioTurkish.Location = new System.Drawing.Point(253, 9); this.radioTurkish.Margin = new System.Windows.Forms.Padding(2); this.radioTurkish.Name = "radioTurkish"; this.radioTurkish.Size = new System.Drawing.Size(76, 25); this.radioTurkish.TabIndex = 88; this.radioTurkish.Tag = ""; this.radioTurkish.Text = "Türkçe"; this.radioTurkish.UseVisualStyleBackColor = true; this.radioTurkish.CheckedChanged += new System.EventHandler(this.radioTurkish_CheckedChanged); // // radioHellenic // this.radioHellenic.AutoSize = true; this.radioHellenic.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioHellenic.ForeColor = System.Drawing.Color.White; this.radioHellenic.Location = new System.Drawing.Point(53, 69); this.radioHellenic.Margin = new System.Windows.Forms.Padding(2); this.radioHellenic.Name = "radioHellenic"; this.radioHellenic.Size = new System.Drawing.Size(94, 25); this.radioHellenic.TabIndex = 84; this.radioHellenic.Tag = ""; this.radioHellenic.Text = "Ελληνικά"; this.radioHellenic.UseVisualStyleBackColor = true; this.radioHellenic.CheckedChanged += new System.EventHandler(this.radioHellenic_CheckedChanged); // // radioEnglish // this.radioEnglish.AutoSize = true; this.radioEnglish.Checked = true; this.radioEnglish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Underline); this.radioEnglish.ForeColor = System.Drawing.Color.MediumOrchid; this.radioEnglish.Location = new System.Drawing.Point(53, 11); this.radioEnglish.Margin = new System.Windows.Forms.Padding(2); this.radioEnglish.Name = "radioEnglish"; this.radioEnglish.Size = new System.Drawing.Size(79, 25); this.radioEnglish.TabIndex = 80; this.radioEnglish.TabStop = true; this.radioEnglish.Tag = "themeable"; this.radioEnglish.Text = "English"; this.radioEnglish.UseVisualStyleBackColor = true; this.radioEnglish.CheckedChanged += new System.EventHandler(this.radioEnglish_CheckedChanged); // // radioRussian // this.radioRussian.AutoSize = true; this.radioRussian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioRussian.ForeColor = System.Drawing.Color.White; this.radioRussian.Location = new System.Drawing.Point(53, 40); this.radioRussian.Margin = new System.Windows.Forms.Padding(2); this.radioRussian.Name = "radioRussian"; this.radioRussian.Size = new System.Drawing.Size(90, 25); this.radioRussian.TabIndex = 79; this.radioRussian.Tag = ""; this.radioRussian.Text = "русский"; this.radioRussian.UseVisualStyleBackColor = true; this.radioRussian.CheckedChanged += new System.EventHandler(this.radioRussian_CheckedChanged); // // radioPolish // this.radioPolish.AutoSize = true; this.radioPolish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioPolish.ForeColor = System.Drawing.Color.White; this.radioPolish.Location = new System.Drawing.Point(53, 185); this.radioPolish.Margin = new System.Windows.Forms.Padding(2); this.radioPolish.Name = "radioPolish"; this.radioPolish.Size = new System.Drawing.Size(69, 25); this.radioPolish.TabIndex = 108; this.radioPolish.Tag = ""; this.radioPolish.Text = "Polski"; this.radioPolish.UseVisualStyleBackColor = true; this.radioPolish.CheckedChanged += new System.EventHandler(this.radioPolish_CheckedChanged); // // pictureBox11 // this.pictureBox11.Image = global::Optimizer.Properties.Resources.poland; this.pictureBox11.Location = new System.Drawing.Point(13, 188); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new System.Drawing.Size(32, 19); this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox11.TabIndex = 107; this.pictureBox11.TabStop = false; this.pictureBox11.Click += new System.EventHandler(this.pictureBox11_Click); // // radioArabic // this.radioArabic.AutoSize = true; this.radioArabic.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioArabic.ForeColor = System.Drawing.Color.White; this.radioArabic.Location = new System.Drawing.Point(254, 309); this.radioArabic.Margin = new System.Windows.Forms.Padding(2); this.radioArabic.Name = "radioArabic"; this.radioArabic.Size = new System.Drawing.Size(71, 25); this.radioArabic.TabIndex = 110; this.radioArabic.Tag = ""; this.radioArabic.Text = "العربية"; this.radioArabic.UseVisualStyleBackColor = true; this.radioArabic.CheckedChanged += new System.EventHandler(this.radioArabic_CheckedChanged); // // pictureBox12 // this.pictureBox12.Image = global::Optimizer.Properties.Resources.egypt; this.pictureBox12.Location = new System.Drawing.Point(214, 312); this.pictureBox12.Name = "pictureBox12"; this.pictureBox12.Size = new System.Drawing.Size(32, 19); this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox12.TabIndex = 109; this.pictureBox12.TabStop = false; this.pictureBox12.Click += new System.EventHandler(this.pictureBox12_Click); // // radioKurdish // this.radioKurdish.AutoSize = true; this.radioKurdish.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioKurdish.ForeColor = System.Drawing.Color.White; this.radioKurdish.Location = new System.Drawing.Point(53, 307); this.radioKurdish.Margin = new System.Windows.Forms.Padding(2); this.radioKurdish.Name = "radioKurdish"; this.radioKurdish.Size = new System.Drawing.Size(70, 25); this.radioKurdish.TabIndex = 112; this.radioKurdish.Tag = ""; this.radioKurdish.Text = "کوردی"; this.radioKurdish.UseVisualStyleBackColor = true; this.radioKurdish.CheckedChanged += new System.EventHandler(this.radioKurdish_CheckedChanged); // // pictureBox13 // this.pictureBox13.Image = global::Optimizer.Properties.Resources.kurdish; this.pictureBox13.Location = new System.Drawing.Point(13, 310); this.pictureBox13.Name = "pictureBox13"; this.pictureBox13.Size = new System.Drawing.Size(32, 19); this.pictureBox13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox13.TabIndex = 111; this.pictureBox13.TabStop = false; this.pictureBox13.Click += new System.EventHandler(this.pictureBox13_Click); // // radioHungarian // this.radioHungarian.AutoSize = true; this.radioHungarian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioHungarian.ForeColor = System.Drawing.Color.White; this.radioHungarian.Location = new System.Drawing.Point(254, 337); this.radioHungarian.Margin = new System.Windows.Forms.Padding(2); this.radioHungarian.Name = "radioHungarian"; this.radioHungarian.Size = new System.Drawing.Size(83, 25); this.radioHungarian.TabIndex = 114; this.radioHungarian.Tag = ""; this.radioHungarian.Text = "Magyar"; this.radioHungarian.UseVisualStyleBackColor = true; this.radioHungarian.CheckedChanged += new System.EventHandler(this.radioHungarian_CheckedChanged); // // pictureBox14 // this.pictureBox14.Image = global::Optimizer.Properties.Resources.hungary; this.pictureBox14.Location = new System.Drawing.Point(214, 340); this.pictureBox14.Name = "pictureBox14"; this.pictureBox14.Size = new System.Drawing.Size(32, 19); this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox14.TabIndex = 113; this.pictureBox14.TabStop = false; this.pictureBox14.Click += new System.EventHandler(this.pictureBox14_Click); // // radioRomanian // this.radioRomanian.AutoSize = true; this.radioRomanian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioRomanian.ForeColor = System.Drawing.Color.White; this.radioRomanian.Location = new System.Drawing.Point(53, 336); this.radioRomanian.Margin = new System.Windows.Forms.Padding(2); this.radioRomanian.Name = "radioRomanian"; this.radioRomanian.Size = new System.Drawing.Size(87, 25); this.radioRomanian.TabIndex = 116; this.radioRomanian.Tag = ""; this.radioRomanian.Text = "Română"; this.radioRomanian.UseVisualStyleBackColor = true; this.radioRomanian.CheckedChanged += new System.EventHandler(this.radioRomanian_CheckedChanged); // // pictureBox15 // this.pictureBox15.Image = global::Optimizer.Properties.Resources.romania; this.pictureBox15.Location = new System.Drawing.Point(13, 339); this.pictureBox15.Name = "pictureBox15"; this.pictureBox15.Size = new System.Drawing.Size(32, 19); this.pictureBox15.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox15.TabIndex = 115; this.pictureBox15.TabStop = false; this.pictureBox15.Click += new System.EventHandler(this.pictureBox15_Click); // // radioDutch // this.radioDutch.AutoSize = true; this.radioDutch.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioDutch.ForeColor = System.Drawing.Color.White; this.radioDutch.Location = new System.Drawing.Point(254, 366); this.radioDutch.Margin = new System.Windows.Forms.Padding(2); this.radioDutch.Name = "radioDutch"; this.radioDutch.Size = new System.Drawing.Size(112, 25); this.radioDutch.TabIndex = 118; this.radioDutch.Tag = ""; this.radioDutch.Text = "Nederlands"; this.radioDutch.UseVisualStyleBackColor = true; this.radioDutch.CheckedChanged += new System.EventHandler(this.radioDutch_CheckedChanged); // // pictureBox16 // this.pictureBox16.Image = global::Optimizer.Properties.Resources.dutch; this.pictureBox16.Location = new System.Drawing.Point(214, 369); this.pictureBox16.Name = "pictureBox16"; this.pictureBox16.Size = new System.Drawing.Size(32, 19); this.pictureBox16.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox16.TabIndex = 117; this.pictureBox16.TabStop = false; this.pictureBox16.Click += new System.EventHandler(this.pictureBox16_Click); // // pictureBox17 // this.pictureBox17.Image = global::Optimizer.Properties.Resources.japan; this.pictureBox17.Location = new System.Drawing.Point(13, 367); this.pictureBox17.Name = "pictureBox17"; this.pictureBox17.Size = new System.Drawing.Size(32, 19); this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox17.TabIndex = 119; this.pictureBox17.TabStop = false; this.pictureBox17.Click += new System.EventHandler(this.pictureBox17_Click); // // radioJapanese // this.radioJapanese.AutoSize = true; this.radioJapanese.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioJapanese.ForeColor = System.Drawing.Color.White; this.radioJapanese.Location = new System.Drawing.Point(53, 365); this.radioJapanese.Margin = new System.Windows.Forms.Padding(2); this.radioJapanese.Name = "radioJapanese"; this.radioJapanese.Size = new System.Drawing.Size(79, 25); this.radioJapanese.TabIndex = 120; this.radioJapanese.Tag = ""; this.radioJapanese.Text = "日本語"; this.radioJapanese.UseVisualStyleBackColor = true; this.radioJapanese.CheckedChanged += new System.EventHandler(this.radioJapanese_CheckedChanged); // // radioFarsi // this.radioFarsi.AutoSize = true; this.radioFarsi.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioFarsi.ForeColor = System.Drawing.Color.White; this.radioFarsi.Location = new System.Drawing.Point(254, 220); this.radioFarsi.Margin = new System.Windows.Forms.Padding(2); this.radioFarsi.Name = "radioFarsi"; this.radioFarsi.Size = new System.Drawing.Size(69, 25); this.radioFarsi.TabIndex = 122; this.radioFarsi.Tag = ""; this.radioFarsi.Text = "فارسی"; this.radioFarsi.UseVisualStyleBackColor = true; this.radioFarsi.CheckedChanged += new System.EventHandler(this.radioFarsi_CheckedChanged); // // pictureBox18 // this.pictureBox18.Image = global::Optimizer.Properties.Resources.iran; this.pictureBox18.Location = new System.Drawing.Point(214, 222); this.pictureBox18.Name = "pictureBox18"; this.pictureBox18.Size = new System.Drawing.Size(32, 19); this.pictureBox18.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox18.TabIndex = 121; this.pictureBox18.TabStop = false; this.pictureBox18.Click += new System.EventHandler(this.pictureBox18_Click); // // radioNepali // this.radioNepali.AutoSize = true; this.radioNepali.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioNepali.ForeColor = System.Drawing.Color.White; this.radioNepali.Location = new System.Drawing.Point(53, 220); this.radioNepali.Margin = new System.Windows.Forms.Padding(2); this.radioNepali.Name = "radioNepali"; this.radioNepali.Size = new System.Drawing.Size(67, 25); this.radioNepali.TabIndex = 124; this.radioNepali.Tag = ""; this.radioNepali.Text = "नेपाली"; this.radioNepali.UseVisualStyleBackColor = true; this.radioNepali.CheckedChanged += new System.EventHandler(this.radioNepali_CheckedChanged); // // pictureBox19 // this.pictureBox19.Image = global::Optimizer.Properties.Resources.nepal; this.pictureBox19.Location = new System.Drawing.Point(13, 222); this.pictureBox19.Name = "pictureBox19"; this.pictureBox19.Size = new System.Drawing.Size(32, 19); this.pictureBox19.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox19.TabIndex = 123; this.pictureBox19.TabStop = false; this.pictureBox19.Click += new System.EventHandler(this.pictureBox19_Click); // // radioUkrainian // this.radioUkrainian.AutoSize = true; this.radioUkrainian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioUkrainian.ForeColor = System.Drawing.Color.White; this.radioUkrainian.Location = new System.Drawing.Point(53, 249); this.radioUkrainian.Margin = new System.Windows.Forms.Padding(2); this.radioUkrainian.Name = "radioUkrainian"; this.radioUkrainian.Size = new System.Drawing.Size(67, 25); this.radioUkrainian.TabIndex = 128; this.radioUkrainian.Tag = ""; this.radioUkrainian.Text = "नेपाली"; this.radioUkrainian.UseVisualStyleBackColor = true; this.radioUkrainian.CheckedChanged += new System.EventHandler(this.radioUkrainian_CheckedChanged); // // pictureBox20 // this.pictureBox20.Image = global::Optimizer.Properties.Resources.ukraine; this.pictureBox20.Location = new System.Drawing.Point(13, 251); this.pictureBox20.Name = "pictureBox20"; this.pictureBox20.Size = new System.Drawing.Size(32, 19); this.pictureBox20.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox20.TabIndex = 127; this.pictureBox20.TabStop = false; // // radioBulgarian // this.radioBulgarian.AutoSize = true; this.radioBulgarian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioBulgarian.ForeColor = System.Drawing.Color.White; this.radioBulgarian.Location = new System.Drawing.Point(254, 249); this.radioBulgarian.Margin = new System.Windows.Forms.Padding(2); this.radioBulgarian.Name = "radioBulgarian"; this.radioBulgarian.Size = new System.Drawing.Size(69, 25); this.radioBulgarian.TabIndex = 126; this.radioBulgarian.Tag = ""; this.radioBulgarian.Text = "فارسی"; this.radioBulgarian.UseVisualStyleBackColor = true; this.radioBulgarian.CheckedChanged += new System.EventHandler(this.radioBulgarian_CheckedChanged); // // pictureBox21 // this.pictureBox21.Image = global::Optimizer.Properties.Resources.bulgaria; this.pictureBox21.Location = new System.Drawing.Point(214, 251); this.pictureBox21.Name = "pictureBox21"; this.pictureBox21.Size = new System.Drawing.Size(32, 19); this.pictureBox21.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox21.TabIndex = 125; this.pictureBox21.TabStop = false; // // radioVietnam // this.radioVietnam.AutoSize = true; this.radioVietnam.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioVietnam.ForeColor = System.Drawing.Color.White; this.radioVietnam.Location = new System.Drawing.Point(254, 278); this.radioVietnam.Margin = new System.Windows.Forms.Padding(2); this.radioVietnam.Name = "radioVietnam"; this.radioVietnam.Size = new System.Drawing.Size(113, 25); this.radioVietnam.TabIndex = 130; this.radioVietnam.Tag = ""; this.radioVietnam.Text = "Vietnamese"; this.radioVietnam.UseVisualStyleBackColor = true; this.radioVietnam.CheckedChanged += new System.EventHandler(this.radioVietnam_CheckedChanged); // // pictureBox22 // this.pictureBox22.Image = global::Optimizer.Properties.Resources.vietnam; this.pictureBox22.Location = new System.Drawing.Point(214, 280); this.pictureBox22.Name = "pictureBox22"; this.pictureBox22.Size = new System.Drawing.Size(32, 19); this.pictureBox22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox22.TabIndex = 129; this.pictureBox22.TabStop = false; this.pictureBox22.Click += new System.EventHandler(this.pictureBox22_Click); // // radioUrdu // this.radioUrdu.AutoSize = true; this.radioUrdu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioUrdu.ForeColor = System.Drawing.Color.White; this.radioUrdu.Location = new System.Drawing.Point(52, 278); this.radioUrdu.Margin = new System.Windows.Forms.Padding(2); this.radioUrdu.Name = "radioUrdu"; this.radioUrdu.Size = new System.Drawing.Size(64, 25); this.radioUrdu.TabIndex = 132; this.radioUrdu.Tag = ""; this.radioUrdu.Text = "Urdu"; this.radioUrdu.UseVisualStyleBackColor = true; this.radioUrdu.CheckedChanged += new System.EventHandler(this.radioUrdu_CheckedChanged); // // pictureBox23 // this.pictureBox23.Image = global::Optimizer.Properties.Resources.pakistan; this.pictureBox23.Location = new System.Drawing.Point(12, 280); this.pictureBox23.Name = "pictureBox23"; this.pictureBox23.Size = new System.Drawing.Size(32, 19); this.pictureBox23.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox23.TabIndex = 131; this.pictureBox23.TabStop = false; this.pictureBox23.Click += new System.EventHandler(this.pictureBox23_Click); // // radioIndonesian // this.radioIndonesian.AutoSize = true; this.radioIndonesian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioIndonesian.ForeColor = System.Drawing.Color.White; this.radioIndonesian.Location = new System.Drawing.Point(254, 395); this.radioIndonesian.Margin = new System.Windows.Forms.Padding(2); this.radioIndonesian.Name = "radioIndonesian"; this.radioIndonesian.Size = new System.Drawing.Size(153, 25); this.radioIndonesian.TabIndex = 134; this.radioIndonesian.Tag = ""; this.radioIndonesian.Text = "Bahasa Indonesia"; this.radioIndonesian.UseVisualStyleBackColor = true; this.radioIndonesian.CheckedChanged += new System.EventHandler(this.radioIndonesian_CheckedChanged); // // pictureBox24 // this.pictureBox24.Image = global::Optimizer.Properties.Resources.indonesia; this.pictureBox24.Location = new System.Drawing.Point(214, 397); this.pictureBox24.Name = "pictureBox24"; this.pictureBox24.Size = new System.Drawing.Size(32, 19); this.pictureBox24.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox24.TabIndex = 133; this.pictureBox24.TabStop = false; this.pictureBox24.Click += new System.EventHandler(this.pictureBox24_Click); // // radioCroatian // this.radioCroatian.AutoSize = true; this.radioCroatian.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.radioCroatian.ForeColor = System.Drawing.Color.White; this.radioCroatian.Location = new System.Drawing.Point(53, 394); this.radioCroatian.Margin = new System.Windows.Forms.Padding(2); this.radioCroatian.Name = "radioCroatian"; this.radioCroatian.Size = new System.Drawing.Size(69, 25); this.radioCroatian.TabIndex = 136; this.radioCroatian.Tag = ""; this.radioCroatian.Text = "Hrvat"; this.radioCroatian.UseVisualStyleBackColor = true; this.radioCroatian.CheckedChanged += new System.EventHandler(this.radioCroatian_CheckedChanged); // // pictureBox25 // this.pictureBox25.Image = global::Optimizer.Properties.Resources.croatia; this.pictureBox25.Location = new System.Drawing.Point(13, 397); this.pictureBox25.Name = "pictureBox25"; this.pictureBox25.Size = new System.Drawing.Size(32, 19); this.pictureBox25.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox25.TabIndex = 135; this.pictureBox25.TabStop = false; this.pictureBox25.Click += new System.EventHandler(this.pictureBox25_Click); // // FirstRunForm // this.AcceptButton = this.btnStart; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.CancelButton = this.btnStart; this.ClientSize = new System.Drawing.Size(428, 506); this.Controls.Add(this.radioCroatian); this.Controls.Add(this.pictureBox25); this.Controls.Add(this.radioIndonesian); this.Controls.Add(this.pictureBox24); this.Controls.Add(this.radioUrdu); this.Controls.Add(this.pictureBox23); this.Controls.Add(this.radioVietnam); this.Controls.Add(this.pictureBox22); this.Controls.Add(this.radioUkrainian); this.Controls.Add(this.pictureBox20); this.Controls.Add(this.radioBulgarian); this.Controls.Add(this.pictureBox21); this.Controls.Add(this.radioNepali); this.Controls.Add(this.pictureBox19); this.Controls.Add(this.radioFarsi); this.Controls.Add(this.pictureBox18); this.Controls.Add(this.radioJapanese); this.Controls.Add(this.pictureBox17); this.Controls.Add(this.radioDutch); this.Controls.Add(this.pictureBox16); this.Controls.Add(this.radioRomanian); this.Controls.Add(this.pictureBox15); this.Controls.Add(this.radioHungarian); this.Controls.Add(this.pictureBox14); this.Controls.Add(this.radioKurdish); this.Controls.Add(this.pictureBox13); this.Controls.Add(this.radioArabic); this.Controls.Add(this.pictureBox12); this.Controls.Add(this.radioPolish); this.Controls.Add(this.pictureBox11); this.Controls.Add(this.radioKorean); this.Controls.Add(this.pictureBox10); this.Controls.Add(this.radioTaiwan); this.Controls.Add(this.pictureBox9); this.Controls.Add(this.radioCzech); this.Controls.Add(this.pictureBox8); this.Controls.Add(this.radioChinese); this.Controls.Add(this.pictureBox7); this.Controls.Add(this.radioItalian); this.Controls.Add(this.pictureBox6); this.Controls.Add(this.radioFrench); this.Controls.Add(this.pictureBox5); this.Controls.Add(this.radioPortuguese); this.Controls.Add(this.pictureBox4); this.Controls.Add(this.radioSpanish); this.Controls.Add(this.pictureBox3); this.Controls.Add(this.radioGerman); this.Controls.Add(this.pictureBox2); this.Controls.Add(this.radioTurkish); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.btnStart); this.Controls.Add(this.pictureBox88); this.Controls.Add(this.radioHellenic); this.Controls.Add(this.pictureBox87); this.Controls.Add(this.radioEnglish); this.Controls.Add(this.radioRussian); this.Controls.Add(this.pictureBox86); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FirstRunForm"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Optimizer"; this.Load += new System.EventHandler(this.FirstRunForm_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox pictureBox88; private MoonRadio radioHellenic; private System.Windows.Forms.PictureBox pictureBox87; private MoonRadio radioEnglish; private MoonRadio radioRussian; private System.Windows.Forms.PictureBox pictureBox86; private System.Windows.Forms.Button btnStart; private System.Windows.Forms.PictureBox pictureBox1; private MoonRadio radioTurkish; private MoonRadio radioGerman; private System.Windows.Forms.PictureBox pictureBox2; private MoonRadio radioSpanish; private System.Windows.Forms.PictureBox pictureBox3; private MoonRadio radioPortuguese; private System.Windows.Forms.PictureBox pictureBox4; private MoonRadio radioFrench; private System.Windows.Forms.PictureBox pictureBox5; private MoonRadio radioItalian; private System.Windows.Forms.PictureBox pictureBox6; private MoonRadio radioChinese; private System.Windows.Forms.PictureBox pictureBox7; private MoonRadio radioCzech; private System.Windows.Forms.PictureBox pictureBox8; private MoonRadio radioTaiwan; private System.Windows.Forms.PictureBox pictureBox9; private MoonRadio radioKorean; private System.Windows.Forms.PictureBox pictureBox10; private MoonRadio radioPolish; private System.Windows.Forms.PictureBox pictureBox11; private MoonRadio radioArabic; private System.Windows.Forms.PictureBox pictureBox12; private MoonRadio radioKurdish; private System.Windows.Forms.PictureBox pictureBox13; private MoonRadio radioHungarian; private System.Windows.Forms.PictureBox pictureBox14; private MoonRadio radioRomanian; private System.Windows.Forms.PictureBox pictureBox15; private MoonRadio radioDutch; private System.Windows.Forms.PictureBox pictureBox16; private System.Windows.Forms.PictureBox pictureBox17; private MoonRadio radioJapanese; private MoonRadio radioFarsi; private System.Windows.Forms.PictureBox pictureBox18; private MoonRadio radioNepali; private System.Windows.Forms.PictureBox pictureBox19; private MoonRadio radioUkrainian; private System.Windows.Forms.PictureBox pictureBox20; private MoonRadio radioBulgarian; private System.Windows.Forms.PictureBox pictureBox21; private MoonRadio radioVietnam; private System.Windows.Forms.PictureBox pictureBox22; private MoonRadio radioUrdu; private System.Windows.Forms.PictureBox pictureBox23; private MoonRadio radioIndonesian; private System.Windows.Forms.PictureBox pictureBox24; private MoonRadio radioCroatian; private System.Windows.Forms.PictureBox pictureBox25; } } ================================================ FILE: Optimizer/Forms/FirstRunForm.cs ================================================ using System; using System.Windows.Forms; namespace Optimizer { public sealed partial class FirstRunForm : Form { public FirstRunForm() { InitializeComponent(); this.DoubleBuffered = true; OptionsHelper.ApplyTheme(this); } private void btnStart_Click(object sender, EventArgs e) { this.Close(); } private void FirstRunForm_Load(object sender, EventArgs e) { radioArabic.Text = Constants.ARABIC; radioPortuguese.Text = Constants.PORTUGUESE; radioChinese.Text = Constants.CHINESE; radioCzech.Text = Constants.CZECH; radioDutch.Text = Constants.DUTCH; radioFrench.Text = Constants.FRENCH; radioGerman.Text = Constants.GERMAN; radioHellenic.Text = Constants.HELLENIC; radioHungarian.Text = Constants.HUNGARIAN; radioFarsi.Text = Constants.PERSIAN; radioItalian.Text = Constants.ITALIAN; radioJapanese.Text = Constants.JAPANESE; radioKorean.Text = Constants.KOREAN; radioKurdish.Text = Constants.KURDISH; radioNepali.Text = Constants.NEPALI; radioPolish.Text = Constants.POLISH; radioRomanian.Text = Constants.ROMANIAN; radioRussian.Text = Constants.RUSSIAN; radioSpanish.Text = Constants.SPANISH; radioTaiwan.Text = Constants.TAIWANESE; radioTurkish.Text = Constants.TURKISH; radioUkrainian.Text = Constants.UKRAINIAN; radioBulgarian.Text = Constants.BULGARIAN; radioEnglish.Text = Constants.ENGLISH; radioUrdu.Text = Constants.URDU; radioVietnam.Text = Constants.VIETNAMESE; } private void pictureBox86_Click(object sender, EventArgs e) { radioEnglish.PerformClick(); } private void pictureBox87_Click(object sender, EventArgs e) { radioRussian.PerformClick(); } private void pictureBox88_Click(object sender, EventArgs e) { radioHellenic.PerformClick(); } private void radioEnglish_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.EN; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioRussian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.RU; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioHellenic_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.EL; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox1_Click(object sender, EventArgs e) { radioTurkish.PerformClick(); } private void radioTurkish_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.TR; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioGerman_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.DE; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox2_Click(object sender, EventArgs e) { radioGerman.PerformClick(); } private void pictureBox3_Click(object sender, EventArgs e) { radioSpanish.PerformClick(); } private void radioSpanish_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.ES; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioPortuguese_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.PT; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox4_Click(object sender, EventArgs e) { radioPortuguese.PerformClick(); } private void radioFrench_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.FR; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox5_Click(object sender, EventArgs e) { radioFrench.PerformClick(); } private void radioitalian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.IT; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox6_Click(object sender, EventArgs e) { radioItalian.PerformClick(); } private void pictureBox7_Click(object sender, EventArgs e) { radioChinese.PerformClick(); } private void radioChinese_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.CN; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox8_Click(object sender, EventArgs e) { radioCzech.PerformClick(); } private void radioCzech_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.CZ; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioTaiwan_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.TW; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox9_Click(object sender, EventArgs e) { radioTaiwan.PerformClick(); } private void radioKorean_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.KO; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox10_Click(object sender, EventArgs e) { radioChinese.PerformClick(); } private void pictureBox11_Click(object sender, EventArgs e) { radioPolish.PerformClick(); } private void radioPolish_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.PL; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioArabic_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.AR; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox12_Click(object sender, EventArgs e) { radioArabic.PerformClick(); } private void pictureBox13_Click(object sender, EventArgs e) { radioKurdish.PerformClick(); } private void radioKurdish_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.KU; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox14_Click(object sender, EventArgs e) { radioHungarian.PerformClick(); } private void radioHungarian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.HU; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioRomanian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.RO; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox15_Click(object sender, EventArgs e) { radioRomanian.PerformClick(); } private void radioDutch_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.NL; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox16_Click(object sender, EventArgs e) { radioDutch.PerformClick(); } private void radioJapanese_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.JA; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox17_Click(object sender, EventArgs e) { radioJapanese.PerformClick(); } private void radioFarsi_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.FA; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox18_Click(object sender, EventArgs e) { radioFarsi.PerformClick(); } private void pictureBox19_Click(object sender, EventArgs e) { radioNepali.PerformClick(); } private void radioNepali_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.NE; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioBulgarian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.BG; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioUkrainian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.UA; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioVietnam_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.VN; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox22_Click(object sender, EventArgs e) { radioVietnam.PerformClick(); } private void pictureBox23_Click(object sender, EventArgs e) { radioUrdu.PerformClick(); } private void radioUrdu_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.UR; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void pictureBox25_Click(object sender, EventArgs e) { radioCroatian.PerformClick(); } private void pictureBox24_Click(object sender, EventArgs e) { radioIndonesian.PerformClick(); } private void radioCroatian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.HR; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } private void radioIndonesian_CheckedChanged(object sender, EventArgs e) { OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.ID; OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); } } } ================================================ FILE: Optimizer/Forms/FirstRunForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 AAABAAQAQEAAAAEAIAAoQgAARgAAADAwAAABACAAqCUAAG5CAAAgIAAAAQAgAKgQAAAWaAAAEBAAAAEA IABoBAAAvngAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tv62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/AAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// ///////////////////////////////////////////////////////////x/////////+D///////// wH////////+AP////////wAf///////+AA////////wAB///////+AAD///////wAAH//////+AAAP// ////wAAAf/////+AAAA//////wAAAB/////+AAAAD/////wAAAAH////+AAAAAP////wAAAAAf///+AA AAAA////wAAAAAB///+AAAAAAD///wAABAAAH///AAAOAAAP//8AAB8AAAf//4AAP4AAA///wAB/wAAB ///gAP/gAAD///AB//AAAH//+AP/+AAAP//8B//8AAAf//4P//4AAA///x///wAAB///v///gAAD//// ///AAAH//////+AAAP//////8AAAf//////4AAA///////wAAB///////gAAD///////AAAH//////+A AAP//////8AAAf//////4AAA///////wAAD///////gAAP///////AAB///////+AAP///////8AB/// /////4AP////////wB/////////gP/////////B/////////+P////////////////////////////// //////////////////////////////////8oAAAAMAAAAGAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t rXStra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0kra2t562trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t reOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t062t rWitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3bra2tGAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3bra2tGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62trf+tra3bra2tGAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tq62t rdOtra0YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tCK2trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2t rfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62treOtra0sAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t562trSwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3nra2tJAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t reOtra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t562trSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3nra2tJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUytra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////// /////////////////////j/////////8P/////////gP////////8Af////////gB////////8AB//// ////gAD///////8AAP///////gAAP//////8AAAf//////gAAB//////8AAAB//////gAAAD/////8AA AAP/////gAAAAP////8AAAAAf////wAAgAB/////AAHAAB////8AA+AAD////4AH8AAP////4A/4AAP/ ///gH/wAAf////A//gAB/////H//AAB////8//+AAD///////8AAP///////4AAP///////wAAf///// //gAB////////AAB///////+AAD///////8AAP///////4AA////////wAD////////gAf////////AD ////////+Af////////8D/////////4f/////////z////////////////////////////////////// ////////KAAAACAAAABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0Qra2tz62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tEK2t rc+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3vra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t762trTCtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62tre+tra0wAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62t rf+tra3/ra2t/62trf+tra3vra2tMAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra2fra2t/62trf+tra3/ra2t762trTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2fra2t/62tre+tra0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2tMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trc+tra0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3Pra2tEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD/////////////////j////wf///4D///8Af//+AD///AAf//gAD//wAAf/4AAD/8AAAf/AAAD/wAw Af+AeAD/wPwAf+H+AD/z/wAf//+AD///wAf//+AD///wAf//+AD///wA///+AP///wH///+D////x/// /////////////ygAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2rra2t/62trf+tra3/ra2t+62trZ+tra3/ra2t/62trf+tra3/ra2tjwAA AAAAAAAAAAAAAAAAAAAAAAAAra2tj62trf+tra3/ra2t+62trVQAAAAAra2tcK2trf+tra3/ra2t/62t rf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2t+62trVQAAAAAAAAAAAAAAACtra1wra2t/62t rf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAK2trTAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rXCtra3/ra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tcK2trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1wra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trXCtra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tcK2trf+tra2rra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Mra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//+sQfP/ rEHh/6xBwP+sQYB/rEEAP6xBAB+sQQQPrEGOB6xB3wOsQf+BrEH/wKxB/+CsQf/wrEH/+axB//+sQQ== ================================================ FILE: Optimizer/Forms/HelperForm.Designer.cs ================================================ namespace Optimizer { partial class HelperForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lblMessage = new System.Windows.Forms.Label(); this.btnYes = new System.Windows.Forms.Button(); this.btnNo = new System.Windows.Forms.Button(); this.SuspendLayout(); // // lblMessage // this.lblMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161))); this.lblMessage.Location = new System.Drawing.Point(10, 7); this.lblMessage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblMessage.Name = "lblMessage"; this.lblMessage.Size = new System.Drawing.Size(432, 69); this.lblMessage.TabIndex = 0; this.lblMessage.Text = "Restart to apply changes?"; // // btnYes // this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnYes.BackColor = System.Drawing.Color.DodgerBlue; this.btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes; this.btnYes.FlatAppearance.BorderSize = 0; this.btnYes.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnYes.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnYes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnYes.ForeColor = System.Drawing.Color.White; this.btnYes.Location = new System.Drawing.Point(309, 136); this.btnYes.Margin = new System.Windows.Forms.Padding(2); this.btnYes.Name = "btnYes"; this.btnYes.Size = new System.Drawing.Size(145, 31); this.btnYes.TabIndex = 31; this.btnYes.Tag = "themeable"; this.btnYes.Text = "Yes"; this.btnYes.UseVisualStyleBackColor = false; this.btnYes.Click += new System.EventHandler(this.btnYes_Click); // // btnNo // this.btnNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNo.BackColor = System.Drawing.Color.DodgerBlue; this.btnNo.DialogResult = System.Windows.Forms.DialogResult.No; this.btnNo.FlatAppearance.BorderSize = 0; this.btnNo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnNo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnNo.ForeColor = System.Drawing.Color.White; this.btnNo.Location = new System.Drawing.Point(160, 136); this.btnNo.Margin = new System.Windows.Forms.Padding(2); this.btnNo.Name = "btnNo"; this.btnNo.Size = new System.Drawing.Size(145, 31); this.btnNo.TabIndex = 32; this.btnNo.Tag = "themeable"; this.btnNo.Text = "No"; this.btnNo.UseVisualStyleBackColor = false; this.btnNo.Click += new System.EventHandler(this.btnNo_Click); // // HelperForm // this.AcceptButton = this.btnYes; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.CancelButton = this.btnNo; this.ClientSize = new System.Drawing.Size(463, 177); this.Controls.Add(this.btnNo); this.Controls.Add(this.btnYes); this.Controls.Add(this.lblMessage); this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161))); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "HelperForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Load += new System.EventHandler(this.Messager_Load); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Label lblMessage; private System.Windows.Forms.Button btnYes; private System.Windows.Forms.Button btnNo; } } ================================================ FILE: Optimizer/Forms/HelperForm.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class HelperForm : System.Windows.Forms.Form { MainForm _main; MessageType _type; private void Confirm() { if (_type == MessageType.Error) { this.Close(); } if (_type == MessageType.Startup) { _main.RemoveAllStartupItems(); } if (_type == MessageType.Restart) { OptionsHelper.SaveSettings(); Utilities.Reboot(); } if (_type == MessageType.Hosts) { _main.RemoveAllHostsEntries(); } if (_type == MessageType.Integrator) { _main.RemoveAllDesktopItems(); } } internal HelperForm(MainForm main, MessageType m, string text) { InitializeComponent(); OptionsHelper.ApplyTheme(this); _main = main; _type = m; lblMessage.Text = text; if (_type == MessageType.Error) { btnNo.Visible = false; btnYes.Text = OptionsHelper.TranslationList["btnOk"]; this.AcceptButton = btnNo; this.AcceptButton = btnYes; this.CancelButton = btnNo; this.CancelButton = btnYes; } // translate UI elements if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate(); } private void btnNo_Click(object sender, EventArgs e) { this.Close(); } private void btnYes_Click(object sender, EventArgs e) { Confirm(); this.Close(); } private void Messager_Load(object sender, EventArgs e) { CheckForIllegalCrossThreadCalls = false; this.BringToFront(); } private void Translate() { Dictionary translationList = OptionsHelper.TranslationList.ToObject>(); Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; element.Text = x.Value; } } } } ================================================ FILE: Optimizer/Forms/HelperForm.resx ================================================ text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/HostsEditorForm.Designer.cs ================================================ namespace Optimizer { partial class HostsEditorForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.bpanel = new System.Windows.Forms.Panel(); this.closebtn = new System.Windows.Forms.Button(); this.savebtn = new System.Windows.Forms.Button(); this.panel1 = new System.Windows.Forms.Panel(); this.textBox1 = new System.Windows.Forms.RichTextBox(); this.bpanel.SuspendLayout(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // bpanel // this.bpanel.Controls.Add(this.closebtn); this.bpanel.Controls.Add(this.savebtn); this.bpanel.Dock = System.Windows.Forms.DockStyle.Bottom; this.bpanel.Location = new System.Drawing.Point(0, 491); this.bpanel.Margin = new System.Windows.Forms.Padding(2); this.bpanel.Name = "bpanel"; this.bpanel.Size = new System.Drawing.Size(615, 49); this.bpanel.TabIndex = 0; // // closebtn // this.closebtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.closebtn.BackColor = System.Drawing.Color.DodgerBlue; this.closebtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.closebtn.FlatAppearance.BorderSize = 0; this.closebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.closebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.closebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.closebtn.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.closebtn.ForeColor = System.Drawing.Color.White; this.closebtn.Location = new System.Drawing.Point(277, 8); this.closebtn.Margin = new System.Windows.Forms.Padding(2); this.closebtn.Name = "closebtn"; this.closebtn.Size = new System.Drawing.Size(162, 31); this.closebtn.TabIndex = 35; this.closebtn.Tag = "themeable"; this.closebtn.Text = "Close"; this.closebtn.UseVisualStyleBackColor = false; this.closebtn.Click += new System.EventHandler(this.button1_Click); // // savebtn // this.savebtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.savebtn.BackColor = System.Drawing.Color.DodgerBlue; this.savebtn.FlatAppearance.BorderSize = 0; this.savebtn.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.savebtn.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.savebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.savebtn.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.savebtn.ForeColor = System.Drawing.Color.White; this.savebtn.Location = new System.Drawing.Point(443, 8); this.savebtn.Margin = new System.Windows.Forms.Padding(2); this.savebtn.Name = "savebtn"; this.savebtn.Size = new System.Drawing.Size(162, 31); this.savebtn.TabIndex = 34; this.savebtn.Tag = "themeable"; this.savebtn.Text = "Save"; this.savebtn.UseVisualStyleBackColor = false; this.savebtn.Click += new System.EventHandler(this.button7_Click); // // panel1 // this.panel1.Controls.Add(this.textBox1); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Margin = new System.Windows.Forms.Padding(2); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(615, 491); this.panel1.TabIndex = 1; // // textBox1 // this.textBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textBox1.ForeColor = System.Drawing.Color.White; this.textBox1.Location = new System.Drawing.Point(0, 0); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(615, 491); this.textBox1.TabIndex = 0; this.textBox1.Text = ""; // // HostsEditorForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.CancelButton = this.closebtn; this.ClientSize = new System.Drawing.Size(615, 540); this.Controls.Add(this.panel1); this.Controls.Add(this.bpanel); this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); this.MinimizeBox = false; this.Name = "HostsEditorForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Hosts Editor"; this.Load += new System.EventHandler(this.HostsEditor_Load); this.bpanel.ResumeLayout(false); this.panel1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel bpanel; private System.Windows.Forms.Button closebtn; private System.Windows.Forms.Button savebtn; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.RichTextBox textBox1; } } ================================================ FILE: Optimizer/Forms/HostsEditorForm.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class HostsEditorForm : Form { string[] _toSave = null; public HostsEditorForm() { InitializeComponent(); OptionsHelper.ApplyTheme(this); if (HostsHelper.GetReadOnly()) { savebtn.Enabled = false; } // translate UI elements if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate(); } private void HostsEditor_Load(object sender, EventArgs e) { //foreach (string line in HostsHelper.ReadHosts()) //{ // textBox1.Text += line + HostsHelper.NewLine; //} textBox1.Text = HostsHelper.ReadHostsFast(); textBox1.Focus(); } private void Translate() { this.Text = OptionsHelper.TranslationList["HostsEditorForm"]; Dictionary translationList = OptionsHelper.TranslationList.ToObject>(); Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; element.Text = x.Value; } } private void button1_Click(object sender, EventArgs e) { this.Close(); } private void button7_Click(object sender, EventArgs e) { _toSave = textBox1.Lines; HostsHelper.SaveHosts(_toSave); this.Close(); } } } ================================================ FILE: Optimizer/Forms/HostsEditorForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/InfoForm.Designer.cs ================================================ namespace Optimizer { partial class InfoForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.btnOK = new System.Windows.Forms.Button(); this.txtInfo = new System.Windows.Forms.TextBox(); this.copyIPB = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.BackColor = System.Drawing.Color.DodgerBlue; this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Yes; this.btnOK.FlatAppearance.BorderSize = 0; this.btnOK.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnOK.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnOK.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOK.ForeColor = System.Drawing.Color.White; this.btnOK.Location = new System.Drawing.Point(522, 492); this.btnOK.Margin = new System.Windows.Forms.Padding(2); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(159, 31); this.btnOK.TabIndex = 32; this.btnOK.Tag = "themeable"; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = false; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // txtInfo // this.txtInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtInfo.ForeColor = System.Drawing.Color.White; this.txtInfo.Location = new System.Drawing.Point(10, 10); this.txtInfo.Margin = new System.Windows.Forms.Padding(2); this.txtInfo.Multiline = true; this.txtInfo.Name = "txtInfo"; this.txtInfo.ReadOnly = true; this.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtInfo.Size = new System.Drawing.Size(671, 471); this.txtInfo.TabIndex = 33; this.txtInfo.Text = "Integrator InfoBox"; // // copyIPB // this.copyIPB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue; this.copyIPB.DialogResult = System.Windows.Forms.DialogResult.Yes; this.copyIPB.FlatAppearance.BorderSize = 0; this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.copyIPB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.copyIPB.ForeColor = System.Drawing.Color.White; this.copyIPB.Location = new System.Drawing.Point(359, 492); this.copyIPB.Margin = new System.Windows.Forms.Padding(2); this.copyIPB.Name = "copyIPB"; this.copyIPB.Size = new System.Drawing.Size(159, 31); this.copyIPB.TabIndex = 34; this.copyIPB.Tag = "themeable"; this.copyIPB.Text = "Copy"; this.copyIPB.UseVisualStyleBackColor = false; this.copyIPB.Click += new System.EventHandler(this.copyIPB_Click); // // InfoForm // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.CancelButton = this.btnOK; this.ClientSize = new System.Drawing.Size(692, 534); this.Controls.Add(this.copyIPB); this.Controls.Add(this.txtInfo); this.Controls.Add(this.btnOK); this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); this.MinimizeBox = false; this.Name = "InfoForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Load += new System.EventHandler(this.Info_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnOK; private System.Windows.Forms.TextBox txtInfo; private System.Windows.Forms.Button copyIPB; } } ================================================ FILE: Optimizer/Forms/InfoForm.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class InfoForm : Form { public InfoForm(string info) { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; OptionsHelper.ApplyTheme(this); txtInfo.Text = info; // translate UI elements if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate(); } private void Translate() { Dictionary translationList = OptionsHelper.TranslationList.ToObject>(); Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; element.Text = x.Value; } } private void btnOK_Click(object sender, EventArgs e) { this.Close(); } private void Info_Load(object sender, EventArgs e) { } private void copyIPB_Click(object sender, EventArgs e) { try { Clipboard.SetText(txtInfo.Text); } catch { } } } } ================================================ FILE: Optimizer/Forms/InfoForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/MainForm.Designer.cs ================================================ using System.Windows.Forms; using Optimizer; namespace Optimizer { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Processors", 0, 0); System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Memory", 1, 1); System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Graphics", 2, 2); System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Motherboard", 3, 3); System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Storage", 4, 4); System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Network Adapters", 5, 5); System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Audio", 6, 6); System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Peripherals", 7, 7); this.tpanel = new System.Windows.Forms.Panel(); this.restartAndApply = new System.Windows.Forms.Label(); this.picRestartNeeded = new System.Windows.Forms.PictureBox(); this.picLab = new System.Windows.Forms.PictureBox(); this.picUpdate = new System.Windows.Forms.PictureBox(); this.txtNetFw = new System.Windows.Forms.Label(); this.txtBitness = new System.Windows.Forms.Label(); this.txtOS = new System.Windows.Forms.Label(); this.txtVersion = new System.Windows.Forms.Label(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label(); this.bpanel = new System.Windows.Forms.Panel(); this.tabCollection = new Optimizer.MoonTabs(); this.universalTab = new System.Windows.Forms.TabPage(); this.enableUtcSw = new Optimizer.ToggleCard(); this.noMenuDelaySw = new Optimizer.ToggleCard(); this.allTrayIconsSw = new Optimizer.ToggleCard(); this.disableOneDriveSw = new Optimizer.ToggleCard(); this.winSearchSw = new Optimizer.ToggleCard(); this.label13 = new System.Windows.Forms.Label(); this.label4a = new System.Windows.Forms.Label(); this.drives = new System.Windows.Forms.Label(); this.label14s = new System.Windows.Forms.Label(); this.nvidiaTelemetrySw = new Optimizer.ToggleCard(); this.ntfsStampSw = new Optimizer.ToggleCard(); this.smb2Sw = new Optimizer.ToggleCard(); this.smb1Sw = new Optimizer.ToggleCard(); this.hibernateSw = new Optimizer.ToggleCard(); this.chromeTelemetrySw = new Optimizer.ToggleCard(); this.ffTelemetrySw = new Optimizer.ToggleCard(); this.vsSw = new Optimizer.ToggleCard(); this.reportingSw = new Optimizer.ToggleCard(); this.systemRestoreSw = new Optimizer.ToggleCard(); this.officeTelemetrySw = new Optimizer.ToggleCard(); this.smartScreenSw = new Optimizer.ToggleCard(); this.networkSw = new Optimizer.ToggleCard(); this.telemetryTasksSw = new Optimizer.ToggleCard(); this.defenderSw = new Optimizer.ToggleCard(); this.homegroupSw = new Optimizer.ToggleCard(); this.stickySw = new Optimizer.ToggleCard(); this.compatSw = new Optimizer.ToggleCard(); this.mediaSharingSw = new Optimizer.ToggleCard(); this.printSw = new Optimizer.ToggleCard(); this.superfetchSw = new Optimizer.ToggleCard(); this.faxSw = new Optimizer.ToggleCard(); this.performanceSw = new Optimizer.ToggleCard(); this.windows10Tab = new System.Windows.Forms.TabPage(); this.modernStandbySw = new Optimizer.ToggleCard(); this.newsInterestsSw = new Optimizer.ToggleCard(); this.hideSearchSw = new Optimizer.ToggleCard(); this.hideWeatherSw = new Optimizer.ToggleCard(); this.classicPhotoViewerSw = new Optimizer.ToggleCard(); this.edgeAiSw = new Optimizer.ToggleCard(); this.edgeTelemetrySw = new Optimizer.ToggleCard(); this.label18 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.panelWin11Tweaks = new System.Windows.Forms.Panel(); this.copilotSw = new Optimizer.ToggleCard(); this.label20 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.stickersSw = new Optimizer.ToggleCard(); this.compactModeSw = new Optimizer.ToggleCard(); this.snapAssistSw = new Optimizer.ToggleCard(); this.widgetsSw = new Optimizer.ToggleCard(); this.leftTaskbarSw = new Optimizer.ToggleCard(); this.classicContextSw = new Optimizer.ToggleCard(); this.chatSw = new Optimizer.ToggleCard(); this.vbsSw = new Optimizer.ToggleCard(); this.gameModeSw = new Optimizer.ToggleCard(); this.storeUpdatesSw = new Optimizer.ToggleCard(); this.oldMixerSw = new Optimizer.ToggleCard(); this.insiderSw = new Optimizer.ToggleCard(); this.castSw = new Optimizer.ToggleCard(); this.gameBarSw = new Optimizer.ToggleCard(); this.sensorSw = new Optimizer.ToggleCard(); this.ccSw = new Optimizer.ToggleCard(); this.cortanaSw = new Optimizer.ToggleCard(); this.privacySw = new Optimizer.ToggleCard(); this.driversSw = new Optimizer.ToggleCard(); this.telemetryServicesSw = new Optimizer.ToggleCard(); this.autoUpdatesSw = new Optimizer.ToggleCard(); this.tpmSw = new Optimizer.ToggleCard(); this.xboxSw = new Optimizer.ToggleCard(); this.inkSw = new Optimizer.ToggleCard(); this.spellSw = new Optimizer.ToggleCard(); this.longPathsSw = new Optimizer.ToggleCard(); this.peopleSw = new Optimizer.ToggleCard(); this.oldExplorerSw = new Optimizer.ToggleCard(); this.adsSw = new Optimizer.ToggleCard(); this.advancedTab = new System.Windows.Forms.TabPage(); this.uODSw = new Optimizer.ToggleCard(); this.btnRestartDisableDefender = new System.Windows.Forms.Button(); this.btnRestart = new System.Windows.Forms.Button(); this.btnRestartSafe = new System.Windows.Forms.Button(); this.loginVerboseSw = new Optimizer.ToggleCard(); this.hpetSw = new Optimizer.ToggleCard(); this.modernAppsTab = new System.Windows.Forms.TabPage(); this.btnRestoreUwp = new System.Windows.Forms.Button(); this.panelUwp = new System.Windows.Forms.Panel(); this.uninstallModernAppsButton = new System.Windows.Forms.Button(); this.refreshModernAppsButton = new System.Windows.Forms.Button(); this.txtModernAppsTitle = new System.Windows.Forms.Label(); this.chkOnlyRemovable = new Optimizer.MoonCheck(); this.chkSelectAllModernApps = new Optimizer.MoonCheck(); this.startupTab = new System.Windows.Forms.TabPage(); this.cancelBackup = new System.Windows.Forms.Button(); this.doBackup = new System.Windows.Forms.Button(); this.txtBackupTitle = new System.Windows.Forms.TextBox(); this.lblBackupTitle = new System.Windows.Forms.Label(); this.restoreStartupB = new System.Windows.Forms.Button(); this.backupStartupB = new System.Windows.Forms.Button(); this.findInRegB = new System.Windows.Forms.Button(); this.locateFileB = new System.Windows.Forms.Button(); this.removeStartupItemB = new System.Windows.Forms.Button(); this.refreshStartupB = new System.Windows.Forms.Button(); this.panel3 = new System.Windows.Forms.Panel(); this.listStartupItems = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.startupTitle = new System.Windows.Forms.Label(); this.appsTab = new System.Windows.Forms.TabPage(); this.txtFeedError = new System.Windows.Forms.Label(); this.lblVideoSound = new System.Windows.Forms.Label(); this.lblCoding = new System.Windows.Forms.Label(); this.lblSystemTools = new System.Windows.Forms.Label(); this.groupSoundVideo = new System.Windows.Forms.Panel(); this.lblInternet = new System.Windows.Forms.Label(); this.groupCoding = new System.Windows.Forms.Panel(); this.groupInternet = new System.Windows.Forms.Panel(); this.panel10 = new System.Windows.Forms.Panel(); this.appsTitle = new System.Windows.Forms.Label(); this.btnGetFeed = new System.Windows.Forms.Button(); this.panelCommonApps = new System.Windows.Forms.Panel(); this.cAutoInstall = new Optimizer.MoonCheck(); this.progressDownloader = new Optimizer.MoonProgress(); this.c64 = new Optimizer.MoonRadio(); this.c32 = new Optimizer.MoonRadio(); this.btnDownloadApps = new System.Windows.Forms.Button(); this.setDownDirLbl = new System.Windows.Forms.Label(); this.txtDownloadFolder = new System.Windows.Forms.TextBox(); this.changeDownDirB = new System.Windows.Forms.Button(); this.txtDownloadStatus = new System.Windows.Forms.Label(); this.linkWarnings = new System.Windows.Forms.LinkLabel(); this.bitPref = new System.Windows.Forms.Label(); this.goToDownloadsB = new System.Windows.Forms.Button(); this.groupSystemTools = new System.Windows.Forms.Panel(); this.cleanerTab = new System.Windows.Forms.TabPage(); this.panel14 = new System.Windows.Forms.Panel(); this.listCleanPreview = new Optimizer.MoonCheckList(); this.panel13 = new System.Windows.Forms.Panel(); this.btnWinClean = new System.Windows.Forms.Button(); this.analyzeDriveB = new System.Windows.Forms.Button(); this.checkSelectAll = new System.Windows.Forms.LinkLabel(); this.lblPretext = new System.Windows.Forms.Label(); this.cleanDriveB = new System.Windows.Forms.Button(); this.lblFootprint = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.bravePasswords = new Optimizer.MoonCheck(); this.braveSession = new Optimizer.MoonCheck(); this.braveHistory = new Optimizer.MoonCheck(); this.braveCookies = new Optimizer.MoonCheck(); this.braveCache = new Optimizer.MoonCheck(); this.label9 = new System.Windows.Forms.Label(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.label8 = new System.Windows.Forms.Label(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.edgeSession = new Optimizer.MoonCheck(); this.edgeHistory = new Optimizer.MoonCheck(); this.edgeCookies = new Optimizer.MoonCheck(); this.edgeCache = new Optimizer.MoonCheck(); this.IECache = new Optimizer.MoonCheck(); this.firefoxHistory = new Optimizer.MoonCheck(); this.firefoxCookies = new Optimizer.MoonCheck(); this.firefoxCache = new Optimizer.MoonCheck(); this.chromePws = new Optimizer.MoonCheck(); this.chromeSession = new Optimizer.MoonCheck(); this.chromeHistory = new Optimizer.MoonCheck(); this.chromeCookies = new Optimizer.MoonCheck(); this.chromeCache = new Optimizer.MoonCheck(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.pictureBox11 = new System.Windows.Forms.PictureBox(); this.pictureBox10 = new System.Windows.Forms.PictureBox(); this.pictureBox9 = new System.Windows.Forms.PictureBox(); this.pictureBox8 = new System.Windows.Forms.PictureBox(); this.checkErrorReports = new Optimizer.MoonCheck(); this.checkTemp = new Optimizer.MoonCheck(); this.checkBin = new Optimizer.MoonCheck(); this.checkMiniDumps = new Optimizer.MoonCheck(); this.pingerTab = new System.Windows.Forms.TabPage(); this.netTools = new Optimizer.MoonTabs(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.btnSetDns = new System.Windows.Forms.Button(); this.txtDns6B = new System.Windows.Forms.TextBox(); this.txtDns6A = new System.Windows.Forms.TextBox(); this.label12 = new System.Windows.Forms.Label(); this.txtDns4B = new System.Windows.Forms.TextBox(); this.txtDns4A = new System.Windows.Forms.TextBox(); this.label10 = new System.Windows.Forms.Label(); this.chkCustomDns = new Optimizer.MoonCheck(); this.chkAllNics = new Optimizer.MoonCheck(); this.dnsTitle = new System.Windows.Forms.Label(); this.linkDNSv6A = new System.Windows.Forms.LinkLabel(); this.linkDNSv4A = new System.Windows.Forms.LinkLabel(); this.linkDNSv6 = new System.Windows.Forms.LinkLabel(); this.linkDNSv4 = new System.Windows.Forms.LinkLabel(); this.label3 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.btnOpenNetwork = new System.Windows.Forms.Button(); this.flushCacheB = new System.Windows.Forms.Button(); this.boxAdapter = new Optimizer.MoonSelect(); this.boxDNS = new Optimizer.MoonSelect(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.btnExport = new System.Windows.Forms.Button(); this.copyB = new System.Windows.Forms.Button(); this.copyIPB = new System.Windows.Forms.Button(); this.panel7 = new System.Windows.Forms.Panel(); this.listPingResults = new Optimizer.MoonList(); this.lblResults = new System.Windows.Forms.Label(); this.btnShodan = new System.Windows.Forms.Button(); this.btnPing = new System.Windows.Forms.Button(); this.txtPingInput = new System.Windows.Forms.TextBox(); this.lblPinger = new System.Windows.Forms.Label(); this.pingerTitle = new System.Windows.Forms.Label(); this.hostsEditorTab = new System.Windows.Forms.TabPage(); this.panel4 = new System.Windows.Forms.Panel(); this.chkIncludeWww = new Optimizer.MoonCheck(); this.linkAdvancedEdit = new System.Windows.Forms.LinkLabel(); this.linkRestoreDefault = new System.Windows.Forms.LinkLabel(); this.lblLock = new System.Windows.Forms.Label(); this.chkReadOnly = new Optimizer.MoonCheck(); this.panelList = new System.Windows.Forms.Panel(); this.listHostEntries = new Optimizer.MoonList(); this.chkBlock = new Optimizer.MoonCheck(); this.refreshHostsB = new System.Windows.Forms.Button(); this.removeHostB = new System.Windows.Forms.Button(); this.removeAllHostsB = new System.Windows.Forms.Button(); this.addHostB = new System.Windows.Forms.Button(); this.txtIP = new System.Windows.Forms.TextBox(); this.txtDomain = new System.Windows.Forms.TextBox(); this.lblDomain = new System.Windows.Forms.Label(); this.lblIP = new System.Windows.Forms.Label(); this.hostsTitle = new System.Windows.Forms.Label(); this.linkLocate = new System.Windows.Forms.LinkLabel(); this.registryFixerTab = new System.Windows.Forms.TabPage(); this.panel2 = new System.Windows.Forms.Panel(); this.regFixB = new System.Windows.Forms.Button(); this.regLbl = new System.Windows.Forms.Label(); this.checkRestartExplorer = new Optimizer.MoonCheck(); this.checkRegistryEditor = new Optimizer.MoonCheck(); this.checkEnableAll = new Optimizer.MoonCheck(); this.checkContextMenu = new Optimizer.MoonCheck(); this.checkTaskManager = new Optimizer.MoonCheck(); this.checkCommandPrompt = new Optimizer.MoonCheck(); this.checkFirewall = new Optimizer.MoonCheck(); this.checkRunDialog = new Optimizer.MoonCheck(); this.checkFolderOptions = new Optimizer.MoonCheck(); this.checkControlPanel = new Optimizer.MoonCheck(); this.registryTitle = new System.Windows.Forms.Label(); this.indiciumTab = new System.Windows.Forms.TabPage(); this.panel12 = new System.Windows.Forms.Panel(); this.specsTree = new Optimizer.MoonTree(); this.indiciumMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.toolHWCopy = new System.Windows.Forms.ToolStripMenuItem(); this.toolHWGoogle = new System.Windows.Forms.ToolStripMenuItem(); this.toolHWDuck = new System.Windows.Forms.ToolStripMenuItem(); this.panel11 = new System.Windows.Forms.Panel(); this.btnCopyHW = new System.Windows.Forms.Button(); this.btnSaveHW = new System.Windows.Forms.Button(); this.hwDetailed = new Optimizer.ToggleCard(); this.integratorTab = new System.Windows.Forms.TabPage(); this.synapse = new Optimizer.MoonTabs(); this.integratorInfoTab = new System.Windows.Forms.TabPage(); this.integrator7 = new System.Windows.Forms.Label(); this.integrator6 = new System.Windows.Forms.Label(); this.integrator5 = new System.Windows.Forms.Label(); this.integrator4 = new System.Windows.Forms.Label(); this.integrator3 = new System.Windows.Forms.Label(); this.integrator2 = new System.Windows.Forms.Label(); this.integrator1 = new System.Windows.Forms.Label(); this.tabPage8 = new System.Windows.Forms.TabPage(); this.btnAddItem = new System.Windows.Forms.Button(); this.itemnamegroup = new System.Windows.Forms.GroupBox(); this.txtItemName = new System.Windows.Forms.TextBox(); this.security = new System.Windows.Forms.GroupBox(); this.checkShift = new Optimizer.MoonCheck(); this.itemposition = new System.Windows.Forms.GroupBox(); this.radioTop = new Optimizer.MoonRadio(); this.radioMiddle = new Optimizer.MoonRadio(); this.radioBottom = new Optimizer.MoonRadio(); this.icontoaddgroup = new System.Windows.Forms.GroupBox(); this.checkDefaultIcon = new Optimizer.MoonCheck(); this.btnBrowseIcon = new System.Windows.Forms.Button(); this.txtIcon = new System.Windows.Forms.TextBox(); this.itemtoaddgroup = new System.Windows.Forms.GroupBox(); this.btnBrowseItem = new System.Windows.Forms.Button(); this.txtItem = new System.Windows.Forms.TextBox(); this.itemtype = new System.Windows.Forms.GroupBox(); this.radioCommand = new Optimizer.MoonRadio(); this.radioProgram = new Optimizer.MoonRadio(); this.radioFolder = new Optimizer.MoonRadio(); this.radioLink = new Optimizer.MoonRadio(); this.radioFile = new Optimizer.MoonRadio(); this.addItemL = new System.Windows.Forms.Label(); this.tabPage9 = new System.Windows.Forms.TabPage(); this.panel5 = new System.Windows.Forms.Panel(); this.listDesktopItems = new Optimizer.MoonList(); this.refreshIIB = new System.Windows.Forms.Button(); this.removeDIB = new System.Windows.Forms.Button(); this.removeAllIIB = new System.Windows.Forms.Button(); this.removeIntegratorItemsL = new System.Windows.Forms.Label(); this.tabPage10 = new System.Windows.Forms.TabPage(); this.WAB = new Optimizer.ToggleCard(); this.AddCMDB = new Optimizer.ToggleCard(); this.AddOwnerB = new Optimizer.ToggleCard(); this.DSB = new Optimizer.ToggleCard(); this.SSB = new Optimizer.ToggleCard(); this.STB = new Optimizer.ToggleCard(); this.PMB = new Optimizer.ToggleCard(); this.readyMenusL = new System.Windows.Forms.Label(); this.tabPage11 = new System.Windows.Forms.TabPage(); this.panel6 = new System.Windows.Forms.Panel(); this.listCustomCommands = new Optimizer.MoonList(); this.removeCCB = new System.Windows.Forms.Button(); this.refreshCCB = new System.Windows.Forms.Button(); this.removeCCL = new System.Windows.Forms.Label(); this.btnCreateCustomCommand = new System.Windows.Forms.Button(); this.button48 = new System.Windows.Forms.Button(); this.txtRunKeyword = new System.Windows.Forms.TextBox(); this.ccKeywordL = new System.Windows.Forms.Label(); this.txtRunFile = new System.Windows.Forms.TextBox(); this.ccFileL = new System.Windows.Forms.Label(); this.ccL = new System.Windows.Forms.Label(); this.tabPage4 = new System.Windows.Forms.TabPage(); this.panel15 = new System.Windows.Forms.Panel(); this.listSystemVariables = new Optimizer.MoonList(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.label21 = new System.Windows.Forms.Label(); this.button3 = new System.Windows.Forms.Button(); this.txtSysVar = new System.Windows.Forms.TextBox(); this.label23 = new System.Windows.Forms.Label(); this.label24 = new System.Windows.Forms.Label(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.lblFontsNumber = new System.Windows.Forms.Label(); this.lblFontsCount = new System.Windows.Forms.Label(); this.txtSearchFonts = new System.Windows.Forms.TextBox(); this.btnRestoreFont = new System.Windows.Forms.Button(); this.btnSetGlobalFont = new System.Windows.Forms.Button(); this.lblCurrentFont = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.btnRefreshFonts = new System.Windows.Forms.Button(); this.panel8 = new System.Windows.Forms.Panel(); this.listFonts = new Optimizer.MoonList(); this.fontSetTitle = new System.Windows.Forms.Label(); this.optionsTab = new System.Windows.Forms.TabPage(); this.linkLabel7 = new System.Windows.Forms.LinkLabel(); this.pictureBox7 = new System.Windows.Forms.PictureBox(); this.btnReinforce = new System.Windows.Forms.Button(); this.linkLabel6 = new System.Windows.Forms.LinkLabel(); this.linkLabel4 = new System.Windows.Forms.LinkLabel(); this.pictureBox6 = new System.Windows.Forms.PictureBox(); this.pictureBox5 = new System.Windows.Forms.PictureBox(); this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.linkLabel3 = new System.Windows.Forms.LinkLabel(); this.pictureBox17 = new System.Windows.Forms.PictureBox(); this.linkLabel2 = new System.Windows.Forms.LinkLabel(); this.pictureBox14 = new System.Windows.Forms.PictureBox(); this.pictureBox13 = new System.Windows.Forms.PictureBox(); this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); this.pictureBox85 = new System.Windows.Forms.PictureBox(); this.panel9 = new System.Windows.Forms.Panel(); this.boxLang = new Optimizer.MoonSelect(); this.picFlag = new System.Windows.Forms.PictureBox(); this.languagesL = new System.Windows.Forms.Label(); this.linkLabel5 = new System.Windows.Forms.LinkLabel(); this.btnOpenConf = new System.Windows.Forms.Button(); this.lblTroubleshoot = new System.Windows.Forms.Label(); this.lblUpdating = new System.Windows.Forms.Label(); this.btnViewLog = new System.Windows.Forms.Button(); this.l2 = new System.Windows.Forms.LinkLabel(); this.btnUpdate = new System.Windows.Forms.Button(); this.btnResetConfig = new System.Windows.Forms.Button(); this.lblTheming = new System.Windows.Forms.Label(); this.autoUpdateToggle = new Optimizer.ToggleCard(); this.autoStartToggle = new Optimizer.ToggleCard(); this.colorPicker1 = new Optimizer.Controls.ColorPicker(); this.quickAccessToggle = new Optimizer.ToggleCard(); this.imagesHw = new System.Windows.Forms.ImageList(this.components); this.defineCommandDialog = new System.Windows.Forms.OpenFileDialog(); this.defineProgramDialog = new System.Windows.Forms.OpenFileDialog(); this.defineFolderDialog = new System.Windows.Forms.FolderBrowserDialog(); this.defineFileDialog = new System.Windows.Forms.OpenFileDialog(); this.DefineProgramIconDialog = new System.Windows.Forms.OpenFileDialog(); this.DefineFolderIconDialog = new System.Windows.Forms.OpenFileDialog(); this.DefineURLIconDialog = new System.Windows.Forms.OpenFileDialog(); this.DefineFileIconDialog = new System.Windows.Forms.OpenFileDialog(); this.DefineCommandIconDialog = new System.Windows.Forms.OpenFileDialog(); this.ExportDialog = new System.Windows.Forms.SaveFileDialog(); this.launcherMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.trayStartup = new System.Windows.Forms.ToolStripMenuItem(); this.trayCleaner = new System.Windows.Forms.ToolStripMenuItem(); this.trayPinger = new System.Windows.Forms.ToolStripMenuItem(); this.trayHosts = new System.Windows.Forms.ToolStripMenuItem(); this.trayAD = new System.Windows.Forms.ToolStripMenuItem(); this.trayHW = new System.Windows.Forms.ToolStripMenuItem(); this.trayRegistry = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.trayOptions = new System.Windows.Forms.ToolStripMenuItem(); this.trayRestartExplorer = new System.Windows.Forms.ToolStripMenuItem(); this.trayUnlocker = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.trayExit = new System.Windows.Forms.ToolStripMenuItem(); this.launcherIcon = new System.Windows.Forms.NotifyIcon(this.components); this.regBackupSw = new Optimizer.ToggleCard(); this.tpanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picRestartNeeded)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.picLab)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.bpanel.SuspendLayout(); this.tabCollection.SuspendLayout(); this.universalTab.SuspendLayout(); this.windows10Tab.SuspendLayout(); this.panelWin11Tweaks.SuspendLayout(); this.advancedTab.SuspendLayout(); this.modernAppsTab.SuspendLayout(); this.startupTab.SuspendLayout(); this.panel3.SuspendLayout(); this.appsTab.SuspendLayout(); this.panel10.SuspendLayout(); this.panelCommonApps.SuspendLayout(); this.cleanerTab.SuspendLayout(); this.panel14.SuspendLayout(); this.panel13.SuspendLayout(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); this.pingerTab.SuspendLayout(); this.netTools.SuspendLayout(); this.tabPage2.SuspendLayout(); this.tabPage1.SuspendLayout(); this.panel7.SuspendLayout(); this.hostsEditorTab.SuspendLayout(); this.panel4.SuspendLayout(); this.panelList.SuspendLayout(); this.registryFixerTab.SuspendLayout(); this.panel2.SuspendLayout(); this.indiciumTab.SuspendLayout(); this.panel12.SuspendLayout(); this.indiciumMenu.SuspendLayout(); this.panel11.SuspendLayout(); this.integratorTab.SuspendLayout(); this.synapse.SuspendLayout(); this.integratorInfoTab.SuspendLayout(); this.tabPage8.SuspendLayout(); this.itemnamegroup.SuspendLayout(); this.security.SuspendLayout(); this.itemposition.SuspendLayout(); this.icontoaddgroup.SuspendLayout(); this.itemtoaddgroup.SuspendLayout(); this.itemtype.SuspendLayout(); this.tabPage9.SuspendLayout(); this.panel5.SuspendLayout(); this.tabPage10.SuspendLayout(); this.tabPage11.SuspendLayout(); this.panel6.SuspendLayout(); this.tabPage4.SuspendLayout(); this.panel15.SuspendLayout(); this.tabPage3.SuspendLayout(); this.panel8.SuspendLayout(); this.optionsTab.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).BeginInit(); this.panel9.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picFlag)).BeginInit(); this.launcherMenu.SuspendLayout(); this.SuspendLayout(); // // tpanel // this.tpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tpanel.Controls.Add(this.restartAndApply); this.tpanel.Controls.Add(this.picRestartNeeded); this.tpanel.Controls.Add(this.picLab); this.tpanel.Controls.Add(this.picUpdate); this.tpanel.Controls.Add(this.txtNetFw); this.tpanel.Controls.Add(this.txtBitness); this.tpanel.Controls.Add(this.txtOS); this.tpanel.Controls.Add(this.txtVersion); this.tpanel.Controls.Add(this.pictureBox1); this.tpanel.Controls.Add(this.label2); this.tpanel.Dock = System.Windows.Forms.DockStyle.Top; this.tpanel.Location = new System.Drawing.Point(0, 0); this.tpanel.Margin = new System.Windows.Forms.Padding(2); this.tpanel.Name = "tpanel"; this.tpanel.Size = new System.Drawing.Size(1604, 80); this.tpanel.TabIndex = 1; // // restartAndApply // this.restartAndApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.restartAndApply.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.restartAndApply.ForeColor = System.Drawing.Color.White; this.restartAndApply.Location = new System.Drawing.Point(1052, 15); this.restartAndApply.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.restartAndApply.Name = "restartAndApply"; this.restartAndApply.Size = new System.Drawing.Size(492, 31); this.restartAndApply.TabIndex = 74; this.restartAndApply.Tag = "themeable"; this.restartAndApply.Text = "Restart needed"; this.restartAndApply.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.restartAndApply.Visible = false; this.restartAndApply.Click += new System.EventHandler(this.restartAndApply_Click); this.restartAndApply.MouseEnter += new System.EventHandler(this.restartAndApply_MouseEnter); this.restartAndApply.MouseLeave += new System.EventHandler(this.restartAndApply_MouseLeave); this.restartAndApply.MouseHover += new System.EventHandler(this.restartAndApply_MouseHover); // // picRestartNeeded // this.picRestartNeeded.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.picRestartNeeded.Image = ((System.Drawing.Image)(resources.GetObject("picRestartNeeded.Image"))); this.picRestartNeeded.Location = new System.Drawing.Point(1551, 14); this.picRestartNeeded.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.picRestartNeeded.Name = "picRestartNeeded"; this.picRestartNeeded.Size = new System.Drawing.Size(38, 38); this.picRestartNeeded.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picRestartNeeded.TabIndex = 73; this.picRestartNeeded.TabStop = false; this.picRestartNeeded.Visible = false; this.picRestartNeeded.Click += new System.EventHandler(this.picRestartNeeded_Click); // // picLab // this.picLab.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.picLab.Image = ((System.Drawing.Image)(resources.GetObject("picLab.Image"))); this.picLab.Location = new System.Drawing.Point(1551, 14); this.picLab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.picLab.Name = "picLab"; this.picLab.Size = new System.Drawing.Size(38, 38); this.picLab.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picLab.TabIndex = 72; this.picLab.TabStop = false; this.picLab.Visible = false; this.picLab.Click += new System.EventHandler(this.picLab_Click); // // picUpdate // this.picUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.picUpdate.Cursor = System.Windows.Forms.Cursors.Hand; this.picUpdate.Image = ((System.Drawing.Image)(resources.GetObject("picUpdate.Image"))); this.picUpdate.Location = new System.Drawing.Point(1551, 14); this.picUpdate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.picUpdate.Name = "picUpdate"; this.picUpdate.Size = new System.Drawing.Size(38, 38); this.picUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picUpdate.TabIndex = 71; this.picUpdate.TabStop = false; this.picUpdate.Visible = false; this.picUpdate.Click += new System.EventHandler(this.picUpdate_Click); // // txtNetFw // this.txtNetFw.AutoSize = true; this.txtNetFw.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtNetFw.ForeColor = System.Drawing.Color.Silver; this.txtNetFw.Location = new System.Drawing.Point(235, 52); this.txtNetFw.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtNetFw.Name = "txtNetFw"; this.txtNetFw.Size = new System.Drawing.Size(52, 21); this.txtNetFw.TabIndex = 70; this.txtNetFw.Text = "netfw"; // // txtBitness // this.txtBitness.AutoSize = true; this.txtBitness.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtBitness.ForeColor = System.Drawing.Color.Silver; this.txtBitness.Location = new System.Drawing.Point(235, 29); this.txtBitness.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtBitness.Name = "txtBitness"; this.txtBitness.Size = new System.Drawing.Size(62, 21); this.txtBitness.TabIndex = 4; this.txtBitness.Text = "bitness"; // // txtOS // this.txtOS.AutoSize = true; this.txtOS.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtOS.ForeColor = System.Drawing.Color.Silver; this.txtOS.Location = new System.Drawing.Point(235, 4); this.txtOS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtOS.Name = "txtOS"; this.txtOS.Size = new System.Drawing.Size(27, 21); this.txtOS.TabIndex = 3; this.txtOS.Text = "os"; // // txtVersion // this.txtVersion.AutoSize = true; this.txtVersion.Font = new System.Drawing.Font("Segoe UI Semibold", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtVersion.ForeColor = System.Drawing.Color.Silver; this.txtVersion.Location = new System.Drawing.Point(88, 45); this.txtVersion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtVersion.Name = "txtVersion"; this.txtVersion.Size = new System.Drawing.Size(104, 21); this.txtVersion.TabIndex = 1; this.txtVersion.Text = "Version: {VN}"; // // pictureBox1 // this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Default; this.pictureBox1.Image = global::Optimizer.Properties.Resources.logo; this.pictureBox1.Location = new System.Drawing.Point(12, 12); this.pictureBox1.Margin = new System.Windows.Forms.Padding(2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(55, 55); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 1; this.pictureBox1.TabStop = false; this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.ForeColor = System.Drawing.Color.White; this.label2.Location = new System.Drawing.Point(84, 9); this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(121, 32); this.label2.TabIndex = 2; this.label2.Text = "Optimizer"; // // bpanel // this.bpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.bpanel.Controls.Add(this.tabCollection); this.bpanel.Dock = System.Windows.Forms.DockStyle.Fill; this.bpanel.Location = new System.Drawing.Point(0, 80); this.bpanel.Margin = new System.Windows.Forms.Padding(2); this.bpanel.Name = "bpanel"; this.bpanel.Size = new System.Drawing.Size(1604, 882); this.bpanel.TabIndex = 2; // // tabCollection // this.tabCollection.Controls.Add(this.universalTab); this.tabCollection.Controls.Add(this.windows10Tab); this.tabCollection.Controls.Add(this.advancedTab); this.tabCollection.Controls.Add(this.modernAppsTab); this.tabCollection.Controls.Add(this.startupTab); this.tabCollection.Controls.Add(this.appsTab); this.tabCollection.Controls.Add(this.cleanerTab); this.tabCollection.Controls.Add(this.pingerTab); this.tabCollection.Controls.Add(this.hostsEditorTab); this.tabCollection.Controls.Add(this.registryFixerTab); this.tabCollection.Controls.Add(this.indiciumTab); this.tabCollection.Controls.Add(this.integratorTab); this.tabCollection.Controls.Add(this.optionsTab); this.tabCollection.Dock = System.Windows.Forms.DockStyle.Fill; this.tabCollection.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabCollection.Location = new System.Drawing.Point(0, 0); this.tabCollection.Margin = new System.Windows.Forms.Padding(0); this.tabCollection.Name = "tabCollection"; this.tabCollection.Padding = new System.Drawing.Point(0, 0); this.tabCollection.SelectedIndex = 0; this.tabCollection.Size = new System.Drawing.Size(1602, 880); this.tabCollection.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.tabCollection.TabIndex = 0; this.tabCollection.SelectedIndexChanged += new System.EventHandler(this.aio_SelectedIndexChanged); // // universalTab // this.universalTab.AutoScroll = true; this.universalTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.universalTab.Controls.Add(this.enableUtcSw); this.universalTab.Controls.Add(this.noMenuDelaySw); this.universalTab.Controls.Add(this.allTrayIconsSw); this.universalTab.Controls.Add(this.disableOneDriveSw); this.universalTab.Controls.Add(this.winSearchSw); this.universalTab.Controls.Add(this.label13); this.universalTab.Controls.Add(this.label4a); this.universalTab.Controls.Add(this.drives); this.universalTab.Controls.Add(this.label14s); this.universalTab.Controls.Add(this.nvidiaTelemetrySw); this.universalTab.Controls.Add(this.ntfsStampSw); this.universalTab.Controls.Add(this.smb2Sw); this.universalTab.Controls.Add(this.smb1Sw); this.universalTab.Controls.Add(this.hibernateSw); this.universalTab.Controls.Add(this.chromeTelemetrySw); this.universalTab.Controls.Add(this.ffTelemetrySw); this.universalTab.Controls.Add(this.vsSw); this.universalTab.Controls.Add(this.reportingSw); this.universalTab.Controls.Add(this.systemRestoreSw); this.universalTab.Controls.Add(this.officeTelemetrySw); this.universalTab.Controls.Add(this.smartScreenSw); this.universalTab.Controls.Add(this.networkSw); this.universalTab.Controls.Add(this.telemetryTasksSw); this.universalTab.Controls.Add(this.defenderSw); this.universalTab.Controls.Add(this.homegroupSw); this.universalTab.Controls.Add(this.stickySw); this.universalTab.Controls.Add(this.compatSw); this.universalTab.Controls.Add(this.mediaSharingSw); this.universalTab.Controls.Add(this.printSw); this.universalTab.Controls.Add(this.superfetchSw); this.universalTab.Controls.Add(this.faxSw); this.universalTab.Controls.Add(this.performanceSw); this.universalTab.Location = new System.Drawing.Point(4, 32); this.universalTab.Margin = new System.Windows.Forms.Padding(2); this.universalTab.Name = "universalTab"; this.universalTab.Padding = new System.Windows.Forms.Padding(2); this.universalTab.Size = new System.Drawing.Size(1594, 844); this.universalTab.TabIndex = 0; this.universalTab.Text = "General"; // // enableUtcSw // this.enableUtcSw.AccessibleName = "Enable UTC Time"; this.enableUtcSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.enableUtcSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.enableUtcSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.enableUtcSw.ForeColor = System.Drawing.Color.White; this.enableUtcSw.LabelText = "Enable UTC Time"; this.enableUtcSw.Location = new System.Drawing.Point(26, 429); this.enableUtcSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.enableUtcSw.Name = "enableUtcSw"; this.enableUtcSw.Size = new System.Drawing.Size(518, 30); this.enableUtcSw.TabIndex = 235; this.enableUtcSw.Tag = "themeable"; this.enableUtcSw.ToggleChecked = false; // // noMenuDelaySw // this.noMenuDelaySw.AccessibleName = "Remove menus delay"; this.noMenuDelaySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.noMenuDelaySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.noMenuDelaySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.noMenuDelaySw.ForeColor = System.Drawing.Color.White; this.noMenuDelaySw.LabelText = "Remove menus delay"; this.noMenuDelaySw.Location = new System.Drawing.Point(26, 125); this.noMenuDelaySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.noMenuDelaySw.Name = "noMenuDelaySw"; this.noMenuDelaySw.Size = new System.Drawing.Size(518, 30); this.noMenuDelaySw.TabIndex = 234; this.noMenuDelaySw.Tag = "themeable"; this.noMenuDelaySw.ToggleChecked = false; // // allTrayIconsSw // this.allTrayIconsSw.AccessibleName = "Show all notification icons"; this.allTrayIconsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.allTrayIconsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.allTrayIconsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.allTrayIconsSw.ForeColor = System.Drawing.Color.White; this.allTrayIconsSw.LabelText = "Show all notification icons"; this.allTrayIconsSw.Location = new System.Drawing.Point(28, 88); this.allTrayIconsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.allTrayIconsSw.Name = "allTrayIconsSw"; this.allTrayIconsSw.Size = new System.Drawing.Size(518, 30); this.allTrayIconsSw.TabIndex = 233; this.allTrayIconsSw.Tag = "themeable"; this.allTrayIconsSw.ToggleChecked = false; // // disableOneDriveSw // this.disableOneDriveSw.AccessibleName = "Disable OneDrive"; this.disableOneDriveSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.disableOneDriveSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.disableOneDriveSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.disableOneDriveSw.ForeColor = System.Drawing.Color.White; this.disableOneDriveSw.LabelText = "Disable OneDrive"; this.disableOneDriveSw.Location = new System.Drawing.Point(576, 469); this.disableOneDriveSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.disableOneDriveSw.Name = "disableOneDriveSw"; this.disableOneDriveSw.Size = new System.Drawing.Size(625, 30); this.disableOneDriveSw.TabIndex = 232; this.disableOneDriveSw.Tag = "themeable"; this.disableOneDriveSw.ToggleChecked = false; // // winSearchSw // this.winSearchSw.AccessibleName = "Disable Search"; this.winSearchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.winSearchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.winSearchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.winSearchSw.ForeColor = System.Drawing.Color.White; this.winSearchSw.LabelText = "Disable Search"; this.winSearchSw.Location = new System.Drawing.Point(28, 702); this.winSearchSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.winSearchSw.Name = "winSearchSw"; this.winSearchSw.Size = new System.Drawing.Size(518, 30); this.winSearchSw.TabIndex = 229; this.winSearchSw.Tag = "themeable"; this.winSearchSw.ToggleChecked = false; // // label13 // this.label13.AutoSize = true; this.label13.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label13.ForeColor = System.Drawing.Color.Silver; this.label13.Location = new System.Drawing.Point(571, 242); this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(65, 23); this.label13.TabIndex = 228; this.label13.Tag = ""; this.label13.Text = "Privacy"; // // label4a // this.label4a.AutoSize = true; this.label4a.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4a.ForeColor = System.Drawing.Color.Silver; this.label4a.Location = new System.Drawing.Point(571, 14); this.label4a.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4a.Name = "label4a"; this.label4a.Size = new System.Drawing.Size(48, 23); this.label4a.TabIndex = 227; this.label4a.Tag = ""; this.label4a.Text = "Apps"; // // drives // this.drives.AutoSize = true; this.drives.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.drives.ForeColor = System.Drawing.Color.Silver; this.drives.Location = new System.Drawing.Point(22, 514); this.drives.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.drives.Name = "drives"; this.drives.Size = new System.Drawing.Size(49, 23); this.drives.TabIndex = 226; this.drives.Tag = ""; this.drives.Text = "Disks"; // // label14s // this.label14s.AutoSize = true; this.label14s.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label14s.ForeColor = System.Drawing.Color.Silver; this.label14s.Location = new System.Drawing.Point(21, 14); this.label14s.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label14s.Name = "label14s"; this.label14s.Size = new System.Drawing.Size(65, 23); this.label14s.TabIndex = 225; this.label14s.Tag = ""; this.label14s.Text = "System"; // // nvidiaTelemetrySw // this.nvidiaTelemetrySw.AccessibleName = "Disable NVIDIA Telemetry"; this.nvidiaTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.nvidiaTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.nvidiaTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.nvidiaTelemetrySw.ForeColor = System.Drawing.Color.White; this.nvidiaTelemetrySw.LabelText = "Disable NVIDIA Telemetry"; this.nvidiaTelemetrySw.Location = new System.Drawing.Point(576, 162); this.nvidiaTelemetrySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.nvidiaTelemetrySw.Name = "nvidiaTelemetrySw"; this.nvidiaTelemetrySw.Size = new System.Drawing.Size(612, 30); this.nvidiaTelemetrySw.TabIndex = 224; this.nvidiaTelemetrySw.Tag = "themeable"; this.nvidiaTelemetrySw.ToggleChecked = false; // // ntfsStampSw // this.ntfsStampSw.AccessibleName = "Disable NTFS Timestamp"; this.ntfsStampSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.ntfsStampSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ntfsStampSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ntfsStampSw.ForeColor = System.Drawing.Color.White; this.ntfsStampSw.LabelText = "Disable NTFS Timestamp"; this.ntfsStampSw.Location = new System.Drawing.Point(26, 665); this.ntfsStampSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.ntfsStampSw.Name = "ntfsStampSw"; this.ntfsStampSw.Size = new System.Drawing.Size(518, 30); this.ntfsStampSw.TabIndex = 223; this.ntfsStampSw.Tag = "themeable"; this.ntfsStampSw.ToggleChecked = false; // // smb2Sw // this.smb2Sw.AccessibleName = "Disable SMBv2 Protocol"; this.smb2Sw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.smb2Sw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.smb2Sw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.smb2Sw.ForeColor = System.Drawing.Color.White; this.smb2Sw.LabelText = "Disable SMBv2 Protocol"; this.smb2Sw.Location = new System.Drawing.Point(576, 430); this.smb2Sw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.smb2Sw.Name = "smb2Sw"; this.smb2Sw.Size = new System.Drawing.Size(518, 30); this.smb2Sw.TabIndex = 222; this.smb2Sw.Tag = "themeable"; this.smb2Sw.ToggleChecked = false; // // smb1Sw // this.smb1Sw.AccessibleName = "Disable SMBv1 Protocol"; this.smb1Sw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.smb1Sw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.smb1Sw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.smb1Sw.ForeColor = System.Drawing.Color.White; this.smb1Sw.LabelText = "Disable SMBv1 Protocol"; this.smb1Sw.Location = new System.Drawing.Point(576, 392); this.smb1Sw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.smb1Sw.Name = "smb1Sw"; this.smb1Sw.Size = new System.Drawing.Size(518, 30); this.smb1Sw.TabIndex = 221; this.smb1Sw.Tag = "themeable"; this.smb1Sw.ToggleChecked = false; // // hibernateSw // this.hibernateSw.AccessibleName = "Disable Hibernation"; this.hibernateSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.hibernateSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hibernateSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hibernateSw.ForeColor = System.Drawing.Color.White; this.hibernateSw.LabelText = "Disable Hibernation"; this.hibernateSw.Location = new System.Drawing.Point(26, 628); this.hibernateSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.hibernateSw.Name = "hibernateSw"; this.hibernateSw.Size = new System.Drawing.Size(518, 30); this.hibernateSw.TabIndex = 220; this.hibernateSw.Tag = "themeable"; this.hibernateSw.ToggleChecked = false; // // chromeTelemetrySw // this.chromeTelemetrySw.AccessibleName = "Disable Google Chrome Telemetry"; this.chromeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.chromeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.chromeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromeTelemetrySw.ForeColor = System.Drawing.Color.White; this.chromeTelemetrySw.LabelText = "Disable Google Chrome Telemetry"; this.chromeTelemetrySw.Location = new System.Drawing.Point(576, 125); this.chromeTelemetrySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.chromeTelemetrySw.Name = "chromeTelemetrySw"; this.chromeTelemetrySw.Size = new System.Drawing.Size(612, 30); this.chromeTelemetrySw.TabIndex = 219; this.chromeTelemetrySw.Tag = "themeable"; this.chromeTelemetrySw.ToggleChecked = false; // // ffTelemetrySw // this.ffTelemetrySw.AccessibleName = "Disable Mozilla Firefox Telemetry"; this.ffTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.ffTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ffTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ffTelemetrySw.ForeColor = System.Drawing.Color.White; this.ffTelemetrySw.LabelText = "Disable Mozilla Firefox Telemetry"; this.ffTelemetrySw.Location = new System.Drawing.Point(576, 88); this.ffTelemetrySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.ffTelemetrySw.Name = "ffTelemetrySw"; this.ffTelemetrySw.Size = new System.Drawing.Size(612, 30); this.ffTelemetrySw.TabIndex = 218; this.ffTelemetrySw.Tag = "themeable"; this.ffTelemetrySw.ToggleChecked = false; // // vsSw // this.vsSw.AccessibleName = "Disable Visual Studio Telemetry"; this.vsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.vsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.vsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.vsSw.ForeColor = System.Drawing.Color.White; this.vsSw.LabelText = "Disable Visual Studio Telemetry"; this.vsSw.Location = new System.Drawing.Point(576, 200); this.vsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.vsSw.Name = "vsSw"; this.vsSw.Size = new System.Drawing.Size(612, 30); this.vsSw.TabIndex = 217; this.vsSw.Tag = "themeable"; this.vsSw.ToggleChecked = false; // // reportingSw // this.reportingSw.AccessibleName = "Disable Error Reporting"; this.reportingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.reportingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.reportingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.reportingSw.ForeColor = System.Drawing.Color.White; this.reportingSw.LabelText = "Disable Error Reporting"; this.reportingSw.Location = new System.Drawing.Point(26, 201); this.reportingSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.reportingSw.Name = "reportingSw"; this.reportingSw.Size = new System.Drawing.Size(518, 30); this.reportingSw.TabIndex = 216; this.reportingSw.Tag = "themeable"; this.reportingSw.ToggleChecked = false; // // systemRestoreSw // this.systemRestoreSw.AccessibleName = "Disable System Restore"; this.systemRestoreSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.systemRestoreSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.systemRestoreSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.systemRestoreSw.ForeColor = System.Drawing.Color.White; this.systemRestoreSw.LabelText = "Disable System Restore"; this.systemRestoreSw.Location = new System.Drawing.Point(26, 552); this.systemRestoreSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.systemRestoreSw.Name = "systemRestoreSw"; this.systemRestoreSw.Size = new System.Drawing.Size(518, 30); this.systemRestoreSw.TabIndex = 215; this.systemRestoreSw.Tag = "themeable"; this.systemRestoreSw.ToggleChecked = false; // // officeTelemetrySw // this.officeTelemetrySw.AccessibleName = "Disable Office 2016 Telemetry"; this.officeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.officeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.officeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.officeTelemetrySw.ForeColor = System.Drawing.Color.White; this.officeTelemetrySw.LabelText = "Disable Office 2016 Telemetry"; this.officeTelemetrySw.Location = new System.Drawing.Point(575, 50); this.officeTelemetrySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.officeTelemetrySw.Name = "officeTelemetrySw"; this.officeTelemetrySw.Size = new System.Drawing.Size(612, 30); this.officeTelemetrySw.TabIndex = 214; this.officeTelemetrySw.Tag = "themeable"; this.officeTelemetrySw.ToggleChecked = false; // // smartScreenSw // this.smartScreenSw.AccessibleName = "Disable SmartScreen"; this.smartScreenSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.smartScreenSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.smartScreenSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.smartScreenSw.ForeColor = System.Drawing.Color.White; this.smartScreenSw.LabelText = "Disable SmartScreen"; this.smartScreenSw.Location = new System.Drawing.Point(26, 389); this.smartScreenSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.smartScreenSw.Name = "smartScreenSw"; this.smartScreenSw.Size = new System.Drawing.Size(518, 30); this.smartScreenSw.TabIndex = 213; this.smartScreenSw.Tag = "themeable"; this.smartScreenSw.ToggleChecked = false; // // networkSw // this.networkSw.AccessibleName = "Disable Network Throttling"; this.networkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.networkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.networkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.networkSw.ForeColor = System.Drawing.Color.White; this.networkSw.LabelText = "Disable Network Throttling"; this.networkSw.Location = new System.Drawing.Point(26, 164); this.networkSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.networkSw.Name = "networkSw"; this.networkSw.Size = new System.Drawing.Size(518, 30); this.networkSw.TabIndex = 212; this.networkSw.Tag = "themeable"; this.networkSw.ToggleChecked = false; // // telemetryTasksSw // this.telemetryTasksSw.AccessibleName = "Disable Telemetry Tasks"; this.telemetryTasksSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.telemetryTasksSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.telemetryTasksSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.telemetryTasksSw.ForeColor = System.Drawing.Color.White; this.telemetryTasksSw.LabelText = "Disable Telemetry Tasks"; this.telemetryTasksSw.Location = new System.Drawing.Point(576, 280); this.telemetryTasksSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.telemetryTasksSw.Name = "telemetryTasksSw"; this.telemetryTasksSw.Size = new System.Drawing.Size(518, 30); this.telemetryTasksSw.TabIndex = 211; this.telemetryTasksSw.Tag = "themeable"; this.telemetryTasksSw.ToggleChecked = false; // // defenderSw // this.defenderSw.AccessibleName = "Disable Windows Defender"; this.defenderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.defenderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.defenderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.defenderSw.ForeColor = System.Drawing.Color.White; this.defenderSw.LabelText = "Disable Windows Defender"; this.defenderSw.Location = new System.Drawing.Point(28, 469); this.defenderSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.defenderSw.Name = "defenderSw"; this.defenderSw.Size = new System.Drawing.Size(518, 30); this.defenderSw.TabIndex = 210; this.defenderSw.Tag = "themeable"; this.defenderSw.ToggleChecked = false; // // homegroupSw // this.homegroupSw.AccessibleName = "Disable HomeGroup"; this.homegroupSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.homegroupSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.homegroupSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.homegroupSw.ForeColor = System.Drawing.Color.White; this.homegroupSw.LabelText = "Disable HomeGroup"; this.homegroupSw.Location = new System.Drawing.Point(576, 355); this.homegroupSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.homegroupSw.Name = "homegroupSw"; this.homegroupSw.Size = new System.Drawing.Size(518, 30); this.homegroupSw.TabIndex = 209; this.homegroupSw.Tag = "themeable"; this.homegroupSw.ToggleChecked = false; // // stickySw // this.stickySw.AccessibleName = "Disable Sticky Keys"; this.stickySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.stickySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.stickySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.stickySw.ForeColor = System.Drawing.Color.White; this.stickySw.LabelText = "Disable Sticky Keys"; this.stickySw.Location = new System.Drawing.Point(26, 351); this.stickySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.stickySw.Name = "stickySw"; this.stickySw.Size = new System.Drawing.Size(518, 30); this.stickySw.TabIndex = 208; this.stickySw.Tag = "themeable"; this.stickySw.ToggleChecked = false; // // compatSw // this.compatSw.AccessibleName = "Disable Compatibility Assistant"; this.compatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.compatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.compatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.compatSw.ForeColor = System.Drawing.Color.White; this.compatSw.LabelText = "Disable Compatibility Assistant"; this.compatSw.Location = new System.Drawing.Point(26, 239); this.compatSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.compatSw.Name = "compatSw"; this.compatSw.Size = new System.Drawing.Size(518, 30); this.compatSw.TabIndex = 207; this.compatSw.Tag = "themeable"; this.compatSw.ToggleChecked = false; // // mediaSharingSw // this.mediaSharingSw.AccessibleName = "Disable Media Player Sharing"; this.mediaSharingSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.mediaSharingSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.mediaSharingSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.mediaSharingSw.ForeColor = System.Drawing.Color.White; this.mediaSharingSw.LabelText = "Disable Media Player Sharing"; this.mediaSharingSw.Location = new System.Drawing.Point(576, 318); this.mediaSharingSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.mediaSharingSw.Name = "mediaSharingSw"; this.mediaSharingSw.Size = new System.Drawing.Size(518, 30); this.mediaSharingSw.TabIndex = 206; this.mediaSharingSw.Tag = "themeable"; this.mediaSharingSw.ToggleChecked = false; // // printSw // this.printSw.AccessibleName = "Disable Print Service"; this.printSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.printSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.printSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.printSw.ForeColor = System.Drawing.Color.White; this.printSw.LabelText = "Disable Print Service"; this.printSw.Location = new System.Drawing.Point(26, 276); this.printSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.printSw.Name = "printSw"; this.printSw.Size = new System.Drawing.Size(518, 30); this.printSw.TabIndex = 205; this.printSw.Tag = "themeable"; this.printSw.ToggleChecked = false; // // superfetchSw // this.superfetchSw.AccessibleName = "Disable Superfetch"; this.superfetchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.superfetchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.superfetchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.superfetchSw.ForeColor = System.Drawing.Color.White; this.superfetchSw.LabelText = "Disable Superfetch"; this.superfetchSw.Location = new System.Drawing.Point(26, 590); this.superfetchSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.superfetchSw.Name = "superfetchSw"; this.superfetchSw.Size = new System.Drawing.Size(518, 30); this.superfetchSw.TabIndex = 204; this.superfetchSw.Tag = "themeable"; this.superfetchSw.ToggleChecked = false; // // faxSw // this.faxSw.AccessibleName = "Disable Fax Service"; this.faxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.faxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.faxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.faxSw.ForeColor = System.Drawing.Color.White; this.faxSw.LabelText = "Disable Fax Service"; this.faxSw.Location = new System.Drawing.Point(26, 314); this.faxSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.faxSw.Name = "faxSw"; this.faxSw.Size = new System.Drawing.Size(518, 30); this.faxSw.TabIndex = 203; this.faxSw.Tag = "themeable"; this.faxSw.ToggleChecked = false; // // performanceSw // this.performanceSw.AccessibleName = "Enable Performance Tweaks"; this.performanceSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.performanceSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.performanceSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.performanceSw.ForeColor = System.Drawing.Color.White; this.performanceSw.LabelText = "Enable Performance Tweaks"; this.performanceSw.Location = new System.Drawing.Point(26, 50); this.performanceSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.performanceSw.Name = "performanceSw"; this.performanceSw.Size = new System.Drawing.Size(518, 30); this.performanceSw.TabIndex = 202; this.performanceSw.Tag = "themeable"; this.performanceSw.ToggleChecked = false; // // windows10Tab // this.windows10Tab.AutoScroll = true; this.windows10Tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.windows10Tab.Controls.Add(this.modernStandbySw); this.windows10Tab.Controls.Add(this.newsInterestsSw); this.windows10Tab.Controls.Add(this.hideSearchSw); this.windows10Tab.Controls.Add(this.hideWeatherSw); this.windows10Tab.Controls.Add(this.classicPhotoViewerSw); this.windows10Tab.Controls.Add(this.edgeAiSw); this.windows10Tab.Controls.Add(this.edgeTelemetrySw); this.windows10Tab.Controls.Add(this.label18); this.windows10Tab.Controls.Add(this.label17); this.windows10Tab.Controls.Add(this.label16); this.windows10Tab.Controls.Add(this.label15); this.windows10Tab.Controls.Add(this.label14); this.windows10Tab.Controls.Add(this.panelWin11Tweaks); this.windows10Tab.Controls.Add(this.vbsSw); this.windows10Tab.Controls.Add(this.gameModeSw); this.windows10Tab.Controls.Add(this.storeUpdatesSw); this.windows10Tab.Controls.Add(this.oldMixerSw); this.windows10Tab.Controls.Add(this.insiderSw); this.windows10Tab.Controls.Add(this.castSw); this.windows10Tab.Controls.Add(this.gameBarSw); this.windows10Tab.Controls.Add(this.sensorSw); this.windows10Tab.Controls.Add(this.ccSw); this.windows10Tab.Controls.Add(this.cortanaSw); this.windows10Tab.Controls.Add(this.privacySw); this.windows10Tab.Controls.Add(this.driversSw); this.windows10Tab.Controls.Add(this.telemetryServicesSw); this.windows10Tab.Controls.Add(this.autoUpdatesSw); this.windows10Tab.Controls.Add(this.tpmSw); this.windows10Tab.Controls.Add(this.xboxSw); this.windows10Tab.Controls.Add(this.inkSw); this.windows10Tab.Controls.Add(this.spellSw); this.windows10Tab.Controls.Add(this.longPathsSw); this.windows10Tab.Controls.Add(this.peopleSw); this.windows10Tab.Controls.Add(this.oldExplorerSw); this.windows10Tab.Controls.Add(this.adsSw); this.windows10Tab.Location = new System.Drawing.Point(4, 32); this.windows10Tab.Margin = new System.Windows.Forms.Padding(2); this.windows10Tab.Name = "windows10Tab"; this.windows10Tab.Padding = new System.Windows.Forms.Padding(2); this.windows10Tab.Size = new System.Drawing.Size(1593, 844); this.windows10Tab.TabIndex = 1; this.windows10Tab.Text = "Windows 10"; // // modernStandbySw // this.modernStandbySw.AccessibleName = "Disable Modern Standby"; this.modernStandbySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.modernStandbySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.modernStandbySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.modernStandbySw.ForeColor = System.Drawing.Color.White; this.modernStandbySw.LabelText = "Disable Modern Standby"; this.modernStandbySw.Location = new System.Drawing.Point(25, 428); this.modernStandbySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.modernStandbySw.Name = "modernStandbySw"; this.modernStandbySw.Size = new System.Drawing.Size(518, 30); this.modernStandbySw.TabIndex = 238; this.modernStandbySw.Tag = "themeable"; this.modernStandbySw.ToggleChecked = false; // // newsInterestsSw // this.newsInterestsSw.AccessibleName = "Disable News && Interests"; this.newsInterestsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.newsInterestsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.newsInterestsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.newsInterestsSw.ForeColor = System.Drawing.Color.White; this.newsInterestsSw.LabelText = "Disable News && Interests"; this.newsInterestsSw.Location = new System.Drawing.Point(579, 165); this.newsInterestsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.newsInterestsSw.Name = "newsInterestsSw"; this.newsInterestsSw.Size = new System.Drawing.Size(518, 30); this.newsInterestsSw.TabIndex = 237; this.newsInterestsSw.Tag = "themeable"; this.newsInterestsSw.ToggleChecked = false; // // hideSearchSw // this.hideSearchSw.AccessibleName = "Hide Taskbar Search"; this.hideSearchSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.hideSearchSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hideSearchSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hideSearchSw.ForeColor = System.Drawing.Color.White; this.hideSearchSw.LabelText = "Hide Taskbar Search"; this.hideSearchSw.Location = new System.Drawing.Point(25, 125); this.hideSearchSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.hideSearchSw.Name = "hideSearchSw"; this.hideSearchSw.Size = new System.Drawing.Size(518, 30); this.hideSearchSw.TabIndex = 236; this.hideSearchSw.Tag = "themeable"; this.hideSearchSw.ToggleChecked = false; // // hideWeatherSw // this.hideWeatherSw.AccessibleName = "Hide Taskbar Weather"; this.hideWeatherSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.hideWeatherSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hideWeatherSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hideWeatherSw.ForeColor = System.Drawing.Color.White; this.hideWeatherSw.LabelText = "Hide Taskbar Weather"; this.hideWeatherSw.Location = new System.Drawing.Point(25, 88); this.hideWeatherSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.hideWeatherSw.Name = "hideWeatherSw"; this.hideWeatherSw.Size = new System.Drawing.Size(518, 30); this.hideWeatherSw.TabIndex = 235; this.hideWeatherSw.Tag = "themeable"; this.hideWeatherSw.ToggleChecked = false; // // classicPhotoViewerSw // this.classicPhotoViewerSw.AccessibleName = "Restore Classic Photo Viewer"; this.classicPhotoViewerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.classicPhotoViewerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.classicPhotoViewerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.classicPhotoViewerSw.ForeColor = System.Drawing.Color.White; this.classicPhotoViewerSw.LabelText = "Restore Classic Photo Viewer"; this.classicPhotoViewerSw.Location = new System.Drawing.Point(25, 390); this.classicPhotoViewerSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.classicPhotoViewerSw.Name = "classicPhotoViewerSw"; this.classicPhotoViewerSw.Size = new System.Drawing.Size(518, 30); this.classicPhotoViewerSw.TabIndex = 180; this.classicPhotoViewerSw.Tag = "themeable"; this.classicPhotoViewerSw.ToggleChecked = false; // // edgeAiSw // this.edgeAiSw.AccessibleName = "Disable Edge Discover"; this.edgeAiSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.edgeAiSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.edgeAiSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeAiSw.ForeColor = System.Drawing.Color.White; this.edgeAiSw.LabelText = "Disable Edge Discover"; this.edgeAiSw.Location = new System.Drawing.Point(580, 281); this.edgeAiSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.edgeAiSw.Name = "edgeAiSw"; this.edgeAiSw.Size = new System.Drawing.Size(518, 30); this.edgeAiSw.TabIndex = 179; this.edgeAiSw.Tag = "themeable"; this.edgeAiSw.ToggleChecked = false; // // edgeTelemetrySw // this.edgeTelemetrySw.AccessibleName = "Disable Edge Telemetry"; this.edgeTelemetrySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.edgeTelemetrySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.edgeTelemetrySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeTelemetrySw.ForeColor = System.Drawing.Color.White; this.edgeTelemetrySw.LabelText = "Disable Edge Telemetry"; this.edgeTelemetrySw.Location = new System.Drawing.Point(580, 244); this.edgeTelemetrySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.edgeTelemetrySw.Name = "edgeTelemetrySw"; this.edgeTelemetrySw.Size = new System.Drawing.Size(518, 30); this.edgeTelemetrySw.TabIndex = 177; this.edgeTelemetrySw.Tag = "themeable"; this.edgeTelemetrySw.ToggleChecked = false; // // label18 // this.label18.AutoSize = true; this.label18.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label18.ForeColor = System.Drawing.Color.Silver; this.label18.Location = new System.Drawing.Point(576, 465); this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(55, 23); this.label18.TabIndex = 176; this.label18.Tag = ""; this.label18.Text = "Touch"; // // label17 // this.label17.AutoSize = true; this.label17.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label17.ForeColor = System.Drawing.Color.Silver; this.label17.Location = new System.Drawing.Point(575, 319); this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(70, 23); this.label17.TabIndex = 175; this.label17.Tag = ""; this.label17.Text = "Gaming"; // // label16 // this.label16.AutoSize = true; this.label16.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.ForeColor = System.Drawing.Color.Silver; this.label16.Location = new System.Drawing.Point(575, 14); this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(65, 23); this.label16.TabIndex = 174; this.label16.Tag = ""; this.label16.Text = "Privacy"; // // label15 // this.label15.AutoSize = true; this.label15.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.ForeColor = System.Drawing.Color.Silver; this.label15.Location = new System.Drawing.Point(22, 471); this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(141, 23); this.label15.TabIndex = 173; this.label15.Tag = ""; this.label15.Text = "Windows Update"; // // label14 // this.label14.AutoSize = true; this.label14.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label14.ForeColor = System.Drawing.Color.Silver; this.label14.Location = new System.Drawing.Point(21, 14); this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(65, 23); this.label14.TabIndex = 170; this.label14.Tag = ""; this.label14.Text = "System"; // // panelWin11Tweaks // this.panelWin11Tweaks.AutoScroll = true; this.panelWin11Tweaks.Controls.Add(this.copilotSw); this.panelWin11Tweaks.Controls.Add(this.label20); this.panelWin11Tweaks.Controls.Add(this.label19); this.panelWin11Tweaks.Controls.Add(this.stickersSw); this.panelWin11Tweaks.Controls.Add(this.compactModeSw); this.panelWin11Tweaks.Controls.Add(this.snapAssistSw); this.panelWin11Tweaks.Controls.Add(this.widgetsSw); this.panelWin11Tweaks.Controls.Add(this.leftTaskbarSw); this.panelWin11Tweaks.Controls.Add(this.classicContextSw); this.panelWin11Tweaks.Controls.Add(this.chatSw); this.panelWin11Tweaks.Location = new System.Drawing.Point(0, 662); this.panelWin11Tweaks.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panelWin11Tweaks.Name = "panelWin11Tweaks"; this.panelWin11Tweaks.Size = new System.Drawing.Size(1214, 199); this.panelWin11Tweaks.TabIndex = 80; this.panelWin11Tweaks.Visible = false; // // copilotSw // this.copilotSw.AccessibleName = "Disable CoPilot AI"; this.copilotSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.copilotSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.copilotSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.copilotSw.ForeColor = System.Drawing.Color.White; this.copilotSw.LabelText = "Disable CoPilot AI"; this.copilotSw.Location = new System.Drawing.Point(579, 158); this.copilotSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.copilotSw.Name = "copilotSw"; this.copilotSw.Size = new System.Drawing.Size(518, 30); this.copilotSw.TabIndex = 179; this.copilotSw.Tag = "themeable"; this.copilotSw.ToggleChecked = false; // // label20 // this.label20.AutoSize = true; this.label20.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label20.ForeColor = System.Drawing.Color.Silver; this.label20.Location = new System.Drawing.Point(575, 6); this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(56, 23); this.label20.TabIndex = 178; this.label20.Tag = ""; this.label20.Text = "Extras"; // // label19 // this.label19.AutoSize = true; this.label19.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label19.ForeColor = System.Drawing.Color.Silver; this.label19.Location = new System.Drawing.Point(20, 6); this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(67, 23); this.label19.TabIndex = 177; this.label19.Tag = ""; this.label19.Text = "Taskbar"; // // stickersSw // this.stickersSw.AccessibleName = "Disable Stickers"; this.stickersSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.stickersSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.stickersSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.stickersSw.ForeColor = System.Drawing.Color.White; this.stickersSw.LabelText = "Disable Stickers"; this.stickersSw.Location = new System.Drawing.Point(25, 158); this.stickersSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.stickersSw.Name = "stickersSw"; this.stickersSw.Size = new System.Drawing.Size(518, 30); this.stickersSw.TabIndex = 113; this.stickersSw.Tag = "themeable"; this.stickersSw.ToggleChecked = false; // // compactModeSw // this.compactModeSw.AccessibleName = "Enable Compact Mode in Explorer"; this.compactModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.compactModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.compactModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.compactModeSw.ForeColor = System.Drawing.Color.White; this.compactModeSw.LabelText = "Enable Compact Mode in Explorer"; this.compactModeSw.Location = new System.Drawing.Point(579, 120); this.compactModeSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.compactModeSw.Name = "compactModeSw"; this.compactModeSw.Size = new System.Drawing.Size(518, 30); this.compactModeSw.TabIndex = 112; this.compactModeSw.Tag = "themeable"; this.compactModeSw.ToggleChecked = false; // // snapAssistSw // this.snapAssistSw.AccessibleName = "Disable Snap Assist"; this.snapAssistSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.snapAssistSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.snapAssistSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.snapAssistSw.ForeColor = System.Drawing.Color.White; this.snapAssistSw.LabelText = "Disable Snap Assist"; this.snapAssistSw.Location = new System.Drawing.Point(580, 45); this.snapAssistSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.snapAssistSw.Name = "snapAssistSw"; this.snapAssistSw.Size = new System.Drawing.Size(518, 30); this.snapAssistSw.TabIndex = 106; this.snapAssistSw.Tag = "themeable"; this.snapAssistSw.ToggleChecked = false; // // widgetsSw // this.widgetsSw.AccessibleName = "Disable Widgets"; this.widgetsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.widgetsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.widgetsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.widgetsSw.ForeColor = System.Drawing.Color.White; this.widgetsSw.LabelText = "Disable Widgets"; this.widgetsSw.Location = new System.Drawing.Point(25, 82); this.widgetsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.widgetsSw.Name = "widgetsSw"; this.widgetsSw.Size = new System.Drawing.Size(518, 30); this.widgetsSw.TabIndex = 108; this.widgetsSw.Tag = "themeable"; this.widgetsSw.ToggleChecked = false; // // leftTaskbarSw // this.leftTaskbarSw.AccessibleName = "Align Taskbar to Left"; this.leftTaskbarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.leftTaskbarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.leftTaskbarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.leftTaskbarSw.ForeColor = System.Drawing.Color.White; this.leftTaskbarSw.LabelText = "Align Taskbar to Left"; this.leftTaskbarSw.Location = new System.Drawing.Point(25, 45); this.leftTaskbarSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.leftTaskbarSw.Name = "leftTaskbarSw"; this.leftTaskbarSw.Size = new System.Drawing.Size(518, 30); this.leftTaskbarSw.TabIndex = 105; this.leftTaskbarSw.Tag = "themeable"; this.leftTaskbarSw.ToggleChecked = false; // // classicContextSw // this.classicContextSw.AccessibleName = "Enable Classic Right-Click Menu"; this.classicContextSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.classicContextSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.classicContextSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.classicContextSw.ForeColor = System.Drawing.Color.White; this.classicContextSw.LabelText = "Enable Classic Right-Click Menu"; this.classicContextSw.Location = new System.Drawing.Point(579, 82); this.classicContextSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.classicContextSw.Name = "classicContextSw"; this.classicContextSw.Size = new System.Drawing.Size(518, 30); this.classicContextSw.TabIndex = 110; this.classicContextSw.Tag = "themeable"; this.classicContextSw.ToggleChecked = false; // // chatSw // this.chatSw.AccessibleName = "Disable Chat"; this.chatSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.chatSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.chatSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chatSw.ForeColor = System.Drawing.Color.White; this.chatSw.LabelText = "Disable Chat"; this.chatSw.Location = new System.Drawing.Point(25, 120); this.chatSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.chatSw.Name = "chatSw"; this.chatSw.Size = new System.Drawing.Size(518, 30); this.chatSw.TabIndex = 107; this.chatSw.Tag = "themeable"; this.chatSw.ToggleChecked = false; // // vbsSw // this.vbsSw.AccessibleName = "Disable Virtualization Based Security"; this.vbsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.vbsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.vbsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.vbsSw.ForeColor = System.Drawing.Color.White; this.vbsSw.LabelText = "Disable Virtualization Based Security"; this.vbsSw.Location = new System.Drawing.Point(25, 352); this.vbsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.vbsSw.Name = "vbsSw"; this.vbsSw.Size = new System.Drawing.Size(518, 30); this.vbsSw.TabIndex = 114; this.vbsSw.Tag = "themeable"; this.vbsSw.ToggleChecked = false; this.vbsSw.Visible = false; // // gameModeSw // this.gameModeSw.AccessibleName = "Enable Gaming Mode"; this.gameModeSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.gameModeSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.gameModeSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.gameModeSw.ForeColor = System.Drawing.Color.White; this.gameModeSw.LabelText = "Enable Gaming Mode"; this.gameModeSw.Location = new System.Drawing.Point(580, 352); this.gameModeSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.gameModeSw.Name = "gameModeSw"; this.gameModeSw.Size = new System.Drawing.Size(518, 30); this.gameModeSw.TabIndex = 105; this.gameModeSw.Tag = "themeable"; this.gameModeSw.ToggleChecked = false; // // storeUpdatesSw // this.storeUpdatesSw.AccessibleName = "Disable Microsoft Store Updates"; this.storeUpdatesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.storeUpdatesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.storeUpdatesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.storeUpdatesSw.ForeColor = System.Drawing.Color.White; this.storeUpdatesSw.LabelText = "Disable Microsoft Store Updates"; this.storeUpdatesSw.Location = new System.Drawing.Point(25, 548); this.storeUpdatesSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.storeUpdatesSw.Name = "storeUpdatesSw"; this.storeUpdatesSw.Size = new System.Drawing.Size(518, 30); this.storeUpdatesSw.TabIndex = 104; this.storeUpdatesSw.Tag = "themeable"; this.storeUpdatesSw.ToggleChecked = false; // // oldMixerSw // this.oldMixerSw.AccessibleName = "Enable Classic Volume Mixer"; this.oldMixerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.oldMixerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.oldMixerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.oldMixerSw.ForeColor = System.Drawing.Color.White; this.oldMixerSw.LabelText = "Enable Classic Volume Mixer"; this.oldMixerSw.Location = new System.Drawing.Point(25, 352); this.oldMixerSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.oldMixerSw.Name = "oldMixerSw"; this.oldMixerSw.Size = new System.Drawing.Size(518, 30); this.oldMixerSw.TabIndex = 103; this.oldMixerSw.Tag = "themeable"; this.oldMixerSw.ToggleChecked = false; // // insiderSw // this.insiderSw.AccessibleName = "Disable Insider Service"; this.insiderSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.insiderSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.insiderSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.insiderSw.ForeColor = System.Drawing.Color.White; this.insiderSw.LabelText = "Disable Insider Service"; this.insiderSw.Location = new System.Drawing.Point(25, 585); this.insiderSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.insiderSw.Name = "insiderSw"; this.insiderSw.Size = new System.Drawing.Size(518, 30); this.insiderSw.TabIndex = 102; this.insiderSw.Tag = "themeable"; this.insiderSw.ToggleChecked = false; // // castSw // this.castSw.AccessibleName = "Remove Cast to Device"; this.castSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.castSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.castSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.castSw.ForeColor = System.Drawing.Color.White; this.castSw.LabelText = "Remove Cast to Device"; this.castSw.Location = new System.Drawing.Point(25, 315); this.castSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.castSw.Name = "castSw"; this.castSw.Size = new System.Drawing.Size(518, 30); this.castSw.TabIndex = 101; this.castSw.Tag = "themeable"; this.castSw.ToggleChecked = false; // // gameBarSw // this.gameBarSw.AccessibleName = "Disable Game Bar"; this.gameBarSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.gameBarSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.gameBarSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.gameBarSw.ForeColor = System.Drawing.Color.White; this.gameBarSw.LabelText = "Disable Game Bar"; this.gameBarSw.Location = new System.Drawing.Point(580, 428); this.gameBarSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.gameBarSw.Name = "gameBarSw"; this.gameBarSw.Size = new System.Drawing.Size(518, 30); this.gameBarSw.TabIndex = 100; this.gameBarSw.Tag = "themeable"; this.gameBarSw.ToggleChecked = false; // // sensorSw // this.sensorSw.AccessibleName = "Disable Sensor Services"; this.sensorSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.sensorSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.sensorSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sensorSw.ForeColor = System.Drawing.Color.White; this.sensorSw.LabelText = "Disable Sensor Services"; this.sensorSw.Location = new System.Drawing.Point(25, 278); this.sensorSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.sensorSw.Name = "sensorSw"; this.sensorSw.Size = new System.Drawing.Size(518, 30); this.sensorSw.TabIndex = 99; this.sensorSw.Tag = "themeable"; this.sensorSw.ToggleChecked = false; // // ccSw // this.ccSw.AccessibleName = "Disable Cloud Clipboard"; this.ccSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.ccSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ccSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ccSw.ForeColor = System.Drawing.Color.White; this.ccSw.LabelText = "Disable Cloud Clipboard"; this.ccSw.Location = new System.Drawing.Point(581, 579); this.ccSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.ccSw.Name = "ccSw"; this.ccSw.Size = new System.Drawing.Size(518, 30); this.ccSw.TabIndex = 98; this.ccSw.Tag = "themeable"; this.ccSw.ToggleChecked = false; // // cortanaSw // this.cortanaSw.AccessibleName = "Disable Cortana"; this.cortanaSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.cortanaSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.cortanaSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cortanaSw.ForeColor = System.Drawing.Color.White; this.cortanaSw.LabelText = "Disable Cortana"; this.cortanaSw.Location = new System.Drawing.Point(580, 88); this.cortanaSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.cortanaSw.Name = "cortanaSw"; this.cortanaSw.Size = new System.Drawing.Size(518, 30); this.cortanaSw.TabIndex = 97; this.cortanaSw.Tag = "themeable"; this.cortanaSw.ToggleChecked = false; // // privacySw // this.privacySw.AccessibleName = "Enhance Privacy"; this.privacySw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.privacySw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.privacySw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.privacySw.ForeColor = System.Drawing.Color.White; this.privacySw.LabelText = "Enhance Privacy"; this.privacySw.Location = new System.Drawing.Point(580, 125); this.privacySw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.privacySw.Name = "privacySw"; this.privacySw.Size = new System.Drawing.Size(518, 30); this.privacySw.TabIndex = 96; this.privacySw.Tag = "themeable"; this.privacySw.ToggleChecked = false; // // driversSw // this.driversSw.AccessibleName = "Exclude Drivers from Update"; this.driversSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.driversSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.driversSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.driversSw.ForeColor = System.Drawing.Color.White; this.driversSw.LabelText = "Exclude Drivers from Update"; this.driversSw.Location = new System.Drawing.Point(25, 622); this.driversSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.driversSw.Name = "driversSw"; this.driversSw.Size = new System.Drawing.Size(518, 30); this.driversSw.TabIndex = 95; this.driversSw.Tag = "themeable"; this.driversSw.ToggleChecked = false; // // telemetryServicesSw // this.telemetryServicesSw.AccessibleName = "Disable Telemetry Services"; this.telemetryServicesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.telemetryServicesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.telemetryServicesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.telemetryServicesSw.ForeColor = System.Drawing.Color.White; this.telemetryServicesSw.LabelText = "Disable Telemetry Services"; this.telemetryServicesSw.Location = new System.Drawing.Point(580, 50); this.telemetryServicesSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.telemetryServicesSw.Name = "telemetryServicesSw"; this.telemetryServicesSw.Size = new System.Drawing.Size(518, 30); this.telemetryServicesSw.TabIndex = 94; this.telemetryServicesSw.Tag = "themeable"; this.telemetryServicesSw.ToggleChecked = false; // // autoUpdatesSw // this.autoUpdatesSw.AccessibleName = "Disable Automatic Updates"; this.autoUpdatesSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.autoUpdatesSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.autoUpdatesSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.autoUpdatesSw.ForeColor = System.Drawing.Color.White; this.autoUpdatesSw.LabelText = "Disable Automatic Updates"; this.autoUpdatesSw.Location = new System.Drawing.Point(25, 510); this.autoUpdatesSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.autoUpdatesSw.Name = "autoUpdatesSw"; this.autoUpdatesSw.Size = new System.Drawing.Size(518, 30); this.autoUpdatesSw.TabIndex = 93; this.autoUpdatesSw.Tag = "themeable"; this.autoUpdatesSw.ToggleChecked = false; // // tpmSw // this.tpmSw.AccessibleName = "Disable TPM 2.0 Check"; this.tpmSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.tpmSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tpmSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tpmSw.ForeColor = System.Drawing.Color.White; this.tpmSw.LabelText = "Disable TPM 2.0 Check"; this.tpmSw.Location = new System.Drawing.Point(25, 240); this.tpmSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.tpmSw.Name = "tpmSw"; this.tpmSw.Size = new System.Drawing.Size(518, 30); this.tpmSw.TabIndex = 92; this.tpmSw.Tag = "themeable"; this.tpmSw.ToggleChecked = false; // // xboxSw // this.xboxSw.AccessibleName = "Disable Xbox Live"; this.xboxSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.xboxSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.xboxSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xboxSw.ForeColor = System.Drawing.Color.White; this.xboxSw.LabelText = "Disable Xbox Live"; this.xboxSw.Location = new System.Drawing.Point(580, 390); this.xboxSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.xboxSw.Name = "xboxSw"; this.xboxSw.Size = new System.Drawing.Size(518, 30); this.xboxSw.TabIndex = 90; this.xboxSw.Tag = "themeable"; this.xboxSw.ToggleChecked = false; // // inkSw // this.inkSw.AccessibleName = "Disable Windows Ink"; this.inkSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.inkSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.inkSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.inkSw.ForeColor = System.Drawing.Color.White; this.inkSw.LabelText = "Disable Windows Ink"; this.inkSw.Location = new System.Drawing.Point(581, 504); this.inkSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.inkSw.Name = "inkSw"; this.inkSw.Size = new System.Drawing.Size(518, 30); this.inkSw.TabIndex = 89; this.inkSw.Tag = "themeable"; this.inkSw.ToggleChecked = false; // // spellSw // this.spellSw.AccessibleName = "Disable Spell Checking"; this.spellSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.spellSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.spellSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.spellSw.ForeColor = System.Drawing.Color.White; this.spellSw.LabelText = "Disable Spell Checking"; this.spellSw.Location = new System.Drawing.Point(581, 541); this.spellSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.spellSw.Name = "spellSw"; this.spellSw.Size = new System.Drawing.Size(518, 30); this.spellSw.TabIndex = 88; this.spellSw.Tag = "themeable"; this.spellSw.ToggleChecked = false; // // longPathsSw // this.longPathsSw.AccessibleName = "Enable Long Paths"; this.longPathsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.longPathsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.longPathsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.longPathsSw.ForeColor = System.Drawing.Color.White; this.longPathsSw.LabelText = "Enable Long Paths"; this.longPathsSw.Location = new System.Drawing.Point(25, 202); this.longPathsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.longPathsSw.Name = "longPathsSw"; this.longPathsSw.Size = new System.Drawing.Size(518, 30); this.longPathsSw.TabIndex = 87; this.longPathsSw.Tag = "themeable"; this.longPathsSw.ToggleChecked = false; // // peopleSw // this.peopleSw.AccessibleName = "Disable My People"; this.peopleSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.peopleSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.peopleSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.peopleSw.ForeColor = System.Drawing.Color.White; this.peopleSw.LabelText = "Disable My People"; this.peopleSw.Location = new System.Drawing.Point(25, 165); this.peopleSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.peopleSw.Name = "peopleSw"; this.peopleSw.Size = new System.Drawing.Size(518, 30); this.peopleSw.TabIndex = 85; this.peopleSw.Tag = "themeable"; this.peopleSw.ToggleChecked = false; // // oldExplorerSw // this.oldExplorerSw.AccessibleName = "Restore Classic Windows Explorer"; this.oldExplorerSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.oldExplorerSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.oldExplorerSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.oldExplorerSw.ForeColor = System.Drawing.Color.White; this.oldExplorerSw.LabelText = "Restore Classic Windows Explorer"; this.oldExplorerSw.Location = new System.Drawing.Point(25, 50); this.oldExplorerSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.oldExplorerSw.Name = "oldExplorerSw"; this.oldExplorerSw.Size = new System.Drawing.Size(518, 30); this.oldExplorerSw.TabIndex = 83; this.oldExplorerSw.Tag = "themeable"; this.oldExplorerSw.ToggleChecked = false; // // adsSw // this.adsSw.AccessibleName = "Disable Start Menu Ads"; this.adsSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.adsSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.adsSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.adsSw.ForeColor = System.Drawing.Color.White; this.adsSw.LabelText = "Disable Start Menu Ads"; this.adsSw.Location = new System.Drawing.Point(580, 206); this.adsSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.adsSw.Name = "adsSw"; this.adsSw.Size = new System.Drawing.Size(518, 30); this.adsSw.TabIndex = 82; this.adsSw.Tag = "themeable"; this.adsSw.ToggleChecked = false; // // advancedTab // this.advancedTab.AutoScroll = true; this.advancedTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.advancedTab.Controls.Add(this.regBackupSw); this.advancedTab.Controls.Add(this.uODSw); this.advancedTab.Controls.Add(this.btnRestartDisableDefender); this.advancedTab.Controls.Add(this.btnRestart); this.advancedTab.Controls.Add(this.btnRestartSafe); this.advancedTab.Controls.Add(this.loginVerboseSw); this.advancedTab.Controls.Add(this.hpetSw); this.advancedTab.Location = new System.Drawing.Point(4, 32); this.advancedTab.Margin = new System.Windows.Forms.Padding(2); this.advancedTab.Name = "advancedTab"; this.advancedTab.Padding = new System.Windows.Forms.Padding(2); this.advancedTab.Size = new System.Drawing.Size(1594, 844); this.advancedTab.TabIndex = 15; this.advancedTab.Text = "Advanced"; // // uODSw // this.uODSw.AccessibleName = "Uninstall OneDrive"; this.uODSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.uODSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.uODSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.uODSw.ForeColor = System.Drawing.Color.White; this.uODSw.LabelText = "Uninstall OneDrive"; this.uODSw.Location = new System.Drawing.Point(21, 111); this.uODSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.uODSw.Name = "uODSw"; this.uODSw.Size = new System.Drawing.Size(518, 30); this.uODSw.TabIndex = 89; this.uODSw.Tag = "themeable"; this.uODSw.ToggleChecked = false; // // btnRestartDisableDefender // this.btnRestartDisableDefender.BackColor = System.Drawing.Color.DodgerBlue; this.btnRestartDisableDefender.FlatAppearance.BorderSize = 0; this.btnRestartDisableDefender.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRestartDisableDefender.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRestartDisableDefender.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRestartDisableDefender.ForeColor = System.Drawing.Color.White; this.btnRestartDisableDefender.Location = new System.Drawing.Point(21, 329); this.btnRestartDisableDefender.Margin = new System.Windows.Forms.Padding(2); this.btnRestartDisableDefender.Name = "btnRestartDisableDefender"; this.btnRestartDisableDefender.Size = new System.Drawing.Size(518, 39); this.btnRestartDisableDefender.TabIndex = 88; this.btnRestartDisableDefender.Text = "Restart && Disable Defender"; this.btnRestartDisableDefender.UseVisualStyleBackColor = false; this.btnRestartDisableDefender.Click += new System.EventHandler(this.btnRestartDisableDefender_Click); // // btnRestart // this.btnRestart.BackColor = System.Drawing.Color.DodgerBlue; this.btnRestart.FlatAppearance.BorderSize = 0; this.btnRestart.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRestart.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRestart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRestart.ForeColor = System.Drawing.Color.White; this.btnRestart.Location = new System.Drawing.Point(21, 286); this.btnRestart.Margin = new System.Windows.Forms.Padding(2); this.btnRestart.Name = "btnRestart"; this.btnRestart.Size = new System.Drawing.Size(518, 39); this.btnRestart.TabIndex = 87; this.btnRestart.Text = "Restart in Normal Mode"; this.btnRestart.UseVisualStyleBackColor = false; this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click); // // btnRestartSafe // this.btnRestartSafe.BackColor = System.Drawing.Color.DodgerBlue; this.btnRestartSafe.FlatAppearance.BorderSize = 0; this.btnRestartSafe.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRestartSafe.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRestartSafe.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRestartSafe.ForeColor = System.Drawing.Color.White; this.btnRestartSafe.Location = new System.Drawing.Point(21, 240); this.btnRestartSafe.Margin = new System.Windows.Forms.Padding(2); this.btnRestartSafe.Name = "btnRestartSafe"; this.btnRestartSafe.Size = new System.Drawing.Size(518, 39); this.btnRestartSafe.TabIndex = 86; this.btnRestartSafe.Text = "Restart in Safe Mode"; this.btnRestartSafe.UseVisualStyleBackColor = false; this.btnRestartSafe.Click += new System.EventHandler(this.btnRestartSafe_Click); // // loginVerboseSw // this.loginVerboseSw.AccessibleName = "Enable Detailed Login Screen"; this.loginVerboseSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.loginVerboseSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.loginVerboseSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.loginVerboseSw.ForeColor = System.Drawing.Color.White; this.loginVerboseSw.LabelText = "Enable Detailed Login Screen"; this.loginVerboseSw.Location = new System.Drawing.Point(21, 66); this.loginVerboseSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.loginVerboseSw.Name = "loginVerboseSw"; this.loginVerboseSw.Size = new System.Drawing.Size(518, 30); this.loginVerboseSw.TabIndex = 85; this.loginVerboseSw.Tag = "themeable"; this.loginVerboseSw.ToggleChecked = false; // // hpetSw // this.hpetSw.AccessibleName = "Disable HPET"; this.hpetSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.hpetSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hpetSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hpetSw.ForeColor = System.Drawing.Color.White; this.hpetSw.LabelText = "Disable HPET"; this.hpetSw.Location = new System.Drawing.Point(21, 21); this.hpetSw.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.hpetSw.Name = "hpetSw"; this.hpetSw.Size = new System.Drawing.Size(518, 30); this.hpetSw.TabIndex = 84; this.hpetSw.Tag = "themeable"; this.hpetSw.ToggleChecked = false; // // modernAppsTab // this.modernAppsTab.AutoScroll = true; this.modernAppsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.modernAppsTab.Controls.Add(this.btnRestoreUwp); this.modernAppsTab.Controls.Add(this.panelUwp); this.modernAppsTab.Controls.Add(this.uninstallModernAppsButton); this.modernAppsTab.Controls.Add(this.refreshModernAppsButton); this.modernAppsTab.Controls.Add(this.txtModernAppsTitle); this.modernAppsTab.Controls.Add(this.chkOnlyRemovable); this.modernAppsTab.Controls.Add(this.chkSelectAllModernApps); this.modernAppsTab.Location = new System.Drawing.Point(4, 32); this.modernAppsTab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.modernAppsTab.Name = "modernAppsTab"; this.modernAppsTab.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.modernAppsTab.Size = new System.Drawing.Size(1593, 844); this.modernAppsTab.TabIndex = 11; this.modernAppsTab.Text = "UWP Apps"; // // btnRestoreUwp // this.btnRestoreUwp.BackColor = System.Drawing.Color.DodgerBlue; this.btnRestoreUwp.FlatAppearance.BorderSize = 0; this.btnRestoreUwp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRestoreUwp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRestoreUwp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRestoreUwp.ForeColor = System.Drawing.Color.White; this.btnRestoreUwp.Location = new System.Drawing.Point(14, 680); this.btnRestoreUwp.Margin = new System.Windows.Forms.Padding(2); this.btnRestoreUwp.Name = "btnRestoreUwp"; this.btnRestoreUwp.Size = new System.Drawing.Size(374, 39); this.btnRestoreUwp.TabIndex = 55; this.btnRestoreUwp.Text = "Restore all UWP"; this.btnRestoreUwp.UseVisualStyleBackColor = false; this.btnRestoreUwp.Click += new System.EventHandler(this.btnRestoreUwp_Click); // // panelUwp // this.panelUwp.AutoScroll = true; this.panelUwp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panelUwp.Location = new System.Drawing.Point(14, 51); this.panelUwp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panelUwp.Name = "panelUwp"; this.panelUwp.Size = new System.Drawing.Size(711, 622); this.panelUwp.TabIndex = 54; // // uninstallModernAppsButton // this.uninstallModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue; this.uninstallModernAppsButton.FlatAppearance.BorderSize = 0; this.uninstallModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.uninstallModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.uninstallModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.uninstallModernAppsButton.ForeColor = System.Drawing.Color.White; this.uninstallModernAppsButton.Location = new System.Drawing.Point(731, 95); this.uninstallModernAppsButton.Margin = new System.Windows.Forms.Padding(2); this.uninstallModernAppsButton.Name = "uninstallModernAppsButton"; this.uninstallModernAppsButton.Size = new System.Drawing.Size(260, 39); this.uninstallModernAppsButton.TabIndex = 50; this.uninstallModernAppsButton.Text = "Uninstall"; this.uninstallModernAppsButton.UseVisualStyleBackColor = false; this.uninstallModernAppsButton.Click += new System.EventHandler(this.button74_Click); // // refreshModernAppsButton // this.refreshModernAppsButton.BackColor = System.Drawing.Color.DodgerBlue; this.refreshModernAppsButton.FlatAppearance.BorderSize = 0; this.refreshModernAppsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.refreshModernAppsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.refreshModernAppsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.refreshModernAppsButton.ForeColor = System.Drawing.Color.White; this.refreshModernAppsButton.Location = new System.Drawing.Point(731, 51); this.refreshModernAppsButton.Margin = new System.Windows.Forms.Padding(2); this.refreshModernAppsButton.Name = "refreshModernAppsButton"; this.refreshModernAppsButton.Size = new System.Drawing.Size(260, 39); this.refreshModernAppsButton.TabIndex = 49; this.refreshModernAppsButton.Text = "Refresh"; this.refreshModernAppsButton.UseVisualStyleBackColor = false; this.refreshModernAppsButton.Click += new System.EventHandler(this.button75_Click); // // txtModernAppsTitle // this.txtModernAppsTitle.AutoSize = true; this.txtModernAppsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtModernAppsTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.txtModernAppsTitle.Location = new System.Drawing.Point(8, 12); this.txtModernAppsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtModernAppsTitle.Name = "txtModernAppsTitle"; this.txtModernAppsTitle.Size = new System.Drawing.Size(367, 35); this.txtModernAppsTitle.TabIndex = 47; this.txtModernAppsTitle.Tag = "themeable"; this.txtModernAppsTitle.Text = "Uninstall unwanted UWP Apps"; // // chkOnlyRemovable // this.chkOnlyRemovable.AutoSize = true; this.chkOnlyRemovable.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.chkOnlyRemovable.ForeColor = System.Drawing.Color.White; this.chkOnlyRemovable.Location = new System.Drawing.Point(731, 139); this.chkOnlyRemovable.Margin = new System.Windows.Forms.Padding(2); this.chkOnlyRemovable.Name = "chkOnlyRemovable"; this.chkOnlyRemovable.Size = new System.Drawing.Size(214, 32); this.chkOnlyRemovable.TabIndex = 53; this.chkOnlyRemovable.Text = "Only uninstall-ables"; this.chkOnlyRemovable.UseVisualStyleBackColor = true; this.chkOnlyRemovable.CheckedChanged += new System.EventHandler(this.chkOnlyRemovable_CheckedChanged); // // chkSelectAllModernApps // this.chkSelectAllModernApps.AutoSize = true; this.chkSelectAllModernApps.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkSelectAllModernApps.ForeColor = System.Drawing.Color.White; this.chkSelectAllModernApps.Location = new System.Drawing.Point(731, 175); this.chkSelectAllModernApps.Margin = new System.Windows.Forms.Padding(2); this.chkSelectAllModernApps.Name = "chkSelectAllModernApps"; this.chkSelectAllModernApps.Size = new System.Drawing.Size(114, 32); this.chkSelectAllModernApps.TabIndex = 52; this.chkSelectAllModernApps.Text = "Select all"; this.chkSelectAllModernApps.UseVisualStyleBackColor = true; this.chkSelectAllModernApps.CheckedChanged += new System.EventHandler(this.chkSelectAllModernApps_CheckedChanged); // // startupTab // this.startupTab.AutoScroll = true; this.startupTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.startupTab.Controls.Add(this.cancelBackup); this.startupTab.Controls.Add(this.doBackup); this.startupTab.Controls.Add(this.txtBackupTitle); this.startupTab.Controls.Add(this.lblBackupTitle); this.startupTab.Controls.Add(this.restoreStartupB); this.startupTab.Controls.Add(this.backupStartupB); this.startupTab.Controls.Add(this.findInRegB); this.startupTab.Controls.Add(this.locateFileB); this.startupTab.Controls.Add(this.removeStartupItemB); this.startupTab.Controls.Add(this.refreshStartupB); this.startupTab.Controls.Add(this.panel3); this.startupTab.Controls.Add(this.startupTitle); this.startupTab.Location = new System.Drawing.Point(4, 32); this.startupTab.Margin = new System.Windows.Forms.Padding(2); this.startupTab.Name = "startupTab"; this.startupTab.Size = new System.Drawing.Size(1593, 844); this.startupTab.TabIndex = 7; this.startupTab.Text = "Startup"; // // cancelBackup // this.cancelBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.cancelBackup.BackColor = System.Drawing.Color.DodgerBlue; this.cancelBackup.FlatAppearance.BorderSize = 0; this.cancelBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.cancelBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.cancelBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.cancelBackup.ForeColor = System.Drawing.Color.White; this.cancelBackup.Location = new System.Drawing.Point(154, 798); this.cancelBackup.Margin = new System.Windows.Forms.Padding(2); this.cancelBackup.Name = "cancelBackup"; this.cancelBackup.Size = new System.Drawing.Size(138, 38); this.cancelBackup.TabIndex = 61; this.cancelBackup.Text = "Cancel"; this.cancelBackup.UseVisualStyleBackColor = false; this.cancelBackup.Visible = false; this.cancelBackup.Click += new System.EventHandler(this.button14_Click); // // doBackup // this.doBackup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.doBackup.BackColor = System.Drawing.Color.DodgerBlue; this.doBackup.FlatAppearance.BorderSize = 0; this.doBackup.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.doBackup.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.doBackup.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.doBackup.ForeColor = System.Drawing.Color.White; this.doBackup.Location = new System.Drawing.Point(11, 798); this.doBackup.Margin = new System.Windows.Forms.Padding(2); this.doBackup.Name = "doBackup"; this.doBackup.Size = new System.Drawing.Size(138, 38); this.doBackup.TabIndex = 60; this.doBackup.Text = "OK"; this.doBackup.UseVisualStyleBackColor = false; this.doBackup.Visible = false; this.doBackup.Click += new System.EventHandler(this.button13_Click); // // txtBackupTitle // this.txtBackupTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.txtBackupTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtBackupTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtBackupTitle.ForeColor = System.Drawing.Color.White; this.txtBackupTitle.Location = new System.Drawing.Point(11, 761); this.txtBackupTitle.Margin = new System.Windows.Forms.Padding(2); this.txtBackupTitle.Name = "txtBackupTitle"; this.txtBackupTitle.Size = new System.Drawing.Size(403, 30); this.txtBackupTitle.TabIndex = 58; this.txtBackupTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtBackupTitle.Visible = false; // // lblBackupTitle // this.lblBackupTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblBackupTitle.AutoSize = true; this.lblBackupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblBackupTitle.ForeColor = System.Drawing.Color.Silver; this.lblBackupTitle.Location = new System.Drawing.Point(6, 735); this.lblBackupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblBackupTitle.Name = "lblBackupTitle"; this.lblBackupTitle.Size = new System.Drawing.Size(104, 23); this.lblBackupTitle.TabIndex = 59; this.lblBackupTitle.Tag = ""; this.lblBackupTitle.Text = "Backup title:"; this.lblBackupTitle.Visible = false; // // restoreStartupB // this.restoreStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.restoreStartupB.BackColor = System.Drawing.Color.DodgerBlue; this.restoreStartupB.FlatAppearance.BorderSize = 0; this.restoreStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.restoreStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.restoreStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.restoreStartupB.ForeColor = System.Drawing.Color.White; this.restoreStartupB.Location = new System.Drawing.Point(254, 736); this.restoreStartupB.Margin = new System.Windows.Forms.Padding(2); this.restoreStartupB.Name = "restoreStartupB"; this.restoreStartupB.Size = new System.Drawing.Size(238, 39); this.restoreStartupB.TabIndex = 42; this.restoreStartupB.Text = "Restore"; this.restoreStartupB.UseVisualStyleBackColor = false; this.restoreStartupB.Click += new System.EventHandler(this.button12_Click); // // backupStartupB // this.backupStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.backupStartupB.BackColor = System.Drawing.Color.DodgerBlue; this.backupStartupB.FlatAppearance.BorderSize = 0; this.backupStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.backupStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.backupStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.backupStartupB.ForeColor = System.Drawing.Color.White; this.backupStartupB.Location = new System.Drawing.Point(11, 736); this.backupStartupB.Margin = new System.Windows.Forms.Padding(2); this.backupStartupB.Name = "backupStartupB"; this.backupStartupB.Size = new System.Drawing.Size(238, 39); this.backupStartupB.TabIndex = 41; this.backupStartupB.Text = "Backup"; this.backupStartupB.UseVisualStyleBackColor = false; this.backupStartupB.Click += new System.EventHandler(this.button11_Click); // // findInRegB // this.findInRegB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.findInRegB.BackColor = System.Drawing.Color.DodgerBlue; this.findInRegB.FlatAppearance.BorderSize = 0; this.findInRegB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.findInRegB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.findInRegB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.findInRegB.ForeColor = System.Drawing.Color.White; this.findInRegB.Location = new System.Drawing.Point(1104, 796); this.findInRegB.Margin = new System.Windows.Forms.Padding(2); this.findInRegB.Name = "findInRegB"; this.findInRegB.Size = new System.Drawing.Size(238, 39); this.findInRegB.TabIndex = 40; this.findInRegB.Text = "Find in Registry"; this.findInRegB.UseVisualStyleBackColor = false; this.findInRegB.Click += new System.EventHandler(this.button64_Click); // // locateFileB // this.locateFileB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.locateFileB.BackColor = System.Drawing.Color.DodgerBlue; this.locateFileB.FlatAppearance.BorderSize = 0; this.locateFileB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.locateFileB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.locateFileB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.locateFileB.ForeColor = System.Drawing.Color.White; this.locateFileB.Location = new System.Drawing.Point(1104, 752); this.locateFileB.Margin = new System.Windows.Forms.Padding(2); this.locateFileB.Name = "locateFileB"; this.locateFileB.Size = new System.Drawing.Size(238, 39); this.locateFileB.TabIndex = 39; this.locateFileB.Text = "Locate file"; this.locateFileB.UseVisualStyleBackColor = false; this.locateFileB.Click += new System.EventHandler(this.button31_Click); // // removeStartupItemB // this.removeStartupItemB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.removeStartupItemB.BackColor = System.Drawing.Color.DodgerBlue; this.removeStartupItemB.FlatAppearance.BorderSize = 0; this.removeStartupItemB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeStartupItemB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeStartupItemB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeStartupItemB.ForeColor = System.Drawing.Color.White; this.removeStartupItemB.Location = new System.Drawing.Point(1348, 752); this.removeStartupItemB.Margin = new System.Windows.Forms.Padding(2); this.removeStartupItemB.Name = "removeStartupItemB"; this.removeStartupItemB.Size = new System.Drawing.Size(238, 39); this.removeStartupItemB.TabIndex = 36; this.removeStartupItemB.Text = "Delete"; this.removeStartupItemB.UseVisualStyleBackColor = false; this.removeStartupItemB.Click += new System.EventHandler(this.button32_Click); // // refreshStartupB // this.refreshStartupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.refreshStartupB.BackColor = System.Drawing.Color.DodgerBlue; this.refreshStartupB.FlatAppearance.BorderSize = 0; this.refreshStartupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.refreshStartupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.refreshStartupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.refreshStartupB.ForeColor = System.Drawing.Color.White; this.refreshStartupB.Location = new System.Drawing.Point(1348, 796); this.refreshStartupB.Margin = new System.Windows.Forms.Padding(2); this.refreshStartupB.Name = "refreshStartupB"; this.refreshStartupB.Size = new System.Drawing.Size(238, 39); this.refreshStartupB.TabIndex = 38; this.refreshStartupB.Text = "Refresh"; this.refreshStartupB.UseVisualStyleBackColor = false; this.refreshStartupB.Click += new System.EventHandler(this.button37_Click); // // panel3 // this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel3.Controls.Add(this.listStartupItems); this.panel3.Location = new System.Drawing.Point(14, 50); this.panel3.Margin = new System.Windows.Forms.Padding(2); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(1571, 650); this.panel3.TabIndex = 37; // // listStartupItems // this.listStartupItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listStartupItems.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listStartupItems.CheckBoxes = true; this.listStartupItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3}); this.listStartupItems.Dock = System.Windows.Forms.DockStyle.Fill; this.listStartupItems.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listStartupItems.ForeColor = System.Drawing.Color.MediumOrchid; this.listStartupItems.FullRowSelect = true; this.listStartupItems.HideSelection = false; this.listStartupItems.Location = new System.Drawing.Point(0, 0); this.listStartupItems.Margin = new System.Windows.Forms.Padding(2); this.listStartupItems.MultiSelect = false; this.listStartupItems.Name = "listStartupItems"; this.listStartupItems.ShowGroups = false; this.listStartupItems.Size = new System.Drawing.Size(1569, 648); this.listStartupItems.TabIndex = 0; this.listStartupItems.UseCompatibleStateImageBehavior = false; this.listStartupItems.View = System.Windows.Forms.View.Details; this.listStartupItems.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listStartupItems_ColumnClick); this.listStartupItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listStartupItems_ItemChecked); // // columnHeader1 // this.columnHeader1.Text = "Name"; this.columnHeader1.Width = 194; // // columnHeader2 // this.columnHeader2.Text = "Location"; this.columnHeader2.Width = 507; // // columnHeader3 // this.columnHeader3.Text = "Type"; this.columnHeader3.Width = 134; // // startupTitle // this.startupTitle.AutoSize = true; this.startupTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.startupTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.startupTitle.Location = new System.Drawing.Point(8, 12); this.startupTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.startupTitle.Name = "startupTitle"; this.startupTitle.Size = new System.Drawing.Size(317, 35); this.startupTitle.TabIndex = 3; this.startupTitle.Tag = "themeable"; this.startupTitle.Text = "Choose your startup items"; // // appsTab // this.appsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.appsTab.Controls.Add(this.txtFeedError); this.appsTab.Controls.Add(this.lblVideoSound); this.appsTab.Controls.Add(this.lblCoding); this.appsTab.Controls.Add(this.lblSystemTools); this.appsTab.Controls.Add(this.groupSoundVideo); this.appsTab.Controls.Add(this.lblInternet); this.appsTab.Controls.Add(this.groupCoding); this.appsTab.Controls.Add(this.groupInternet); this.appsTab.Controls.Add(this.panel10); this.appsTab.Controls.Add(this.panelCommonApps); this.appsTab.Controls.Add(this.groupSystemTools); this.appsTab.Location = new System.Drawing.Point(4, 32); this.appsTab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.appsTab.Name = "appsTab"; this.appsTab.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.appsTab.Size = new System.Drawing.Size(1593, 844); this.appsTab.TabIndex = 12; this.appsTab.Text = "Apps"; // // txtFeedError // this.txtFeedError.BackColor = System.Drawing.Color.Transparent; this.txtFeedError.Dock = System.Windows.Forms.DockStyle.Fill; this.txtFeedError.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtFeedError.ForeColor = System.Drawing.Color.Gold; this.txtFeedError.Location = new System.Drawing.Point(4, 59); this.txtFeedError.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.txtFeedError.Name = "txtFeedError"; this.txtFeedError.Size = new System.Drawing.Size(1585, 631); this.txtFeedError.TabIndex = 171; this.txtFeedError.Text = "No internet connection, try refreshing links again"; this.txtFeedError.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.txtFeedError.Visible = false; // // lblVideoSound // this.lblVideoSound.AutoSize = true; this.lblVideoSound.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblVideoSound.ForeColor = System.Drawing.Color.Silver; this.lblVideoSound.Location = new System.Drawing.Point(932, 58); this.lblVideoSound.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblVideoSound.Name = "lblVideoSound"; this.lblVideoSound.Size = new System.Drawing.Size(112, 20); this.lblVideoSound.TabIndex = 169; this.lblVideoSound.Tag = ""; this.lblVideoSound.Text = "Video && Sound"; // // lblCoding // this.lblCoding.AutoSize = true; this.lblCoding.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblCoding.ForeColor = System.Drawing.Color.Silver; this.lblCoding.Location = new System.Drawing.Point(642, 58); this.lblCoding.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblCoding.Name = "lblCoding"; this.lblCoding.Size = new System.Drawing.Size(58, 20); this.lblCoding.TabIndex = 168; this.lblCoding.Tag = ""; this.lblCoding.Text = "Coding"; // // lblSystemTools // this.lblSystemTools.AutoSize = true; this.lblSystemTools.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSystemTools.ForeColor = System.Drawing.Color.Silver; this.lblSystemTools.Location = new System.Drawing.Point(14, 58); this.lblSystemTools.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblSystemTools.Name = "lblSystemTools"; this.lblSystemTools.Size = new System.Drawing.Size(111, 20); this.lblSystemTools.TabIndex = 162; this.lblSystemTools.Tag = ""; this.lblSystemTools.Text = "System && Tools"; // // groupSoundVideo // this.groupSoundVideo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupSoundVideo.AutoScroll = true; this.groupSoundVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.groupSoundVideo.Location = new System.Drawing.Point(936, 80); this.groupSoundVideo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.groupSoundVideo.Name = "groupSoundVideo"; this.groupSoundVideo.Size = new System.Drawing.Size(283, 477); this.groupSoundVideo.TabIndex = 166; // // lblInternet // this.lblInternet.AutoSize = true; this.lblInternet.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblInternet.ForeColor = System.Drawing.Color.Silver; this.lblInternet.Location = new System.Drawing.Point(328, 58); this.lblInternet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblInternet.Name = "lblInternet"; this.lblInternet.Size = new System.Drawing.Size(63, 20); this.lblInternet.TabIndex = 167; this.lblInternet.Tag = ""; this.lblInternet.Text = "Internet"; // // groupCoding // this.groupCoding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupCoding.AutoScroll = true; this.groupCoding.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.groupCoding.Location = new System.Drawing.Point(646, 80); this.groupCoding.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.groupCoding.Name = "groupCoding"; this.groupCoding.Size = new System.Drawing.Size(282, 477); this.groupCoding.TabIndex = 165; // // groupInternet // this.groupInternet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupInternet.AutoScroll = true; this.groupInternet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.groupInternet.Location = new System.Drawing.Point(331, 80); this.groupInternet.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.groupInternet.Name = "groupInternet"; this.groupInternet.Size = new System.Drawing.Size(307, 477); this.groupInternet.TabIndex = 164; // // panel10 // this.panel10.Controls.Add(this.appsTitle); this.panel10.Controls.Add(this.btnGetFeed); this.panel10.Dock = System.Windows.Forms.DockStyle.Top; this.panel10.Location = new System.Drawing.Point(4, 4); this.panel10.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel10.Name = "panel10"; this.panel10.Size = new System.Drawing.Size(1585, 55); this.panel10.TabIndex = 163; // // appsTitle // this.appsTitle.AutoSize = true; this.appsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.appsTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.appsTitle.Location = new System.Drawing.Point(6, 9); this.appsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.appsTitle.Name = "appsTitle"; this.appsTitle.Size = new System.Drawing.Size(461, 35); this.appsTitle.TabIndex = 53; this.appsTitle.Tag = "themeable"; this.appsTitle.Text = "Quickly download && install useful apps"; // // btnGetFeed // this.btnGetFeed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnGetFeed.BackColor = System.Drawing.Color.DodgerBlue; this.btnGetFeed.FlatAppearance.BorderSize = 0; this.btnGetFeed.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnGetFeed.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnGetFeed.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnGetFeed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnGetFeed.ForeColor = System.Drawing.Color.White; this.btnGetFeed.Location = new System.Drawing.Point(1323, 9); this.btnGetFeed.Margin = new System.Windows.Forms.Padding(2); this.btnGetFeed.Name = "btnGetFeed"; this.btnGetFeed.Size = new System.Drawing.Size(251, 40); this.btnGetFeed.TabIndex = 161; this.btnGetFeed.Text = "Refresh links"; this.btnGetFeed.UseVisualStyleBackColor = false; this.btnGetFeed.Click += new System.EventHandler(this.btnGetFeed_Click); // // panelCommonApps // this.panelCommonApps.AutoScroll = true; this.panelCommonApps.Controls.Add(this.cAutoInstall); this.panelCommonApps.Controls.Add(this.progressDownloader); this.panelCommonApps.Controls.Add(this.c64); this.panelCommonApps.Controls.Add(this.c32); this.panelCommonApps.Controls.Add(this.btnDownloadApps); this.panelCommonApps.Controls.Add(this.setDownDirLbl); this.panelCommonApps.Controls.Add(this.txtDownloadFolder); this.panelCommonApps.Controls.Add(this.changeDownDirB); this.panelCommonApps.Controls.Add(this.txtDownloadStatus); this.panelCommonApps.Controls.Add(this.linkWarnings); this.panelCommonApps.Controls.Add(this.bitPref); this.panelCommonApps.Controls.Add(this.goToDownloadsB); this.panelCommonApps.Dock = System.Windows.Forms.DockStyle.Bottom; this.panelCommonApps.Location = new System.Drawing.Point(4, 690); this.panelCommonApps.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panelCommonApps.Name = "panelCommonApps"; this.panelCommonApps.Size = new System.Drawing.Size(1585, 150); this.panelCommonApps.TabIndex = 162; // // cAutoInstall // this.cAutoInstall.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cAutoInstall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.cAutoInstall.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cAutoInstall.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.cAutoInstall.Location = new System.Drawing.Point(1065, 59); this.cAutoInstall.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.cAutoInstall.Name = "cAutoInstall"; this.cAutoInstall.Size = new System.Drawing.Size(461, 30); this.cAutoInstall.TabIndex = 107; this.cAutoInstall.Text = "Install after downloading"; this.cAutoInstall.UseVisualStyleBackColor = true; // // progressDownloader // this.progressDownloader.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.progressDownloader.Location = new System.Drawing.Point(10, 104); this.progressDownloader.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.progressDownloader.MarqueeAnimationSpeed = 15; this.progressDownloader.Name = "progressDownloader"; this.progressDownloader.Size = new System.Drawing.Size(378, 12); this.progressDownloader.TabIndex = 160; // // c64 // this.c64.AutoSize = true; this.c64.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.c64.Location = new System.Drawing.Point(466, 35); this.c64.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.c64.Name = "c64"; this.c64.Size = new System.Drawing.Size(88, 32); this.c64.TabIndex = 75; this.c64.TabStop = true; this.c64.Text = "64-bit"; this.c64.UseVisualStyleBackColor = true; // // c32 // this.c32.AutoSize = true; this.c32.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.c32.Location = new System.Drawing.Point(560, 35); this.c32.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.c32.Name = "c32"; this.c32.Size = new System.Drawing.Size(87, 32); this.c32.TabIndex = 76; this.c32.TabStop = true; this.c32.Text = "32-bit"; this.c32.UseVisualStyleBackColor = true; // // btnDownloadApps // this.btnDownloadApps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDownloadApps.BackColor = System.Drawing.Color.DodgerBlue; this.btnDownloadApps.FlatAppearance.BorderSize = 0; this.btnDownloadApps.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnDownloadApps.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnDownloadApps.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnDownloadApps.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDownloadApps.ForeColor = System.Drawing.Color.White; this.btnDownloadApps.Location = new System.Drawing.Point(1323, 95); this.btnDownloadApps.Margin = new System.Windows.Forms.Padding(2); this.btnDownloadApps.Name = "btnDownloadApps"; this.btnDownloadApps.Size = new System.Drawing.Size(254, 44); this.btnDownloadApps.TabIndex = 50; this.btnDownloadApps.Text = "Download"; this.btnDownloadApps.UseVisualStyleBackColor = false; this.btnDownloadApps.Click += new System.EventHandler(this.btnDownloadApps_Click); // // setDownDirLbl // this.setDownDirLbl.AutoSize = true; this.setDownDirLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.setDownDirLbl.ForeColor = System.Drawing.Color.DodgerBlue; this.setDownDirLbl.Location = new System.Drawing.Point(4, 5); this.setDownDirLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.setDownDirLbl.Name = "setDownDirLbl"; this.setDownDirLbl.Size = new System.Drawing.Size(197, 28); this.setDownDirLbl.TabIndex = 69; this.setDownDirLbl.Tag = "themeable"; this.setDownDirLbl.Text = "Set download folder"; // // txtDownloadFolder // this.txtDownloadFolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); this.txtDownloadFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDownloadFolder.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDownloadFolder.ForeColor = System.Drawing.Color.Silver; this.txtDownloadFolder.Location = new System.Drawing.Point(10, 38); this.txtDownloadFolder.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.txtDownloadFolder.Name = "txtDownloadFolder"; this.txtDownloadFolder.ReadOnly = true; this.txtDownloadFolder.Size = new System.Drawing.Size(377, 27); this.txtDownloadFolder.TabIndex = 70; // // changeDownDirB // this.changeDownDirB.BackColor = System.Drawing.Color.DodgerBlue; this.changeDownDirB.FlatAppearance.BorderSize = 0; this.changeDownDirB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.changeDownDirB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.changeDownDirB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.changeDownDirB.ForeColor = System.Drawing.Color.White; this.changeDownDirB.Location = new System.Drawing.Point(391, 38); this.changeDownDirB.Margin = new System.Windows.Forms.Padding(2); this.changeDownDirB.Name = "changeDownDirB"; this.changeDownDirB.Size = new System.Drawing.Size(38, 29); this.changeDownDirB.TabIndex = 71; this.changeDownDirB.Text = "..."; this.changeDownDirB.UseVisualStyleBackColor = false; this.changeDownDirB.Click += new System.EventHandler(this.button5_Click); // // txtDownloadStatus // this.txtDownloadStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.txtDownloadStatus.AutoSize = true; this.txtDownloadStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDownloadStatus.ForeColor = System.Drawing.Color.LightGray; this.txtDownloadStatus.Location = new System.Drawing.Point(5, 72); this.txtDownloadStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtDownloadStatus.Name = "txtDownloadStatus"; this.txtDownloadStatus.Size = new System.Drawing.Size(38, 23); this.txtDownloadStatus.TabIndex = 72; this.txtDownloadStatus.Tag = ""; this.txtDownloadStatus.Text = "Idle"; // // linkWarnings // this.linkWarnings.ActiveLinkColor = System.Drawing.Color.Gold; this.linkWarnings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.linkWarnings.AutoSize = true; this.linkWarnings.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkWarnings.ForeColor = System.Drawing.Color.Gold; this.linkWarnings.LinkColor = System.Drawing.Color.Gold; this.linkWarnings.Location = new System.Drawing.Point(5, 122); this.linkWarnings.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkWarnings.Name = "linkWarnings"; this.linkWarnings.Size = new System.Drawing.Size(111, 23); this.linkWarnings.TabIndex = 78; this.linkWarnings.TabStop = true; this.linkWarnings.Tag = ""; this.linkWarnings.Text = "See warnings"; this.linkWarnings.Visible = false; this.linkWarnings.VisitedLinkColor = System.Drawing.Color.Gold; this.linkWarnings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); // // bitPref // this.bitPref.AutoSize = true; this.bitPref.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.bitPref.ForeColor = System.Drawing.Color.DodgerBlue; this.bitPref.Location = new System.Drawing.Point(460, 6); this.bitPref.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.bitPref.Name = "bitPref"; this.bitPref.Size = new System.Drawing.Size(175, 28); this.bitPref.TabIndex = 74; this.bitPref.Tag = "themeable"; this.bitPref.Text = "Set bit preference"; // // goToDownloadsB // this.goToDownloadsB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.goToDownloadsB.BackColor = System.Drawing.Color.DodgerBlue; this.goToDownloadsB.FlatAppearance.BorderSize = 0; this.goToDownloadsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.goToDownloadsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.goToDownloadsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.goToDownloadsB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.goToDownloadsB.ForeColor = System.Drawing.Color.White; this.goToDownloadsB.Location = new System.Drawing.Point(1065, 95); this.goToDownloadsB.Margin = new System.Windows.Forms.Padding(2); this.goToDownloadsB.Name = "goToDownloadsB"; this.goToDownloadsB.Size = new System.Drawing.Size(254, 44); this.goToDownloadsB.TabIndex = 77; this.goToDownloadsB.Text = "Go to Downloads"; this.goToDownloadsB.UseVisualStyleBackColor = false; this.goToDownloadsB.Click += new System.EventHandler(this.button6_Click); // // groupSystemTools // this.groupSystemTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupSystemTools.AutoScroll = true; this.groupSystemTools.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.groupSystemTools.Location = new System.Drawing.Point(16, 80); this.groupSystemTools.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.groupSystemTools.Name = "groupSystemTools"; this.groupSystemTools.Size = new System.Drawing.Size(307, 477); this.groupSystemTools.TabIndex = 162; // // cleanerTab // this.cleanerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.cleanerTab.Controls.Add(this.panel14); this.cleanerTab.Controls.Add(this.panel13); this.cleanerTab.Controls.Add(this.panel1); this.cleanerTab.Location = new System.Drawing.Point(4, 32); this.cleanerTab.Margin = new System.Windows.Forms.Padding(2); this.cleanerTab.Name = "cleanerTab"; this.cleanerTab.Padding = new System.Windows.Forms.Padding(2); this.cleanerTab.Size = new System.Drawing.Size(1593, 844); this.cleanerTab.TabIndex = 5; this.cleanerTab.Text = "Cleaner"; // // panel14 // this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel14.Controls.Add(this.listCleanPreview); this.panel14.Dock = System.Windows.Forms.DockStyle.Fill; this.panel14.Location = new System.Drawing.Point(275, 2); this.panel14.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel14.Name = "panel14"; this.panel14.Size = new System.Drawing.Size(1316, 764); this.panel14.TabIndex = 51; // // listCleanPreview // this.listCleanPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listCleanPreview.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listCleanPreview.Dock = System.Windows.Forms.DockStyle.Fill; this.listCleanPreview.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listCleanPreview.ForeColor = System.Drawing.Color.Silver; this.listCleanPreview.FormattingEnabled = true; this.listCleanPreview.HorizontalScrollbar = true; this.listCleanPreview.Location = new System.Drawing.Point(0, 0); this.listCleanPreview.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.listCleanPreview.Name = "listCleanPreview"; this.listCleanPreview.Size = new System.Drawing.Size(1314, 762); this.listCleanPreview.TabIndex = 1; // // panel13 // this.panel13.AutoScroll = true; this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel13.Controls.Add(this.btnWinClean); this.panel13.Controls.Add(this.analyzeDriveB); this.panel13.Controls.Add(this.checkSelectAll); this.panel13.Controls.Add(this.lblPretext); this.panel13.Controls.Add(this.cleanDriveB); this.panel13.Controls.Add(this.lblFootprint); this.panel13.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel13.Location = new System.Drawing.Point(275, 766); this.panel13.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel13.Name = "panel13"; this.panel13.Size = new System.Drawing.Size(1316, 76); this.panel13.TabIndex = 50; // // btnWinClean // this.btnWinClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnWinClean.BackColor = System.Drawing.Color.DodgerBlue; this.btnWinClean.FlatAppearance.BorderSize = 0; this.btnWinClean.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnWinClean.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnWinClean.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnWinClean.ForeColor = System.Drawing.Color.White; this.btnWinClean.Location = new System.Drawing.Point(774, 29); this.btnWinClean.Margin = new System.Windows.Forms.Padding(2); this.btnWinClean.Name = "btnWinClean"; this.btnWinClean.Size = new System.Drawing.Size(175, 39); this.btnWinClean.TabIndex = 90; this.btnWinClean.Text = "Cleanmgr ..."; this.btnWinClean.UseVisualStyleBackColor = false; this.btnWinClean.Click += new System.EventHandler(this.btnWinClean_Click); // // analyzeDriveB // this.analyzeDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.analyzeDriveB.BackColor = System.Drawing.Color.DodgerBlue; this.analyzeDriveB.FlatAppearance.BorderSize = 0; this.analyzeDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.analyzeDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.analyzeDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.analyzeDriveB.ForeColor = System.Drawing.Color.White; this.analyzeDriveB.Location = new System.Drawing.Point(954, 29); this.analyzeDriveB.Margin = new System.Windows.Forms.Padding(2); this.analyzeDriveB.Name = "analyzeDriveB"; this.analyzeDriveB.Size = new System.Drawing.Size(175, 39); this.analyzeDriveB.TabIndex = 89; this.analyzeDriveB.Text = "Analyze"; this.analyzeDriveB.UseVisualStyleBackColor = false; this.analyzeDriveB.Click += new System.EventHandler(this.analyzeDriveB_Click); // // checkSelectAll // this.checkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.checkSelectAll.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkSelectAll.ForeColor = System.Drawing.Color.DodgerBlue; this.checkSelectAll.LinkColor = System.Drawing.Color.DodgerBlue; this.checkSelectAll.Location = new System.Drawing.Point(1000, 1); this.checkSelectAll.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.checkSelectAll.Name = "checkSelectAll"; this.checkSelectAll.Size = new System.Drawing.Size(309, 25); this.checkSelectAll.TabIndex = 88; this.checkSelectAll.TabStop = true; this.checkSelectAll.Tag = "themeable"; this.checkSelectAll.Text = "Select all"; this.checkSelectAll.TextAlign = System.Drawing.ContentAlignment.TopRight; this.checkSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.checkSelectAll_LinkClicked); // // lblPretext // this.lblPretext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblPretext.AutoSize = true; this.lblPretext.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblPretext.ForeColor = System.Drawing.Color.Silver; this.lblPretext.Location = new System.Drawing.Point(2, 5); this.lblPretext.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblPretext.Name = "lblPretext"; this.lblPretext.Size = new System.Drawing.Size(247, 28); this.lblPretext.TabIndex = 49; this.lblPretext.Tag = ""; this.lblPretext.Text = "Maximum size to be freed:"; this.lblPretext.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cleanDriveB // this.cleanDriveB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cleanDriveB.BackColor = System.Drawing.Color.DodgerBlue; this.cleanDriveB.FlatAppearance.BorderSize = 0; this.cleanDriveB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.cleanDriveB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.cleanDriveB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.cleanDriveB.ForeColor = System.Drawing.Color.White; this.cleanDriveB.Location = new System.Drawing.Point(1134, 29); this.cleanDriveB.Margin = new System.Windows.Forms.Padding(2); this.cleanDriveB.Name = "cleanDriveB"; this.cleanDriveB.Size = new System.Drawing.Size(175, 39); this.cleanDriveB.TabIndex = 34; this.cleanDriveB.Text = "Clean"; this.cleanDriveB.UseVisualStyleBackColor = false; this.cleanDriveB.Click += new System.EventHandler(this.cleanDriveB_Click); // // lblFootprint // this.lblFootprint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lblFootprint.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, ((System.Drawing.FontStyle)(((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic) | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblFootprint.ForeColor = System.Drawing.Color.DodgerBlue; this.lblFootprint.Location = new System.Drawing.Point(1, 32); this.lblFootprint.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblFootprint.Name = "lblFootprint"; this.lblFootprint.Size = new System.Drawing.Size(246, 39); this.lblFootprint.TabIndex = 48; this.lblFootprint.Tag = "themeable"; this.lblFootprint.Text = "-"; this.lblFootprint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panel1 // this.panel1.AutoScroll = true; this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.bravePasswords); this.panel1.Controls.Add(this.braveSession); this.panel1.Controls.Add(this.braveHistory); this.panel1.Controls.Add(this.braveCookies); this.panel1.Controls.Add(this.braveCache); this.panel1.Controls.Add(this.label9); this.panel1.Controls.Add(this.pictureBox4); this.panel1.Controls.Add(this.label8); this.panel1.Controls.Add(this.pictureBox2); this.panel1.Controls.Add(this.edgeSession); this.panel1.Controls.Add(this.edgeHistory); this.panel1.Controls.Add(this.edgeCookies); this.panel1.Controls.Add(this.edgeCache); this.panel1.Controls.Add(this.IECache); this.panel1.Controls.Add(this.firefoxHistory); this.panel1.Controls.Add(this.firefoxCookies); this.panel1.Controls.Add(this.firefoxCache); this.panel1.Controls.Add(this.chromePws); this.panel1.Controls.Add(this.chromeSession); this.panel1.Controls.Add(this.chromeHistory); this.panel1.Controls.Add(this.chromeCookies); this.panel1.Controls.Add(this.chromeCache); this.panel1.Controls.Add(this.label7); this.panel1.Controls.Add(this.label6); this.panel1.Controls.Add(this.label5); this.panel1.Controls.Add(this.label4); this.panel1.Controls.Add(this.pictureBox11); this.panel1.Controls.Add(this.pictureBox10); this.panel1.Controls.Add(this.pictureBox9); this.panel1.Controls.Add(this.pictureBox8); this.panel1.Controls.Add(this.checkErrorReports); this.panel1.Controls.Add(this.checkTemp); this.panel1.Controls.Add(this.checkBin); this.panel1.Controls.Add(this.checkMiniDumps); this.panel1.Dock = System.Windows.Forms.DockStyle.Left; this.panel1.Location = new System.Drawing.Point(2, 2); this.panel1.Margin = new System.Windows.Forms.Padding(2); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(273, 840); this.panel1.TabIndex = 47; // // bravePasswords // this.bravePasswords.AutoSize = true; this.bravePasswords.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.bravePasswords.ForeColor = System.Drawing.Color.White; this.bravePasswords.Location = new System.Drawing.Point(11, 845); this.bravePasswords.Margin = new System.Windows.Forms.Padding(2); this.bravePasswords.Name = "bravePasswords"; this.bravePasswords.Size = new System.Drawing.Size(111, 27); this.bravePasswords.TabIndex = 78; this.bravePasswords.Text = "Passwords"; this.bravePasswords.UseVisualStyleBackColor = true; // // braveSession // this.braveSession.AutoSize = true; this.braveSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.braveSession.ForeColor = System.Drawing.Color.White; this.braveSession.Location = new System.Drawing.Point(11, 811); this.braveSession.Margin = new System.Windows.Forms.Padding(2); this.braveSession.Name = "braveSession"; this.braveSession.Size = new System.Drawing.Size(88, 27); this.braveSession.TabIndex = 77; this.braveSession.Text = "Session"; this.braveSession.UseVisualStyleBackColor = true; // // braveHistory // this.braveHistory.AutoSize = true; this.braveHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.braveHistory.ForeColor = System.Drawing.Color.White; this.braveHistory.Location = new System.Drawing.Point(11, 778); this.braveHistory.Margin = new System.Windows.Forms.Padding(2); this.braveHistory.Name = "braveHistory"; this.braveHistory.Size = new System.Drawing.Size(88, 27); this.braveHistory.TabIndex = 76; this.braveHistory.Text = "History"; this.braveHistory.UseVisualStyleBackColor = true; // // braveCookies // this.braveCookies.AutoSize = true; this.braveCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.braveCookies.ForeColor = System.Drawing.Color.White; this.braveCookies.Location = new System.Drawing.Point(11, 744); this.braveCookies.Margin = new System.Windows.Forms.Padding(2); this.braveCookies.Name = "braveCookies"; this.braveCookies.Size = new System.Drawing.Size(92, 27); this.braveCookies.TabIndex = 75; this.braveCookies.Text = "Cookies"; this.braveCookies.UseVisualStyleBackColor = true; // // braveCache // this.braveCache.AutoSize = true; this.braveCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.braveCache.ForeColor = System.Drawing.Color.White; this.braveCache.Location = new System.Drawing.Point(11, 710); this.braveCache.Margin = new System.Windows.Forms.Padding(2); this.braveCache.Name = "braveCache"; this.braveCache.Size = new System.Drawing.Size(79, 27); this.braveCache.TabIndex = 74; this.braveCache.Text = "Cache"; this.braveCache.UseVisualStyleBackColor = true; // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.ForeColor = System.Drawing.Color.DarkGray; this.label9.Location = new System.Drawing.Point(38, 679); this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(133, 25); this.label9.TabIndex = 73; this.label9.Tag = ""; this.label9.Text = "Brave Browser"; // // pictureBox4 // this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image"))); this.pictureBox4.Location = new System.Drawing.Point(9, 678); this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(25, 25); this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox4.TabIndex = 72; this.pictureBox4.TabStop = false; // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.ForeColor = System.Drawing.Color.DarkGray; this.label8.Location = new System.Drawing.Point(40, 15); this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(90, 25); this.label8.TabIndex = 71; this.label8.Tag = ""; this.label8.Text = "Windows"; // // pictureBox2 // this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image"))); this.pictureBox2.Location = new System.Drawing.Point(9, 15); this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(25, 25); this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox2.TabIndex = 70; this.pictureBox2.TabStop = false; // // edgeSession // this.edgeSession.AutoSize = true; this.edgeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeSession.ForeColor = System.Drawing.Color.White; this.edgeSession.Location = new System.Drawing.Point(11, 645); this.edgeSession.Margin = new System.Windows.Forms.Padding(2); this.edgeSession.Name = "edgeSession"; this.edgeSession.Size = new System.Drawing.Size(88, 27); this.edgeSession.TabIndex = 69; this.edgeSession.Text = "Session"; this.edgeSession.UseVisualStyleBackColor = true; // // edgeHistory // this.edgeHistory.AutoSize = true; this.edgeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeHistory.ForeColor = System.Drawing.Color.White; this.edgeHistory.Location = new System.Drawing.Point(11, 611); this.edgeHistory.Margin = new System.Windows.Forms.Padding(2); this.edgeHistory.Name = "edgeHistory"; this.edgeHistory.Size = new System.Drawing.Size(88, 27); this.edgeHistory.TabIndex = 68; this.edgeHistory.Text = "History"; this.edgeHistory.UseVisualStyleBackColor = true; // // edgeCookies // this.edgeCookies.AutoSize = true; this.edgeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeCookies.ForeColor = System.Drawing.Color.White; this.edgeCookies.Location = new System.Drawing.Point(11, 578); this.edgeCookies.Margin = new System.Windows.Forms.Padding(2); this.edgeCookies.Name = "edgeCookies"; this.edgeCookies.Size = new System.Drawing.Size(92, 27); this.edgeCookies.TabIndex = 67; this.edgeCookies.Text = "Cookies"; this.edgeCookies.UseVisualStyleBackColor = true; // // edgeCache // this.edgeCache.AutoSize = true; this.edgeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edgeCache.ForeColor = System.Drawing.Color.White; this.edgeCache.Location = new System.Drawing.Point(11, 544); this.edgeCache.Margin = new System.Windows.Forms.Padding(2); this.edgeCache.Name = "edgeCache"; this.edgeCache.Size = new System.Drawing.Size(79, 27); this.edgeCache.TabIndex = 66; this.edgeCache.Text = "Cache"; this.edgeCache.UseVisualStyleBackColor = true; // // IECache // this.IECache.AutoSize = true; this.IECache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.IECache.ForeColor = System.Drawing.Color.White; this.IECache.Location = new System.Drawing.Point(12, 906); this.IECache.Margin = new System.Windows.Forms.Padding(2); this.IECache.Name = "IECache"; this.IECache.Size = new System.Drawing.Size(79, 27); this.IECache.TabIndex = 65; this.IECache.Text = "Cache"; this.IECache.UseVisualStyleBackColor = true; // // firefoxHistory // this.firefoxHistory.AutoSize = true; this.firefoxHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.firefoxHistory.ForeColor = System.Drawing.Color.White; this.firefoxHistory.Location = new System.Drawing.Point(11, 480); this.firefoxHistory.Margin = new System.Windows.Forms.Padding(2); this.firefoxHistory.Name = "firefoxHistory"; this.firefoxHistory.Size = new System.Drawing.Size(88, 27); this.firefoxHistory.TabIndex = 64; this.firefoxHistory.Text = "History"; this.firefoxHistory.UseVisualStyleBackColor = true; // // firefoxCookies // this.firefoxCookies.AutoSize = true; this.firefoxCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.firefoxCookies.ForeColor = System.Drawing.Color.White; this.firefoxCookies.Location = new System.Drawing.Point(11, 446); this.firefoxCookies.Margin = new System.Windows.Forms.Padding(2); this.firefoxCookies.Name = "firefoxCookies"; this.firefoxCookies.Size = new System.Drawing.Size(92, 27); this.firefoxCookies.TabIndex = 63; this.firefoxCookies.Text = "Cookies"; this.firefoxCookies.UseVisualStyleBackColor = true; // // firefoxCache // this.firefoxCache.AutoSize = true; this.firefoxCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.firefoxCache.ForeColor = System.Drawing.Color.White; this.firefoxCache.Location = new System.Drawing.Point(11, 412); this.firefoxCache.Margin = new System.Windows.Forms.Padding(2); this.firefoxCache.Name = "firefoxCache"; this.firefoxCache.Size = new System.Drawing.Size(79, 27); this.firefoxCache.TabIndex = 62; this.firefoxCache.Text = "Cache"; this.firefoxCache.UseVisualStyleBackColor = true; // // chromePws // this.chromePws.AutoSize = true; this.chromePws.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromePws.ForeColor = System.Drawing.Color.White; this.chromePws.Location = new System.Drawing.Point(10, 348); this.chromePws.Margin = new System.Windows.Forms.Padding(2); this.chromePws.Name = "chromePws"; this.chromePws.Size = new System.Drawing.Size(111, 27); this.chromePws.TabIndex = 61; this.chromePws.Text = "Passwords"; this.chromePws.UseVisualStyleBackColor = true; // // chromeSession // this.chromeSession.AutoSize = true; this.chromeSession.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromeSession.ForeColor = System.Drawing.Color.White; this.chromeSession.Location = new System.Drawing.Point(10, 314); this.chromeSession.Margin = new System.Windows.Forms.Padding(2); this.chromeSession.Name = "chromeSession"; this.chromeSession.Size = new System.Drawing.Size(88, 27); this.chromeSession.TabIndex = 60; this.chromeSession.Text = "Session"; this.chromeSession.UseVisualStyleBackColor = true; // // chromeHistory // this.chromeHistory.AutoSize = true; this.chromeHistory.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromeHistory.ForeColor = System.Drawing.Color.White; this.chromeHistory.Location = new System.Drawing.Point(10, 280); this.chromeHistory.Margin = new System.Windows.Forms.Padding(2); this.chromeHistory.Name = "chromeHistory"; this.chromeHistory.Size = new System.Drawing.Size(88, 27); this.chromeHistory.TabIndex = 59; this.chromeHistory.Text = "History"; this.chromeHistory.UseVisualStyleBackColor = true; // // chromeCookies // this.chromeCookies.AutoSize = true; this.chromeCookies.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromeCookies.ForeColor = System.Drawing.Color.White; this.chromeCookies.Location = new System.Drawing.Point(10, 246); this.chromeCookies.Margin = new System.Windows.Forms.Padding(2); this.chromeCookies.Name = "chromeCookies"; this.chromeCookies.Size = new System.Drawing.Size(92, 27); this.chromeCookies.TabIndex = 58; this.chromeCookies.Text = "Cookies"; this.chromeCookies.UseVisualStyleBackColor = true; // // chromeCache // this.chromeCache.AutoSize = true; this.chromeCache.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chromeCache.ForeColor = System.Drawing.Color.White; this.chromeCache.Location = new System.Drawing.Point(10, 212); this.chromeCache.Margin = new System.Windows.Forms.Padding(2); this.chromeCache.Name = "chromeCache"; this.chromeCache.Size = new System.Drawing.Size(79, 27); this.chromeCache.TabIndex = 57; this.chromeCache.Text = "Cache"; this.chromeCache.UseVisualStyleBackColor = true; // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.ForeColor = System.Drawing.Color.DarkGray; this.label7.Location = new System.Drawing.Point(39, 512); this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(142, 25); this.label7.TabIndex = 56; this.label7.Tag = ""; this.label7.Text = "Microsoft Edge"; // // label6 // this.label6.AutoSize = true; this.label6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.ForeColor = System.Drawing.Color.DarkGray; this.label6.Location = new System.Drawing.Point(41, 876); this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(157, 25); this.label6.TabIndex = 55; this.label6.Tag = ""; this.label6.Text = "Internet Explorer"; // // label5 // this.label5.AutoSize = true; this.label5.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label5.ForeColor = System.Drawing.Color.DarkGray; this.label5.Location = new System.Drawing.Point(38, 382); this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(140, 25); this.label5.TabIndex = 54; this.label5.Tag = ""; this.label5.Text = "Mozilla Firefox"; // // label4 // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.ForeColor = System.Drawing.Color.DarkGray; this.label4.Location = new System.Drawing.Point(39, 182); this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(146, 25); this.label4.TabIndex = 47; this.label4.Tag = ""; this.label4.Text = "Google Chrome"; // // pictureBox11 // this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image"))); this.pictureBox11.Location = new System.Drawing.Point(11, 512); this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new System.Drawing.Size(25, 25); this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox11.TabIndex = 53; this.pictureBox11.TabStop = false; // // pictureBox10 // this.pictureBox10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox10.Image"))); this.pictureBox10.Location = new System.Drawing.Point(11, 875); this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new System.Drawing.Size(25, 25); this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox10.TabIndex = 52; this.pictureBox10.TabStop = false; // // pictureBox9 // this.pictureBox9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox9.Image"))); this.pictureBox9.Location = new System.Drawing.Point(9, 182); this.pictureBox9.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox9.Name = "pictureBox9"; this.pictureBox9.Size = new System.Drawing.Size(25, 25); this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox9.TabIndex = 51; this.pictureBox9.TabStop = false; // // pictureBox8 // this.pictureBox8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox8.Image"))); this.pictureBox8.Location = new System.Drawing.Point(11, 382); this.pictureBox8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox8.Name = "pictureBox8"; this.pictureBox8.Size = new System.Drawing.Size(25, 25); this.pictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox8.TabIndex = 50; this.pictureBox8.TabStop = false; // // checkErrorReports // this.checkErrorReports.AutoSize = true; this.checkErrorReports.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkErrorReports.ForeColor = System.Drawing.Color.White; this.checkErrorReports.Location = new System.Drawing.Point(10, 114); this.checkErrorReports.Margin = new System.Windows.Forms.Padding(2); this.checkErrorReports.Name = "checkErrorReports"; this.checkErrorReports.Size = new System.Drawing.Size(128, 27); this.checkErrorReports.TabIndex = 44; this.checkErrorReports.Text = "Error reports"; this.checkErrorReports.UseVisualStyleBackColor = true; // // checkTemp // this.checkTemp.AutoSize = true; this.checkTemp.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkTemp.ForeColor = System.Drawing.Color.White; this.checkTemp.Location = new System.Drawing.Point(10, 46); this.checkTemp.Margin = new System.Windows.Forms.Padding(2); this.checkTemp.Name = "checkTemp"; this.checkTemp.Size = new System.Drawing.Size(149, 27); this.checkTemp.TabIndex = 36; this.checkTemp.Text = "Temporary files"; this.checkTemp.UseVisualStyleBackColor = true; // // checkBin // this.checkBin.AutoSize = true; this.checkBin.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkBin.ForeColor = System.Drawing.Color.White; this.checkBin.Location = new System.Drawing.Point(10, 148); this.checkBin.Margin = new System.Windows.Forms.Padding(2); this.checkBin.Name = "checkBin"; this.checkBin.Size = new System.Drawing.Size(119, 27); this.checkBin.TabIndex = 41; this.checkBin.Text = "Recycle Bin"; this.checkBin.UseVisualStyleBackColor = true; // // checkMiniDumps // this.checkMiniDumps.AutoSize = true; this.checkMiniDumps.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkMiniDumps.ForeColor = System.Drawing.Color.White; this.checkMiniDumps.Location = new System.Drawing.Point(10, 80); this.checkMiniDumps.Margin = new System.Windows.Forms.Padding(2); this.checkMiniDumps.Name = "checkMiniDumps"; this.checkMiniDumps.Size = new System.Drawing.Size(167, 27); this.checkMiniDumps.TabIndex = 39; this.checkMiniDumps.Text = "BSOD Minidumps"; this.checkMiniDumps.UseVisualStyleBackColor = true; // // pingerTab // this.pingerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.pingerTab.Controls.Add(this.netTools); this.pingerTab.Location = new System.Drawing.Point(4, 32); this.pingerTab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pingerTab.Name = "pingerTab"; this.pingerTab.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pingerTab.Size = new System.Drawing.Size(1593, 844); this.pingerTab.TabIndex = 13; this.pingerTab.Text = "Pinger"; // // netTools // this.netTools.Alignment = System.Windows.Forms.TabAlignment.Bottom; this.netTools.Controls.Add(this.tabPage2); this.netTools.Controls.Add(this.tabPage1); this.netTools.Dock = System.Windows.Forms.DockStyle.Fill; this.netTools.Location = new System.Drawing.Point(4, 4); this.netTools.Margin = new System.Windows.Forms.Padding(0); this.netTools.Multiline = true; this.netTools.Name = "netTools"; this.netTools.Padding = new System.Drawing.Point(0, 0); this.netTools.SelectedIndex = 0; this.netTools.Size = new System.Drawing.Size(1585, 836); this.netTools.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.netTools.TabIndex = 104; // // tabPage2 // this.tabPage2.AutoScroll = true; this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage2.Controls.Add(this.btnSetDns); this.tabPage2.Controls.Add(this.txtDns6B); this.tabPage2.Controls.Add(this.txtDns6A); this.tabPage2.Controls.Add(this.label12); this.tabPage2.Controls.Add(this.txtDns4B); this.tabPage2.Controls.Add(this.txtDns4A); this.tabPage2.Controls.Add(this.label10); this.tabPage2.Controls.Add(this.chkCustomDns); this.tabPage2.Controls.Add(this.chkAllNics); this.tabPage2.Controls.Add(this.dnsTitle); this.tabPage2.Controls.Add(this.linkDNSv6A); this.tabPage2.Controls.Add(this.linkDNSv4A); this.tabPage2.Controls.Add(this.linkDNSv6); this.tabPage2.Controls.Add(this.linkDNSv4); this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.label1); this.tabPage2.Controls.Add(this.btnOpenNetwork); this.tabPage2.Controls.Add(this.flushCacheB); this.tabPage2.Controls.Add(this.boxAdapter); this.tabPage2.Controls.Add(this.boxDNS); this.tabPage2.Location = new System.Drawing.Point(4, 4); this.tabPage2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabPage2.Size = new System.Drawing.Size(1577, 800); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "DNS"; // // btnSetDns // this.btnSetDns.BackColor = System.Drawing.Color.DodgerBlue; this.btnSetDns.FlatAppearance.BorderSize = 0; this.btnSetDns.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnSetDns.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnSetDns.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSetDns.ForeColor = System.Drawing.Color.White; this.btnSetDns.Location = new System.Drawing.Point(535, 651); this.btnSetDns.Margin = new System.Windows.Forms.Padding(2); this.btnSetDns.Name = "btnSetDns"; this.btnSetDns.Size = new System.Drawing.Size(325, 36); this.btnSetDns.TabIndex = 123; this.btnSetDns.Text = "Set as default"; this.btnSetDns.UseVisualStyleBackColor = false; this.btnSetDns.Click += new System.EventHandler(this.btnSetDns_Click); // // txtDns6B // this.txtDns6B.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtDns6B.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDns6B.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDns6B.ForeColor = System.Drawing.Color.White; this.txtDns6B.Location = new System.Drawing.Point(449, 335); this.txtDns6B.Margin = new System.Windows.Forms.Padding(2); this.txtDns6B.Name = "txtDns6B"; this.txtDns6B.Size = new System.Drawing.Size(407, 34); this.txtDns6B.TabIndex = 122; this.txtDns6B.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtDns6B.Visible = false; // // txtDns6A // this.txtDns6A.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtDns6A.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDns6A.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDns6A.ForeColor = System.Drawing.Color.White; this.txtDns6A.Location = new System.Drawing.Point(36, 335); this.txtDns6A.Margin = new System.Windows.Forms.Padding(2); this.txtDns6A.Name = "txtDns6A"; this.txtDns6A.Size = new System.Drawing.Size(407, 34); this.txtDns6A.TabIndex = 120; this.txtDns6A.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtDns6A.Visible = false; // // label12 // this.label12.AutoSize = true; this.label12.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label12.ForeColor = System.Drawing.Color.Silver; this.label12.Location = new System.Drawing.Point(31, 306); this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(43, 23); this.label12.TabIndex = 121; this.label12.Tag = ""; this.label12.Text = "IPv6"; this.label12.Visible = false; // // txtDns4B // this.txtDns4B.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtDns4B.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDns4B.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDns4B.ForeColor = System.Drawing.Color.White; this.txtDns4B.Location = new System.Drawing.Point(449, 265); this.txtDns4B.Margin = new System.Windows.Forms.Padding(2); this.txtDns4B.Name = "txtDns4B"; this.txtDns4B.Size = new System.Drawing.Size(407, 34); this.txtDns4B.TabIndex = 119; this.txtDns4B.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtDns4B.Visible = false; // // txtDns4A // this.txtDns4A.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtDns4A.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDns4A.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDns4A.ForeColor = System.Drawing.Color.White; this.txtDns4A.Location = new System.Drawing.Point(36, 265); this.txtDns4A.Margin = new System.Windows.Forms.Padding(2); this.txtDns4A.Name = "txtDns4A"; this.txtDns4A.Size = new System.Drawing.Size(407, 34); this.txtDns4A.TabIndex = 117; this.txtDns4A.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtDns4A.Visible = false; // // label10 // this.label10.AutoSize = true; this.label10.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label10.ForeColor = System.Drawing.Color.Silver; this.label10.Location = new System.Drawing.Point(32, 236); this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(44, 23); this.label10.TabIndex = 118; this.label10.Tag = ""; this.label10.Text = "IPv4"; this.label10.Visible = false; // // chkCustomDns // this.chkCustomDns.AutoSize = true; this.chkCustomDns.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCustomDns.ForeColor = System.Drawing.Color.White; this.chkCustomDns.Location = new System.Drawing.Point(36, 204); this.chkCustomDns.Margin = new System.Windows.Forms.Padding(2); this.chkCustomDns.Name = "chkCustomDns"; this.chkCustomDns.Size = new System.Drawing.Size(121, 29); this.chkCustomDns.TabIndex = 116; this.chkCustomDns.Text = "Set cutom"; this.chkCustomDns.UseVisualStyleBackColor = true; this.chkCustomDns.CheckedChanged += new System.EventHandler(this.chkCustomDns_CheckedChanged); // // chkAllNics // this.chkAllNics.AutoSize = true; this.chkAllNics.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkAllNics.ForeColor = System.Drawing.Color.White; this.chkAllNics.Location = new System.Drawing.Point(36, 105); this.chkAllNics.Margin = new System.Windows.Forms.Padding(2); this.chkAllNics.Name = "chkAllNics"; this.chkAllNics.Size = new System.Drawing.Size(116, 29); this.chkAllNics.TabIndex = 115; this.chkAllNics.Text = "Set for all"; this.chkAllNics.UseVisualStyleBackColor = true; // // dnsTitle // this.dnsTitle.AutoSize = true; this.dnsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.dnsTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.dnsTitle.Location = new System.Drawing.Point(6, 4); this.dnsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.dnsTitle.Name = "dnsTitle"; this.dnsTitle.Size = new System.Drawing.Size(325, 35); this.dnsTitle.TabIndex = 114; this.dnsTitle.Tag = "themeable"; this.dnsTitle.Text = "Rapidly change DNS server"; // // linkDNSv6A // this.linkDNSv6A.AutoSize = true; this.linkDNSv6A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkDNSv6A.ForeColor = System.Drawing.Color.DodgerBlue; this.linkDNSv6A.LinkColor = System.Drawing.Color.DodgerBlue; this.linkDNSv6A.Location = new System.Drawing.Point(132, 550); this.linkDNSv6A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkDNSv6A.Name = "linkDNSv6A"; this.linkDNSv6A.Size = new System.Drawing.Size(20, 25); this.linkDNSv6A.TabIndex = 113; this.linkDNSv6A.TabStop = true; this.linkDNSv6A.Tag = "themeable"; this.linkDNSv6A.Text = "-"; // // linkDNSv4A // this.linkDNSv4A.AutoSize = true; this.linkDNSv4A.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkDNSv4A.ForeColor = System.Drawing.Color.DodgerBlue; this.linkDNSv4A.LinkColor = System.Drawing.Color.DodgerBlue; this.linkDNSv4A.Location = new System.Drawing.Point(131, 479); this.linkDNSv4A.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkDNSv4A.Name = "linkDNSv4A"; this.linkDNSv4A.Size = new System.Drawing.Size(20, 25); this.linkDNSv4A.TabIndex = 112; this.linkDNSv4A.TabStop = true; this.linkDNSv4A.Tag = "themeable"; this.linkDNSv4A.Text = "-"; // // linkDNSv6 // this.linkDNSv6.AutoSize = true; this.linkDNSv6.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkDNSv6.ForeColor = System.Drawing.Color.DodgerBlue; this.linkDNSv6.LinkColor = System.Drawing.Color.DodgerBlue; this.linkDNSv6.Location = new System.Drawing.Point(132, 521); this.linkDNSv6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkDNSv6.Name = "linkDNSv6"; this.linkDNSv6.Size = new System.Drawing.Size(20, 25); this.linkDNSv6.TabIndex = 111; this.linkDNSv6.TabStop = true; this.linkDNSv6.Tag = "themeable"; this.linkDNSv6.Text = "-"; // // linkDNSv4 // this.linkDNSv4.AutoSize = true; this.linkDNSv4.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkDNSv4.ForeColor = System.Drawing.Color.DodgerBlue; this.linkDNSv4.LinkColor = System.Drawing.Color.DodgerBlue; this.linkDNSv4.Location = new System.Drawing.Point(132, 450); this.linkDNSv4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkDNSv4.Name = "linkDNSv4"; this.linkDNSv4.Size = new System.Drawing.Size(20, 25); this.linkDNSv4.TabIndex = 110; this.linkDNSv4.TabStop = true; this.linkDNSv4.Tag = "themeable"; this.linkDNSv4.Text = "-"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.ForeColor = System.Drawing.Color.Silver; this.label3.Location = new System.Drawing.Point(30, 522); this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(99, 25); this.label3.TabIndex = 109; this.label3.Tag = ""; this.label3.Text = "DNS IPv6:"; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.Silver; this.label1.Location = new System.Drawing.Point(30, 451); this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(99, 25); this.label1.TabIndex = 108; this.label1.Tag = ""; this.label1.Text = "DNS IPv4:"; // // btnOpenNetwork // this.btnOpenNetwork.BackColor = System.Drawing.Color.DodgerBlue; this.btnOpenNetwork.FlatAppearance.BorderSize = 0; this.btnOpenNetwork.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnOpenNetwork.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnOpenNetwork.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnOpenNetwork.ForeColor = System.Drawing.Color.White; this.btnOpenNetwork.Location = new System.Drawing.Point(35, 651); this.btnOpenNetwork.Margin = new System.Windows.Forms.Padding(2); this.btnOpenNetwork.Name = "btnOpenNetwork"; this.btnOpenNetwork.Size = new System.Drawing.Size(325, 36); this.btnOpenNetwork.TabIndex = 105; this.btnOpenNetwork.Text = "Open Network Connections"; this.btnOpenNetwork.UseVisualStyleBackColor = false; this.btnOpenNetwork.Click += new System.EventHandler(this.btnOpenNetwork_Click); // // flushCacheB // this.flushCacheB.BackColor = System.Drawing.Color.DodgerBlue; this.flushCacheB.FlatAppearance.BorderSize = 0; this.flushCacheB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.flushCacheB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.flushCacheB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.flushCacheB.ForeColor = System.Drawing.Color.White; this.flushCacheB.Location = new System.Drawing.Point(35, 610); this.flushCacheB.Margin = new System.Windows.Forms.Padding(2); this.flushCacheB.Name = "flushCacheB"; this.flushCacheB.Size = new System.Drawing.Size(325, 36); this.flushCacheB.TabIndex = 104; this.flushCacheB.Text = "Flush DNS cache"; this.flushCacheB.UseVisualStyleBackColor = false; this.flushCacheB.Click += new System.EventHandler(this.flushCacheB_Click); // // boxAdapter // this.boxAdapter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); this.boxAdapter.BorderColor = System.Drawing.Color.Blue; this.boxAdapter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.boxAdapter.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.boxAdapter.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.boxAdapter.ForeColor = System.Drawing.Color.White; this.boxAdapter.FormattingEnabled = true; this.boxAdapter.Location = new System.Drawing.Point(35, 62); this.boxAdapter.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.boxAdapter.Name = "boxAdapter"; this.boxAdapter.Size = new System.Drawing.Size(824, 36); this.boxAdapter.TabIndex = 107; this.boxAdapter.Tag = "themeable"; // // boxDNS // this.boxDNS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); this.boxDNS.BorderColor = System.Drawing.Color.Blue; this.boxDNS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.boxDNS.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.boxDNS.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.boxDNS.ForeColor = System.Drawing.Color.White; this.boxDNS.FormattingEnabled = true; this.boxDNS.Location = new System.Drawing.Point(35, 161); this.boxDNS.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.boxDNS.Name = "boxDNS"; this.boxDNS.Size = new System.Drawing.Size(824, 36); this.boxDNS.TabIndex = 106; this.boxDNS.Tag = "themeable"; // // tabPage1 // this.tabPage1.AutoScroll = true; this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage1.Controls.Add(this.btnExport); this.tabPage1.Controls.Add(this.copyB); this.tabPage1.Controls.Add(this.copyIPB); this.tabPage1.Controls.Add(this.panel7); this.tabPage1.Controls.Add(this.lblResults); this.tabPage1.Controls.Add(this.btnShodan); this.tabPage1.Controls.Add(this.btnPing); this.tabPage1.Controls.Add(this.txtPingInput); this.tabPage1.Controls.Add(this.lblPinger); this.tabPage1.Controls.Add(this.pingerTitle); this.tabPage1.Location = new System.Drawing.Point(4, 4); this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabPage1.Size = new System.Drawing.Size(1576, 799); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Pinger"; // // btnExport // this.btnExport.BackColor = System.Drawing.Color.DodgerBlue; this.btnExport.FlatAppearance.BorderSize = 0; this.btnExport.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnExport.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnExport.ForeColor = System.Drawing.Color.White; this.btnExport.Location = new System.Drawing.Point(34, 609); this.btnExport.Margin = new System.Windows.Forms.Padding(2); this.btnExport.Name = "btnExport"; this.btnExport.Size = new System.Drawing.Size(170, 36); this.btnExport.TabIndex = 93; this.btnExport.Text = "Export..."; this.btnExport.UseVisualStyleBackColor = false; this.btnExport.Click += new System.EventHandler(this.btnExport_Click); // // copyB // this.copyB.BackColor = System.Drawing.Color.DodgerBlue; this.copyB.FlatAppearance.BorderSize = 0; this.copyB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.copyB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.copyB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.copyB.ForeColor = System.Drawing.Color.White; this.copyB.Location = new System.Drawing.Point(31, 180); this.copyB.Margin = new System.Windows.Forms.Padding(2); this.copyB.Name = "copyB"; this.copyB.Size = new System.Drawing.Size(231, 39); this.copyB.TabIndex = 92; this.copyB.Text = "Copy IP"; this.copyB.UseVisualStyleBackColor = false; this.copyB.Click += new System.EventHandler(this.copyB_Click); // // copyIPB // this.copyIPB.BackColor = System.Drawing.Color.DodgerBlue; this.copyIPB.FlatAppearance.BorderSize = 0; this.copyIPB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.copyIPB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.copyIPB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.copyIPB.ForeColor = System.Drawing.Color.White; this.copyIPB.Location = new System.Drawing.Point(268, 180); this.copyIPB.Margin = new System.Windows.Forms.Padding(2); this.copyIPB.Name = "copyIPB"; this.copyIPB.Size = new System.Drawing.Size(231, 39); this.copyIPB.TabIndex = 91; this.copyIPB.Text = "Copy"; this.copyIPB.UseVisualStyleBackColor = false; this.copyIPB.Click += new System.EventHandler(this.copyIPB_Click); // // panel7 // this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel7.Controls.Add(this.listPingResults); this.panel7.Location = new System.Drawing.Point(34, 265); this.panel7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel7.Name = "panel7"; this.panel7.Size = new System.Drawing.Size(463, 337); this.panel7.TabIndex = 90; // // listPingResults // this.listPingResults.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listPingResults.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listPingResults.Dock = System.Windows.Forms.DockStyle.Fill; this.listPingResults.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listPingResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listPingResults.ForeColor = System.Drawing.Color.White; this.listPingResults.FormattingEnabled = true; this.listPingResults.HorizontalScrollbar = true; this.listPingResults.ItemHeight = 21; this.listPingResults.Location = new System.Drawing.Point(0, 0); this.listPingResults.Margin = new System.Windows.Forms.Padding(2); this.listPingResults.Name = "listPingResults"; this.listPingResults.Size = new System.Drawing.Size(461, 335); this.listPingResults.TabIndex = 79; // // lblResults // this.lblResults.AutoSize = true; this.lblResults.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblResults.ForeColor = System.Drawing.Color.Silver; this.lblResults.Location = new System.Drawing.Point(29, 240); this.lblResults.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblResults.Name = "lblResults"; this.lblResults.Size = new System.Drawing.Size(64, 23); this.lblResults.TabIndex = 89; this.lblResults.Tag = ""; this.lblResults.Text = "Results"; // // btnShodan // this.btnShodan.BackColor = System.Drawing.Color.DodgerBlue; this.btnShodan.FlatAppearance.BorderSize = 0; this.btnShodan.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnShodan.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnShodan.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnShodan.ForeColor = System.Drawing.Color.White; this.btnShodan.Location = new System.Drawing.Point(31, 136); this.btnShodan.Margin = new System.Windows.Forms.Padding(2); this.btnShodan.Name = "btnShodan"; this.btnShodan.Size = new System.Drawing.Size(231, 39); this.btnShodan.TabIndex = 88; this.btnShodan.Text = "Check on SHODAN.io"; this.btnShodan.UseVisualStyleBackColor = false; this.btnShodan.Click += new System.EventHandler(this.btnShodan_Click); // // btnPing // this.btnPing.BackColor = System.Drawing.Color.DodgerBlue; this.btnPing.FlatAppearance.BorderSize = 0; this.btnPing.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnPing.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnPing.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnPing.ForeColor = System.Drawing.Color.White; this.btnPing.Location = new System.Drawing.Point(268, 136); this.btnPing.Margin = new System.Windows.Forms.Padding(2); this.btnPing.Name = "btnPing"; this.btnPing.Size = new System.Drawing.Size(231, 39); this.btnPing.TabIndex = 87; this.btnPing.Text = "Ping"; this.btnPing.UseVisualStyleBackColor = false; this.btnPing.Click += new System.EventHandler(this.btnPing_Click); // // txtPingInput // this.txtPingInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtPingInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPingInput.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtPingInput.ForeColor = System.Drawing.Color.White; this.txtPingInput.Location = new System.Drawing.Point(31, 95); this.txtPingInput.Margin = new System.Windows.Forms.Padding(2); this.txtPingInput.Name = "txtPingInput"; this.txtPingInput.Size = new System.Drawing.Size(467, 34); this.txtPingInput.TabIndex = 85; this.txtPingInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtPingInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPingInput_KeyDown); // // lblPinger // this.lblPinger.AutoSize = true; this.lblPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblPinger.ForeColor = System.Drawing.Color.Silver; this.lblPinger.Location = new System.Drawing.Point(28, 66); this.lblPinger.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblPinger.Name = "lblPinger"; this.lblPinger.Size = new System.Drawing.Size(150, 23); this.lblPinger.TabIndex = 86; this.lblPinger.Tag = ""; this.lblPinger.Text = "IP / Domain name"; // // pingerTitle // this.pingerTitle.AutoSize = true; this.pingerTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.pingerTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.pingerTitle.Location = new System.Drawing.Point(6, 4); this.pingerTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.pingerTitle.Name = "pingerTitle"; this.pingerTitle.Size = new System.Drawing.Size(489, 35); this.pingerTitle.TabIndex = 84; this.pingerTitle.Tag = "themeable"; this.pingerTitle.Text = "Ping IP addresses and assess your latency"; // // hostsEditorTab // this.hostsEditorTab.AutoScroll = true; this.hostsEditorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hostsEditorTab.Controls.Add(this.panel4); this.hostsEditorTab.Controls.Add(this.hostsTitle); this.hostsEditorTab.Controls.Add(this.linkLocate); this.hostsEditorTab.Location = new System.Drawing.Point(4, 32); this.hostsEditorTab.Margin = new System.Windows.Forms.Padding(2); this.hostsEditorTab.Name = "hostsEditorTab"; this.hostsEditorTab.Padding = new System.Windows.Forms.Padding(2); this.hostsEditorTab.Size = new System.Drawing.Size(1593, 844); this.hostsEditorTab.TabIndex = 9; this.hostsEditorTab.Text = "Hosts"; // // panel4 // this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel4.AutoScroll = true; this.panel4.Controls.Add(this.chkIncludeWww); this.panel4.Controls.Add(this.linkAdvancedEdit); this.panel4.Controls.Add(this.linkRestoreDefault); this.panel4.Controls.Add(this.lblLock); this.panel4.Controls.Add(this.chkReadOnly); this.panel4.Controls.Add(this.panelList); this.panel4.Controls.Add(this.chkBlock); this.panel4.Controls.Add(this.refreshHostsB); this.panel4.Controls.Add(this.removeHostB); this.panel4.Controls.Add(this.removeAllHostsB); this.panel4.Controls.Add(this.addHostB); this.panel4.Controls.Add(this.txtIP); this.panel4.Controls.Add(this.txtDomain); this.panel4.Controls.Add(this.lblDomain); this.panel4.Controls.Add(this.lblIP); this.panel4.Location = new System.Drawing.Point(8, 88); this.panel4.Margin = new System.Windows.Forms.Padding(2); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(1252, 626); this.panel4.TabIndex = 53; // // chkIncludeWww // this.chkIncludeWww.AutoSize = true; this.chkIncludeWww.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkIncludeWww.ForeColor = System.Drawing.Color.White; this.chkIncludeWww.Location = new System.Drawing.Point(411, 170); this.chkIncludeWww.Margin = new System.Windows.Forms.Padding(2); this.chkIncludeWww.Name = "chkIncludeWww"; this.chkIncludeWww.Size = new System.Drawing.Size(165, 32); this.chkIncludeWww.TabIndex = 63; this.chkIncludeWww.Text = "WWW CNAME"; this.chkIncludeWww.UseVisualStyleBackColor = true; // // linkAdvancedEdit // this.linkAdvancedEdit.ActiveLinkColor = System.Drawing.Color.WhiteSmoke; this.linkAdvancedEdit.AutoSize = true; this.linkAdvancedEdit.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkAdvancedEdit.ForeColor = System.Drawing.Color.Silver; this.linkAdvancedEdit.LinkColor = System.Drawing.Color.Silver; this.linkAdvancedEdit.Location = new System.Drawing.Point(404, 422); this.linkAdvancedEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkAdvancedEdit.Name = "linkAdvancedEdit"; this.linkAdvancedEdit.Size = new System.Drawing.Size(161, 28); this.linkAdvancedEdit.TabIndex = 49; this.linkAdvancedEdit.TabStop = true; this.linkAdvancedEdit.Tag = ""; this.linkAdvancedEdit.Text = "Advanced editor"; this.linkAdvancedEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.linkAdvancedEdit.VisitedLinkColor = System.Drawing.Color.Silver; this.linkAdvancedEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked); // // linkRestoreDefault // this.linkRestoreDefault.ActiveLinkColor = System.Drawing.Color.WhiteSmoke; this.linkRestoreDefault.AutoSize = true; this.linkRestoreDefault.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkRestoreDefault.ForeColor = System.Drawing.Color.Silver; this.linkRestoreDefault.LinkColor = System.Drawing.Color.Silver; this.linkRestoreDefault.Location = new System.Drawing.Point(404, 461); this.linkRestoreDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkRestoreDefault.Name = "linkRestoreDefault"; this.linkRestoreDefault.Size = new System.Drawing.Size(150, 28); this.linkRestoreDefault.TabIndex = 51; this.linkRestoreDefault.TabStop = true; this.linkRestoreDefault.Tag = ""; this.linkRestoreDefault.Text = "Restore default"; this.linkRestoreDefault.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.linkRestoreDefault.VisitedLinkColor = System.Drawing.Color.Silver; this.linkRestoreDefault.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked); // // lblLock // this.lblLock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblLock.ForeColor = System.Drawing.Color.Silver; this.lblLock.Location = new System.Drawing.Point(406, 292); this.lblLock.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblLock.Name = "lblLock"; this.lblLock.Size = new System.Drawing.Size(394, 69); this.lblLock.TabIndex = 62; this.lblLock.Tag = ""; this.lblLock.Text = "Protect your HOSTS file by locking it."; // // chkReadOnly // this.chkReadOnly.AutoSize = true; this.chkReadOnly.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkReadOnly.ForeColor = System.Drawing.Color.White; this.chkReadOnly.Location = new System.Drawing.Point(411, 259); this.chkReadOnly.Margin = new System.Windows.Forms.Padding(2); this.chkReadOnly.Name = "chkReadOnly"; this.chkReadOnly.Size = new System.Drawing.Size(125, 32); this.chkReadOnly.TabIndex = 61; this.chkReadOnly.Text = "Read-only"; this.chkReadOnly.UseVisualStyleBackColor = true; this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged); // // panelList // this.panelList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panelList.Controls.Add(this.listHostEntries); this.panelList.Location = new System.Drawing.Point(6, 4); this.panelList.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panelList.Name = "panelList"; this.panelList.Size = new System.Drawing.Size(390, 484); this.panelList.TabIndex = 60; // // listHostEntries // this.listHostEntries.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listHostEntries.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listHostEntries.Dock = System.Windows.Forms.DockStyle.Fill; this.listHostEntries.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listHostEntries.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listHostEntries.ForeColor = System.Drawing.Color.White; this.listHostEntries.FormattingEnabled = true; this.listHostEntries.HorizontalScrollbar = true; this.listHostEntries.ItemHeight = 21; this.listHostEntries.Location = new System.Drawing.Point(0, 0); this.listHostEntries.Margin = new System.Windows.Forms.Padding(2); this.listHostEntries.Name = "listHostEntries"; this.listHostEntries.Size = new System.Drawing.Size(388, 482); this.listHostEntries.TabIndex = 52; // // chkBlock // this.chkBlock.AutoSize = true; this.chkBlock.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkBlock.ForeColor = System.Drawing.Color.White; this.chkBlock.Location = new System.Drawing.Point(411, 138); this.chkBlock.Margin = new System.Windows.Forms.Padding(2); this.chkBlock.Name = "chkBlock"; this.chkBlock.Size = new System.Drawing.Size(83, 32); this.chkBlock.TabIndex = 59; this.chkBlock.Text = "Block"; this.chkBlock.UseVisualStyleBackColor = true; this.chkBlock.CheckedChanged += new System.EventHandler(this.chkBlock_CheckedChanged); // // refreshHostsB // this.refreshHostsB.BackColor = System.Drawing.Color.DodgerBlue; this.refreshHostsB.FlatAppearance.BorderSize = 0; this.refreshHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.refreshHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.refreshHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.refreshHostsB.ForeColor = System.Drawing.Color.White; this.refreshHostsB.Location = new System.Drawing.Point(6, 494); this.refreshHostsB.Margin = new System.Windows.Forms.Padding(2); this.refreshHostsB.Name = "refreshHostsB"; this.refreshHostsB.Size = new System.Drawing.Size(190, 39); this.refreshHostsB.TabIndex = 55; this.refreshHostsB.Text = "Refresh"; this.refreshHostsB.UseVisualStyleBackColor = false; this.refreshHostsB.Click += new System.EventHandler(this.button41_Click); // // removeHostB // this.removeHostB.BackColor = System.Drawing.Color.DodgerBlue; this.removeHostB.FlatAppearance.BorderSize = 0; this.removeHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeHostB.ForeColor = System.Drawing.Color.White; this.removeHostB.Location = new System.Drawing.Point(201, 494); this.removeHostB.Margin = new System.Windows.Forms.Padding(2); this.removeHostB.Name = "removeHostB"; this.removeHostB.Size = new System.Drawing.Size(195, 39); this.removeHostB.TabIndex = 54; this.removeHostB.Text = "Delete"; this.removeHostB.UseVisualStyleBackColor = false; this.removeHostB.Click += new System.EventHandler(this.button42_Click); // // removeAllHostsB // this.removeAllHostsB.BackColor = System.Drawing.Color.DodgerBlue; this.removeAllHostsB.Enabled = false; this.removeAllHostsB.FlatAppearance.BorderSize = 0; this.removeAllHostsB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeAllHostsB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeAllHostsB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeAllHostsB.ForeColor = System.Drawing.Color.White; this.removeAllHostsB.Location = new System.Drawing.Point(201, 538); this.removeAllHostsB.Margin = new System.Windows.Forms.Padding(2); this.removeAllHostsB.Name = "removeAllHostsB"; this.removeAllHostsB.Size = new System.Drawing.Size(195, 39); this.removeAllHostsB.TabIndex = 53; this.removeAllHostsB.Text = "Delete all"; this.removeAllHostsB.UseVisualStyleBackColor = false; this.removeAllHostsB.Visible = false; this.removeAllHostsB.Click += new System.EventHandler(this.button46_Click); // // addHostB // this.addHostB.BackColor = System.Drawing.Color.DodgerBlue; this.addHostB.FlatAppearance.BorderSize = 0; this.addHostB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.addHostB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.addHostB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.addHostB.ForeColor = System.Drawing.Color.White; this.addHostB.Location = new System.Drawing.Point(639, 138); this.addHostB.Margin = new System.Windows.Forms.Padding(2); this.addHostB.Name = "addHostB"; this.addHostB.Size = new System.Drawing.Size(159, 39); this.addHostB.TabIndex = 57; this.addHostB.Text = "Add"; this.addHostB.UseVisualStyleBackColor = false; this.addHostB.Click += new System.EventHandler(this.button47_Click); // // txtIP // this.txtIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtIP.ForeColor = System.Drawing.Color.White; this.txtIP.Location = new System.Drawing.Point(410, 29); this.txtIP.Margin = new System.Windows.Forms.Padding(2); this.txtIP.Name = "txtIP"; this.txtIP.Size = new System.Drawing.Size(387, 34); this.txtIP.TabIndex = 0; this.txtIP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // txtDomain // this.txtDomain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDomain.ForeColor = System.Drawing.Color.White; this.txtDomain.Location = new System.Drawing.Point(410, 96); this.txtDomain.Margin = new System.Windows.Forms.Padding(2); this.txtDomain.Name = "txtDomain"; this.txtDomain.Size = new System.Drawing.Size(387, 34); this.txtDomain.TabIndex = 1; this.txtDomain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblDomain // this.lblDomain.AutoSize = true; this.lblDomain.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblDomain.ForeColor = System.Drawing.Color.DodgerBlue; this.lblDomain.Location = new System.Drawing.Point(404, 68); this.lblDomain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblDomain.Name = "lblDomain"; this.lblDomain.Size = new System.Drawing.Size(83, 28); this.lblDomain.TabIndex = 55; this.lblDomain.Tag = "themeable"; this.lblDomain.Text = "Domain"; // // lblIP // this.lblIP.AutoSize = true; this.lblIP.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIP.ForeColor = System.Drawing.Color.DodgerBlue; this.lblIP.Location = new System.Drawing.Point(404, 0); this.lblIP.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblIP.Name = "lblIP"; this.lblIP.Size = new System.Drawing.Size(106, 28); this.lblIP.TabIndex = 53; this.lblIP.Tag = "themeable"; this.lblIP.Text = "IP address"; // // hostsTitle // this.hostsTitle.AutoSize = true; this.hostsTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hostsTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.hostsTitle.Location = new System.Drawing.Point(8, 12); this.hostsTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.hostsTitle.Name = "hostsTitle"; this.hostsTitle.Size = new System.Drawing.Size(229, 35); this.hostsTitle.TabIndex = 3; this.hostsTitle.Tag = "themeable"; this.hostsTitle.Text = "Edit your hosts file"; // // linkLocate // this.linkLocate.ActiveLinkColor = System.Drawing.Color.WhiteSmoke; this.linkLocate.AutoSize = true; this.linkLocate.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLocate.ForeColor = System.Drawing.Color.Silver; this.linkLocate.LinkColor = System.Drawing.Color.Silver; this.linkLocate.Location = new System.Drawing.Point(10, 48); this.linkLocate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLocate.Name = "linkLocate"; this.linkLocate.Size = new System.Drawing.Size(71, 28); this.linkLocate.TabIndex = 47; this.linkLocate.TabStop = true; this.linkLocate.Tag = ""; this.linkLocate.Text = "Locate"; this.linkLocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.linkLocate.VisitedLinkColor = System.Drawing.Color.Silver; this.linkLocate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked); // // registryFixerTab // this.registryFixerTab.AutoScroll = true; this.registryFixerTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.registryFixerTab.Controls.Add(this.panel2); this.registryFixerTab.Controls.Add(this.registryTitle); this.registryFixerTab.Location = new System.Drawing.Point(4, 32); this.registryFixerTab.Margin = new System.Windows.Forms.Padding(2); this.registryFixerTab.Name = "registryFixerTab"; this.registryFixerTab.Padding = new System.Windows.Forms.Padding(2); this.registryFixerTab.Size = new System.Drawing.Size(1593, 844); this.registryFixerTab.TabIndex = 8; this.registryFixerTab.Text = "Registry"; // // panel2 // this.panel2.AutoScroll = true; this.panel2.Controls.Add(this.regFixB); this.panel2.Controls.Add(this.regLbl); this.panel2.Controls.Add(this.checkRestartExplorer); this.panel2.Controls.Add(this.checkRegistryEditor); this.panel2.Controls.Add(this.checkEnableAll); this.panel2.Controls.Add(this.checkContextMenu); this.panel2.Controls.Add(this.checkTaskManager); this.panel2.Controls.Add(this.checkCommandPrompt); this.panel2.Controls.Add(this.checkFirewall); this.panel2.Controls.Add(this.checkRunDialog); this.panel2.Controls.Add(this.checkFolderOptions); this.panel2.Controls.Add(this.checkControlPanel); this.panel2.Location = new System.Drawing.Point(14, 50); this.panel2.Margin = new System.Windows.Forms.Padding(2); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(944, 358); this.panel2.TabIndex = 48; // // regFixB // this.regFixB.BackColor = System.Drawing.Color.DodgerBlue; this.regFixB.FlatAppearance.BorderSize = 0; this.regFixB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.regFixB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.regFixB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.regFixB.ForeColor = System.Drawing.Color.White; this.regFixB.Location = new System.Drawing.Point(36, 315); this.regFixB.Margin = new System.Windows.Forms.Padding(2); this.regFixB.Name = "regFixB"; this.regFixB.Size = new System.Drawing.Size(192, 39); this.regFixB.TabIndex = 49; this.regFixB.Text = "Fix"; this.regFixB.UseVisualStyleBackColor = false; this.regFixB.Click += new System.EventHandler(this.button33_Click); // // regLbl // this.regLbl.AutoSize = true; this.regLbl.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.regLbl.ForeColor = System.Drawing.Color.Silver; this.regLbl.Location = new System.Drawing.Point(118, 260); this.regLbl.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.regLbl.Name = "regLbl"; this.regLbl.Size = new System.Drawing.Size(296, 28); this.regLbl.TabIndex = 51; this.regLbl.Tag = ""; this.regLbl.Text = "(some changes might need this)"; this.regLbl.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // checkRestartExplorer // this.checkRestartExplorer.AutoSize = true; this.checkRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkRestartExplorer.ForeColor = System.Drawing.Color.White; this.checkRestartExplorer.Location = new System.Drawing.Point(36, 226); this.checkRestartExplorer.Margin = new System.Windows.Forms.Padding(2); this.checkRestartExplorer.Name = "checkRestartExplorer"; this.checkRestartExplorer.Size = new System.Drawing.Size(379, 32); this.checkRestartExplorer.TabIndex = 50; this.checkRestartExplorer.Tag = ""; this.checkRestartExplorer.Text = "Also restart Explorer to apply changes"; this.checkRestartExplorer.UseVisualStyleBackColor = true; // // checkRegistryEditor // this.checkRegistryEditor.AutoSize = true; this.checkRegistryEditor.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkRegistryEditor.ForeColor = System.Drawing.Color.White; this.checkRegistryEditor.Location = new System.Drawing.Point(364, 170); this.checkRegistryEditor.Margin = new System.Windows.Forms.Padding(2); this.checkRegistryEditor.Name = "checkRegistryEditor"; this.checkRegistryEditor.Size = new System.Drawing.Size(166, 32); this.checkRegistryEditor.TabIndex = 38; this.checkRegistryEditor.Text = "Registry Editor"; this.checkRegistryEditor.UseVisualStyleBackColor = true; // // checkEnableAll // this.checkEnableAll.AutoSize = true; this.checkEnableAll.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkEnableAll.ForeColor = System.Drawing.Color.White; this.checkEnableAll.Location = new System.Drawing.Point(36, 18); this.checkEnableAll.Margin = new System.Windows.Forms.Padding(2); this.checkEnableAll.Name = "checkEnableAll"; this.checkEnableAll.Size = new System.Drawing.Size(120, 32); this.checkEnableAll.TabIndex = 35; this.checkEnableAll.Tag = ""; this.checkEnableAll.Text = "Enable all"; this.checkEnableAll.UseVisualStyleBackColor = true; this.checkEnableAll.CheckedChanged += new System.EventHandler(this.checkEnableAll_CheckedChanged); // // checkContextMenu // this.checkContextMenu.AutoSize = true; this.checkContextMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkContextMenu.ForeColor = System.Drawing.Color.White; this.checkContextMenu.Location = new System.Drawing.Point(364, 94); this.checkContextMenu.Margin = new System.Windows.Forms.Padding(2); this.checkContextMenu.Name = "checkContextMenu"; this.checkContextMenu.Size = new System.Drawing.Size(189, 32); this.checkContextMenu.TabIndex = 43; this.checkContextMenu.Text = "Right Click menu"; this.checkContextMenu.UseVisualStyleBackColor = true; // // checkTaskManager // this.checkTaskManager.AutoSize = true; this.checkTaskManager.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkTaskManager.ForeColor = System.Drawing.Color.White; this.checkTaskManager.Location = new System.Drawing.Point(69, 56); this.checkTaskManager.Margin = new System.Windows.Forms.Padding(2); this.checkTaskManager.Name = "checkTaskManager"; this.checkTaskManager.Size = new System.Drawing.Size(159, 32); this.checkTaskManager.TabIndex = 36; this.checkTaskManager.Text = "Task Manager"; this.checkTaskManager.UseVisualStyleBackColor = true; // // checkCommandPrompt // this.checkCommandPrompt.AutoSize = true; this.checkCommandPrompt.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkCommandPrompt.ForeColor = System.Drawing.Color.White; this.checkCommandPrompt.Location = new System.Drawing.Point(69, 94); this.checkCommandPrompt.Margin = new System.Windows.Forms.Padding(2); this.checkCommandPrompt.Name = "checkCommandPrompt"; this.checkCommandPrompt.Size = new System.Drawing.Size(202, 32); this.checkCommandPrompt.TabIndex = 42; this.checkCommandPrompt.Text = "Command Prompt"; this.checkCommandPrompt.UseVisualStyleBackColor = true; // // checkFirewall // this.checkFirewall.AutoSize = true; this.checkFirewall.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkFirewall.ForeColor = System.Drawing.Color.White; this.checkFirewall.Location = new System.Drawing.Point(364, 132); this.checkFirewall.Margin = new System.Windows.Forms.Padding(2); this.checkFirewall.Name = "checkFirewall"; this.checkFirewall.Size = new System.Drawing.Size(192, 32); this.checkFirewall.TabIndex = 37; this.checkFirewall.Text = "Windows Firewall"; this.checkFirewall.UseVisualStyleBackColor = true; // // checkRunDialog // this.checkRunDialog.AutoSize = true; this.checkRunDialog.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkRunDialog.ForeColor = System.Drawing.Color.White; this.checkRunDialog.Location = new System.Drawing.Point(364, 56); this.checkRunDialog.Margin = new System.Windows.Forms.Padding(2); this.checkRunDialog.Name = "checkRunDialog"; this.checkRunDialog.Size = new System.Drawing.Size(134, 32); this.checkRunDialog.TabIndex = 41; this.checkRunDialog.Text = "Run Dialog"; this.checkRunDialog.UseVisualStyleBackColor = true; // // checkFolderOptions // this.checkFolderOptions.AutoSize = true; this.checkFolderOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkFolderOptions.ForeColor = System.Drawing.Color.White; this.checkFolderOptions.Location = new System.Drawing.Point(69, 170); this.checkFolderOptions.Margin = new System.Windows.Forms.Padding(2); this.checkFolderOptions.Name = "checkFolderOptions"; this.checkFolderOptions.Size = new System.Drawing.Size(169, 32); this.checkFolderOptions.TabIndex = 39; this.checkFolderOptions.Text = "Folder Options"; this.checkFolderOptions.UseVisualStyleBackColor = true; // // checkControlPanel // this.checkControlPanel.AutoSize = true; this.checkControlPanel.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkControlPanel.ForeColor = System.Drawing.Color.White; this.checkControlPanel.Location = new System.Drawing.Point(69, 132); this.checkControlPanel.Margin = new System.Windows.Forms.Padding(2); this.checkControlPanel.Name = "checkControlPanel"; this.checkControlPanel.Size = new System.Drawing.Size(156, 32); this.checkControlPanel.TabIndex = 40; this.checkControlPanel.Text = "Control Panel"; this.checkControlPanel.UseVisualStyleBackColor = true; // // registryTitle // this.registryTitle.AutoSize = true; this.registryTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.registryTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.registryTitle.Location = new System.Drawing.Point(8, 12); this.registryTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.registryTitle.Name = "registryTitle"; this.registryTitle.Size = new System.Drawing.Size(325, 35); this.registryTitle.TabIndex = 47; this.registryTitle.Tag = "themeable"; this.registryTitle.Text = "Fix common registry issues"; // // indiciumTab // this.indiciumTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.indiciumTab.Controls.Add(this.panel12); this.indiciumTab.Controls.Add(this.panel11); this.indiciumTab.Location = new System.Drawing.Point(4, 32); this.indiciumTab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.indiciumTab.Name = "indiciumTab"; this.indiciumTab.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.indiciumTab.Size = new System.Drawing.Size(1593, 844); this.indiciumTab.TabIndex = 14; this.indiciumTab.Text = "Hardware"; // // panel12 // this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel12.Controls.Add(this.specsTree); this.panel12.Dock = System.Windows.Forms.DockStyle.Fill; this.panel12.Location = new System.Drawing.Point(4, 47); this.panel12.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel12.Name = "panel12"; this.panel12.Size = new System.Drawing.Size(1585, 793); this.panel12.TabIndex = 2; // // specsTree // this.specsTree.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.specsTree.BorderStyle = System.Windows.Forms.BorderStyle.None; this.specsTree.ContextMenuStrip = this.indiciumMenu; this.specsTree.Dock = System.Windows.Forms.DockStyle.Fill; this.specsTree.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll; this.specsTree.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.specsTree.ForeColor = System.Drawing.Color.White; this.specsTree.Location = new System.Drawing.Point(0, 0); this.specsTree.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.specsTree.Name = "specsTree"; treeNode1.ImageIndex = 0; treeNode1.Name = "cpu"; treeNode1.SelectedImageIndex = 0; treeNode1.Text = "Processors"; treeNode2.ImageIndex = 1; treeNode2.Name = "ram"; treeNode2.SelectedImageIndex = 1; treeNode2.Text = "Memory"; treeNode3.ImageIndex = 2; treeNode3.Name = "gpu"; treeNode3.SelectedImageIndex = 2; treeNode3.Text = "Graphics"; treeNode4.ImageIndex = 3; treeNode4.Name = "mobo"; treeNode4.SelectedImageIndex = 3; treeNode4.Text = "Motherboard"; treeNode5.ImageIndex = 4; treeNode5.Name = "disk"; treeNode5.SelectedImageIndex = 4; treeNode5.Text = "Storage"; treeNode6.ImageIndex = 5; treeNode6.Name = "inet"; treeNode6.SelectedImageIndex = 5; treeNode6.Text = "Network Adapters"; treeNode7.ImageIndex = 6; treeNode7.Name = "audio"; treeNode7.SelectedImageIndex = 6; treeNode7.Text = "Audio"; treeNode8.ImageIndex = 7; treeNode8.Name = "dev"; treeNode8.SelectedImageIndex = 7; treeNode8.Text = "Peripherals"; this.specsTree.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { treeNode1, treeNode2, treeNode3, treeNode4, treeNode5, treeNode6, treeNode7, treeNode8}); this.specsTree.Size = new System.Drawing.Size(1583, 791); this.specsTree.TabIndex = 0; this.specsTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.specsTree_NodeMouseClick); // // indiciumMenu // this.indiciumMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); this.indiciumMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.indiciumMenu.ImageScalingSize = new System.Drawing.Size(20, 20); this.indiciumMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolHWCopy, this.toolHWGoogle, this.toolHWDuck}); this.indiciumMenu.Name = "launcherMenu"; this.indiciumMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; this.indiciumMenu.ShowImageMargin = false; this.indiciumMenu.Size = new System.Drawing.Size(264, 88); // // toolHWCopy // this.toolHWCopy.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolHWCopy.ForeColor = System.Drawing.Color.White; this.toolHWCopy.Name = "toolHWCopy"; this.toolHWCopy.Size = new System.Drawing.Size(263, 28); this.toolHWCopy.Text = "Copy"; this.toolHWCopy.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.toolHWCopy.Click += new System.EventHandler(this.toolStripMenuItem1_Click); // // toolHWGoogle // this.toolHWGoogle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolHWGoogle.ForeColor = System.Drawing.Color.White; this.toolHWGoogle.Name = "toolHWGoogle"; this.toolHWGoogle.Size = new System.Drawing.Size(263, 28); this.toolHWGoogle.Text = "Search with Google..."; this.toolHWGoogle.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.toolHWGoogle.Click += new System.EventHandler(this.toolStripMenuItem2_Click); // // toolHWDuck // this.toolHWDuck.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolHWDuck.ForeColor = System.Drawing.Color.White; this.toolHWDuck.Name = "toolHWDuck"; this.toolHWDuck.Size = new System.Drawing.Size(263, 28); this.toolHWDuck.Text = "Search with DuckDuckGo..."; this.toolHWDuck.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.toolHWDuck.Click += new System.EventHandler(this.toolStripMenuItem3_Click); // // panel11 // this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel11.Controls.Add(this.btnCopyHW); this.panel11.Controls.Add(this.btnSaveHW); this.panel11.Controls.Add(this.hwDetailed); this.panel11.Dock = System.Windows.Forms.DockStyle.Top; this.panel11.Location = new System.Drawing.Point(4, 4); this.panel11.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel11.Name = "panel11"; this.panel11.Size = new System.Drawing.Size(1585, 43); this.panel11.TabIndex = 1; // // btnCopyHW // this.btnCopyHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnCopyHW.BackColor = System.Drawing.Color.DodgerBlue; this.btnCopyHW.FlatAppearance.BorderSize = 0; this.btnCopyHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnCopyHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnCopyHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnCopyHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCopyHW.ForeColor = System.Drawing.Color.White; this.btnCopyHW.Location = new System.Drawing.Point(1397, 5); this.btnCopyHW.Margin = new System.Windows.Forms.Padding(2); this.btnCopyHW.Name = "btnCopyHW"; this.btnCopyHW.Size = new System.Drawing.Size(182, 30); this.btnCopyHW.TabIndex = 163; this.btnCopyHW.Text = "Copy"; this.btnCopyHW.UseVisualStyleBackColor = false; this.btnCopyHW.Click += new System.EventHandler(this.btnCopyHW_Click); // // btnSaveHW // this.btnSaveHW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnSaveHW.BackColor = System.Drawing.Color.DodgerBlue; this.btnSaveHW.FlatAppearance.BorderSize = 0; this.btnSaveHW.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnSaveHW.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnSaveHW.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSaveHW.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnSaveHW.ForeColor = System.Drawing.Color.White; this.btnSaveHW.Location = new System.Drawing.Point(1208, 5); this.btnSaveHW.Margin = new System.Windows.Forms.Padding(2); this.btnSaveHW.Name = "btnSaveHW"; this.btnSaveHW.Size = new System.Drawing.Size(182, 30); this.btnSaveHW.TabIndex = 162; this.btnSaveHW.Text = "Save"; this.btnSaveHW.UseVisualStyleBackColor = false; this.btnSaveHW.Click += new System.EventHandler(this.btnSaveHW_Click); // // hwDetailed // this.hwDetailed.AccessibleName = "Detailed View"; this.hwDetailed.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.hwDetailed.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.hwDetailed.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.hwDetailed.ForeColor = System.Drawing.Color.White; this.hwDetailed.LabelText = "Detailed View"; this.hwDetailed.Location = new System.Drawing.Point(6, 5); this.hwDetailed.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.hwDetailed.Name = "hwDetailed"; this.hwDetailed.Size = new System.Drawing.Size(468, 30); this.hwDetailed.TabIndex = 89; this.hwDetailed.Tag = "themeable"; this.hwDetailed.ToggleChecked = true; this.hwDetailed.ToggleClicked += new System.EventHandler(this.hwDetailed_ToggleClicked); // // integratorTab // this.integratorTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.integratorTab.Controls.Add(this.synapse); this.integratorTab.Location = new System.Drawing.Point(4, 32); this.integratorTab.Margin = new System.Windows.Forms.Padding(2); this.integratorTab.Name = "integratorTab"; this.integratorTab.Padding = new System.Windows.Forms.Padding(2); this.integratorTab.Size = new System.Drawing.Size(1593, 844); this.integratorTab.TabIndex = 10; this.integratorTab.Text = "Integrator"; // // synapse // this.synapse.Alignment = System.Windows.Forms.TabAlignment.Bottom; this.synapse.Controls.Add(this.integratorInfoTab); this.synapse.Controls.Add(this.tabPage8); this.synapse.Controls.Add(this.tabPage9); this.synapse.Controls.Add(this.tabPage10); this.synapse.Controls.Add(this.tabPage11); this.synapse.Controls.Add(this.tabPage4); this.synapse.Controls.Add(this.tabPage3); this.synapse.Dock = System.Windows.Forms.DockStyle.Fill; this.synapse.Location = new System.Drawing.Point(2, 2); this.synapse.Margin = new System.Windows.Forms.Padding(0); this.synapse.Multiline = true; this.synapse.Name = "synapse"; this.synapse.Padding = new System.Drawing.Point(0, 0); this.synapse.SelectedIndex = 0; this.synapse.Size = new System.Drawing.Size(1589, 840); this.synapse.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.synapse.TabIndex = 0; // // integratorInfoTab // this.integratorInfoTab.AutoScroll = true; this.integratorInfoTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.integratorInfoTab.Controls.Add(this.integrator7); this.integratorInfoTab.Controls.Add(this.integrator6); this.integratorInfoTab.Controls.Add(this.integrator5); this.integratorInfoTab.Controls.Add(this.integrator4); this.integratorInfoTab.Controls.Add(this.integrator3); this.integratorInfoTab.Controls.Add(this.integrator2); this.integratorInfoTab.Controls.Add(this.integrator1); this.integratorInfoTab.Location = new System.Drawing.Point(4, 4); this.integratorInfoTab.Margin = new System.Windows.Forms.Padding(2); this.integratorInfoTab.Name = "integratorInfoTab"; this.integratorInfoTab.Padding = new System.Windows.Forms.Padding(2); this.integratorInfoTab.Size = new System.Drawing.Size(1581, 804); this.integratorInfoTab.TabIndex = 0; this.integratorInfoTab.Text = "Info"; // // integrator7 // this.integrator7.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator7.ForeColor = System.Drawing.Color.Silver; this.integrator7.Location = new System.Drawing.Point(8, 281); this.integrator7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator7.Name = "integrator7"; this.integrator7.Size = new System.Drawing.Size(954, 386); this.integrator7.TabIndex = 10; this.integrator7.Tag = ""; this.integrator7.Text = resources.GetString("integrator7.Text"); // // integrator6 // this.integrator6.AutoSize = true; this.integrator6.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator6.ForeColor = System.Drawing.Color.Silver; this.integrator6.Location = new System.Drawing.Point(48, 229); this.integrator6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator6.Name = "integrator6"; this.integrator6.Size = new System.Drawing.Size(129, 28); this.integrator6.TabIndex = 9; this.integrator6.Tag = ""; this.integrator6.Text = "• Commands"; // // integrator5 // this.integrator5.AutoSize = true; this.integrator5.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator5.ForeColor = System.Drawing.Color.Silver; this.integrator5.Location = new System.Drawing.Point(48, 198); this.integrator5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator5.Name = "integrator5"; this.integrator5.Size = new System.Drawing.Size(166, 28); this.integrator5.TabIndex = 8; this.integrator5.Tag = ""; this.integrator5.Text = "• Any type of file"; // // integrator4 // this.integrator4.AutoSize = true; this.integrator4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator4.ForeColor = System.Drawing.Color.Silver; this.integrator4.Location = new System.Drawing.Point(48, 165); this.integrator4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator4.Name = "integrator4"; this.integrator4.Size = new System.Drawing.Size(196, 28); this.integrator4.TabIndex = 7; this.integrator4.Tag = ""; this.integrator4.Text = "• Links to webpages"; // // integrator3 // this.integrator3.AutoSize = true; this.integrator3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator3.ForeColor = System.Drawing.Color.Silver; this.integrator3.Location = new System.Drawing.Point(48, 132); this.integrator3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator3.Name = "integrator3"; this.integrator3.Size = new System.Drawing.Size(207, 28); this.integrator3.TabIndex = 6; this.integrator3.Tag = ""; this.integrator3.Text = "• Shortcuts to folders"; // // integrator2 // this.integrator2.AutoSize = true; this.integrator2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator2.ForeColor = System.Drawing.Color.Silver; this.integrator2.Location = new System.Drawing.Point(48, 101); this.integrator2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator2.Name = "integrator2"; this.integrator2.Size = new System.Drawing.Size(145, 28); this.integrator2.TabIndex = 5; this.integrator2.Tag = ""; this.integrator2.Text = "• Any program"; // // integrator1 // this.integrator1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.integrator1.ForeColor = System.Drawing.Color.Silver; this.integrator1.Location = new System.Drawing.Point(8, 12); this.integrator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.integrator1.Name = "integrator1"; this.integrator1.Size = new System.Drawing.Size(1014, 76); this.integrator1.TabIndex = 4; this.integrator1.Tag = ""; this.integrator1.Text = "Integrator is able to add fully-customized items in Desktop right-click menu:"; // // tabPage8 // this.tabPage8.AutoScroll = true; this.tabPage8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage8.Controls.Add(this.btnAddItem); this.tabPage8.Controls.Add(this.itemnamegroup); this.tabPage8.Controls.Add(this.security); this.tabPage8.Controls.Add(this.itemposition); this.tabPage8.Controls.Add(this.icontoaddgroup); this.tabPage8.Controls.Add(this.itemtoaddgroup); this.tabPage8.Controls.Add(this.itemtype); this.tabPage8.Controls.Add(this.addItemL); this.tabPage8.Location = new System.Drawing.Point(4, 4); this.tabPage8.Margin = new System.Windows.Forms.Padding(2); this.tabPage8.Name = "tabPage8"; this.tabPage8.Padding = new System.Windows.Forms.Padding(2); this.tabPage8.Size = new System.Drawing.Size(1578, 802); this.tabPage8.TabIndex = 1; this.tabPage8.Text = "Add/Modify"; // // btnAddItem // this.btnAddItem.BackColor = System.Drawing.Color.DodgerBlue; this.btnAddItem.FlatAppearance.BorderSize = 0; this.btnAddItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnAddItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnAddItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnAddItem.ForeColor = System.Drawing.Color.White; this.btnAddItem.Location = new System.Drawing.Point(545, 591); this.btnAddItem.Margin = new System.Windows.Forms.Padding(2); this.btnAddItem.Name = "btnAddItem"; this.btnAddItem.Size = new System.Drawing.Size(252, 39); this.btnAddItem.TabIndex = 85; this.btnAddItem.Text = "Add/Modify"; this.btnAddItem.UseVisualStyleBackColor = false; this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click); // // itemnamegroup // this.itemnamegroup.Controls.Add(this.txtItemName); this.itemnamegroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.itemnamegroup.ForeColor = System.Drawing.Color.Silver; this.itemnamegroup.Location = new System.Drawing.Point(14, 504); this.itemnamegroup.Margin = new System.Windows.Forms.Padding(2); this.itemnamegroup.Name = "itemnamegroup"; this.itemnamegroup.Padding = new System.Windows.Forms.Padding(2); this.itemnamegroup.Size = new System.Drawing.Size(784, 82); this.itemnamegroup.TabIndex = 84; this.itemnamegroup.TabStop = false; this.itemnamegroup.Text = "Item name in menu:"; // // txtItemName // this.txtItemName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtItemName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtItemName.ForeColor = System.Drawing.Color.White; this.txtItemName.Location = new System.Drawing.Point(14, 32); this.txtItemName.Margin = new System.Windows.Forms.Padding(2); this.txtItemName.Name = "txtItemName"; this.txtItemName.Size = new System.Drawing.Size(594, 34); this.txtItemName.TabIndex = 82; // // security // this.security.Controls.Add(this.checkShift); this.security.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.security.ForeColor = System.Drawing.Color.Silver; this.security.Location = new System.Drawing.Point(14, 422); this.security.Margin = new System.Windows.Forms.Padding(2); this.security.Name = "security"; this.security.Padding = new System.Windows.Forms.Padding(2); this.security.Size = new System.Drawing.Size(784, 76); this.security.TabIndex = 83; this.security.TabStop = false; this.security.Text = "Security:"; // // checkShift // this.checkShift.AutoSize = true; this.checkShift.ForeColor = System.Drawing.Color.White; this.checkShift.Location = new System.Drawing.Point(14, 32); this.checkShift.Margin = new System.Windows.Forms.Padding(2); this.checkShift.Name = "checkShift"; this.checkShift.Size = new System.Drawing.Size(379, 32); this.checkShift.TabIndex = 83; this.checkShift.Text = "Show only when SHIFT key is pressed"; this.checkShift.UseVisualStyleBackColor = true; // // itemposition // this.itemposition.Controls.Add(this.radioTop); this.itemposition.Controls.Add(this.radioMiddle); this.itemposition.Controls.Add(this.radioBottom); this.itemposition.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.itemposition.ForeColor = System.Drawing.Color.Silver; this.itemposition.Location = new System.Drawing.Point(14, 340); this.itemposition.Margin = new System.Windows.Forms.Padding(2); this.itemposition.Name = "itemposition"; this.itemposition.Padding = new System.Windows.Forms.Padding(2); this.itemposition.Size = new System.Drawing.Size(784, 78); this.itemposition.TabIndex = 82; this.itemposition.TabStop = false; this.itemposition.Text = "Item position:"; // // radioTop // this.radioTop.AutoSize = true; this.radioTop.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold); this.radioTop.ForeColor = System.Drawing.Color.White; this.radioTop.Location = new System.Drawing.Point(14, 32); this.radioTop.Margin = new System.Windows.Forms.Padding(2); this.radioTop.Name = "radioTop"; this.radioTop.Size = new System.Drawing.Size(66, 32); this.radioTop.TabIndex = 83; this.radioTop.Text = "Top"; this.radioTop.UseVisualStyleBackColor = true; this.radioTop.CheckedChanged += new System.EventHandler(this.radioTop_CheckedChanged); // // radioMiddle // this.radioMiddle.AutoSize = true; this.radioMiddle.ForeColor = System.Drawing.Color.White; this.radioMiddle.Location = new System.Drawing.Point(164, 32); this.radioMiddle.Margin = new System.Windows.Forms.Padding(2); this.radioMiddle.Name = "radioMiddle"; this.radioMiddle.Size = new System.Drawing.Size(96, 32); this.radioMiddle.TabIndex = 84; this.radioMiddle.Text = "Middle"; this.radioMiddle.UseVisualStyleBackColor = true; this.radioMiddle.CheckedChanged += new System.EventHandler(this.radioMiddle_CheckedChanged); // // radioBottom // this.radioBottom.AutoSize = true; this.radioBottom.ForeColor = System.Drawing.Color.White; this.radioBottom.Location = new System.Drawing.Point(346, 32); this.radioBottom.Margin = new System.Windows.Forms.Padding(2); this.radioBottom.Name = "radioBottom"; this.radioBottom.Size = new System.Drawing.Size(101, 32); this.radioBottom.TabIndex = 85; this.radioBottom.Text = "Bottom"; this.radioBottom.UseVisualStyleBackColor = true; this.radioBottom.CheckedChanged += new System.EventHandler(this.radioBottom_CheckedChanged); // // icontoaddgroup // this.icontoaddgroup.Controls.Add(this.checkDefaultIcon); this.icontoaddgroup.Controls.Add(this.btnBrowseIcon); this.icontoaddgroup.Controls.Add(this.txtIcon); this.icontoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.icontoaddgroup.ForeColor = System.Drawing.Color.Silver; this.icontoaddgroup.Location = new System.Drawing.Point(14, 222); this.icontoaddgroup.Margin = new System.Windows.Forms.Padding(2); this.icontoaddgroup.Name = "icontoaddgroup"; this.icontoaddgroup.Padding = new System.Windows.Forms.Padding(2); this.icontoaddgroup.Size = new System.Drawing.Size(784, 112); this.icontoaddgroup.TabIndex = 81; this.icontoaddgroup.TabStop = false; this.icontoaddgroup.Text = "Icon to add:"; // // checkDefaultIcon // this.checkDefaultIcon.AutoSize = true; this.checkDefaultIcon.Font = new System.Drawing.Font("Segoe UI Semibold", 12F); this.checkDefaultIcon.ForeColor = System.Drawing.Color.White; this.checkDefaultIcon.Location = new System.Drawing.Point(14, 72); this.checkDefaultIcon.Margin = new System.Windows.Forms.Padding(2); this.checkDefaultIcon.Name = "checkDefaultIcon"; this.checkDefaultIcon.Size = new System.Drawing.Size(209, 32); this.checkDefaultIcon.TabIndex = 82; this.checkDefaultIcon.Text = "Use program\'s icon"; this.checkDefaultIcon.UseVisualStyleBackColor = true; this.checkDefaultIcon.CheckedChanged += new System.EventHandler(this.checkDefaultIcon_CheckedChanged); // // btnBrowseIcon // this.btnBrowseIcon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnBrowseIcon.BackColor = System.Drawing.Color.DodgerBlue; this.btnBrowseIcon.Enabled = false; this.btnBrowseIcon.FlatAppearance.BorderSize = 0; this.btnBrowseIcon.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnBrowseIcon.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnBrowseIcon.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnBrowseIcon.ForeColor = System.Drawing.Color.White; this.btnBrowseIcon.Location = new System.Drawing.Point(562, 32); this.btnBrowseIcon.Margin = new System.Windows.Forms.Padding(2); this.btnBrowseIcon.Name = "btnBrowseIcon"; this.btnBrowseIcon.Size = new System.Drawing.Size(45, 36); this.btnBrowseIcon.TabIndex = 82; this.btnBrowseIcon.Text = "..."; this.btnBrowseIcon.UseVisualStyleBackColor = false; this.btnBrowseIcon.Click += new System.EventHandler(this.btnBrowseIcon_Click); // // txtIcon // this.txtIcon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtIcon.Enabled = false; this.txtIcon.ForeColor = System.Drawing.Color.White; this.txtIcon.Location = new System.Drawing.Point(14, 32); this.txtIcon.Margin = new System.Windows.Forms.Padding(2); this.txtIcon.Name = "txtIcon"; this.txtIcon.ReadOnly = true; this.txtIcon.Size = new System.Drawing.Size(542, 34); this.txtIcon.TabIndex = 81; // // itemtoaddgroup // this.itemtoaddgroup.Controls.Add(this.btnBrowseItem); this.itemtoaddgroup.Controls.Add(this.txtItem); this.itemtoaddgroup.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.itemtoaddgroup.ForeColor = System.Drawing.Color.Silver; this.itemtoaddgroup.Location = new System.Drawing.Point(14, 134); this.itemtoaddgroup.Margin = new System.Windows.Forms.Padding(2); this.itemtoaddgroup.Name = "itemtoaddgroup"; this.itemtoaddgroup.Padding = new System.Windows.Forms.Padding(2); this.itemtoaddgroup.Size = new System.Drawing.Size(784, 84); this.itemtoaddgroup.TabIndex = 80; this.itemtoaddgroup.TabStop = false; this.itemtoaddgroup.Text = "Program to add:"; // // btnBrowseItem // this.btnBrowseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnBrowseItem.BackColor = System.Drawing.Color.DodgerBlue; this.btnBrowseItem.FlatAppearance.BorderSize = 0; this.btnBrowseItem.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnBrowseItem.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnBrowseItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnBrowseItem.ForeColor = System.Drawing.Color.White; this.btnBrowseItem.Location = new System.Drawing.Point(561, 32); this.btnBrowseItem.Margin = new System.Windows.Forms.Padding(2); this.btnBrowseItem.Name = "btnBrowseItem"; this.btnBrowseItem.Size = new System.Drawing.Size(45, 36); this.btnBrowseItem.TabIndex = 82; this.btnBrowseItem.Text = "..."; this.btnBrowseItem.UseVisualStyleBackColor = false; this.btnBrowseItem.Click += new System.EventHandler(this.btnBrowseItem_Click); // // txtItem // this.txtItem.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtItem.ForeColor = System.Drawing.Color.White; this.txtItem.Location = new System.Drawing.Point(14, 32); this.txtItem.Margin = new System.Windows.Forms.Padding(2); this.txtItem.Name = "txtItem"; this.txtItem.ReadOnly = true; this.txtItem.Size = new System.Drawing.Size(542, 34); this.txtItem.TabIndex = 81; // // itemtype // this.itemtype.Controls.Add(this.radioCommand); this.itemtype.Controls.Add(this.radioProgram); this.itemtype.Controls.Add(this.radioFolder); this.itemtype.Controls.Add(this.radioLink); this.itemtype.Controls.Add(this.radioFile); this.itemtype.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.itemtype.ForeColor = System.Drawing.Color.Silver; this.itemtype.Location = new System.Drawing.Point(14, 50); this.itemtype.Margin = new System.Windows.Forms.Padding(2); this.itemtype.Name = "itemtype"; this.itemtype.Padding = new System.Windows.Forms.Padding(2); this.itemtype.Size = new System.Drawing.Size(784, 79); this.itemtype.TabIndex = 79; this.itemtype.TabStop = false; this.itemtype.Text = "Item Type:"; // // radioCommand // this.radioCommand.AutoSize = true; this.radioCommand.ForeColor = System.Drawing.Color.White; this.radioCommand.Location = new System.Drawing.Point(601, 32); this.radioCommand.Margin = new System.Windows.Forms.Padding(2); this.radioCommand.Name = "radioCommand"; this.radioCommand.Size = new System.Drawing.Size(127, 32); this.radioCommand.TabIndex = 84; this.radioCommand.Text = "Command"; this.radioCommand.UseVisualStyleBackColor = true; this.radioCommand.CheckedChanged += new System.EventHandler(this.radioCommand_CheckedChanged); // // radioProgram // this.radioProgram.AutoSize = true; this.radioProgram.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold); this.radioProgram.ForeColor = System.Drawing.Color.White; this.radioProgram.Location = new System.Drawing.Point(14, 32); this.radioProgram.Margin = new System.Windows.Forms.Padding(2); this.radioProgram.Name = "radioProgram"; this.radioProgram.Size = new System.Drawing.Size(111, 32); this.radioProgram.TabIndex = 80; this.radioProgram.Text = "Program"; this.radioProgram.UseVisualStyleBackColor = true; this.radioProgram.CheckedChanged += new System.EventHandler(this.radioProgram_CheckedChanged); // // radioFolder // this.radioFolder.AutoSize = true; this.radioFolder.ForeColor = System.Drawing.Color.White; this.radioFolder.Location = new System.Drawing.Point(174, 32); this.radioFolder.Margin = new System.Windows.Forms.Padding(2); this.radioFolder.Name = "radioFolder"; this.radioFolder.Size = new System.Drawing.Size(90, 32); this.radioFolder.TabIndex = 81; this.radioFolder.Text = "Folder"; this.radioFolder.UseVisualStyleBackColor = true; this.radioFolder.CheckedChanged += new System.EventHandler(this.radioFolder_CheckedChanged); // // radioLink // this.radioLink.AutoSize = true; this.radioLink.ForeColor = System.Drawing.Color.White; this.radioLink.Location = new System.Drawing.Point(318, 32); this.radioLink.Margin = new System.Windows.Forms.Padding(2); this.radioLink.Name = "radioLink"; this.radioLink.Size = new System.Drawing.Size(71, 32); this.radioLink.TabIndex = 82; this.radioLink.Text = "Link"; this.radioLink.UseVisualStyleBackColor = true; this.radioLink.CheckedChanged += new System.EventHandler(this.radioLink_CheckedChanged); // // radioFile // this.radioFile.AutoSize = true; this.radioFile.ForeColor = System.Drawing.Color.White; this.radioFile.Location = new System.Drawing.Point(464, 32); this.radioFile.Margin = new System.Windows.Forms.Padding(2); this.radioFile.Name = "radioFile"; this.radioFile.Size = new System.Drawing.Size(64, 32); this.radioFile.TabIndex = 83; this.radioFile.Text = "File"; this.radioFile.UseVisualStyleBackColor = true; this.radioFile.CheckedChanged += new System.EventHandler(this.radioFile_CheckedChanged); // // addItemL // this.addItemL.AutoSize = true; this.addItemL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.addItemL.ForeColor = System.Drawing.Color.DodgerBlue; this.addItemL.Location = new System.Drawing.Point(8, 12); this.addItemL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.addItemL.Name = "addItemL"; this.addItemL.Size = new System.Drawing.Size(274, 35); this.addItemL.TabIndex = 78; this.addItemL.Tag = "themeable"; this.addItemL.Text = "Add or modify an item"; // // tabPage9 // this.tabPage9.AutoScroll = true; this.tabPage9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage9.Controls.Add(this.panel5); this.tabPage9.Controls.Add(this.refreshIIB); this.tabPage9.Controls.Add(this.removeDIB); this.tabPage9.Controls.Add(this.removeAllIIB); this.tabPage9.Controls.Add(this.removeIntegratorItemsL); this.tabPage9.Location = new System.Drawing.Point(4, 4); this.tabPage9.Margin = new System.Windows.Forms.Padding(2); this.tabPage9.Name = "tabPage9"; this.tabPage9.Padding = new System.Windows.Forms.Padding(2); this.tabPage9.Size = new System.Drawing.Size(1578, 802); this.tabPage9.TabIndex = 2; this.tabPage9.Text = "Remove"; // // panel5 // this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel5.Controls.Add(this.listDesktopItems); this.panel5.Location = new System.Drawing.Point(14, 55); this.panel5.Margin = new System.Windows.Forms.Padding(2); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(366, 543); this.panel5.TabIndex = 82; // // listDesktopItems // this.listDesktopItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listDesktopItems.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listDesktopItems.Dock = System.Windows.Forms.DockStyle.Fill; this.listDesktopItems.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listDesktopItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listDesktopItems.ForeColor = System.Drawing.Color.White; this.listDesktopItems.FormattingEnabled = true; this.listDesktopItems.HorizontalScrollbar = true; this.listDesktopItems.ItemHeight = 21; this.listDesktopItems.Location = new System.Drawing.Point(0, 0); this.listDesktopItems.Margin = new System.Windows.Forms.Padding(2); this.listDesktopItems.Name = "listDesktopItems"; this.listDesktopItems.Size = new System.Drawing.Size(364, 541); this.listDesktopItems.TabIndex = 78; // // refreshIIB // this.refreshIIB.BackColor = System.Drawing.Color.DodgerBlue; this.refreshIIB.FlatAppearance.BorderSize = 0; this.refreshIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.refreshIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.refreshIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.refreshIIB.ForeColor = System.Drawing.Color.White; this.refreshIIB.Location = new System.Drawing.Point(385, 100); this.refreshIIB.Margin = new System.Windows.Forms.Padding(2); this.refreshIIB.Name = "refreshIIB"; this.refreshIIB.Size = new System.Drawing.Size(231, 39); this.refreshIIB.TabIndex = 81; this.refreshIIB.Text = "Refresh"; this.refreshIIB.UseVisualStyleBackColor = false; this.refreshIIB.Click += new System.EventHandler(this.button60_Click); // // removeDIB // this.removeDIB.BackColor = System.Drawing.Color.DodgerBlue; this.removeDIB.FlatAppearance.BorderSize = 0; this.removeDIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeDIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeDIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeDIB.ForeColor = System.Drawing.Color.White; this.removeDIB.Location = new System.Drawing.Point(385, 56); this.removeDIB.Margin = new System.Windows.Forms.Padding(2); this.removeDIB.Name = "removeDIB"; this.removeDIB.Size = new System.Drawing.Size(231, 39); this.removeDIB.TabIndex = 80; this.removeDIB.Text = "Delete"; this.removeDIB.UseVisualStyleBackColor = false; this.removeDIB.Click += new System.EventHandler(this.button61_Click); // // removeAllIIB // this.removeAllIIB.BackColor = System.Drawing.Color.DodgerBlue; this.removeAllIIB.FlatAppearance.BorderSize = 0; this.removeAllIIB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeAllIIB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeAllIIB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeAllIIB.ForeColor = System.Drawing.Color.White; this.removeAllIIB.Location = new System.Drawing.Point(385, 144); this.removeAllIIB.Margin = new System.Windows.Forms.Padding(2); this.removeAllIIB.Name = "removeAllIIB"; this.removeAllIIB.Size = new System.Drawing.Size(231, 39); this.removeAllIIB.TabIndex = 79; this.removeAllIIB.Text = "Delete all"; this.removeAllIIB.UseVisualStyleBackColor = false; this.removeAllIIB.Click += new System.EventHandler(this.button62_Click); // // removeIntegratorItemsL // this.removeIntegratorItemsL.AutoSize = true; this.removeIntegratorItemsL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.removeIntegratorItemsL.ForeColor = System.Drawing.Color.DodgerBlue; this.removeIntegratorItemsL.Location = new System.Drawing.Point(8, 12); this.removeIntegratorItemsL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.removeIntegratorItemsL.Name = "removeIntegratorItemsL"; this.removeIntegratorItemsL.Size = new System.Drawing.Size(373, 35); this.removeIntegratorItemsL.TabIndex = 77; this.removeIntegratorItemsL.Tag = "themeable"; this.removeIntegratorItemsL.Text = "Remove existing Desktop items"; // // tabPage10 // this.tabPage10.AutoScroll = true; this.tabPage10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage10.Controls.Add(this.WAB); this.tabPage10.Controls.Add(this.AddCMDB); this.tabPage10.Controls.Add(this.AddOwnerB); this.tabPage10.Controls.Add(this.DSB); this.tabPage10.Controls.Add(this.SSB); this.tabPage10.Controls.Add(this.STB); this.tabPage10.Controls.Add(this.PMB); this.tabPage10.Controls.Add(this.readyMenusL); this.tabPage10.Location = new System.Drawing.Point(4, 4); this.tabPage10.Margin = new System.Windows.Forms.Padding(2); this.tabPage10.Name = "tabPage10"; this.tabPage10.Padding = new System.Windows.Forms.Padding(2); this.tabPage10.Size = new System.Drawing.Size(1578, 802); this.tabPage10.TabIndex = 3; this.tabPage10.Text = "Ready Menus"; // // WAB // this.WAB.AccessibleName = "Add \"Windows Apps\""; this.WAB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.WAB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.WAB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.WAB.ForeColor = System.Drawing.Color.White; this.WAB.LabelText = "Add \"Windows Apps\""; this.WAB.Location = new System.Drawing.Point(40, 150); this.WAB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.WAB.Name = "WAB"; this.WAB.Size = new System.Drawing.Size(468, 30); this.WAB.TabIndex = 95; this.WAB.Tag = "themeable"; this.WAB.ToggleChecked = false; // // AddCMDB // this.AddCMDB.AccessibleName = "Add \"Open with CMD\""; this.AddCMDB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.AddCMDB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.AddCMDB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.AddCMDB.ForeColor = System.Drawing.Color.White; this.AddCMDB.LabelText = "Add \"Open with CMD\""; this.AddCMDB.Location = new System.Drawing.Point(40, 344); this.AddCMDB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.AddCMDB.Name = "AddCMDB"; this.AddCMDB.Size = new System.Drawing.Size(468, 30); this.AddCMDB.TabIndex = 94; this.AddCMDB.Tag = "themeable"; this.AddCMDB.ToggleChecked = false; // // AddOwnerB // this.AddOwnerB.AccessibleName = "Add \"Take Ownership\""; this.AddOwnerB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.AddOwnerB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.AddOwnerB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.AddOwnerB.ForeColor = System.Drawing.Color.White; this.AddOwnerB.LabelText = "Add \"Take Ownership\""; this.AddOwnerB.Location = new System.Drawing.Point(40, 306); this.AddOwnerB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.AddOwnerB.Name = "AddOwnerB"; this.AddOwnerB.Size = new System.Drawing.Size(468, 30); this.AddOwnerB.TabIndex = 93; this.AddOwnerB.Tag = "themeable"; this.AddOwnerB.ToggleChecked = false; // // DSB // this.DSB.AccessibleName = "Add \"Desktop Shortcuts\""; this.DSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.DSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.DSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.DSB.ForeColor = System.Drawing.Color.White; this.DSB.LabelText = "Add \"Desktop Shortcuts\""; this.DSB.Location = new System.Drawing.Point(40, 225); this.DSB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.DSB.Name = "DSB"; this.DSB.Size = new System.Drawing.Size(468, 30); this.DSB.TabIndex = 92; this.DSB.Tag = "themeable"; this.DSB.ToggleChecked = false; // // SSB // this.SSB.AccessibleName = "Add \"System Shortcuts\""; this.SSB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.SSB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.SSB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.SSB.ForeColor = System.Drawing.Color.White; this.SSB.LabelText = "Add \"System Shortcuts\""; this.SSB.Location = new System.Drawing.Point(40, 188); this.SSB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.SSB.Name = "SSB"; this.SSB.Size = new System.Drawing.Size(468, 30); this.SSB.TabIndex = 91; this.SSB.Tag = "themeable"; this.SSB.ToggleChecked = false; // // STB // this.STB.AccessibleName = "Add \"System Tools\""; this.STB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.STB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.STB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.STB.ForeColor = System.Drawing.Color.White; this.STB.LabelText = "Add \"System Tools\""; this.STB.Location = new System.Drawing.Point(40, 112); this.STB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.STB.Name = "STB"; this.STB.Size = new System.Drawing.Size(468, 30); this.STB.TabIndex = 90; this.STB.Tag = "themeable"; this.STB.ToggleChecked = false; // // PMB // this.PMB.AccessibleName = "Add \"Power Menu\""; this.PMB.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.PMB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.PMB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PMB.ForeColor = System.Drawing.Color.White; this.PMB.LabelText = "Add \"Power Menu\""; this.PMB.Location = new System.Drawing.Point(40, 75); this.PMB.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.PMB.Name = "PMB"; this.PMB.Size = new System.Drawing.Size(468, 30); this.PMB.TabIndex = 89; this.PMB.Tag = "themeable"; this.PMB.ToggleChecked = false; // // readyMenusL // this.readyMenusL.AutoSize = true; this.readyMenusL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.readyMenusL.ForeColor = System.Drawing.Color.DodgerBlue; this.readyMenusL.Location = new System.Drawing.Point(8, 12); this.readyMenusL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.readyMenusL.Name = "readyMenusL"; this.readyMenusL.Size = new System.Drawing.Size(288, 35); this.readyMenusL.TabIndex = 76; this.readyMenusL.Tag = "themeable"; this.readyMenusL.Text = "Add ready-made menus"; // // tabPage11 // this.tabPage11.AutoScroll = true; this.tabPage11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage11.Controls.Add(this.panel6); this.tabPage11.Controls.Add(this.removeCCB); this.tabPage11.Controls.Add(this.refreshCCB); this.tabPage11.Controls.Add(this.removeCCL); this.tabPage11.Controls.Add(this.btnCreateCustomCommand); this.tabPage11.Controls.Add(this.button48); this.tabPage11.Controls.Add(this.txtRunKeyword); this.tabPage11.Controls.Add(this.ccKeywordL); this.tabPage11.Controls.Add(this.txtRunFile); this.tabPage11.Controls.Add(this.ccFileL); this.tabPage11.Controls.Add(this.ccL); this.tabPage11.Location = new System.Drawing.Point(4, 4); this.tabPage11.Margin = new System.Windows.Forms.Padding(2); this.tabPage11.Name = "tabPage11"; this.tabPage11.Padding = new System.Windows.Forms.Padding(2); this.tabPage11.Size = new System.Drawing.Size(1578, 802); this.tabPage11.TabIndex = 4; this.tabPage11.Text = "Run Dialog"; // // panel6 // this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel6.Controls.Add(this.listCustomCommands); this.panel6.Location = new System.Drawing.Point(14, 262); this.panel6.Margin = new System.Windows.Forms.Padding(2); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(338, 391); this.panel6.TabIndex = 84; // // listCustomCommands // this.listCustomCommands.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listCustomCommands.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listCustomCommands.Dock = System.Windows.Forms.DockStyle.Fill; this.listCustomCommands.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listCustomCommands.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listCustomCommands.ForeColor = System.Drawing.Color.White; this.listCustomCommands.FormattingEnabled = true; this.listCustomCommands.HorizontalScrollbar = true; this.listCustomCommands.ItemHeight = 21; this.listCustomCommands.Location = new System.Drawing.Point(0, 0); this.listCustomCommands.Margin = new System.Windows.Forms.Padding(2); this.listCustomCommands.Name = "listCustomCommands"; this.listCustomCommands.Size = new System.Drawing.Size(336, 389); this.listCustomCommands.TabIndex = 79; // // removeCCB // this.removeCCB.BackColor = System.Drawing.Color.DodgerBlue; this.removeCCB.FlatAppearance.BorderSize = 0; this.removeCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.removeCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.removeCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.removeCCB.ForeColor = System.Drawing.Color.White; this.removeCCB.Location = new System.Drawing.Point(358, 262); this.removeCCB.Margin = new System.Windows.Forms.Padding(2); this.removeCCB.Name = "removeCCB"; this.removeCCB.Size = new System.Drawing.Size(202, 34); this.removeCCB.TabIndex = 82; this.removeCCB.Text = "Delete"; this.removeCCB.UseVisualStyleBackColor = false; this.removeCCB.Click += new System.EventHandler(this.button26_Click); // // refreshCCB // this.refreshCCB.BackColor = System.Drawing.Color.DodgerBlue; this.refreshCCB.FlatAppearance.BorderSize = 0; this.refreshCCB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.refreshCCB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.refreshCCB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.refreshCCB.ForeColor = System.Drawing.Color.White; this.refreshCCB.Location = new System.Drawing.Point(358, 301); this.refreshCCB.Margin = new System.Windows.Forms.Padding(2); this.refreshCCB.Name = "refreshCCB"; this.refreshCCB.Size = new System.Drawing.Size(202, 34); this.refreshCCB.TabIndex = 81; this.refreshCCB.Text = "Refresh"; this.refreshCCB.UseVisualStyleBackColor = false; this.refreshCCB.Click += new System.EventHandler(this.button8_Click); // // removeCCL // this.removeCCL.AutoSize = true; this.removeCCL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.removeCCL.ForeColor = System.Drawing.Color.DodgerBlue; this.removeCCL.Location = new System.Drawing.Point(8, 216); this.removeCCL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.removeCCL.Name = "removeCCL"; this.removeCCL.Size = new System.Drawing.Size(317, 35); this.removeCCL.TabIndex = 80; this.removeCCL.Tag = "themeable"; this.removeCCL.Text = "Delete existing commands"; // // btnCreateCustomCommand // this.btnCreateCustomCommand.BackColor = System.Drawing.Color.DodgerBlue; this.btnCreateCustomCommand.FlatAppearance.BorderSize = 0; this.btnCreateCustomCommand.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnCreateCustomCommand.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnCreateCustomCommand.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnCreateCustomCommand.ForeColor = System.Drawing.Color.White; this.btnCreateCustomCommand.Location = new System.Drawing.Point(374, 162); this.btnCreateCustomCommand.Margin = new System.Windows.Forms.Padding(2); this.btnCreateCustomCommand.Name = "btnCreateCustomCommand"; this.btnCreateCustomCommand.Size = new System.Drawing.Size(186, 36); this.btnCreateCustomCommand.TabIndex = 60; this.btnCreateCustomCommand.Text = "Create"; this.btnCreateCustomCommand.UseVisualStyleBackColor = false; this.btnCreateCustomCommand.Click += new System.EventHandler(this.button50_Click); // // button48 // this.button48.BackColor = System.Drawing.Color.DodgerBlue; this.button48.FlatAppearance.BorderSize = 0; this.button48.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.button48.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.button48.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button48.ForeColor = System.Drawing.Color.White; this.button48.Location = new System.Drawing.Point(495, 94); this.button48.Margin = new System.Windows.Forms.Padding(2); this.button48.Name = "button48"; this.button48.Size = new System.Drawing.Size(65, 36); this.button48.TabIndex = 58; this.button48.Text = "..."; this.button48.UseVisualStyleBackColor = false; this.button48.Click += new System.EventHandler(this.button48_Click); // // txtRunKeyword // this.txtRunKeyword.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtRunKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRunKeyword.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtRunKeyword.ForeColor = System.Drawing.Color.White; this.txtRunKeyword.Location = new System.Drawing.Point(14, 162); this.txtRunKeyword.Margin = new System.Windows.Forms.Padding(2); this.txtRunKeyword.Name = "txtRunKeyword"; this.txtRunKeyword.Size = new System.Drawing.Size(354, 34); this.txtRunKeyword.TabIndex = 9; // // ccKeywordL // this.ccKeywordL.AutoSize = true; this.ccKeywordL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ccKeywordL.ForeColor = System.Drawing.Color.Silver; this.ccKeywordL.Location = new System.Drawing.Point(9, 131); this.ccKeywordL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.ccKeywordL.Name = "ccKeywordL"; this.ccKeywordL.Size = new System.Drawing.Size(96, 28); this.ccKeywordL.TabIndex = 8; this.ccKeywordL.Text = "Keyword:"; // // txtRunFile // this.txtRunFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtRunFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRunFile.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtRunFile.ForeColor = System.Drawing.Color.White; this.txtRunFile.Location = new System.Drawing.Point(14, 94); this.txtRunFile.Margin = new System.Windows.Forms.Padding(2); this.txtRunFile.Name = "txtRunFile"; this.txtRunFile.ReadOnly = true; this.txtRunFile.Size = new System.Drawing.Size(476, 34); this.txtRunFile.TabIndex = 7; // // ccFileL // this.ccFileL.AutoSize = true; this.ccFileL.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ccFileL.ForeColor = System.Drawing.Color.Silver; this.ccFileL.Location = new System.Drawing.Point(9, 62); this.ccFileL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.ccFileL.Name = "ccFileL"; this.ccFileL.Size = new System.Drawing.Size(126, 28); this.ccFileL.TabIndex = 6; this.ccFileL.Text = "File location:"; // // ccL // this.ccL.AutoSize = true; this.ccL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ccL.ForeColor = System.Drawing.Color.DodgerBlue; this.ccL.Location = new System.Drawing.Point(8, 12); this.ccL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.ccL.Name = "ccL"; this.ccL.Size = new System.Drawing.Size(372, 35); this.ccL.TabIndex = 5; this.ccL.Tag = "themeable"; this.ccL.Text = "Define your custom commands"; // // tabPage4 // this.tabPage4.AutoScroll = true; this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage4.Controls.Add(this.panel15); this.tabPage4.Controls.Add(this.button1); this.tabPage4.Controls.Add(this.button2); this.tabPage4.Controls.Add(this.label21); this.tabPage4.Controls.Add(this.button3); this.tabPage4.Controls.Add(this.txtSysVar); this.tabPage4.Controls.Add(this.label23); this.tabPage4.Controls.Add(this.label24); this.tabPage4.Location = new System.Drawing.Point(4, 4); this.tabPage4.Margin = new System.Windows.Forms.Padding(2); this.tabPage4.Name = "tabPage4"; this.tabPage4.Padding = new System.Windows.Forms.Padding(2); this.tabPage4.Size = new System.Drawing.Size(1578, 802); this.tabPage4.TabIndex = 6; this.tabPage4.Text = "System Variables"; // // panel15 // this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel15.Controls.Add(this.listSystemVariables); this.panel15.Location = new System.Drawing.Point(14, 211); this.panel15.Margin = new System.Windows.Forms.Padding(2); this.panel15.Name = "panel15"; this.panel15.Size = new System.Drawing.Size(780, 391); this.panel15.TabIndex = 84; // // listSystemVariables // this.listSystemVariables.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listSystemVariables.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listSystemVariables.Dock = System.Windows.Forms.DockStyle.Fill; this.listSystemVariables.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listSystemVariables.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listSystemVariables.ForeColor = System.Drawing.Color.White; this.listSystemVariables.FormattingEnabled = true; this.listSystemVariables.HorizontalScrollbar = true; this.listSystemVariables.ItemHeight = 21; this.listSystemVariables.Location = new System.Drawing.Point(0, 0); this.listSystemVariables.Margin = new System.Windows.Forms.Padding(2); this.listSystemVariables.Name = "listSystemVariables"; this.listSystemVariables.Size = new System.Drawing.Size(778, 389); this.listSystemVariables.TabIndex = 79; // // button1 // this.button1.BackColor = System.Drawing.Color.DodgerBlue; this.button1.FlatAppearance.BorderSize = 0; this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button1.ForeColor = System.Drawing.Color.White; this.button1.Location = new System.Drawing.Point(384, 608); this.button1.Margin = new System.Windows.Forms.Padding(2); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(202, 34); this.button1.TabIndex = 82; this.button1.Text = "Delete"; this.button1.UseVisualStyleBackColor = false; this.button1.Click += new System.EventHandler(this.button1_Click); // // button2 // this.button2.BackColor = System.Drawing.Color.DodgerBlue; this.button2.FlatAppearance.BorderSize = 0; this.button2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.button2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button2.ForeColor = System.Drawing.Color.White; this.button2.Location = new System.Drawing.Point(591, 608); this.button2.Margin = new System.Windows.Forms.Padding(2); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(202, 34); this.button2.TabIndex = 81; this.button2.Text = "Refresh"; this.button2.UseVisualStyleBackColor = false; this.button2.Click += new System.EventHandler(this.button2_Click); // // label21 // this.label21.AutoSize = true; this.label21.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label21.ForeColor = System.Drawing.Color.DodgerBlue; this.label21.Location = new System.Drawing.Point(8, 165); this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(205, 35); this.label21.TabIndex = 80; this.label21.Tag = "themeable"; this.label21.Text = "System Variables"; // // button3 // this.button3.BackColor = System.Drawing.Color.DodgerBlue; this.button3.FlatAppearance.BorderSize = 0; this.button3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.button3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button3.ForeColor = System.Drawing.Color.White; this.button3.Location = new System.Drawing.Point(591, 94); this.button3.Margin = new System.Windows.Forms.Padding(2); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(202, 36); this.button3.TabIndex = 60; this.button3.Text = "Add"; this.button3.UseVisualStyleBackColor = false; this.button3.Click += new System.EventHandler(this.button3_Click); // // txtSysVar // this.txtSysVar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtSysVar.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSysVar.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtSysVar.ForeColor = System.Drawing.Color.White; this.txtSysVar.Location = new System.Drawing.Point(14, 94); this.txtSysVar.Margin = new System.Windows.Forms.Padding(2); this.txtSysVar.Name = "txtSysVar"; this.txtSysVar.Size = new System.Drawing.Size(572, 34); this.txtSysVar.TabIndex = 7; // // label23 // this.label23.AutoSize = true; this.label23.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label23.ForeColor = System.Drawing.Color.Silver; this.label23.Location = new System.Drawing.Point(9, 62); this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(251, 28); this.label23.TabIndex = 6; this.label23.Text = "New system variable path:"; // // label24 // this.label24.AutoSize = true; this.label24.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label24.ForeColor = System.Drawing.Color.DodgerBlue; this.label24.Location = new System.Drawing.Point(8, 12); this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(280, 35); this.label24.TabIndex = 5; this.label24.Tag = "themeable"; this.label24.Text = "System Variables editor"; // // tabPage3 // this.tabPage3.AutoScroll = true; this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.tabPage3.Controls.Add(this.lblFontsNumber); this.tabPage3.Controls.Add(this.lblFontsCount); this.tabPage3.Controls.Add(this.txtSearchFonts); this.tabPage3.Controls.Add(this.btnRestoreFont); this.tabPage3.Controls.Add(this.btnSetGlobalFont); this.tabPage3.Controls.Add(this.lblCurrentFont); this.tabPage3.Controls.Add(this.label11); this.tabPage3.Controls.Add(this.btnRefreshFonts); this.tabPage3.Controls.Add(this.panel8); this.tabPage3.Controls.Add(this.fontSetTitle); this.tabPage3.Location = new System.Drawing.Point(4, 4); this.tabPage3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabPage3.Name = "tabPage3"; this.tabPage3.Size = new System.Drawing.Size(1578, 802); this.tabPage3.TabIndex = 5; this.tabPage3.Text = "Fonts"; // // lblFontsNumber // this.lblFontsNumber.AutoSize = true; this.lblFontsNumber.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblFontsNumber.ForeColor = System.Drawing.Color.DodgerBlue; this.lblFontsNumber.Location = new System.Drawing.Point(10, 628); this.lblFontsNumber.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblFontsNumber.Name = "lblFontsNumber"; this.lblFontsNumber.Size = new System.Drawing.Size(20, 28); this.lblFontsNumber.TabIndex = 93; this.lblFontsNumber.Tag = "themeable"; this.lblFontsNumber.Text = "-"; // // lblFontsCount // this.lblFontsCount.AutoSize = true; this.lblFontsCount.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblFontsCount.ForeColor = System.Drawing.Color.Silver; this.lblFontsCount.Location = new System.Drawing.Point(10, 601); this.lblFontsCount.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblFontsCount.Name = "lblFontsCount"; this.lblFontsCount.Size = new System.Drawing.Size(151, 28); this.lblFontsCount.TabIndex = 92; this.lblFontsCount.Tag = ""; this.lblFontsCount.Text = "Available fonts:"; // // txtSearchFonts // this.txtSearchFonts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtSearchFonts.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSearchFonts.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtSearchFonts.ForeColor = System.Drawing.Color.White; this.txtSearchFonts.Location = new System.Drawing.Point(14, 159); this.txtSearchFonts.Margin = new System.Windows.Forms.Padding(2); this.txtSearchFonts.Name = "txtSearchFonts"; this.txtSearchFonts.Size = new System.Drawing.Size(338, 34); this.txtSearchFonts.TabIndex = 91; this.txtSearchFonts.TextChanged += new System.EventHandler(this.txtSearchFonts_TextChanged); // // btnRestoreFont // this.btnRestoreFont.BackColor = System.Drawing.Color.DodgerBlue; this.btnRestoreFont.FlatAppearance.BorderSize = 0; this.btnRestoreFont.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRestoreFont.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRestoreFont.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRestoreFont.ForeColor = System.Drawing.Color.White; this.btnRestoreFont.Location = new System.Drawing.Point(358, 556); this.btnRestoreFont.Margin = new System.Windows.Forms.Padding(2); this.btnRestoreFont.Name = "btnRestoreFont"; this.btnRestoreFont.Size = new System.Drawing.Size(269, 34); this.btnRestoreFont.TabIndex = 90; this.btnRestoreFont.Text = "Restore default"; this.btnRestoreFont.UseVisualStyleBackColor = false; this.btnRestoreFont.Click += new System.EventHandler(this.btnRestoreFont_Click); // // btnSetGlobalFont // this.btnSetGlobalFont.BackColor = System.Drawing.Color.DodgerBlue; this.btnSetGlobalFont.FlatAppearance.BorderSize = 0; this.btnSetGlobalFont.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnSetGlobalFont.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnSetGlobalFont.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSetGlobalFont.ForeColor = System.Drawing.Color.White; this.btnSetGlobalFont.Location = new System.Drawing.Point(358, 201); this.btnSetGlobalFont.Margin = new System.Windows.Forms.Padding(2); this.btnSetGlobalFont.Name = "btnSetGlobalFont"; this.btnSetGlobalFont.Size = new System.Drawing.Size(269, 34); this.btnSetGlobalFont.TabIndex = 89; this.btnSetGlobalFont.Text = "Set selected as default"; this.btnSetGlobalFont.UseVisualStyleBackColor = false; this.btnSetGlobalFont.Click += new System.EventHandler(this.btnSetGlobalFont_Click); // // lblCurrentFont // this.lblCurrentFont.AutoSize = true; this.lblCurrentFont.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblCurrentFont.ForeColor = System.Drawing.Color.DodgerBlue; this.lblCurrentFont.Location = new System.Drawing.Point(10, 94); this.lblCurrentFont.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblCurrentFont.Name = "lblCurrentFont"; this.lblCurrentFont.Size = new System.Drawing.Size(20, 28); this.lblCurrentFont.TabIndex = 88; this.lblCurrentFont.Tag = "themeable"; this.lblCurrentFont.Text = "-"; // // label11 // this.label11.AutoSize = true; this.label11.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.ForeColor = System.Drawing.Color.Silver; this.label11.Location = new System.Drawing.Point(10, 68); this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(129, 28); this.label11.TabIndex = 87; this.label11.Tag = ""; this.label11.Text = "Current font:"; // // btnRefreshFonts // this.btnRefreshFonts.BackColor = System.Drawing.Color.DodgerBlue; this.btnRefreshFonts.FlatAppearance.BorderSize = 0; this.btnRefreshFonts.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnRefreshFonts.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnRefreshFonts.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnRefreshFonts.ForeColor = System.Drawing.Color.White; this.btnRefreshFonts.Location = new System.Drawing.Point(358, 160); this.btnRefreshFonts.Margin = new System.Windows.Forms.Padding(2); this.btnRefreshFonts.Name = "btnRefreshFonts"; this.btnRefreshFonts.Size = new System.Drawing.Size(269, 34); this.btnRefreshFonts.TabIndex = 86; this.btnRefreshFonts.Text = "Refresh"; this.btnRefreshFonts.UseVisualStyleBackColor = false; this.btnRefreshFonts.Click += new System.EventHandler(this.btnRefreshFonts_Click); // // panel8 // this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel8.Controls.Add(this.listFonts); this.panel8.Location = new System.Drawing.Point(14, 200); this.panel8.Margin = new System.Windows.Forms.Padding(2); this.panel8.Name = "panel8"; this.panel8.Size = new System.Drawing.Size(338, 391); this.panel8.TabIndex = 85; // // listFonts // this.listFonts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listFonts.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listFonts.Dock = System.Windows.Forms.DockStyle.Fill; this.listFonts.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listFonts.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listFonts.ForeColor = System.Drawing.Color.White; this.listFonts.FormattingEnabled = true; this.listFonts.HorizontalScrollbar = true; this.listFonts.ItemHeight = 21; this.listFonts.Location = new System.Drawing.Point(0, 0); this.listFonts.Margin = new System.Windows.Forms.Padding(2); this.listFonts.Name = "listFonts"; this.listFonts.Size = new System.Drawing.Size(336, 389); this.listFonts.TabIndex = 79; // // fontSetTitle // this.fontSetTitle.AutoSize = true; this.fontSetTitle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.fontSetTitle.ForeColor = System.Drawing.Color.DodgerBlue; this.fontSetTitle.Location = new System.Drawing.Point(8, 12); this.fontSetTitle.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.fontSetTitle.Name = "fontSetTitle"; this.fontSetTitle.Size = new System.Drawing.Size(547, 35); this.fontSetTitle.TabIndex = 6; this.fontSetTitle.Tag = "themeable"; this.fontSetTitle.Text = "Set your favorite font as Windows default font"; // // optionsTab // this.optionsTab.AutoScroll = true; this.optionsTab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.optionsTab.Controls.Add(this.linkLabel7); this.optionsTab.Controls.Add(this.pictureBox7); this.optionsTab.Controls.Add(this.btnReinforce); this.optionsTab.Controls.Add(this.linkLabel6); this.optionsTab.Controls.Add(this.linkLabel4); this.optionsTab.Controls.Add(this.pictureBox6); this.optionsTab.Controls.Add(this.pictureBox5); this.optionsTab.Controls.Add(this.pictureBox3); this.optionsTab.Controls.Add(this.linkLabel3); this.optionsTab.Controls.Add(this.pictureBox17); this.optionsTab.Controls.Add(this.linkLabel2); this.optionsTab.Controls.Add(this.pictureBox14); this.optionsTab.Controls.Add(this.pictureBox13); this.optionsTab.Controls.Add(this.pictureBox12); this.optionsTab.Controls.Add(this.linkLabel1); this.optionsTab.Controls.Add(this.pictureBox85); this.optionsTab.Controls.Add(this.panel9); this.optionsTab.Controls.Add(this.languagesL); this.optionsTab.Controls.Add(this.linkLabel5); this.optionsTab.Controls.Add(this.btnOpenConf); this.optionsTab.Controls.Add(this.lblTroubleshoot); this.optionsTab.Controls.Add(this.lblUpdating); this.optionsTab.Controls.Add(this.btnViewLog); this.optionsTab.Controls.Add(this.l2); this.optionsTab.Controls.Add(this.btnUpdate); this.optionsTab.Controls.Add(this.btnResetConfig); this.optionsTab.Controls.Add(this.lblTheming); this.optionsTab.Controls.Add(this.autoUpdateToggle); this.optionsTab.Controls.Add(this.autoStartToggle); this.optionsTab.Controls.Add(this.colorPicker1); this.optionsTab.Controls.Add(this.quickAccessToggle); this.optionsTab.Location = new System.Drawing.Point(4, 32); this.optionsTab.Margin = new System.Windows.Forms.Padding(2); this.optionsTab.Name = "optionsTab"; this.optionsTab.Padding = new System.Windows.Forms.Padding(2); this.optionsTab.Size = new System.Drawing.Size(1593, 844); this.optionsTab.TabIndex = 6; this.optionsTab.Text = "Options"; // // linkLabel7 // this.linkLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.linkLabel7.AutoSize = true; this.linkLabel7.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel7.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel7.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel7.Location = new System.Drawing.Point(1414, 618); this.linkLabel7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel7.Name = "linkLabel7"; this.linkLabel7.Size = new System.Drawing.Size(124, 28); this.linkLabel7.TabIndex = 107; this.linkLabel7.TabStop = true; this.linkLabel7.Tag = "themeable"; this.linkLabel7.Text = "FAQs && help"; this.linkLabel7.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel7_LinkClicked); // // pictureBox7 // this.pictureBox7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox7.ErrorImage = null; this.pictureBox7.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox7.Image"))); this.pictureBox7.Location = new System.Drawing.Point(1545, 618); this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new System.Drawing.Size(30, 30); this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox7.TabIndex = 106; this.pictureBox7.TabStop = false; // // btnReinforce // this.btnReinforce.BackColor = System.Drawing.Color.DodgerBlue; this.btnReinforce.FlatAppearance.BorderColor = System.Drawing.Color.RoyalBlue; this.btnReinforce.FlatAppearance.BorderSize = 0; this.btnReinforce.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnReinforce.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnReinforce.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnReinforce.ForeColor = System.Drawing.Color.White; this.btnReinforce.Location = new System.Drawing.Point(42, 676); this.btnReinforce.Margin = new System.Windows.Forms.Padding(2); this.btnReinforce.Name = "btnReinforce"; this.btnReinforce.Size = new System.Drawing.Size(326, 39); this.btnReinforce.TabIndex = 103; this.btnReinforce.Text = "Reinforce policies"; this.btnReinforce.UseVisualStyleBackColor = false; this.btnReinforce.Click += new System.EventHandler(this.btnReinforce_Click); // // linkLabel6 // this.linkLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.linkLabel6.AutoSize = true; this.linkLabel6.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel6.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel6.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel6.Location = new System.Drawing.Point(48, 802); this.linkLabel6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel6.Name = "linkLabel6"; this.linkLabel6.Size = new System.Drawing.Size(172, 28); this.linkLabel6.TabIndex = 102; this.linkLabel6.TabStop = true; this.linkLabel6.Tag = "themeable"; this.linkLabel6.Text = "Request a feature"; this.linkLabel6.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel6_LinkClicked); // // linkLabel4 // this.linkLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.linkLabel4.AutoSize = true; this.linkLabel4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel4.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel4.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel4.Location = new System.Drawing.Point(48, 770); this.linkLabel4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel4.Name = "linkLabel4"; this.linkLabel4.Size = new System.Drawing.Size(131, 28); this.linkLabel4.TabIndex = 101; this.linkLabel4.TabStop = true; this.linkLabel4.Tag = "themeable"; this.linkLabel4.Text = "Report a bug"; this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked_1); // // pictureBox6 // this.pictureBox6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.pictureBox6.ErrorImage = null; this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image"))); this.pictureBox6.Location = new System.Drawing.Point(16, 802); this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new System.Drawing.Size(25, 25); this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox6.TabIndex = 100; this.pictureBox6.TabStop = false; // // pictureBox5 // this.pictureBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.pictureBox5.ErrorImage = null; this.pictureBox5.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image"))); this.pictureBox5.Location = new System.Drawing.Point(16, 770); this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(25, 25); this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox5.TabIndex = 99; this.pictureBox5.TabStop = false; // // pictureBox3 // this.pictureBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox3.ErrorImage = null; this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image"))); this.pictureBox3.Location = new System.Drawing.Point(1545, 654); this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(30, 30); this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox3.TabIndex = 96; this.pictureBox3.TabStop = false; // // linkLabel3 // this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.linkLabel3.AutoSize = true; this.linkLabel3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel3.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel3.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel3.Location = new System.Drawing.Point(1418, 654); this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel3.Name = "linkLabel3"; this.linkLabel3.Size = new System.Drawing.Size(121, 28); this.linkLabel3.TabIndex = 95; this.linkLabel3.TabStop = true; this.linkLabel3.Tag = "themeable"; this.linkLabel3.Text = "Support me"; this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked_1); // // pictureBox17 // this.pictureBox17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox17.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox17.Image"))); this.pictureBox17.Location = new System.Drawing.Point(1545, 728); this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox17.Name = "pictureBox17"; this.pictureBox17.Size = new System.Drawing.Size(30, 30); this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox17.TabIndex = 94; this.pictureBox17.TabStop = false; // // linkLabel2 // this.linkLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.linkLabel2.AutoSize = true; this.linkLabel2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel2.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel2.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel2.Location = new System.Drawing.Point(1408, 728); this.linkLabel2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel2.Name = "linkLabel2"; this.linkLabel2.Size = new System.Drawing.Size(130, 28); this.linkLabel2.TabIndex = 93; this.linkLabel2.TabStop = true; this.linkLabel2.Tag = "themeable"; this.linkLabel2.Text = "Open Source"; this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked_1); // // pictureBox14 // this.pictureBox14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox14.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox14.Image"))); this.pictureBox14.Location = new System.Drawing.Point(1545, 802); this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox14.Name = "pictureBox14"; this.pictureBox14.Size = new System.Drawing.Size(30, 30); this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox14.TabIndex = 92; this.pictureBox14.TabStop = false; // // pictureBox13 // this.pictureBox13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox13.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox13.Image"))); this.pictureBox13.Location = new System.Drawing.Point(1545, 690); this.pictureBox13.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox13.Name = "pictureBox13"; this.pictureBox13.Size = new System.Drawing.Size(30, 30); this.pictureBox13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox13.TabIndex = 91; this.pictureBox13.TabStop = false; // // pictureBox12 // this.pictureBox12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox12.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox12.Image"))); this.pictureBox12.Location = new System.Drawing.Point(1545, 765); this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox12.Name = "pictureBox12"; this.pictureBox12.Size = new System.Drawing.Size(30, 30); this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox12.TabIndex = 90; this.pictureBox12.TabStop = false; // // linkLabel1 // this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.linkLabel1.AutoSize = true; this.linkLabel1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel1.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel1.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel1.Location = new System.Drawing.Point(1379, 764); this.linkLabel1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel1.Name = "linkLabel1"; this.linkLabel1.Size = new System.Drawing.Size(158, 28); this.linkLabel1.TabIndex = 89; this.linkLabel1.TabStop = true; this.linkLabel1.Tag = "themeable"; this.linkLabel1.Text = "Discord support"; this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked_1); // // pictureBox85 // this.pictureBox85.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.pictureBox85.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox85.Image"))); this.pictureBox85.Location = new System.Drawing.Point(1530, 18); this.pictureBox85.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.pictureBox85.Name = "pictureBox85"; this.pictureBox85.Size = new System.Drawing.Size(40, 40); this.pictureBox85.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox85.TabIndex = 74; this.pictureBox85.TabStop = false; // // panel9 // this.panel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.panel9.Controls.Add(this.boxLang); this.panel9.Controls.Add(this.picFlag); this.panel9.Location = new System.Drawing.Point(1142, 64); this.panel9.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.panel9.Name = "panel9"; this.panel9.Size = new System.Drawing.Size(426, 141); this.panel9.TabIndex = 73; // // boxLang // this.boxLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.boxLang.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); this.boxLang.BorderColor = System.Drawing.Color.Blue; this.boxLang.Cursor = System.Windows.Forms.Cursors.Hand; this.boxLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.boxLang.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.boxLang.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.boxLang.ForeColor = System.Drawing.Color.White; this.boxLang.FormattingEnabled = true; this.boxLang.Location = new System.Drawing.Point(115, 4); this.boxLang.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.boxLang.Name = "boxLang"; this.boxLang.Size = new System.Drawing.Size(264, 36); this.boxLang.TabIndex = 95; this.boxLang.SelectedIndexChanged += new System.EventHandler(this.boxLang_SelectedIndexChanged); // // picFlag // this.picFlag.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.picFlag.Image = global::Optimizer.Properties.Resources.united_kingdom; this.picFlag.Location = new System.Drawing.Point(386, 11); this.picFlag.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.picFlag.Name = "picFlag"; this.picFlag.Size = new System.Drawing.Size(40, 24); this.picFlag.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picFlag.TabIndex = 75; this.picFlag.TabStop = false; // // languagesL // this.languagesL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.languagesL.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.languagesL.ForeColor = System.Drawing.Color.DodgerBlue; this.languagesL.Location = new System.Drawing.Point(1216, 22); this.languagesL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.languagesL.Name = "languagesL"; this.languagesL.Size = new System.Drawing.Size(308, 35); this.languagesL.TabIndex = 71; this.languagesL.Tag = "themeable"; this.languagesL.Text = "Choose language"; this.languagesL.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // linkLabel5 // this.linkLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.linkLabel5.AutoSize = true; this.linkLabel5.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.linkLabel5.ForeColor = System.Drawing.Color.DodgerBlue; this.linkLabel5.LinkColor = System.Drawing.Color.DodgerBlue; this.linkLabel5.Location = new System.Drawing.Point(1344, 802); this.linkLabel5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.linkLabel5.Name = "linkLabel5"; this.linkLabel5.Size = new System.Drawing.Size(198, 28); this.linkLabel5.TabIndex = 65; this.linkLabel5.TabStop = true; this.linkLabel5.Tag = "themeable"; this.linkLabel5.Text = "GNU GPL 3.0 license"; this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel5_LinkClicked); // // btnOpenConf // this.btnOpenConf.BackColor = System.Drawing.Color.DodgerBlue; this.btnOpenConf.FlatAppearance.BorderSize = 0; this.btnOpenConf.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnOpenConf.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnOpenConf.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnOpenConf.ForeColor = System.Drawing.Color.White; this.btnOpenConf.Location = new System.Drawing.Point(42, 589); this.btnOpenConf.Margin = new System.Windows.Forms.Padding(2); this.btnOpenConf.Name = "btnOpenConf"; this.btnOpenConf.Size = new System.Drawing.Size(326, 39); this.btnOpenConf.TabIndex = 63; this.btnOpenConf.Text = "Show configuration folder"; this.btnOpenConf.UseVisualStyleBackColor = false; this.btnOpenConf.Click += new System.EventHandler(this.btnOpenConf_Click); // // lblTroubleshoot // this.lblTroubleshoot.AutoSize = true; this.lblTroubleshoot.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTroubleshoot.ForeColor = System.Drawing.Color.DodgerBlue; this.lblTroubleshoot.Location = new System.Drawing.Point(21, 498); this.lblTroubleshoot.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblTroubleshoot.Name = "lblTroubleshoot"; this.lblTroubleshoot.Size = new System.Drawing.Size(176, 30); this.lblTroubleshoot.TabIndex = 62; this.lblTroubleshoot.Tag = "themeable"; this.lblTroubleshoot.Text = "Troubleshooting"; // // lblUpdating // this.lblUpdating.AutoSize = true; this.lblUpdating.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblUpdating.ForeColor = System.Drawing.Color.DodgerBlue; this.lblUpdating.Location = new System.Drawing.Point(21, 372); this.lblUpdating.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblUpdating.Name = "lblUpdating"; this.lblUpdating.Size = new System.Drawing.Size(172, 30); this.lblUpdating.TabIndex = 61; this.lblUpdating.Tag = "themeable"; this.lblUpdating.Text = "Check && update"; // // btnViewLog // this.btnViewLog.BackColor = System.Drawing.Color.DodgerBlue; this.btnViewLog.FlatAppearance.BorderSize = 0; this.btnViewLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnViewLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnViewLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnViewLog.ForeColor = System.Drawing.Color.White; this.btnViewLog.Location = new System.Drawing.Point(42, 545); this.btnViewLog.Margin = new System.Windows.Forms.Padding(2); this.btnViewLog.Name = "btnViewLog"; this.btnViewLog.Size = new System.Drawing.Size(326, 39); this.btnViewLog.TabIndex = 60; this.btnViewLog.Text = "View errors"; this.btnViewLog.UseVisualStyleBackColor = false; this.btnViewLog.Click += new System.EventHandler(this.btnViewLog_Click); // // l2 // this.l2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.l2.AutoSize = true; this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.l2.ForeColor = System.Drawing.Color.DodgerBlue; this.l2.LinkColor = System.Drawing.Color.DodgerBlue; this.l2.Location = new System.Drawing.Point(1382, 690); this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.l2.Name = "l2"; this.l2.Size = new System.Drawing.Size(157, 28); this.l2.TabIndex = 59; this.l2.TabStop = true; this.l2.Tag = "themeable"; this.l2.Text = "deadmoon © ∞"; this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked); // // btnUpdate // this.btnUpdate.BackColor = System.Drawing.Color.DodgerBlue; this.btnUpdate.FlatAppearance.BorderSize = 0; this.btnUpdate.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnUpdate.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnUpdate.Font = new System.Drawing.Font("Segoe UI Semibold", 10F); this.btnUpdate.ForeColor = System.Drawing.Color.White; this.btnUpdate.Location = new System.Drawing.Point(42, 415); this.btnUpdate.Margin = new System.Windows.Forms.Padding(2); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(326, 39); this.btnUpdate.TabIndex = 57; this.btnUpdate.Text = "Check for update"; this.btnUpdate.UseVisualStyleBackColor = false; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // btnResetConfig // this.btnResetConfig.BackColor = System.Drawing.Color.DodgerBlue; this.btnResetConfig.FlatAppearance.BorderColor = System.Drawing.Color.RoyalBlue; this.btnResetConfig.FlatAppearance.BorderSize = 0; this.btnResetConfig.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnResetConfig.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnResetConfig.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnResetConfig.ForeColor = System.Drawing.Color.White; this.btnResetConfig.Location = new System.Drawing.Point(42, 632); this.btnResetConfig.Margin = new System.Windows.Forms.Padding(2); this.btnResetConfig.Name = "btnResetConfig"; this.btnResetConfig.Size = new System.Drawing.Size(326, 39); this.btnResetConfig.TabIndex = 56; this.btnResetConfig.Text = "Repair"; this.btnResetConfig.UseVisualStyleBackColor = false; this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click); // // lblTheming // this.lblTheming.AutoSize = true; this.lblTheming.Font = new System.Drawing.Font("Segoe UI Semibold", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTheming.ForeColor = System.Drawing.Color.DodgerBlue; this.lblTheming.Location = new System.Drawing.Point(21, 186); this.lblTheming.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.lblTheming.Name = "lblTheming"; this.lblTheming.Size = new System.Drawing.Size(208, 30); this.lblTheming.TabIndex = 55; this.lblTheming.Tag = "themeable"; this.lblTheming.Text = "Choose your theme"; // // autoUpdateToggle // this.autoUpdateToggle.AccessibleName = "Update on launch"; this.autoUpdateToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.autoUpdateToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.autoUpdateToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.autoUpdateToggle.ForeColor = System.Drawing.Color.White; this.autoUpdateToggle.LabelText = "Update on launch"; this.autoUpdateToggle.Location = new System.Drawing.Point(26, 101); this.autoUpdateToggle.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.autoUpdateToggle.Name = "autoUpdateToggle"; this.autoUpdateToggle.Size = new System.Drawing.Size(468, 30); this.autoUpdateToggle.TabIndex = 105; this.autoUpdateToggle.Tag = "themeable"; this.autoUpdateToggle.ToggleChecked = false; this.autoUpdateToggle.ToggleClicked += new System.EventHandler(this.autoUpdateToggle_ToggleClicked); // // autoStartToggle // this.autoStartToggle.AccessibleName = "Start with Windows"; this.autoStartToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.autoStartToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.autoStartToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.autoStartToggle.ForeColor = System.Drawing.Color.White; this.autoStartToggle.LabelText = "Start with Windows"; this.autoStartToggle.Location = new System.Drawing.Point(26, 61); this.autoStartToggle.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.autoStartToggle.Name = "autoStartToggle"; this.autoStartToggle.Size = new System.Drawing.Size(468, 30); this.autoStartToggle.TabIndex = 98; this.autoStartToggle.Tag = "themeable"; this.autoStartToggle.ToggleChecked = false; this.autoStartToggle.ToggleClicked += new System.EventHandler(this.autoStartToggle_ToggleClicked); // // colorPicker1 // this.colorPicker1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.colorPicker1.Location = new System.Drawing.Point(28, 221); this.colorPicker1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.colorPicker1.Name = "colorPicker1"; this.colorPicker1.Size = new System.Drawing.Size(174, 122); this.colorPicker1.TabIndex = 97; this.colorPicker1.Text = "colorPicker1"; this.colorPicker1.ColorChanged += new System.EventHandler(this.colorPicker1_ColorChanged); // // quickAccessToggle // this.quickAccessToggle.AccessibleName = "Show Quick Access Menu"; this.quickAccessToggle.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.quickAccessToggle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.quickAccessToggle.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.quickAccessToggle.ForeColor = System.Drawing.Color.White; this.quickAccessToggle.LabelText = "Show Quick Access Menu"; this.quickAccessToggle.Location = new System.Drawing.Point(26, 22); this.quickAccessToggle.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8); this.quickAccessToggle.Name = "quickAccessToggle"; this.quickAccessToggle.Size = new System.Drawing.Size(468, 30); this.quickAccessToggle.TabIndex = 88; this.quickAccessToggle.Tag = "themeable"; this.quickAccessToggle.ToggleChecked = false; this.quickAccessToggle.ToggleClicked += new System.EventHandler(this.quickAccessToggle_ToggleClicked); // // imagesHw // this.imagesHw.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imagesHw.ImageStream"))); this.imagesHw.TransparentColor = System.Drawing.Color.Transparent; this.imagesHw.Images.SetKeyName(0, "cpu.png"); this.imagesHw.Images.SetKeyName(1, "ram.png"); this.imagesHw.Images.SetKeyName(2, "gpu.png"); this.imagesHw.Images.SetKeyName(3, "mobo.png"); this.imagesHw.Images.SetKeyName(4, "1608923_hdd_o_icon.png"); this.imagesHw.Images.SetKeyName(5, "inet.png"); this.imagesHw.Images.SetKeyName(6, "audio.png"); this.imagesHw.Images.SetKeyName(7, "dev.png"); this.imagesHw.Images.SetKeyName(8, "os.png"); // // defineCommandDialog // this.defineCommandDialog.Filter = "Executables [*.exe]|*.exe"; this.defineCommandDialog.Title = "Optimizer"; this.defineCommandDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCmd_FileOk); // // defineProgramDialog // this.defineProgramDialog.Filter = "Executables [*.exe]|*.exe"; this.defineProgramDialog.Title = "Optimizer"; this.defineProgramDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramDialog_FileOk); // // defineFolderDialog // this.defineFolderDialog.Description = "Optimizer"; // // defineFileDialog // this.defineFileDialog.Filter = "All files [*.*]|*.*"; this.defineFileDialog.Title = "Optimizer"; this.defineFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileDialog_FileOk); // // DefineProgramIconDialog // this.DefineProgramIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe"; this.DefineProgramIconDialog.Title = "Optimizer"; this.DefineProgramIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineProgramIconDialog_FileOk); // // DefineFolderIconDialog // this.DefineFolderIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe"; this.DefineFolderIconDialog.Title = "Optimizer"; this.DefineFolderIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFolderIconDialog_FileOk); // // DefineURLIconDialog // this.DefineURLIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe"; this.DefineURLIconDialog.Title = "Optimizer"; this.DefineURLIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineURLIconDialog_FileOk); // // DefineFileIconDialog // this.DefineFileIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe"; this.DefineFileIconDialog.Title = "Optimizer"; this.DefineFileIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineFileIconDialog_FileOk); // // DefineCommandIconDialog // this.DefineCommandIconDialog.Filter = "Icon [*.ico]|*.ico|Executable [*.exe]|*.exe"; this.DefineCommandIconDialog.Title = "Optimizer"; this.DefineCommandIconDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.DefineCommandIconDialog_FileOk); // // ExportDialog // this.ExportDialog.Filter = "Text [*.txt]|*.txt"; this.ExportDialog.Title = "Optimizer"; // // launcherMenu // this.launcherMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(10))))); this.launcherMenu.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.launcherMenu.ImageScalingSize = new System.Drawing.Size(20, 20); this.launcherMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.trayStartup, this.trayCleaner, this.trayPinger, this.trayHosts, this.trayAD, this.trayHW, this.trayRegistry, this.toolStripSeparator1, this.trayOptions, this.trayRestartExplorer, this.trayUnlocker, this.toolStripSeparator2, this.trayExit}); this.launcherMenu.Name = "launcherMenu"; this.launcherMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; this.launcherMenu.Size = new System.Drawing.Size(258, 324); // // trayStartup // this.trayStartup.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayStartup.ForeColor = System.Drawing.Color.White; this.trayStartup.Image = ((System.Drawing.Image)(resources.GetObject("trayStartup.Image"))); this.trayStartup.Name = "trayStartup"; this.trayStartup.Size = new System.Drawing.Size(257, 28); this.trayStartup.Text = "Startup Manager"; this.trayStartup.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayStartup.Click += new System.EventHandler(this.startupItem_Click); // // trayCleaner // this.trayCleaner.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayCleaner.ForeColor = System.Drawing.Color.White; this.trayCleaner.Image = ((System.Drawing.Image)(resources.GetObject("trayCleaner.Image"))); this.trayCleaner.Name = "trayCleaner"; this.trayCleaner.Size = new System.Drawing.Size(257, 28); this.trayCleaner.Text = "PC Cleaner"; this.trayCleaner.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayCleaner.Click += new System.EventHandler(this.cleanerItem_Click); // // trayPinger // this.trayPinger.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayPinger.ForeColor = System.Drawing.Color.White; this.trayPinger.Image = ((System.Drawing.Image)(resources.GetObject("trayPinger.Image"))); this.trayPinger.Name = "trayPinger"; this.trayPinger.Size = new System.Drawing.Size(257, 28); this.trayPinger.Text = "Pinger Tool"; this.trayPinger.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayPinger.Click += new System.EventHandler(this.pingerItem_Click); // // trayHosts // this.trayHosts.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayHosts.ForeColor = System.Drawing.Color.White; this.trayHosts.Image = ((System.Drawing.Image)(resources.GetObject("trayHosts.Image"))); this.trayHosts.Name = "trayHosts"; this.trayHosts.Size = new System.Drawing.Size(257, 28); this.trayHosts.Text = "HOSTS Editor"; this.trayHosts.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayHosts.Click += new System.EventHandler(this.hostsItem_Click); // // trayAD // this.trayAD.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayAD.ForeColor = System.Drawing.Color.White; this.trayAD.Image = ((System.Drawing.Image)(resources.GetObject("trayAD.Image"))); this.trayAD.Name = "trayAD"; this.trayAD.Size = new System.Drawing.Size(257, 28); this.trayAD.Text = "Apps Downloader"; this.trayAD.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayAD.Click += new System.EventHandler(this.appsItem_Click); // // trayHW // this.trayHW.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayHW.ForeColor = System.Drawing.Color.White; this.trayHW.Image = ((System.Drawing.Image)(resources.GetObject("trayHW.Image"))); this.trayHW.Name = "trayHW"; this.trayHW.Size = new System.Drawing.Size(257, 28); this.trayHW.Text = "Hardware Information"; this.trayHW.Click += new System.EventHandler(this.trayHW_Click); // // trayRegistry // this.trayRegistry.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayRegistry.ForeColor = System.Drawing.Color.White; this.trayRegistry.Image = ((System.Drawing.Image)(resources.GetObject("trayRegistry.Image"))); this.trayRegistry.Name = "trayRegistry"; this.trayRegistry.Size = new System.Drawing.Size(257, 28); this.trayRegistry.Text = "Registry Repair"; this.trayRegistry.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayRegistry.Click += new System.EventHandler(this.trayRegistry_Click); // // toolStripSeparator1 // this.toolStripSeparator1.BackColor = System.Drawing.Color.DodgerBlue; this.toolStripSeparator1.ForeColor = System.Drawing.Color.White; this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(254, 6); this.toolStripSeparator1.Tag = ""; // // trayOptions // this.trayOptions.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayOptions.ForeColor = System.Drawing.Color.White; this.trayOptions.Image = ((System.Drawing.Image)(resources.GetObject("trayOptions.Image"))); this.trayOptions.Name = "trayOptions"; this.trayOptions.Size = new System.Drawing.Size(257, 28); this.trayOptions.Text = "Options"; this.trayOptions.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayOptions.Click += new System.EventHandler(this.trayOptions_Click); // // trayRestartExplorer // this.trayRestartExplorer.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayRestartExplorer.ForeColor = System.Drawing.Color.White; this.trayRestartExplorer.Image = ((System.Drawing.Image)(resources.GetObject("trayRestartExplorer.Image"))); this.trayRestartExplorer.Name = "trayRestartExplorer"; this.trayRestartExplorer.Size = new System.Drawing.Size(257, 28); this.trayRestartExplorer.Text = "Restart Explorer"; this.trayRestartExplorer.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal; this.trayRestartExplorer.Click += new System.EventHandler(this.restartExpolorerItem_Click); // // trayUnlocker // this.trayUnlocker.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold); this.trayUnlocker.ForeColor = System.Drawing.Color.White; this.trayUnlocker.Image = ((System.Drawing.Image)(resources.GetObject("trayUnlocker.Image"))); this.trayUnlocker.Name = "trayUnlocker"; this.trayUnlocker.Size = new System.Drawing.Size(257, 28); this.trayUnlocker.Text = "Find Handles"; this.trayUnlocker.Click += new System.EventHandler(this.trayUnlocker_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(254, 6); // // trayExit // this.trayExit.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.trayExit.ForeColor = System.Drawing.Color.White; this.trayExit.Image = ((System.Drawing.Image)(resources.GetObject("trayExit.Image"))); this.trayExit.Name = "trayExit"; this.trayExit.Size = new System.Drawing.Size(257, 28); this.trayExit.Text = "Exit"; this.trayExit.Click += new System.EventHandler(this.exitItem_Click); // // launcherIcon // this.launcherIcon.ContextMenuStrip = this.launcherMenu; this.launcherIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("launcherIcon.Icon"))); this.launcherIcon.Text = "Optimizer"; this.launcherIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.launcherIcon_MouseDoubleClick); // // regBackupSw // this.regBackupSw.AccessibleName = "Enable Registry Backups"; this.regBackupSw.AccessibleRole = System.Windows.Forms.AccessibleRole.CheckButton; this.regBackupSw.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.regBackupSw.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.regBackupSw.ForeColor = System.Drawing.Color.White; this.regBackupSw.LabelText = "Enable Registry Backups"; this.regBackupSw.Location = new System.Drawing.Point(21, 157); this.regBackupSw.Margin = new System.Windows.Forms.Padding(8); this.regBackupSw.Name = "regBackupSw"; this.regBackupSw.Size = new System.Drawing.Size(518, 30); this.regBackupSw.TabIndex = 90; this.regBackupSw.Tag = "themeable"; this.regBackupSw.ToggleChecked = false; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(1604, 962); this.Controls.Add(this.bpanel); this.Controls.Add(this.tpanel); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); this.MinimumSize = new System.Drawing.Size(1619, 999); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Optimizer"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing); this.Load += new System.EventHandler(this.Main_Load); this.ResizeBegin += new System.EventHandler(this.MainForm_ResizeBegin); this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd); this.tpanel.ResumeLayout(false); this.tpanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picRestartNeeded)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.picLab)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.picUpdate)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.bpanel.ResumeLayout(false); this.tabCollection.ResumeLayout(false); this.universalTab.ResumeLayout(false); this.universalTab.PerformLayout(); this.windows10Tab.ResumeLayout(false); this.windows10Tab.PerformLayout(); this.panelWin11Tweaks.ResumeLayout(false); this.panelWin11Tweaks.PerformLayout(); this.advancedTab.ResumeLayout(false); this.modernAppsTab.ResumeLayout(false); this.modernAppsTab.PerformLayout(); this.startupTab.ResumeLayout(false); this.startupTab.PerformLayout(); this.panel3.ResumeLayout(false); this.appsTab.ResumeLayout(false); this.appsTab.PerformLayout(); this.panel10.ResumeLayout(false); this.panel10.PerformLayout(); this.panelCommonApps.ResumeLayout(false); this.panelCommonApps.PerformLayout(); this.cleanerTab.ResumeLayout(false); this.panel14.ResumeLayout(false); this.panel13.ResumeLayout(false); this.panel13.PerformLayout(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); this.pingerTab.ResumeLayout(false); this.netTools.ResumeLayout(false); this.tabPage2.ResumeLayout(false); this.tabPage2.PerformLayout(); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.panel7.ResumeLayout(false); this.hostsEditorTab.ResumeLayout(false); this.hostsEditorTab.PerformLayout(); this.panel4.ResumeLayout(false); this.panel4.PerformLayout(); this.panelList.ResumeLayout(false); this.registryFixerTab.ResumeLayout(false); this.registryFixerTab.PerformLayout(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.indiciumTab.ResumeLayout(false); this.panel12.ResumeLayout(false); this.indiciumMenu.ResumeLayout(false); this.panel11.ResumeLayout(false); this.integratorTab.ResumeLayout(false); this.synapse.ResumeLayout(false); this.integratorInfoTab.ResumeLayout(false); this.integratorInfoTab.PerformLayout(); this.tabPage8.ResumeLayout(false); this.tabPage8.PerformLayout(); this.itemnamegroup.ResumeLayout(false); this.itemnamegroup.PerformLayout(); this.security.ResumeLayout(false); this.security.PerformLayout(); this.itemposition.ResumeLayout(false); this.itemposition.PerformLayout(); this.icontoaddgroup.ResumeLayout(false); this.icontoaddgroup.PerformLayout(); this.itemtoaddgroup.ResumeLayout(false); this.itemtoaddgroup.PerformLayout(); this.itemtype.ResumeLayout(false); this.itemtype.PerformLayout(); this.tabPage9.ResumeLayout(false); this.tabPage9.PerformLayout(); this.panel5.ResumeLayout(false); this.tabPage10.ResumeLayout(false); this.tabPage10.PerformLayout(); this.tabPage11.ResumeLayout(false); this.tabPage11.PerformLayout(); this.panel6.ResumeLayout(false); this.tabPage4.ResumeLayout(false); this.tabPage4.PerformLayout(); this.panel15.ResumeLayout(false); this.tabPage3.ResumeLayout(false); this.tabPage3.PerformLayout(); this.panel8.ResumeLayout(false); this.optionsTab.ResumeLayout(false); this.optionsTab.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox85)).EndInit(); this.panel9.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.picFlag)).EndInit(); this.launcherMenu.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel tpanel; private System.Windows.Forms.Label txtBitness; private System.Windows.Forms.Label txtOS; private System.Windows.Forms.Label txtVersion; private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Panel bpanel; private Optimizer.MoonTabs tabCollection; private System.Windows.Forms.TabPage universalTab; private System.Windows.Forms.TabPage windows10Tab; private System.Windows.Forms.TabPage cleanerTab; private System.Windows.Forms.TabPage startupTab; private System.Windows.Forms.Label startupTitle; private System.Windows.Forms.Button removeStartupItemB; private System.Windows.Forms.TabPage registryFixerTab; private System.Windows.Forms.Label registryTitle; private System.Windows.Forms.Button regFixB; private System.Windows.Forms.Panel panel2; private MoonCheck checkRegistryEditor; private MoonCheck checkEnableAll; private MoonCheck checkContextMenu; private MoonCheck checkTaskManager; private MoonCheck checkCommandPrompt; private MoonCheck checkFirewall; private MoonCheck checkRunDialog; private MoonCheck checkFolderOptions; private MoonCheck checkControlPanel; private MoonCheck checkRestartExplorer; private System.Windows.Forms.Panel panel3; private System.Windows.Forms.Label regLbl; private System.Windows.Forms.ListView listStartupItems; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.Button refreshStartupB; private System.Windows.Forms.Button locateFileB; private System.Windows.Forms.ColumnHeader columnHeader3; private System.Windows.Forms.TabPage hostsEditorTab; private System.Windows.Forms.Label hostsTitle; private System.Windows.Forms.LinkLabel linkLocate; private System.Windows.Forms.LinkLabel linkAdvancedEdit; private System.Windows.Forms.LinkLabel linkRestoreDefault; private MoonList listHostEntries; private System.Windows.Forms.Panel panel4; private System.Windows.Forms.Button removeAllHostsB; private System.Windows.Forms.Button refreshHostsB; private System.Windows.Forms.Button removeHostB; private System.Windows.Forms.TextBox txtDomain; private System.Windows.Forms.Label lblDomain; private System.Windows.Forms.Label lblIP; private System.Windows.Forms.Button addHostB; private System.Windows.Forms.TextBox txtIP; private System.Windows.Forms.TabPage integratorTab; private Optimizer.MoonTabs synapse; private System.Windows.Forms.TabPage integratorInfoTab; private System.Windows.Forms.TabPage tabPage8; private System.Windows.Forms.TabPage tabPage9; private System.Windows.Forms.TabPage tabPage10; private System.Windows.Forms.TabPage tabPage11; private System.Windows.Forms.Label integrator7; private System.Windows.Forms.Label integrator6; private System.Windows.Forms.Label integrator5; private System.Windows.Forms.Label integrator4; private System.Windows.Forms.Label integrator3; private System.Windows.Forms.Label integrator2; private System.Windows.Forms.Label integrator1; private System.Windows.Forms.Button button48; private System.Windows.Forms.TextBox txtRunKeyword; private System.Windows.Forms.Label ccKeywordL; private System.Windows.Forms.TextBox txtRunFile; private System.Windows.Forms.Label ccFileL; private System.Windows.Forms.Label ccL; private System.Windows.Forms.Button btnCreateCustomCommand; internal System.Windows.Forms.OpenFileDialog defineCommandDialog; private System.Windows.Forms.Label readyMenusL; private MoonList listDesktopItems; private System.Windows.Forms.Label removeIntegratorItemsL; private System.Windows.Forms.Button refreshIIB; private System.Windows.Forms.Button removeDIB; private System.Windows.Forms.Button removeAllIIB; private System.Windows.Forms.GroupBox itemtype; private MoonRadio radioCommand; private MoonRadio radioProgram; private MoonRadio radioFile; private MoonRadio radioFolder; private MoonRadio radioLink; private System.Windows.Forms.Label addItemL; private System.Windows.Forms.GroupBox icontoaddgroup; private MoonCheck checkDefaultIcon; private System.Windows.Forms.Button btnBrowseIcon; private System.Windows.Forms.TextBox txtIcon; private System.Windows.Forms.GroupBox itemtoaddgroup; private System.Windows.Forms.Button btnBrowseItem; private System.Windows.Forms.TextBox txtItem; private System.Windows.Forms.GroupBox security; private MoonCheck checkShift; private System.Windows.Forms.GroupBox itemposition; private MoonRadio radioTop; private MoonRadio radioMiddle; private MoonRadio radioBottom; private System.Windows.Forms.GroupBox itemnamegroup; private System.Windows.Forms.TextBox txtItemName; private System.Windows.Forms.Button btnAddItem; internal System.Windows.Forms.OpenFileDialog defineProgramDialog; internal System.Windows.Forms.FolderBrowserDialog defineFolderDialog; internal System.Windows.Forms.OpenFileDialog defineFileDialog; internal System.Windows.Forms.OpenFileDialog DefineProgramIconDialog; internal System.Windows.Forms.OpenFileDialog DefineFolderIconDialog; internal System.Windows.Forms.OpenFileDialog DefineURLIconDialog; internal System.Windows.Forms.OpenFileDialog DefineFileIconDialog; internal System.Windows.Forms.OpenFileDialog DefineCommandIconDialog; private System.Windows.Forms.Button findInRegB; private System.Windows.Forms.TabPage optionsTab; private System.Windows.Forms.Label lblTheming; private MoonList listCustomCommands; private System.Windows.Forms.Label removeCCL; private System.Windows.Forms.Button removeCCB; private System.Windows.Forms.Button refreshCCB; private System.Windows.Forms.Panel panel5; private System.Windows.Forms.Panel panel6; private System.Windows.Forms.Panel panelList; private System.Windows.Forms.TabPage modernAppsTab; private System.Windows.Forms.Label txtModernAppsTitle; private System.Windows.Forms.Button uninstallModernAppsButton; private System.Windows.Forms.Button refreshModernAppsButton; private MoonCheck chkSelectAllModernApps; private System.Windows.Forms.Button btnResetConfig; private System.Windows.Forms.Button btnUpdate; private MoonCheck chkReadOnly; private System.Windows.Forms.Label lblLock; private MoonCheck chkBlock; private System.Windows.Forms.TabPage appsTab; private System.Windows.Forms.Button btnDownloadApps; private System.Windows.Forms.Label appsTitle; private System.Windows.Forms.Label setDownDirLbl; private System.Windows.Forms.TextBox txtDownloadFolder; private System.Windows.Forms.Button changeDownDirB; private System.Windows.Forms.Label txtDownloadStatus; private System.Windows.Forms.Label bitPref; private MoonRadio c32; private System.Windows.Forms.Button goToDownloadsB; private System.Windows.Forms.LinkLabel linkWarnings; private MoonCheck cAutoInstall; private MoonCheck chkOnlyRemovable; private MoonProgress progressDownloader; private System.Windows.Forms.Button btnGetFeed; private System.Windows.Forms.Panel panelCommonApps; private System.Windows.Forms.LinkLabel l2; private System.Windows.Forms.Panel groupSystemTools; private System.Windows.Forms.Button btnViewLog; private System.Windows.Forms.Label lblTroubleshoot; private System.Windows.Forms.Label lblUpdating; private System.Windows.Forms.Button btnOpenConf; private System.Windows.Forms.TabPage pingerTab; internal System.Windows.Forms.SaveFileDialog ExportDialog; private System.Windows.Forms.ContextMenuStrip launcherMenu; private System.Windows.Forms.NotifyIcon launcherIcon; private System.Windows.Forms.ToolStripMenuItem trayStartup; private System.Windows.Forms.ToolStripMenuItem trayCleaner; private System.Windows.Forms.ToolStripMenuItem trayPinger; private System.Windows.Forms.ToolStripMenuItem trayHosts; private System.Windows.Forms.ToolStripMenuItem trayAD; private System.Windows.Forms.ToolStripMenuItem trayExit; private System.Windows.Forms.LinkLabel linkLabel5; private System.Windows.Forms.ToolStripMenuItem trayRestartExplorer; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private MoonRadio c64; private System.Windows.Forms.Panel panel10; private TextBox txtBackupTitle; private Label lblBackupTitle; private Label languagesL; private PictureBox pictureBox85; private Panel panel9; private PictureBox picFlag; private Label txtNetFw; private Panel groupCoding; private Panel groupInternet; private Panel groupSoundVideo; private Label lblVideoSound; private Label lblCoding; private Label lblSystemTools; private Label lblInternet; private Panel panelWin11Tweaks; private ToolStripMenuItem trayRegistry; private ToolStripMenuItem trayOptions; private Label txtFeedError; private ToggleCard tpmSw; private ToggleCard xboxSw; private ToggleCard inkSw; private ToggleCard spellSw; private ToggleCard longPathsSw; private ToggleCard peopleSw; private ToggleCard oldExplorerSw; private ToggleCard adsSw; private ToggleCard storeUpdatesSw; private ToggleCard oldMixerSw; private ToggleCard insiderSw; private ToggleCard castSw; private ToggleCard gameBarSw; private ToggleCard sensorSw; private ToggleCard ccSw; private ToggleCard cortanaSw; private ToggleCard privacySw; private ToggleCard driversSw; private ToggleCard telemetryServicesSw; private ToggleCard autoUpdatesSw; private ToggleCard classicContextSw; private ToggleCard widgetsSw; private ToggleCard chatSw; private ToggleCard snapAssistSw; private ToggleCard leftTaskbarSw; private ToggleCard quickAccessToggle; private PictureBox picUpdate; private TabPage indiciumTab; private MoonTree specsTree; private Panel panel12; private Panel panel11; private ImageList imagesHw; private ToggleCard hwDetailed; private ToolStripMenuItem trayHW; private ContextMenuStrip indiciumMenu; private ToolStripMenuItem toolHWCopy; private ToolStripMenuItem toolHWGoogle; private ToolStripMenuItem toolHWDuck; private ToolStripSeparator toolStripSeparator2; private LinkLabel linkLabel1; private PictureBox pictureBox13; private PictureBox pictureBox12; private PictureBox pictureBox14; private PictureBox picLab; private PictureBox pictureBox17; private LinkLabel linkLabel2; private MoonSelect boxLang; private Panel panel1; private MoonCheck edgeSession; private MoonCheck edgeHistory; private Label lblFootprint; private MoonCheck edgeCookies; private Label lblPretext; private MoonCheck edgeCache; private MoonCheck IECache; private MoonCheck firefoxHistory; private MoonCheck firefoxCookies; private MoonCheck firefoxCache; private MoonCheck chromePws; private MoonCheck chromeSession; private MoonCheck chromeHistory; private MoonCheck chromeCookies; private MoonCheck chromeCache; private Label label7; private Label label6; private Label label5; private Label label4; private PictureBox pictureBox11; private PictureBox pictureBox10; private PictureBox pictureBox9; private PictureBox pictureBox8; private MoonCheck checkErrorReports; private MoonCheck checkTemp; private MoonCheck checkBin; private MoonCheck checkMiniDumps; private PictureBox pictureBox2; private Label label8; private Panel panel13; private Panel panel14; private MoonCheckList listCleanPreview; private LinkLabel checkSelectAll; private ToggleCard gameModeSw; private PictureBox pictureBox3; private LinkLabel linkLabel3; private ToggleCard compactModeSw; private ToggleCard PMB; private ToggleCard AddCMDB; private ToggleCard AddOwnerB; private ToggleCard DSB; private ToggleCard SSB; private ToggleCard STB; private ToggleCard WAB; private Label label9; private PictureBox pictureBox4; private MoonCheck bravePasswords; private MoonCheck braveSession; private MoonCheck braveHistory; private MoonCheck braveCookies; private MoonCheck braveCache; private ToolStripMenuItem trayUnlocker; private Panel panelUwp; private ToggleCard stickersSw; private PictureBox picRestartNeeded; private Label restartAndApply; private TabPage tabPage1; private Panel panel7; private MoonList listPingResults; private Label lblResults; private TextBox txtPingInput; private Label lblPinger; private Label pingerTitle; private TabPage tabPage2; private LinkLabel linkDNSv6A; private LinkLabel linkDNSv4A; private LinkLabel linkDNSv6; private LinkLabel linkDNSv4; private Label label3; private Label label1; private MoonSelect boxAdapter; private MoonSelect boxDNS; private Controls.ColorPicker colorPicker1; private ToggleCard autoStartToggle; private Optimizer.MoonTabs netTools; private Label dnsTitle; private ToggleCard vbsSw; private Label label14; private Label label15; private Label label16; private Label label18; private Label label17; private Label label19; private Label label20; private TabPage advancedTab; private ToggleCard edgeAiSw; private ToggleCard edgeTelemetrySw; private ToggleCard loginVerboseSw; private ToggleCard hpetSw; private System.Windows.Forms.Button backupStartupB; private System.Windows.Forms.Button restoreStartupB; private System.Windows.Forms.Button doBackup; private System.Windows.Forms.Button cancelBackup; private System.Windows.Forms.Button btnCopyHW; private System.Windows.Forms.Button btnSaveHW; private System.Windows.Forms.Button cleanDriveB; private System.Windows.Forms.Button analyzeDriveB; private System.Windows.Forms.Button btnWinClean; private System.Windows.Forms.Button btnExport; private System.Windows.Forms.Button copyB; private System.Windows.Forms.Button copyIPB; private System.Windows.Forms.Button btnShodan; private System.Windows.Forms.Button btnPing; private System.Windows.Forms.Button btnOpenNetwork; private System.Windows.Forms.Button flushCacheB; private System.Windows.Forms.Button btnRestoreUwp; private System.Windows.Forms.Button btnRestartDisableDefender; private System.Windows.Forms.Button btnRestart; private System.Windows.Forms.Button btnRestartSafe; private ToggleCard classicPhotoViewerSw; private ToggleCard winSearchSw; private Label label13; private Label label4a; private Label drives; private Label label14s; private ToggleCard nvidiaTelemetrySw; private ToggleCard ntfsStampSw; private ToggleCard smb2Sw; private ToggleCard smb1Sw; private ToggleCard hibernateSw; private ToggleCard chromeTelemetrySw; private ToggleCard ffTelemetrySw; private ToggleCard vsSw; private ToggleCard reportingSw; private ToggleCard systemRestoreSw; private ToggleCard officeTelemetrySw; private ToggleCard smartScreenSw; private ToggleCard networkSw; private ToggleCard telemetryTasksSw; private ToggleCard defenderSw; private ToggleCard homegroupSw; private ToggleCard stickySw; private ToggleCard compatSw; private ToggleCard mediaSharingSw; private ToggleCard printSw; private ToggleCard superfetchSw; private ToggleCard faxSw; private ToggleCard performanceSw; private MoonCheck chkIncludeWww; private LinkLabel linkLabel4; private PictureBox pictureBox6; private PictureBox pictureBox5; private LinkLabel linkLabel6; private TabPage tabPage3; private Label fontSetTitle; private Panel panel8; private MoonList listFonts; private Button btnRefreshFonts; private Label lblCurrentFont; private Label label11; private Button btnRestoreFont; private Button btnSetGlobalFont; private TextBox txtSearchFonts; private Label lblFontsCount; private Label lblFontsNumber; private MoonCheck chkAllNics; private MoonCheck chkCustomDns; private TextBox txtDns6B; private TextBox txtDns6A; private Label label12; private TextBox txtDns4B; private TextBox txtDns4A; private Label label10; private Button btnSetDns; private Button btnReinforce; private ToggleCard copilotSw; private ToggleCard autoUpdateToggle; private LinkLabel linkLabel7; private PictureBox pictureBox7; private ToggleCard disableOneDriveSw; private ToggleCard noMenuDelaySw; private ToggleCard allTrayIconsSw; private ToggleCard newsInterestsSw; private ToggleCard hideSearchSw; private ToggleCard hideWeatherSw; private ToggleCard modernStandbySw; private ToggleCard uODSw; private ToggleCard enableUtcSw; private TabPage tabPage4; private Panel panel15; private MoonList listSystemVariables; private Button button1; private Button button2; private Label label21; private Button button3; private TextBox txtSysVar; private Label label23; private Label label24; private ToggleCard regBackupSw; } } ================================================ FILE: Optimizer/Forms/MainForm.cs ================================================ using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; using System.IO; using System.IO.Compression; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System.Reflection; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace Optimizer { public sealed partial class MainForm : Form { Dictionary translationList; ListViewColumnSorter _columnSorter; List _startUpItems = new List(); List _backupItems = new List(); List _hostsEntries = new List(); List _customCommands = new List(); List _desktopItems = new List(); List> _modernApps = new List>(); bool _trayMenu = false; List _pingResults; string _shodanIP = string.Empty; PingReply tmpReply; int _tabHeaderHeightMargin = 6; int _tabHeaderWidthMargin = 6; //NetworkMonitor _networkMonitor; //double uploadSpeed = 0; //double downloadSpeed = 0; //bool _networkMonitoringSupported = true; DesktopItemType _desktopItemType = DesktopItemType.Program; DesktopTypePosition _desktopItemPosition = DesktopTypePosition.Top; public List AppsFromFeed = new List(); readonly string _feedLink = "https://raw.githubusercontent.com/hellzerg/optimizer/master/feed.json"; readonly string _feedImages = "https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed.zip"; readonly string _licenseLink = "https://www.gnu.org/licenses/gpl-3.0.en.html"; readonly string _discordLink = "https://discord.gg/RmHYWMxWfJ"; readonly string _githubProjectLink = "https://github.com/hellzerg/optimizer"; readonly string _paypalSupportLink = "https://www.paypal.com/paypalme/supportoptimizer"; readonly string _latestVersionLink = "https://raw.githubusercontent.com/hellzerg/optimizer/master/version.txt"; readonly string _changelogRawLink = "https://raw.githubusercontent.com/hellzerg/optimizer/master/CHANGELOG.md"; readonly string _faqSectionLink = "https://github.com/hellzerg/optimizer/blob/master/FAQ.md"; readonly string _bugReportLink = "https://github.com/hellzerg/optimizer/issues/new?assignees=&labels=&projects=&template=bug_report.md&title="; readonly string _featureRequestLink = "https://github.com/hellzerg/optimizer/issues/new?assignees=&labels=&projects=&template=feature_request.md&title="; string _noNewVersionMessage = "You already have the latest version!"; string _betaVersionMessage = "You are using an experimental version!"; string _newVersionMessage = "There is a new version available! Do you want to download it now?\nApp will restart in a few seconds."; readonly string _blockedIP = "0.0.0.0"; string _restartMessage = "Restart to apply changes?"; string _removeStartupItemsMessage = "Are you sure you want to delete these startup items?\n\n"; string _removeHostsEntriesMessage = "Are you sure you want to delete all hosts entries?"; string _removeDesktopItemsMessage = "Are you sure you want to delete all desktop items?"; string _removeModernAppsMessage = "Are you sure you want to uninstall the following app(s)?"; string _errorModernAppsMessage = "The following app(s) couldn't be uninstalled:\n"; string _repairMessage = "Are you sure you want to reset configuration?\n\nThis will reset all your preferences, including any icons you extracted or downloaded using Integrator, but will not touch anything on your computer!"; string _flushDNSMessage = "Are you sure you wish to flush the DNS cache of Windows?\n\nThis will cause internet disconnection for a moment and it may be needed a restart to function properly."; string _uwpRestoreMessage = "Are you sure you want to do this?"; string _reinforcePoliciesMessage = "Are you sure you want to re-apply your current active policies?"; string _byteSizeNullString = " b"; string _primaryItemTag = "_primary"; bool _skipOneDrive = false; bool _skipSystemRestore = false; string[] _currentDNS; string[] _availableFonts; List _systemVariables = new List(); ColorOverrider _colorOverrider; List _hwDetailed; TreeNode[] _hwSummarized; bool _cleanSelectAll = true; List _cleanPreviewList; UpdateForm _updateForm; bool _disableIndicium; bool _disableAppsTool; bool _disableHostsEditor; bool _disableUWPApps; bool _disableStartupTool; bool _disableCleaner; bool _disableIntegrator; bool _disablePinger; private int GetItemPadding() { return Program.DPI_PREFERENCE / 2; } private string NewDownloadLink(string latestVersion) { return string.Format("https://github.com/hellzerg/optimizer/releases/download/{0}/Optimizer-{0}.exe", latestVersion); } private void CheckForUpdate(bool silentCheck = false) { WebClient client = new WebClient { Encoding = Encoding.UTF8 }; string latestVersion = string.Empty; try { latestVersion = client.DownloadString(_latestVersionLink).Trim(); } catch (Exception ex) { Logger.LogError("MainForm.CheckForUpdate", ex.Message, ex.StackTrace); MessageBox.Show(ex.Message, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } if (!string.IsNullOrEmpty(latestVersion)) { bool conversionSuccess = float.TryParse(latestVersion, out float latestVersionFloat); if (!conversionSuccess) { return; } if (latestVersionFloat > Program.GetCurrentVersionToFloat()) { if (silentCheck) { picUpdate.Visible = true; return; } _updateForm = new UpdateForm(_newVersionMessage, true, ParseChangelog(), latestVersion); if (_updateForm.ShowDialog() == DialogResult.Yes) { try { Assembly currentAssembly = Assembly.GetEntryAssembly(); if (currentAssembly == null) { currentAssembly = Assembly.GetCallingAssembly(); } string appFolder = Path.GetDirectoryName(currentAssembly.Location); string appName = Path.GetFileNameWithoutExtension(currentAssembly.Location); string appExtension = Path.GetExtension(currentAssembly.Location); string archiveFile = Path.Combine(appFolder, "Optimizer_old" + appExtension); string appFile = Path.Combine(appFolder, appName + appExtension); string tempFile = Path.Combine(appFolder, "Optimizer_tmp" + appExtension); // DOWNLOAD NEW VERSION client.DownloadFile(NewDownloadLink(latestVersion), tempFile); // DELETE PREVIOUS BACK-UP if (File.Exists(archiveFile)) { File.Delete(archiveFile); } // MAKE BACK-UP File.Move(appFile, archiveFile); // PATCH File.Move(tempFile, appFile); // BYPASS SINGLE-INSTANCE MECHANISM _trayMenu = false; if (Program.MUTEX != null) { Program.MUTEX.ReleaseMutex(); Program.MUTEX.Dispose(); Program.MUTEX = null; } Application.Restart(); } catch (Exception ex) { Logger.LogError("MainForm.CheckForUpdate", ex.Message, ex.StackTrace); MessageBox.Show(ex.Message); } } } else if (latestVersionFloat == Program.GetCurrentVersionToFloat()) { if (!silentCheck) { _updateForm = new UpdateForm(_noNewVersionMessage, false, string.Empty, latestVersion); _updateForm.ShowDialog(); } } else { if (!silentCheck) { _updateForm = new UpdateForm(_betaVersionMessage, false, string.Empty, latestVersion); _updateForm.ShowDialog(); } } } } private void EnableToggleEvents() { officeTelemetrySw.ToggleClicked += new EventHandler(toggleSwitch12_Click); telemetryTasksSw.ToggleClicked += new EventHandler(toggleSwitch11_Click); superfetchSw.ToggleClicked += new EventHandler(toggleSwitch10_Click); homegroupSw.ToggleClicked += new EventHandler(toggleSwitch9_Click); reportingSw.ToggleClicked += new EventHandler(toggleSwitch8_Click); mediaSharingSw.ToggleClicked += new EventHandler(toggleSwitch6_Click); printSw.ToggleClicked += new EventHandler(toggleSwitch5_Click); systemRestoreSw.ToggleClicked += new EventHandler(toggleSwitch4_Click); performanceSw.ToggleClicked += new EventHandler(toggleSwitch1_Click); noMenuDelaySw.ToggleClicked += new EventHandler(NoMenuDelaySw_ToggleClicked); allTrayIconsSw.ToggleClicked += new EventHandler(AllTrayIconsSw_ToggleClicked); defenderSw.ToggleClicked += new EventHandler(toggleSwitch3_Click); networkSw.ToggleClicked += new EventHandler(toggleSwitch2_Click); spellSw.ToggleClicked += new EventHandler(toggleSwitch28_Click); inkSw.ToggleClicked += new EventHandler(toggleSwitch29_Click); driversSw.ToggleClicked += new EventHandler(toggleSwitch30_Click); sensorSw.ToggleClicked += new EventHandler(toggleSwitch20_Click); privacySw.ToggleClicked += new EventHandler(toggleSwitch21_Click); telemetryServicesSw.ToggleClicked += new EventHandler(toggleSwitch23_Click); autoUpdatesSw.ToggleClicked += new EventHandler(toggleSwitch24_Click); peopleSw.ToggleClicked += new EventHandler(toggleSwitch25_Click); adsSw.ToggleClicked += new EventHandler(toggleSwitch26_Click); xboxSw.ToggleClicked += new EventHandler(toggleSwitch17_Click); cortanaSw.ToggleClicked += new EventHandler(toggleSwitch16_Click); edgeAiSw.ToggleClicked += new EventHandler(EdgeAiSw_ToggleClicked); edgeTelemetrySw.ToggleClicked += new EventHandler(EdgeTelemetrySw_ToggleClicked); gameBarSw.ToggleClicked += new EventHandler(toggleSwitch15_Click); uODSw.ToggleClicked += new EventHandler(toggleSwitch14_Click); oldMixerSw.ToggleClicked += new EventHandler(toggleSwitch13_Click); disableOneDriveSw.ToggleClicked += new EventHandler(toggleSwitch31_Click); oldExplorerSw.ToggleClicked += new EventHandler(toggleSwitch18_Click); compatSw.ToggleClicked += new EventHandler(toggleSwitch32_Click); faxSw.ToggleClicked += new EventHandler(ToggleSwitch33_Click); insiderSw.ToggleClicked += new EventHandler(ToggleSwitch34_Click); storeUpdatesSw.ToggleClicked += new EventHandler(ToggleSwitch35_Click); smartScreenSw.ToggleClicked += new EventHandler(ToggleSwitch36_Click); ccSw.ToggleClicked += new EventHandler(ToggleSwitch37_Click); stickySw.ToggleClicked += new EventHandler(ToggleSwitch38_Click); longPathsSw.ToggleClicked += new EventHandler(ToggleSwitch39_Click); castSw.ToggleClicked += new EventHandler(ToggleSwitch40_Click); leftTaskbarSw.ToggleClicked += new EventHandler(LeftTaskbarSw_Click); snapAssistSw.ToggleClicked += new EventHandler(SnapAssistSw_Click); widgetsSw.ToggleClicked += new EventHandler(WidgetsSw_Click); chatSw.ToggleClicked += new EventHandler(chatSw_Click); stickersSw.ToggleClicked += new EventHandler(StickersSw_ToggleClicked); classicContextSw.ToggleClicked += new EventHandler(ClassicContextSw_Click); ffTelemetrySw.ToggleClicked += new EventHandler(FfTelemetrySw_ToggleClicked); chromeTelemetrySw.ToggleClicked += new EventHandler(ChromeTelemetrySw_ToggleClicked); vsSw.ToggleClicked += new EventHandler(VsSw_ToggleClicked); gameModeSw.ToggleClicked += new EventHandler(GameModeSw_ToggleClicked); compactModeSw.ToggleClicked += CompactModeSw_ToggleClicked; tpmSw.ToggleClicked += TpmSw_ToggleClicked; hibernateSw.ToggleClicked += HibernateSw_ToggleClicked; smb1Sw.ToggleClicked += Smb1Sw_ToggleClicked; smb2Sw.ToggleClicked += Smb2Sw_ToggleClicked; ntfsStampSw.ToggleClicked += NtfsStampSw_ToggleClicked; winSearchSw.ToggleClicked += WinSearchSw_ToggleClicked; nvidiaTelemetrySw.ToggleClicked += NvidiaTelemetrySw_ToggleClicked; vbsSw.ToggleClicked += VbsSw_ToggleClicked; hpetSw.ToggleClicked += HpetSw_ToggleClicked; loginVerboseSw.ToggleClicked += LoginVerboseSw_ToggleClicked; classicPhotoViewerSw.ToggleClicked += ClassicPhotoViewerSw_ToggleClicked; copilotSw.ToggleClicked += CopilotSw_ToggleClicked; hideWeatherSw.ToggleClicked += HideWeatherSw_ToggleClicked; hideSearchSw.ToggleClicked += HideSearchSw_ToggleClicked; modernStandbySw.ToggleClicked += ModernStandbySw_ToggleClicked; newsInterestsSw.ToggleClicked += NewsInterestsSw_ToggleClicked; enableUtcSw.ToggleClicked += EnableUtcSw_ToggleClicked; regBackupSw.ToggleClicked += RegBackupSw_ToggleClicked; PMB.ToggleClicked += PMB_ToggleClicked; SSB.ToggleClicked += SSB_ToggleClicked; WAB.ToggleClicked += WAB_ToggleClicked; STB.ToggleClicked += STB_ToggleClicked; DSB.ToggleClicked += DSB_ToggleClicked; AddCMDB.ToggleClicked += AddCMDB_ToggleClicked; AddOwnerB.ToggleClicked += AddOwnerB_ToggleClicked; } private void RegBackupSw_ToggleClicked(object sender, EventArgs e) { if (regBackupSw.ToggleChecked) { OptimizeHelper.EnablePeriodicRegistryBackup(); } else { OptimizeHelper.DisablePeriodicRegistryBackup(); } OptionsHelper.CurrentOptions.EnableRegistryBackups = regBackupSw.ToggleChecked; } private void EnableUtcSw_ToggleClicked(object sender, EventArgs e) { if (enableUtcSw.ToggleChecked) { OptimizeHelper.EnableUTCTime(); } else { OptimizeHelper.DisableUTCTime(); } OptionsHelper.CurrentOptions.EnableUtcTime = enableUtcSw.ToggleChecked; } private void NewsInterestsSw_ToggleClicked(object sender, EventArgs e) { if (newsInterestsSw.ToggleChecked) { OptimizeHelper.DisableNewsInterests(); } else { OptimizeHelper.EnableNewsInterests(); } OptionsHelper.CurrentOptions.DisableNewsInterests = newsInterestsSw.ToggleChecked; } private void ModernStandbySw_ToggleClicked(object sender, EventArgs e) { if (modernStandbySw.ToggleChecked) { OptimizeHelper.DisableModernStandby(); } else { OptimizeHelper.EnableModernStandby(); } OptionsHelper.CurrentOptions.DisableModernStandby = modernStandbySw.ToggleChecked; } private void HideSearchSw_ToggleClicked(object sender, EventArgs e) { if (hideSearchSw.ToggleChecked) { OptimizeHelper.HideTaskbarSearch(); } else { OptimizeHelper.ShowTaskbarSearch(); } OptionsHelper.CurrentOptions.HideTaskbarSearch = hideSearchSw.ToggleChecked; } private void HideWeatherSw_ToggleClicked(object sender, EventArgs e) { if (hideWeatherSw.ToggleChecked) { OptimizeHelper.HideTaskbarWeather(); } else { OptimizeHelper.ShowTaskbarWeather(); } OptionsHelper.CurrentOptions.HideTaskbarWeather = hideWeatherSw.ToggleChecked; } private void AllTrayIconsSw_ToggleClicked(object sender, EventArgs e) { if (allTrayIconsSw.ToggleChecked) { OptimizeHelper.ShowAllTrayIcons(); } else { OptimizeHelper.HideTrayIcons(); } OptionsHelper.CurrentOptions.ShowAllTrayIcons = allTrayIconsSw.ToggleChecked; } private void NoMenuDelaySw_ToggleClicked(object sender, EventArgs e) { if (noMenuDelaySw.ToggleChecked) { OptimizeHelper.RemoveMenusDelay(); } else { OptimizeHelper.RestoreMenusDelay(); } OptionsHelper.CurrentOptions.RemoveMenusDelay = noMenuDelaySw.ToggleChecked; } private void CopilotSw_ToggleClicked(object sender, EventArgs e) { if (copilotSw.ToggleChecked) { OptimizeHelper.DisableCoPilotAI(); } else { OptimizeHelper.EnableCoPilotAI(); } OptionsHelper.CurrentOptions.DisableCoPilotAI = copilotSw.ToggleChecked; } private void ClassicPhotoViewerSw_ToggleClicked(object sender, EventArgs e) { if (classicPhotoViewerSw.ToggleChecked) { OptimizeHelper.RestoreClassicPhotoViewer(); } else { OptimizeHelper.DisableClassicPhotoViewer(); } OptionsHelper.CurrentOptions.RestoreClassicPhotoViewer = classicPhotoViewerSw.ToggleChecked; } private void LoginVerboseSw_ToggleClicked(object sender, EventArgs e) { if (loginVerboseSw.ToggleChecked) { Utilities.EnableLoginVerbose(); } else { Utilities.DisableLoginVerbose(); } OptionsHelper.CurrentOptions.EnableLoginVerbose = loginVerboseSw.ToggleChecked; } private void HpetSw_ToggleClicked(object sender, EventArgs e) { if (hpetSw.ToggleChecked) { Utilities.DisableHPET(); } else { Utilities.EnableHPET(); } OptionsHelper.CurrentOptions.DisableHPET = hpetSw.ToggleChecked; } private void EdgeTelemetrySw_ToggleClicked(object sender, EventArgs e) { if (edgeTelemetrySw.ToggleChecked) { OptimizeHelper.DisableEdgeTelemetry(); } else { OptimizeHelper.EnableEdgeTelemetry(); } OptionsHelper.CurrentOptions.DisableEdgeTelemetry = edgeTelemetrySw.ToggleChecked; } private void EdgeAiSw_ToggleClicked(object sender, EventArgs e) { if (edgeAiSw.ToggleChecked) { OptimizeHelper.DisableEdgeDiscoverBar(); } else { OptimizeHelper.EnableEdgeDiscoverBar(); } OptionsHelper.CurrentOptions.DisableEdgeDiscoverBar = edgeAiSw.ToggleChecked; } private void WinSearchSw_ToggleClicked(object sender, EventArgs e) { if (winSearchSw.ToggleChecked) { OptimizeHelper.DisableSearch(); } else { OptimizeHelper.EnableSearch(); } OptionsHelper.CurrentOptions.DisableSearch = winSearchSw.ToggleChecked; } private void VbsSw_ToggleClicked(object sender, EventArgs e) { if (vbsSw.ToggleChecked) { OptimizeHelper.DisableVirtualizationBasedSecurity(); } else { OptimizeHelper.EnableVirtualizationBasedSecurity(); } OptionsHelper.CurrentOptions.DisableVBS = vbsSw.ToggleChecked; ShowRestartNeeded(); } private void NvidiaTelemetrySw_ToggleClicked(object sender, EventArgs e) { if (nvidiaTelemetrySw.ToggleChecked) { OptimizeHelper.DisableNvidiaTelemetry(); } else { OptimizeHelper.EnableNvidiaTelemetry(); } OptionsHelper.CurrentOptions.DisableNVIDIATelemetry = nvidiaTelemetrySw.ToggleChecked; ShowRestartNeeded(); } private void NtfsStampSw_ToggleClicked(object sender, EventArgs e) { if (ntfsStampSw.ToggleChecked) { OptimizeHelper.DisableNTFSTimeStamp(); } else { OptimizeHelper.EnableNTFSTimeStamp(); } OptionsHelper.CurrentOptions.DisableNTFSTimeStamp = ntfsStampSw.ToggleChecked; ShowRestartNeeded(); } private void Smb2Sw_ToggleClicked(object sender, EventArgs e) { if (smb2Sw.ToggleChecked) { OptimizeHelper.DisableSMB("2"); } else { OptimizeHelper.EnableSMB("2"); } OptionsHelper.CurrentOptions.DisableSMB2 = smb2Sw.ToggleChecked; ShowRestartNeeded(); } private void Smb1Sw_ToggleClicked(object sender, EventArgs e) { if (smb1Sw.ToggleChecked) { OptimizeHelper.DisableSMB("1"); } else { OptimizeHelper.EnableSMB("1"); } OptionsHelper.CurrentOptions.DisableSMB1 = smb1Sw.ToggleChecked; ShowRestartNeeded(); } private void HibernateSw_ToggleClicked(object sender, EventArgs e) { if (hibernateSw.ToggleChecked) { Utilities.DisableHibernation(); } else { Utilities.EnableHibernation(); } OptionsHelper.CurrentOptions.DisableHibernation = hibernateSw.ToggleChecked; ShowRestartNeeded(); } private void StickersSw_ToggleClicked(object sender, EventArgs e) { if (stickersSw.ToggleChecked) { OptimizeHelper.DisableStickers(); } else { OptimizeHelper.EnableStickers(); } OptionsHelper.CurrentOptions.DisableStickers = stickersSw.ToggleChecked; } private void TpmSw_ToggleClicked(object sender, EventArgs e) { if (tpmSw.ToggleChecked) { OptimizeHelper.DisableTPMCheck(); } else { OptimizeHelper.EnableTPMCheck(); } OptionsHelper.CurrentOptions.DisableTPMCheck = tpmSw.ToggleChecked; } private void CompactModeSw_ToggleClicked(object sender, EventArgs e) { if (compactModeSw.ToggleChecked) { OptimizeHelper.EnableFilesCompactMode(); } else { OptimizeHelper.DisableFilesCompactMode(); } OptionsHelper.CurrentOptions.CompactMode = compactModeSw.ToggleChecked; ShowRestartNeeded(); } private void GameModeSw_ToggleClicked(object sender, EventArgs e) { if (gameModeSw.ToggleChecked) { OptimizeHelper.EnableGamingMode(); } else { OptimizeHelper.DisableGamingMode(); } OptionsHelper.CurrentOptions.EnableGamingMode = gameModeSw.ToggleChecked; ShowRestartNeeded(); } private void VsSw_ToggleClicked(object sender, EventArgs e) { if (vsSw.ToggleChecked) { OptimizeHelper.DisableVisualStudioTelemetry(); } else { OptimizeHelper.EnableVisualStudioTelemetry(); } OptionsHelper.CurrentOptions.DisableVisualStudioTelemetry = vsSw.ToggleChecked; } private void ChromeTelemetrySw_ToggleClicked(object sender, EventArgs e) { if (chromeTelemetrySw.ToggleChecked) { OptimizeHelper.DisableChromeTelemetry(); } else { OptimizeHelper.EnableChromeTelemetry(); } OptionsHelper.CurrentOptions.DisableChromeTelemetry = chromeTelemetrySw.ToggleChecked; } private void FfTelemetrySw_ToggleClicked(object sender, EventArgs e) { if (ffTelemetrySw.ToggleChecked) { OptimizeHelper.DisableFirefoxTelemetry(); } else { OptimizeHelper.EnableFirefoxTelemetry(); } OptionsHelper.CurrentOptions.DisableFirefoxTemeletry = ffTelemetrySw.ToggleChecked; } private void ClassicContextSw_Click(object sender, EventArgs e) { if (classicContextSw.ToggleChecked) { OptimizeHelper.DisableShowMoreOptions(); } else { OptimizeHelper.EnableShowMoreOptions(); } OptionsHelper.CurrentOptions.ClassicMenu = classicContextSw.ToggleChecked; ShowRestartNeeded(); } private void chatSw_Click(object sender, EventArgs e) { if (chatSw.ToggleChecked) { OptimizeHelper.DisableChat(); } else { OptimizeHelper.EnableChat(); } OptionsHelper.CurrentOptions.DisableChat = chatSw.ToggleChecked; } private void WidgetsSw_Click(object sender, EventArgs e) { if (widgetsSw.ToggleChecked) { OptimizeHelper.DisableWidgets(); } else { OptimizeHelper.EnableWidgets(); } OptionsHelper.CurrentOptions.DisableWidgets = widgetsSw.ToggleChecked; } private void SnapAssistSw_Click(object sender, EventArgs e) { if (snapAssistSw.ToggleChecked) { OptimizeHelper.DisableSnapAssist(); } else { OptimizeHelper.EnableSnapAssist(); } OptionsHelper.CurrentOptions.DisableSnapAssist = snapAssistSw.ToggleChecked; ShowRestartNeeded(); } private void LeftTaskbarSw_Click(object sender, EventArgs e) { if (leftTaskbarSw.ToggleChecked) { OptimizeHelper.AlignTaskbarToLeft(); } else { OptimizeHelper.AlignTaskbarToCenter(); } OptionsHelper.CurrentOptions.TaskbarToLeft = leftTaskbarSw.ToggleChecked; } private void TranslateTips() { try { performanceSw.Label.Tag = OptionsHelper.TranslationList["performanceTip"].ToString(); noMenuDelaySw.Label.Tag = OptionsHelper.TranslationList["noMenuDelaySw"].ToString(); allTrayIconsSw.Label.Tag = OptionsHelper.TranslationList["allTrayIconsSw"].ToString(); networkSw.Label.Tag = OptionsHelper.TranslationList["networkTip"].ToString(); defenderSw.Label.Tag = OptionsHelper.TranslationList["defenderTip"].ToString(); smartScreenSw.Label.Tag = OptionsHelper.TranslationList["smartScreenTip"].ToString(); systemRestoreSw.Label.Tag = OptionsHelper.TranslationList["systemRestoreTip"].ToString(); reportingSw.Label.Tag = OptionsHelper.TranslationList["reportingTip"].ToString(); telemetryTasksSw.Label.Tag = OptionsHelper.TranslationList["telemetryTasksTip"].ToString(); officeTelemetrySw.Label.Tag = OptionsHelper.TranslationList["officeTelemetryTip"].ToString(); printSw.Label.Tag = OptionsHelper.TranslationList["printTip"].ToString(); faxSw.Label.Tag = OptionsHelper.TranslationList["faxTip"].ToString(); mediaSharingSw.Label.Tag = OptionsHelper.TranslationList["mediaSharingTip"].ToString(); stickySw.Label.Tag = OptionsHelper.TranslationList["stickyTip"].ToString(); homegroupSw.Label.Tag = OptionsHelper.TranslationList["homegroupTip"].ToString(); superfetchSw.Label.Tag = OptionsHelper.TranslationList["superfetchTip"].ToString(); compatSw.Label.Tag = OptionsHelper.TranslationList["compatTip"].ToString(); disableOneDriveSw.Label.Tag = OptionsHelper.TranslationList["disableOneDriveTip"].ToString(); oldMixerSw.Label.Tag = OptionsHelper.TranslationList["oldMixerTip"].ToString(); oldExplorerSw.Label.Tag = OptionsHelper.TranslationList["oldExplorerTip"].ToString(); adsSw.Label.Tag = OptionsHelper.TranslationList["adsTip"].ToString(); uODSw.Label.Tag = OptionsHelper.TranslationList["uODTip"].ToString(); peopleSw.Label.Tag = OptionsHelper.TranslationList["peopleTip"].ToString(); longPathsSw.Label.Tag = OptionsHelper.TranslationList["longPathsTip"].ToString(); inkSw.Label.Tag = OptionsHelper.TranslationList["inkTip"].ToString(); spellSw.Label.Tag = OptionsHelper.TranslationList["spellTip"].ToString(); xboxSw.Label.Tag = OptionsHelper.TranslationList["xboxTip"].ToString(); autoUpdatesSw.Label.Tag = OptionsHelper.TranslationList["autoUpdatesTip"].ToString(); driversSw.Label.Tag = OptionsHelper.TranslationList["driversTip"].ToString(); telemetryServicesSw.Label.Tag = OptionsHelper.TranslationList["telemetryServicesTip"].ToString(); privacySw.Label.Tag = OptionsHelper.TranslationList["privacyTip"].ToString(); ccSw.Label.Tag = OptionsHelper.TranslationList["ccTip"].ToString(); cortanaSw.Label.Tag = OptionsHelper.TranslationList["cortanaTip"].ToString(); edgeAiSw.Label.Tag = OptionsHelper.TranslationList["edgeAiTip"].ToString(); edgeTelemetrySw.Label.Tag = OptionsHelper.TranslationList["edgeTelemetryTip"].ToString(); sensorSw.Label.Tag = OptionsHelper.TranslationList["sensorTip"].ToString(); castSw.Label.Tag = OptionsHelper.TranslationList["castTip"].ToString(); gameBarSw.Label.Tag = OptionsHelper.TranslationList["gameBarTip"].ToString(); insiderSw.Label.Tag = OptionsHelper.TranslationList["insiderTip"].ToString(); storeUpdatesSw.Label.Tag = OptionsHelper.TranslationList["storeUpdatesTip"].ToString(); tpmSw.Label.Tag = OptionsHelper.TranslationList["tpmTip"].ToString(); leftTaskbarSw.Label.Tag = OptionsHelper.TranslationList["leftTaskbarTip"].ToString(); snapAssistSw.Label.Tag = OptionsHelper.TranslationList["snapAssistTip"].ToString(); widgetsSw.Label.Tag = OptionsHelper.TranslationList["widgetsTip"].ToString(); chatSw.Label.Tag = OptionsHelper.TranslationList["chatTip"].ToString(); stickersSw.Label.Tag = OptionsHelper.TranslationList["stickersTip"].ToString(); classicContextSw.Label.Tag = OptionsHelper.TranslationList["classicContextTip"].ToString(); picUpdate.Tag = OptionsHelper.TranslationList["linkUpdate"].ToString() + "!"; picLab.Tag = OptionsHelper.TranslationList["lblLab"].ToString(); picRestartNeeded.Tag = OptionsHelper.TranslationList["restartAndApply"].ToString(); ffTelemetrySw.Label.Tag = OptionsHelper.TranslationList["ffTelemetryTip"].ToString(); vsSw.Label.Tag = OptionsHelper.TranslationList["vsTip"].ToString(); chromeTelemetrySw.Label.Tag = OptionsHelper.TranslationList["chromeTelemetryTip"].ToString(); gameModeSw.Label.Tag = OptionsHelper.TranslationList["gameModeTip"].ToString(); compactModeSw.Label.Tag = OptionsHelper.TranslationList["compactModeTip"].ToString(); hibernateSw.Label.Tag = OptionsHelper.TranslationList["hibernateTip"].ToString(); winSearchSw.Label.Tag = OptionsHelper.TranslationList["winSearchTip"].ToString(); smb1Sw.Label.Tag = OptionsHelper.TranslationList["smbTip"].ToString().Replace("{v}", "v1"); smb2Sw.Label.Tag = OptionsHelper.TranslationList["smbTip"].ToString().Replace("{v}", "v2"); ntfsStampSw.Label.Tag = OptionsHelper.TranslationList["ntfsStampTip"].ToString(); nvidiaTelemetrySw.Label.Tag = OptionsHelper.TranslationList["nvidiaTelemetrySw"].ToString(); vbsSw.Label.Tag = OptionsHelper.TranslationList["vbsTip"].ToString(); hpetSw.Label.Tag = OptionsHelper.TranslationList["hpetSw"].ToString(); loginVerboseSw.Label.Tag = OptionsHelper.TranslationList["loginVerboseSw"].ToString(); classicPhotoViewerSw.Label.Tag = OptionsHelper.TranslationList["classicPhotoViewerSw"].ToString(); copilotSw.Label.Tag = OptionsHelper.TranslationList["copilotTip"].ToString(); hideWeatherSw.Label.Tag = OptionsHelper.TranslationList["hideWeatherSw"].ToString(); modernStandbySw.Label.Tag = OptionsHelper.TranslationList["modernStandbySw"].ToString(); hideSearchSw.Label.Tag = OptionsHelper.TranslationList["hideSearchSw"].ToString(); newsInterestsSw.Label.Tag = OptionsHelper.TranslationList["newsInterestsSw"].ToString(); enableUtcSw.Label.Tag = OptionsHelper.TranslationList["enableUtcSw"].ToString(); regBackupSw.Label.Tag = OptionsHelper.TranslationList["regBackupSw"].ToString(); } catch (Exception err) { MessageBox.Show(err.Message); } } private void ToggleSwitch40_Click(object sender, EventArgs e) { if (castSw.ToggleChecked) { OptimizeHelper.RemoveCastToDevice(); } else { OptimizeHelper.AddCastToDevice(); } OptionsHelper.CurrentOptions.RemoveCastToDevice = castSw.ToggleChecked; } private void ToggleSwitch39_Click(object sender, EventArgs e) { if (longPathsSw.ToggleChecked) { OptimizeHelper.EnableLongPaths(); } else { OptimizeHelper.DisableLongPaths(); } OptionsHelper.CurrentOptions.EnableLongPaths = longPathsSw.ToggleChecked; } private void ToggleSwitch38_Click(object sender, EventArgs e) { if (stickySw.ToggleChecked) { OptimizeHelper.DisableStickyKeys(); } else { OptimizeHelper.EnableStickyKeys(); } OptionsHelper.CurrentOptions.DisableStickyKeys = stickySw.ToggleChecked; } private void ToggleSwitch37_Click(object sender, EventArgs e) { if (ccSw.ToggleChecked) { OptimizeHelper.DisableCloudClipboard(); } else { OptimizeHelper.EnableCloudClipboard(); } OptionsHelper.CurrentOptions.DisableCloudClipboard = ccSw.ToggleChecked; } private void ToggleSwitch36_Click(object sender, EventArgs e) { if (smartScreenSw.ToggleChecked) { OptimizeHelper.DisableSmartScreen(); } else { OptimizeHelper.EnableSmartScreen(); } OptionsHelper.CurrentOptions.DisableSmartScreen = smartScreenSw.ToggleChecked; } private void ToggleSwitch35_Click(object sender, EventArgs e) { if (storeUpdatesSw.ToggleChecked) { OptimizeHelper.DisableStoreUpdates(); } else { OptimizeHelper.EnableStoreUpdates(); } OptionsHelper.CurrentOptions.DisableStoreUpdates = storeUpdatesSw.ToggleChecked; } private void ToggleSwitch34_Click(object sender, EventArgs e) { if (insiderSw.ToggleChecked) { OptimizeHelper.DisableInsiderService(); } else { OptimizeHelper.EnableInsiderService(); } OptionsHelper.CurrentOptions.DisableInsiderService = insiderSw.ToggleChecked; } private void ToggleSwitch33_Click(object sender, EventArgs e) { if (faxSw.ToggleChecked) { OptimizeHelper.DisableFaxService(); } else { OptimizeHelper.EnableFaxService(); } OptionsHelper.CurrentOptions.DisableFaxService = faxSw.ToggleChecked; } //ROOT public MainForm(SplashForm _splashForm, bool? disableIndicium = null, bool? disableHostsEditor = null, bool? disableCommonApps = null, bool? disableUWPApps = null, bool? disableStartups = null, bool? disableCleaner = null, bool? disableIntegrator = null, bool? disablePinger = null) { InitializeComponent(); CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US"); CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-US"); CheckForIllegalCrossThreadCalls = false; boxLang.Items.AddRange(new string[] { Constants.ENGLISH, Constants.RUSSIAN, Constants.TURKISH, Constants.HELLENIC, Constants.GERMAN, Constants.PORTUGUESE, Constants.FRENCH, Constants.SPANISH, Constants.ITALIAN, Constants.CHINESE, Constants.TAIWANESE, Constants.CZECH, Constants.KOREAN, Constants.POLISH, Constants.ARABIC, Constants.KURDISH, Constants.HUNGARIAN, Constants.ROMANIAN, Constants.DUTCH, Constants.UKRAINIAN, Constants.JAPANESE, Constants.PERSIAN, Constants.NEPALI, Constants.BULGARIAN, Constants.VIETNAMESE, Constants.URDU, Constants.INDONESIAN, Constants.CROATIAN }); _splashForm.LoadingStatus.Text = "checking for requirements"; // override tool launch configurations _disableStartupTool = (disableStartups.HasValue) ? disableStartups.Value : OptionsHelper.CurrentOptions.DisableStartupTool; _disableUWPApps = (disableUWPApps.HasValue) ? disableUWPApps.Value : OptionsHelper.CurrentOptions.DisableUWPApps; _disableAppsTool = (disableCommonApps.HasValue) ? disableCommonApps.Value : OptionsHelper.CurrentOptions.DisableAppsTool; _disablePinger = (disablePinger.HasValue) ? disablePinger.Value : OptionsHelper.CurrentOptions.DisablePinger; _disableCleaner = (disableCleaner.HasValue) ? disableCleaner.Value : OptionsHelper.CurrentOptions.DisableCleaner; _disableHostsEditor = (disableHostsEditor.HasValue) ? disableHostsEditor.Value : OptionsHelper.CurrentOptions.DisableHostsEditor; _disableIndicium = (disableIndicium.HasValue) ? disableIndicium.Value : OptionsHelper.CurrentOptions.DisableIndicium; _disableIntegrator = (disableIntegrator.HasValue) ? disableIntegrator.Value : OptionsHelper.CurrentOptions.DisableIntegrator; // theming OptionsHelper.ApplyTheme(this); pictureBox1.BackColor = OptionsHelper.CurrentOptions.Theme; colorPicker1.Color = OptionsHelper.CurrentOptions.Theme; launcherMenu.Renderer = new MoonMenuRenderer(); indiciumMenu.Renderer = new MoonMenuRenderer(); progressDownloader.BackColor = OptionsHelper.ForegroundColor; progressDownloader.ForeColor = OptionsHelper.ForegroundAccentColor; // quick access _trayMenu = OptionsHelper.CurrentOptions.EnableTray; quickAccessToggle.ToggleChecked = OptionsHelper.CurrentOptions.EnableTray; launcherIcon.Visible = OptionsHelper.CurrentOptions.EnableTray; autoStartToggle.ToggleChecked = OptionsHelper.CurrentOptions.AutoStart; autoUpdateToggle.ToggleChecked = OptionsHelper.CurrentOptions.UpdateOnLaunch; //telemetrySvcToggle.ToggleChecked = Options.CurrentOptions.DisableOptimizerTelemetry; //seperatorNetMon.Visible = Options.CurrentOptions.EnableTray; //trayDownSpeed.Visible = Options.CurrentOptions.EnableTray; //trayUpSpeed.Visible = Options.CurrentOptions.EnableTray; // fix SSL/TLS error when contacting internet ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // initial states checkDefaultIcon.Checked = true; radioProgram.Checked = true; radioTop.Checked = true; disableOneDriveSw.Visible = false; c64.Checked = Environment.Is64BitOperatingSystem; c32.Checked = !Environment.Is64BitOperatingSystem; // Windows version, architecture, .NET Framework txtOS.Text = Utilities.GetOS(); txtBitness.Text = Utilities.GetBitness(); txtNetFw.Text = ".NET Framework " + Utilities.GetNETFramework(); // system color overriding _colorOverrider = new ColorOverrider(); _colorOverrider.SetColor(KnownColor.Highlight, Color.FromArgb(50, 50, 50).ToArgb()); _colorOverrider.SetColor(KnownColor.HighlightText, Color.White.ToArgb()); if (Utilities.CurrentWindowsVersion == WindowsVersion.Unsupported) { tabCollection.TabPages.Remove(universalTab); tabCollection.TabPages.Remove(windows10Tab); tabCollection.TabPages.Remove(modernAppsTab); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows7) { LoadUniversalToggleStates(); tabCollection.TabPages.Remove(windows10Tab); tabCollection.TabPages.Remove(modernAppsTab); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows8) { LoadUniversalToggleStates(); LoadWindows8ToggleStates(); disableOneDriveSw.Visible = true; tabCollection.TabPages.Remove(windows10Tab); if (!_disableUWPApps) { chkOnlyRemovable.Visible = false; chkOnlyRemovable.Checked = true; } else { tabCollection.TabPages.Remove(modernAppsTab); } } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows10) { LoadUniversalToggleStates(); LoadWindows10ToggleStates(); defenderSw.Visible = false; vbsSw.Visible = false; oldMixerSw.Visible = true; this.Controls.Remove(panelWin11Tweaks); if (!_disableUWPApps) { chkOnlyRemovable.Checked = true; } else { tabCollection.TabPages.Remove(modernAppsTab); } txtOS.Text += string.Format(" ({0})", Utilities.GetWindows10Build()); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows11) { LoadUniversalToggleStates(); LoadWindows10ToggleStates(); LoadWindows11ToggleStates(); windows10Tab.Text = "Windows 11"; defenderSw.Visible = false; vbsSw.Visible = true; panelWin11Tweaks.Visible = true; oldMixerSw.Visible = false; if (!_disableUWPApps) { chkOnlyRemovable.Checked = true; } else { tabCollection.TabPages.Remove(modernAppsTab); } txtOS.Text += string.Format(" ({0})", Utilities.GetWindows10Build()); } _splashForm.LoadingStatus.Text = "loading startup && hosts items"; _columnSorter = new ListViewColumnSorter(); listStartupItems.ListViewItemSorter = _columnSorter; specsTree.ImageList = imagesHw; // STARTUP ITEMS if (!_disableStartupTool) { GetStartupItems(); } else { tabCollection.TabPages.Remove(startupTab); launcherMenu.Items.RemoveByKey("trayStartup"); } // HOSTS EDITOR if (!_disableHostsEditor) { GetHostsEntries(); } else { tabCollection.TabPages.Remove(hostsEditorTab); launcherMenu.Items.RemoveByKey("trayHosts"); } // INTEGRATOR if (!_disableIntegrator) { LoadReadyMenusState(); GetDesktopItems(); GetCustomCommands(); LoadAvailableFonts(); LoadSystemVariables(); } else { tabCollection.TabPages.Remove(integratorTab); } _splashForm.LoadingStatus.Text = "fetching feed"; // APPS DOWNLOADER if (!_disableAppsTool) { GetFeed(); txtDownloadFolder.ReadOnly = true; } else { tabCollection.TabPages.Remove(appsTab); launcherMenu.Items.RemoveByKey("trayAD"); } // CLEANER if (!_disableCleaner) { GetFootprint(); } else { tabCollection.TabPages.Remove(cleanerTab); launcherMenu.Items.RemoveByKey("trayCleaner"); } _splashForm.LoadingStatus.Text = "inspecting hardware"; // INDICIUM if (!_disableIndicium) { GetHardwareSpecs(); } else { tabCollection.TabPages.Remove(indiciumTab); launcherMenu.Items.RemoveByKey("trayHW"); } // PINGER if (!_disablePinger) { boxDNS.Items.AddRange(PingerHelper.DNSOptions); LoadPingerDNSConfig(); DisplayCurrentDNS(); boxAdapter.SelectedIndexChanged += boxAdapter_SelectedIndexChanged; } else { tabCollection.TabPages.Remove(pingerTab); launcherMenu.Items.RemoveByKey("trayPinger"); } // ADVANCED if (Program.UNSAFE_MODE) { LoadAdvancedToggleStates(); } else { tabCollection.TabPages.Remove(advancedTab); } Program._MainForm = this; // if AppsFolder is a malformed or non-existent path, reset it to default if (!string.IsNullOrWhiteSpace(OptionsHelper.CurrentOptions.AppsFolder) && !Directory.Exists(OptionsHelper.CurrentOptions.AppsFolder)) { OptionsHelper.CurrentOptions.AppsFolder = string.Empty; OptionsHelper.SaveSettings(); } if (OptionsHelper.CurrentOptions.UpdateOnLaunch) { if (!Program.EXPERIMENTAL_BUILD && PingerHelper.IsInternetAvailable()) { CheckForUpdate(true); } } if (Program.EXPERIMENTAL_BUILD) { btnUpdate.Enabled = false; picLab.Visible = true; } //InitNetworkMonitoring(); LoadTranslation(); EnableToggleEvents(); WindowState = FormWindowState.Maximized; } private void LoadSystemVariables() { listSystemVariables.Items.Clear(); _systemVariables = IntegratorHelper.GetPathSystemVariables().ToList(); listSystemVariables.Items.AddRange(_systemVariables.ToArray()); } private void LoadAvailableFonts() { listFonts.Items.Clear(); _availableFonts = FontHelper.GetAvailableFonts().ToArray(); listFonts.Items.AddRange(_availableFonts); string currentFont = FontHelper.GetCurrentGlobalFont(); lblCurrentFont.Text = !string.IsNullOrEmpty(currentFont) ? currentFont : "-"; lblFontsNumber.Text = _availableFonts.Length.ToString(); } private void FixTabHeaderWidth(TabControl tabControl) { int maxTextWidth = 0; int maxTextHeight = 0; for (int i = 0; i < tabControl.TabPages.Count; i++) { var tabWidth = TextRenderer.MeasureText(tabControl.TabPages[i]?.Text, tabControl.TabPages[i]?.Font).Width; var tabHeight = TextRenderer.MeasureText(tabControl.TabPages[i]?.Text, tabControl.TabPages[i]?.Font).Height; if (tabWidth > maxTextWidth) maxTextWidth = tabWidth; if (tabHeight > maxTextHeight) maxTextHeight = tabHeight; } tabControl.ItemSize = new Size(maxTextWidth + _tabHeaderWidthMargin, maxTextHeight + _tabHeaderHeightMargin); } private void LoadReadyMenusState() { AddCMDB.ToggleChecked = IntegratorHelper.OpenWithCMDExists(); AddOwnerB.ToggleChecked = IntegratorHelper.TakeOwnershipExists(); DSB.ToggleChecked = IntegratorHelper.DesktopItemExists("DesktopShortcuts"); PMB.ToggleChecked = IntegratorHelper.DesktopItemExists("Power Menu"); SSB.ToggleChecked = IntegratorHelper.DesktopItemExists("SystemShortcuts"); STB.ToggleChecked = IntegratorHelper.DesktopItemExists("SystemTools"); WAB.ToggleChecked = IntegratorHelper.DesktopItemExists("WindowsApps"); } private void LoadPingerDNSConfig() { NetworkInterface[] nics = PingerHelper.GetActiveNetworkAdapters(); if (nics == null) return; if (nics.Length == 0) return; boxAdapter.Items.AddRange(nics.Select(z => z.Description).ToArray()); if (boxAdapter.Items.Count > 0) boxAdapter.SelectedIndex = 0; linkDNSv4.LinkClicked += linkDNSIP_LinkClicked; linkDNSv4A.LinkClicked += linkDNSIP_LinkClicked; linkDNSv6.LinkClicked += linkDNSIP_LinkClicked; linkDNSv6A.LinkClicked += linkDNSIP_LinkClicked; LoadNetworkAdapterConfig(); } private void LoadNetworkAdapterConfig() { if (boxAdapter.Items.Count <= 0) return; PingerHelper.GetActiveNetworkAdapters(); if (PingerHelper.NetworkAdapters == null) return; if (PingerHelper.NetworkAdapters.Length == 0) return; _currentDNS = PingerHelper.GetDNSFromNetworkAdapter(PingerHelper.NetworkAdapters[boxAdapter.SelectedIndex]).ToArray(); if (_currentDNS == null) return; if (_currentDNS.Length == 0) return; if (Array.Exists(PingerHelper.CloudflareDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.CloudflareDNS; return; } else if (Array.Exists(PingerHelper.OpenDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.OpenDNS; return; } else if (Array.Exists(PingerHelper.Quad9DNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.Quad9DNS; return; } else if (Array.Exists(PingerHelper.GoogleDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.GoogleDNS; return; } else if (Array.Exists(PingerHelper.AlternateDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.AlternateDNS; return; } else if (Array.Exists(PingerHelper.AdguardDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.AdguardDNS; return; } else if (Array.Exists(PingerHelper.CleanBrowsingDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.CleanBrowsingDNS; return; } else if (Array.Exists(PingerHelper.CleanBrowsingAdultDNSv4, x => _currentDNS.Select(y => y.ToString()).Contains(x))) { boxDNS.Text = Constants.CleanBrowsingAdultFilterDNS; return; } else { boxDNS.Text = Constants.CustomDNS; chkCustomDns.Checked = true; try { if (_currentDNS.Length == 1) { linkDNSv4.Text = _currentDNS[0]; txtDns4A.Text = _currentDNS[0]; } else if (_currentDNS.Length == 2) { linkDNSv4.Text = _currentDNS[0]; linkDNSv4A.Text = _currentDNS[1]; txtDns4A.Text = _currentDNS[0]; txtDns4B.Text = _currentDNS[1]; } else if (_currentDNS.Length == 3) { linkDNSv6.Text = _currentDNS[0]; linkDNSv4.Text = _currentDNS[1]; linkDNSv4A.Text = _currentDNS[2]; txtDns6A.Text = _currentDNS[0]; txtDns4A.Text = _currentDNS[1]; txtDns4B.Text = _currentDNS[2]; } else if (_currentDNS.Length == 4) { linkDNSv4.Text = _currentDNS[2]; linkDNSv4A.Text = _currentDNS[3]; linkDNSv6.Text = _currentDNS[0]; linkDNSv6A.Text = _currentDNS[1]; txtDns6A.Text = _currentDNS[2]; txtDns6B.Text = _currentDNS[3]; txtDns6A.Text = _currentDNS[0]; txtDns6B.Text = _currentDNS[1]; } } catch { } return; } } private void SetDNS(string[] v4, string[] v6) { if (chkAllNics.Checked) { PingerHelper.SetDNSForAllNICs(v4, v6); } else { PingerHelper.SetDNS(PingerHelper.NetworkAdapters[boxAdapter.SelectedIndex].Name, v4, v6); } PingerHelper.GetActiveNetworkAdapters(); DisplayCurrentDNS(); } private void ResetDNS() { if (chkAllNics.Checked) { PingerHelper.ResetDefaultDNSForAllNICs(); } else { PingerHelper.ResetDefaultDNS(PingerHelper.NetworkAdapters[boxAdapter.SelectedIndex].Name); } PingerHelper.GetActiveNetworkAdapters(); DisplayCurrentDNS(); } private void ApplyCustomDNS() { string[] customDns4 = { txtDns4A.Text, txtDns4B.Text }; string[] customDns6 = { txtDns6A.Text, txtDns6B.Text }; if (Array.Exists(customDns4, x => string.IsNullOrEmpty(x)) || Array.Exists(customDns6, x => string.IsNullOrEmpty(x))) { return; } SetDNS(customDns4, customDns6); txtDns4A.Text = string.Empty; txtDns4B.Text = string.Empty; txtDns6A.Text = string.Empty; txtDns6B.Text = string.Empty; } private void ApplySelectedDNS() { if (boxAdapter.Items.Count <= 0) return; if (boxAdapter.SelectedIndex <= -1) return; if (boxDNS.Text == Constants.AutomaticDNS) { ResetDNS(); return; } else if (boxDNS.Text == Constants.CloudflareDNS) { SetDNS(PingerHelper.CloudflareDNSv4, PingerHelper.CloudflareDNSv6); return; } else if (boxDNS.Text == Constants.OpenDNS) { SetDNS(PingerHelper.OpenDNSv4, PingerHelper.OpenDNSv6); return; } else if (boxDNS.Text == Constants.Quad9DNS) { SetDNS(PingerHelper.Quad9DNSv4, PingerHelper.Quad9DNSv6); return; } else if (boxDNS.Text == Constants.GoogleDNS) { SetDNS(PingerHelper.GoogleDNSv4, PingerHelper.GoogleDNSv6); return; } else if (boxDNS.Text == Constants.AlternateDNS) { SetDNS(PingerHelper.AlternateDNSv4, PingerHelper.AlternateDNSv6); return; } else if (boxDNS.Text == Constants.AdguardDNS) { SetDNS(PingerHelper.AdguardDNSv4, PingerHelper.AdguardDNSv6); return; } else if (boxDNS.Text == Constants.CleanBrowsingDNS) { SetDNS(PingerHelper.CleanBrowsingDNSv4, PingerHelper.CleanBrowsingDNSv6); return; } else if (boxDNS.Text == Constants.CleanBrowsingAdultFilterDNS) { SetDNS(PingerHelper.CleanBrowsingAdultDNSv4, PingerHelper.CleanBrowsingAdultDNSv6); return; } } private void LoadTranslation() { if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.EN) { boxLang.Text = Constants.ENGLISH; Translate(true); } else { Translate(); } // set default window size to fit content if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.RU) { boxLang.Text = Constants.RUSSIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.TR) { boxLang.Text = Constants.TURKISH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.EL) { boxLang.Text = Constants.HELLENIC; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.DE) { boxLang.Text = Constants.GERMAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.PT) { boxLang.Text = Constants.PORTUGUESE; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.FR) { boxLang.Text = Constants.FRENCH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.ES) { boxLang.Text = Constants.SPANISH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.IT) { boxLang.Text = Constants.ITALIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.CN) { boxLang.Text = Constants.CHINESE; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.TW) { boxLang.Text = Constants.TAIWANESE; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.CZ) { boxLang.Text = Constants.CZECH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.KO) { boxLang.Text = Constants.KOREAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.PL) { boxLang.Text = Constants.POLISH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.AR) { boxLang.Text = Constants.ARABIC; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.KU) { boxLang.Text = Constants.KURDISH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.HU) { boxLang.Text = Constants.HUNGARIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.RO) { boxLang.Text = Constants.ROMANIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.NL) { boxLang.Text = Constants.DUTCH; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.UA) { boxLang.Text = Constants.UKRAINIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.JA) { boxLang.Text = Constants.JAPANESE; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.FA) { boxLang.Text = Constants.PERSIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.NE) { boxLang.Text = Constants.NEPALI; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.BG) { boxLang.Text = Constants.BULGARIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.VN) { boxLang.Text = Constants.VIETNAMESE; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.UR) { boxLang.Text = Constants.URDU; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.ID) { boxLang.Text = Constants.INDONESIAN; } if (OptionsHelper.CurrentOptions.LanguageCode == LanguageCode.HR) { boxLang.Text = Constants.CROATIAN; } } private void GetHardwareSpecs() { GetCPUs(); GetRAM(); GetGPUs(); GetMotherboards(); GetStorage(); GetNetworkAdapters(); GetAudioDevices(); GetPeripherals(); GetOSInfo(); _hwDetailed = specsTree.Nodes.Cast().ToList(); _hwSummarized = BuildHardwareSummaryNodes(); specsTree.ExpandAll(); if (specsTree.Nodes.Count > 0) specsTree.Nodes[0].EnsureVisible(); } private TreeNode[] BuildHardwareSummaryNodes() { TreeNode osNode = new TreeNode("Operating System"); osNode.Name = "os"; osNode.Tag = _primaryItemTag; osNode.SelectedImageIndex = 8; HardwareSummary.OSInfo.ForEach(x => osNode.Nodes.Add(x)); TreeNode cpuNode = new TreeNode("Processors"); cpuNode.Name = "scpu"; cpuNode.Tag = _primaryItemTag; cpuNode.SelectedImageIndex = 0; HardwareSummary.CPUs.ForEach(x => cpuNode.Nodes.Add(x)); TreeNode ramNode = new TreeNode("Memory"); ramNode.Name = "sram"; ramNode.Tag = _primaryItemTag; ramNode.SelectedImageIndex = 1; ramNode.Nodes.Add(HardwareSummary.TotalRAM); TreeNode moboNode = new TreeNode("Motherboards"); moboNode.Name = "smobo"; moboNode.Tag = _primaryItemTag; moboNode.SelectedImageIndex = 3; HardwareSummary.Motherboards.ForEach(x => moboNode.Nodes.Add(x)); TreeNode gpuNode = new TreeNode("Graphics"); gpuNode.Name = "sgpu"; gpuNode.Tag = _primaryItemTag; gpuNode.SelectedImageIndex = 2; HardwareSummary.GPUs.ForEach(x => gpuNode.Nodes.Add(x)); TreeNode diskNode = new TreeNode("Disk Drives"); diskNode.Name = "sdisk"; diskNode.Tag = _primaryItemTag; diskNode.SelectedImageIndex = 4; HardwareSummary.Disks.ForEach(x => diskNode.Nodes.Add(x)); TreeNode networkNode = new TreeNode("Network Adapters"); networkNode.Name = "sinet"; networkNode.Tag = _primaryItemTag; networkNode.SelectedImageIndex = 5; HardwareSummary.NetworkAdapters.ForEach(x => networkNode.Nodes.Add(x)); TreeNode biosNode = new TreeNode("BIOS"); biosNode.Tag = _primaryItemTag; biosNode.SelectedImageIndex = 3; HardwareSummary.BIOS.ForEach(x => biosNode.Nodes.Add(x)); return new TreeNode[] { osNode, cpuNode, ramNode, moboNode, gpuNode, diskNode, networkNode, biosNode }; } private void GetOSInfo() { HardwareSummary.OSInfo.Add($"{Utilities.GetOS()} ({(Environment.Is64BitOperatingSystem ? "64-bit" : "32-bit")})"); if (SystemInformation.PowerStatus.BatteryChargeStatus == BatteryChargeStatus.NoSystemBattery) { HardwareSummary.OSInfo.Add($"Desktop ({Environment.MachineName})"); } else { HardwareSummary.OSInfo.Add($"Laptop ({Environment.MachineName})"); } } private void GetAudioDevices() { List audios = IndiciumHelper.GetAudioDevices(); if (audios.Count > 0) { foreach (AudioDevice device in audios) { TreeNode node = new TreeNode(device.ProductName); node.Tag = _primaryItemTag; node.Nodes.Add("Manufacturer: " + device.Manufacturer); node.Nodes.Add("Status: " + device.Status); specsTree.Nodes["audio"].Nodes.Add(node); } } } private void GetPeripherals() { IndiciumHelper.GetPeripherals(); if (IndiciumHelper.Keyboards.Count > 0) { TreeNode kbNodes = new TreeNode("Keyboards"); kbNodes.Name = "keyboards"; foreach (Keyboard keyboard in IndiciumHelper.Keyboards) { TreeNode node = new TreeNode(keyboard.Name); node.Tag = _primaryItemTag; node.Nodes.Add("Layout: " + keyboard.Layout); node.Nodes.Add("Function Keys: " + keyboard.FunctionKeys); node.Nodes.Add("Status: " + keyboard.Status); node.Nodes.Add("Locked: " + keyboard.Locked); kbNodes.Nodes.Add(node); } specsTree.Nodes["dev"].Nodes.Add(kbNodes); } if (IndiciumHelper.PointingDevices.Count > 0) { TreeNode pdNodes = new TreeNode("Pointing Devices"); pdNodes.Name = "pointings"; foreach (PointingDevice pointingDevice in IndiciumHelper.PointingDevices) { TreeNode node = new TreeNode(pointingDevice.Name); node.Tag = _primaryItemTag; node.Nodes.Add("Manufacturer: " + pointingDevice.Manufacturer); node.Nodes.Add("Buttons: " + pointingDevice.Buttons); node.Nodes.Add("Pointing Type: " + pointingDevice.PointingType); node.Nodes.Add("Device Interface: " + pointingDevice.DeviceInterface); node.Nodes.Add("Hardware Type: " + pointingDevice.HardwareType); node.Nodes.Add("Status: " + pointingDevice.Status); node.Nodes.Add("Locked: " + pointingDevice.Locked); pdNodes.Nodes.Add(node); } specsTree.Nodes["dev"].Nodes.Add(pdNodes); } } private void GetNetworkAdapters() { IndiciumHelper.GetNetworkAdapters(); if (IndiciumHelper.PhysicalAdapters.Count > 0) { TreeNode physicalsNode = new TreeNode("Physical Adapters"); physicalsNode.Name = "physicalAdapters"; foreach (NetworkDevice adapter in IndiciumHelper.PhysicalAdapters) { TreeNode node = new TreeNode(adapter.ProductName); HardwareSummary.NetworkAdapters.Add(adapter.ProductName); node.Tag = _primaryItemTag; node.Nodes.Add("Manufacturer: " + adapter.Manufacturer); node.Nodes.Add("Adapter Type: " + adapter.AdapterType); node.Nodes.Add("MAC Address: " + adapter.MacAddress); //node.Nodes.Add("Physical Adapter: " + adapter.PhysicalAdapter); node.Nodes.Add("Service Name: " + adapter.ServiceName); physicalsNode.Nodes.Add(node); } specsTree.Nodes["inet"].Nodes.Add(physicalsNode); } if (IndiciumHelper.VirtualAdapters.Count > 0) { TreeNode virtualsNode = new TreeNode("Virtual Adapters"); virtualsNode.Name = "virtualAdapters"; foreach (NetworkDevice adapter in IndiciumHelper.VirtualAdapters) { TreeNode node = new TreeNode(adapter.ProductName); node.Tag = _primaryItemTag; node.Nodes.Add("Manufacturer: " + adapter.Manufacturer); node.Nodes.Add("Adapter Type: " + adapter.AdapterType); node.Nodes.Add("MAC Address: " + adapter.MacAddress); //node.Nodes.Add("Physical Adapter: " + adapter.PhysicalAdapter); node.Nodes.Add("Service Name: " + adapter.ServiceName); virtualsNode.Nodes.Add(node); } specsTree.Nodes["inet"].Nodes.Add(virtualsNode); } } private void GetStorage() { List disks = IndiciumHelper.GetDisks(); IndiciumHelper.GetVolumes(); if (disks.Count > 0) { TreeNode disksNode = new TreeNode("Disk Drives"); disksNode.Name = "drives"; foreach (Disk disk in disks) { TreeNode node = new TreeNode(disk.Model); node.Tag = _primaryItemTag; if (disk.Capacity.ToString() != _byteSizeNullString) { node.Nodes.Add("Size: " + disk.Capacity); HardwareSummary.Disks.Add($"{disk.Model} ({disk.Capacity})"); } else { node.Nodes.Add("Size: -"); } node.Nodes.Add("Firmware Revision: " + disk.FirmwareRevision); node.Nodes.Add("Media Type: " + disk.MediaType); node.Nodes.Add("Bytes/Sector: " + disk.BytesPerSector); disksNode.Nodes.Add(node); } specsTree.Nodes["disk"].Nodes.Add(disksNode); } if (IndiciumHelper.Opticals.Count > 0) { TreeNode opticalsNode = new TreeNode("Optical Drives"); opticalsNode.Name = "opticals"; foreach (Volume optical in IndiciumHelper.Opticals) { string tmp = string.Empty; if (!string.IsNullOrEmpty(optical.DriveLetter)) { tmp = " (" + optical.DriveLetter + ")"; } else { tmp = "-"; } TreeNode node = new TreeNode(optical.Label + tmp); node.Tag = _primaryItemTag; node.Nodes.Add("File System: " + optical.FileSystem); if (optical.Capacity.ToString() != _byteSizeNullString) { node.Nodes.Add("Size: " + optical.Capacity); } else { node.Nodes.Add("Size: -"); } if (optical.UsedSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Used Space: " + optical.UsedSpace); } else { node.Nodes.Add("Used Space: -"); } if (optical.FreeSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Free Space: " + optical.FreeSpace); } else { node.Nodes.Add("Free Space: -"); } node.Nodes.Add("Indexing: " + optical.Indexing); node.Nodes.Add("Compressed: " + optical.Compressed); node.Nodes.Add("Drive Type: " + optical.DriveType); node.Nodes.Add("Block Size: " + optical.BlockSize); opticalsNode.Nodes.Add(node); } specsTree.Nodes["disk"].Nodes.Add(opticalsNode); } if (IndiciumHelper.Volumes.Count > 0) { TreeNode volumesNode = new TreeNode("Partitions"); volumesNode.Name = "volumes"; foreach (Volume volume in IndiciumHelper.Volumes) { string tmp = string.Empty; if (!string.IsNullOrEmpty(volume.DriveLetter)) { tmp = " (" + volume.DriveLetter + ")"; } else { tmp = "-"; } TreeNode node = new TreeNode(volume.Label + tmp); node.Tag = _primaryItemTag; node.Nodes.Add("File System: " + volume.FileSystem); if (volume.Capacity.ToString() != _byteSizeNullString) { node.Nodes.Add("Size: " + volume.Capacity); } else { node.Nodes.Add("Size: -"); } if (volume.UsedSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Used Space: " + volume.UsedSpace); } else { node.Nodes.Add("Used Space: -"); } if (volume.FreeSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Free Space: " + volume.FreeSpace); } else { node.Nodes.Add("Free Space: -"); } node.Nodes.Add("Indexing: " + volume.Indexing); node.Nodes.Add("Compressed: " + volume.Compressed); node.Nodes.Add("Drive Type: " + volume.DriveType); node.Nodes.Add("Block Size: " + volume.BlockSize); volumesNode.Nodes.Add(node); } specsTree.Nodes["disk"].Nodes.Add(volumesNode); if (IndiciumHelper.Removables.Count > 0) { TreeNode removablesNode = new TreeNode("Removable Drives"); removablesNode.Name = "removables"; foreach (Volume removable in IndiciumHelper.Removables) { string tmp = string.Empty; if (!string.IsNullOrEmpty(removable.DriveLetter)) { tmp = " (" + removable.DriveLetter + ")"; } else { tmp = "-"; } TreeNode node = new TreeNode(removable.Label + tmp); node.Tag = _primaryItemTag; node.Nodes.Add("File System: " + removable.FileSystem); if (removable.Capacity.ToString() != _byteSizeNullString) { node.Nodes.Add("Size: " + removable.Capacity); } else { node.Nodes.Add("Size: -"); } if (removable.UsedSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Used Space: " + removable.UsedSpace); } else { node.Nodes.Add("Used Space: -"); } if (removable.FreeSpace.ToString() != _byteSizeNullString) { node.Nodes.Add("Free Space: " + removable.FreeSpace); } else { node.Nodes.Add("Free Space: -"); } node.Nodes.Add("Indexing: " + removable.Indexing); node.Nodes.Add("Compressed: " + removable.Compressed); node.Nodes.Add("Drive Type: " + removable.DriveType); node.Nodes.Add("Block Size: " + removable.BlockSize); removablesNode.Nodes.Add(node); } specsTree.Nodes["disk"].Nodes.Add(removablesNode); } } } private void GetCPUs() { List cpus = IndiciumHelper.GetCPUs(); if (cpus.Count > 0) { foreach (CPU cpu in cpus) { TreeNode node = new TreeNode(cpu.Name); node.Tag = _primaryItemTag; HardwareSummary.CPUs.Add($"{cpu.Name} ({cpu.Cores} Cores, {cpu.LogicalCpus} Threads)"); node.Nodes.Add("Cores: " + cpu.Cores); node.Nodes.Add("Threads: " + cpu.LogicalCpus); node.Nodes.Add("Virtualization: " + cpu.Virtualization); node.Nodes.Add("Data Execution Prevention: " + cpu.DataExecutionPrevention); node.Nodes.Add("L2 Cache: " + cpu.L2CacheSize); node.Nodes.Add("L3 Cache: " + cpu.L3CacheSize); node.Nodes.Add("Stepping: " + cpu.Stepping); node.Nodes.Add("Revision: " + cpu.Revision); specsTree.Nodes["cpu"].Nodes.Add(node); } } } private void GetMotherboards() { List mobos = IndiciumHelper.GetMotherboards(); if (mobos.Count > 0) { foreach (Motherboard mobo in mobos) { TreeNode node = new TreeNode(mobo.Manufacturer); TreeNode node2 = new TreeNode("BIOS"); node.Tag = _primaryItemTag; node2.Tag = _primaryItemTag; HardwareSummary.Motherboards.Add($"{mobo.Manufacturer} ({mobo.SystemModel}) ({mobo.Product})"); HardwareSummary.BIOS.Add($"{mobo.BIOSManufacturer} {mobo.BIOSName}"); node.Nodes.Add("System: " + mobo.SystemModel); node.Nodes.Add("Chipset: " + mobo.Chipset); node.Nodes.Add("Product: " + mobo.Product); node.Nodes.Add("Model: " + mobo.Model); node.Nodes.Add("Version: " + mobo.Version); node.Nodes.Add("Revision: " + mobo.Revision); node2.Nodes.Add("Manufacturer: " + mobo.BIOSManufacturer); node2.Nodes.Add("Manufacturer: " + mobo.BIOSName); node2.Nodes.Add("Version: " + mobo.BIOSVersion); node2.Nodes.Add("Build Number: " + mobo.BIOSBuildNumber); specsTree.Nodes["mobo"].Nodes.Add(node); specsTree.Nodes["mobo"].Nodes.Add(node2); } } } private void GetGPUs() { List gpus = IndiciumHelper.GetGPUs(); if (gpus.Count > 0) { foreach (GPU gpu in gpus) { TreeNode node = new TreeNode(gpu.Name); node.Tag = _primaryItemTag; HardwareSummary.GPUs.Add($"{gpu.Name} ({gpu.Memory.ToString("GiB")})"); node.Nodes.Add("Video Memory: " + gpu.Memory.ToString("GiB")); node.Nodes.Add("Video Memory Type: " + gpu.VideoMemoryType); node.Nodes.Add("DAC Type: " + gpu.DACType); node.Nodes.Add("Current Resolution: " + gpu.ResolutionX + " x " + gpu.ResolutionY); node.Nodes.Add("Current Refresh Rate: " + gpu.RefreshRate + " Hz"); specsTree.Nodes["gpu"].Nodes.Add(node); } } } private void GetRAM() { List ramInfo = IndiciumHelper.GetRAM(); VirtualMemory vm = IndiciumHelper.GetVM(); ByteSize totalRAM = new ByteSize(0); string memoryType = string.Empty; uint memorySpeed = 0; if (ramInfo.Count > 0) { foreach (RAM ram in ramInfo) { TreeNode node = new TreeNode(ram.BankLabel.ToLowerInvariant().Replace("bank", "Module")); node.Tag = _primaryItemTag; totalRAM += ram.Capacity; memorySpeed = ram.Speed; memoryType = ram.MemoryType; node.Nodes.Add("Manufacturer: " + ram.Manufacturer); node.Nodes.Add("Size: " + ram.Capacity.ToString("GiB")); node.Nodes.Add("Memory Type: " + ram.MemoryType); node.Nodes.Add("Speed: " + ram.Speed + " MHz"); node.Nodes.Add("Form Factor: " + ram.FormFactor); specsTree.Nodes["ram"].Nodes.Add(node); } HardwareSummary.TotalRAM = $"{totalRAM.ToString("GiB")} {memoryType} @ {memorySpeed} MHz"; } if (vm != null) { TreeNode node = new TreeNode("Virtual Memory"); node.Name = "vm"; node.Tag = _primaryItemTag; node.Nodes.Add("Total: " + vm.TotalVirtualMemory.ToString("GiB")); node.Nodes.Add("Available : " + vm.AvailableVirtualMemory.ToString("GiB")); node.Nodes.Add("Used: " + vm.UsedVirtualMemory.ToString("GiB")); specsTree.Nodes["ram"].Nodes.Add(node); } } //private void InitNetworkMonitoring() //{ // try // { // _networkMonitor = new NetworkMonitor(); // if (Options.CurrentOptions.EnableTray) // { // _networkMonitor.StartMonitoring(); // _networkMonitoringSupported = true; // NetworkLiveMonitoring(); // } // } // catch (Exception ex) // { // _networkMonitoringSupported = false; // DisposeNetworkMonitoring(); // ErrorLogger.LogError("MainForm.NETWORK-MONITORING", ex.Message, ex.StackTrace); // } // finally // { // seperatorNetMon.Visible = _networkMonitoringSupported; // trayDownSpeed.Visible = _networkMonitoringSupported; // trayUpSpeed.Visible = _networkMonitoringSupported; // } //} //private void DisposeNetworkMonitoring() //{ // if (_networkMonitor != null) _networkMonitor.StopMonitoring(); //} //private void NetworkLiveMonitoring() //{ // if (!_networkMonitoringSupported) return; // Task.Factory.StartNew(() => // { // while (Options.CurrentOptions.EnableTray) // { // // in BYTES // downloadSpeed = 0; // uploadSpeed = 0; // foreach (NetworkAdapter adapter in _networkMonitor.Adapters) // { // //adapter.Refresh(); // downloadSpeed += Math.Round(adapter.DownloadSpeedKbps, 2); // uploadSpeed += Math.Round(adapter.UploadSpeedKbps, 2); // } // this.Invoke(new Action(() => // { // trayDownSpeed.Text = $"{downloadSpeed} KB/s"; // trayUpSpeed.Text = $"{uploadSpeed} KB/s"; // })); // Thread.Sleep(1000); // } // }); //} private void Translate(bool skipFull = false) { translationList = OptionsHelper.TranslationList.ToObject>(); if (Environment.Is64BitOperatingSystem) { translationList["txtBitness"] = translationList["txtBitness"].Replace("{BITS}", translationList["c64"]); } else { translationList["txtBitness"] = translationList["txtBitness"].Replace("{BITS}", translationList["c32"]); } TranslateTips(); //TranslateIndicium(); if (!skipFull) { _noNewVersionMessage = OptionsHelper.TranslationList["noNewVersion"]; _betaVersionMessage = OptionsHelper.TranslationList["betaVersion"]; _newVersionMessage = OptionsHelper.TranslationList["newVersion"]; _restartMessage = OptionsHelper.TranslationList["restartAndApply"]; _removeStartupItemsMessage = OptionsHelper.TranslationList["removeAllStartup"]; _removeHostsEntriesMessage = OptionsHelper.TranslationList["removeAllHosts"]; _removeDesktopItemsMessage = OptionsHelper.TranslationList["removeAllItems"]; _removeModernAppsMessage = OptionsHelper.TranslationList["removeModernApps"]; _errorModernAppsMessage = OptionsHelper.TranslationList["errorModernApps"]; _repairMessage = OptionsHelper.TranslationList["resetMessage"]; _uwpRestoreMessage = OptionsHelper.TranslationList["restoreUwpMessage"]; _reinforcePoliciesMessage = OptionsHelper.TranslationList["msgReinforce"]; _flushDNSMessage = OptionsHelper.TranslationList["flushDNSMessage"]; listStartupItems.Columns[0].Text = translationList["startupItemName"]; listStartupItems.Columns[1].Text = translationList["startupItemLocation"]; listStartupItems.Columns[2].Text = translationList["startupItemType"]; trayStartup.Text = translationList["trayStartup"]; trayCleaner.Text = translationList["trayCleaner"]; trayPinger.Text = translationList["trayPinger"]; trayHosts.Text = translationList["trayHosts"]; trayAD.Text = translationList["trayAD"]; trayUnlocker.Text = translationList["trayUnlocker"]; trayOptions.Text = translationList["trayOptions"]; trayRegistry.Text = translationList["trayRegistry"]; trayRestartExplorer.Text = translationList["trayRestartExplorer"]; trayExit.Text = translationList["trayExit"]; trayHW.Text = translationList["trayHW"]; toolHWCopy.Text = translationList["toolHWCopy"]; toolHWDuck.Text = translationList["toolHWDuck"]; toolHWGoogle.Text = translationList["toolHWGoogle"]; label14s.Text = translationList["subSystem"]; label14.Text = translationList["subSystem"]; label4a.Text = translationList["appsTab"]; label13.Text = translationList["subPrivacy"]; label16.Text = translationList["subPrivacy"]; label17.Text = translationList["subGaming"]; label18.Text = translationList["subTouch"]; label19.Text = translationList["subTaskbar"]; label20.Text = translationList["subExtras"]; Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; if (element is ToggleCard tc) { tc.LabelText = x.Value; continue; } element.Text = x.Value; } } txtVersion.Text = txtVersion.Text.Replace("{VN}", Program.GetCurrentVersionTostring()); } private void GetFootprint() { ByteSize footprint = CleanHelper.PreviewSizeToBeFreed; if (footprint > ByteSize.FromBytes(0)) lblFootprint.Text = footprint.ToString(); else lblFootprint.Text = "-"; } private void GetFeed() { WebClient client = new WebClient { Encoding = Encoding.UTF8 }; client.Headers.Add("Cache-Control", "no-cache"); try { byte[] feedData; string tmpImageFileName = string.Empty; feedData = client.DownloadData(_feedImages); using (ZipArchive zip = new ZipArchive(new MemoryStream(feedData))) { var zipEntries = zip.Entries; try { string feed = client.DownloadString(_feedLink); AppsFromFeed = JsonConvert.DeserializeObject>(feed); AppCard appCard; groupSystemTools.Controls.Clear(); groupInternet.Controls.Clear(); groupCoding.Controls.Clear(); groupSoundVideo.Controls.Clear(); foreach (AppInfo x in AppsFromFeed) { appCard = new AppCard(); appCard.AutoSize = true; appCard.Anchor = AnchorStyles.None; appCard.Anchor = AnchorStyles.Top | AnchorStyles.Left; appCard.appTitle.Text = x.Title; appCard.appTitle.Name = x.Tag; appCard.appImage.SizeMode = PictureBoxSizeMode.Zoom; tmpImageFileName = x.Image.Substring(x.Image.LastIndexOf("/") + 1, x.Image.Length - (x.Image.LastIndexOf("/") + 1)); appCard.appImage.Image = Image.FromStream(zipEntries.First(ifn => ifn.Name == tmpImageFileName).Open()); switch (x.Group) { case "SystemTools": appCard.Location = new Point(0, groupSystemTools.Controls.Count * GetItemPadding()); groupSystemTools.Controls.Add(appCard); break; case "Internet": appCard.Location = new Point(0, groupInternet.Controls.Count * GetItemPadding()); groupInternet.Controls.Add(appCard); break; case "Coding": appCard.Location = new Point(0, groupCoding.Controls.Count * GetItemPadding()); groupCoding.Controls.Add(appCard); break; case "GraphicsSound": appCard.Location = new Point(0, groupSoundVideo.Controls.Count * GetItemPadding()); groupSoundVideo.Controls.Add(appCard); break; default: break; } } // UI handling btnDownloadApps.Enabled = true; txtFeedError.Visible = false; } catch (Exception ex) { btnDownloadApps.Enabled = false; txtFeedError.Visible = true; Logger.LogError("MainForm.GetFeed", ex.Message, ex.StackTrace); } } } catch (Exception ex) { btnDownloadApps.Enabled = false; txtFeedError.Visible = true; Logger.LogError("MainForm.GetFeed-DownloadImages", ex.Message, ex.StackTrace); } } private void PreviewCleanPC() { try { if (checkTemp.Checked) CleanHelper.PreviewTemp(); if (checkMiniDumps.Checked) CleanHelper.PreviewMinidumps(); if (checkErrorReports.Checked) CleanHelper.PreviewErrorReports(); CleanHelper.PreviewChromeClean(chromeCache.Checked, chromeCookies.Checked, chromeHistory.Checked, chromeSession.Checked, chromePws.Checked); CleanHelper.PreviewFireFoxClean(firefoxCache.Checked, firefoxCookies.Checked, firefoxHistory.Checked); CleanHelper.PreviewEdgeClean(edgeCache.Checked, edgeCookies.Checked, edgeHistory.Checked, edgeSession.Checked); CleanHelper.PreviewBraveClean(braveCache.Checked, braveCookies.Checked, braveHistory.Checked, braveSession.Checked, bravePasswords.Checked); if (IECache.Checked) CleanHelper.PreviewInternetExplorerCache(); } catch (Exception ex) { Logger.LogError("MainForm.CleanPC", ex.Message, ex.StackTrace); } finally { _cleanPreviewList = CleanHelper.PreviewCleanList; _cleanPreviewList.Sort(); listCleanPreview.Items.AddRange(_cleanPreviewList.ToArray()); for (int i = 0; i < listCleanPreview.Items.Count; i++) { listCleanPreview.SetItemChecked(i, true); } GetFootprint(); } } private void CleanPC() { for (int i = 0; i < listCleanPreview.CheckedItems.Count; i++) { CleanHelper.PreviewCleanList.Add(listCleanPreview.CheckedItems[i].ToString()); } if (checkBin.Checked) CleanHelper.EmptyRecycleBin(); CleanHelper.Clean(); listCleanPreview.Items.Clear(); CleanHelper.PreviewCleanList.Clear(); } private bool FixRegistry() { bool changeDetected = false; try { if (checkFirewall.Checked) { Utilities.EnableFirewall(); changeDetected = true; } if (checkCommandPrompt.Checked) { Utilities.EnableCommandPrompt(); changeDetected = true; } if (checkControlPanel.Checked) { Utilities.EnableControlPanel(); changeDetected = true; } if (checkFolderOptions.Checked) { Utilities.EnableFolderOptions(); changeDetected = true; } if (checkRunDialog.Checked) { Utilities.EnableRunDialog(); changeDetected = true; } if (checkContextMenu.Checked) { Utilities.EnableContextMenu(); changeDetected = true; } if (checkTaskManager.Checked) { Utilities.EnableTaskManager(); changeDetected = true; } if (checkRegistryEditor.Checked) { Utilities.EnableRegistryEditor(); changeDetected = true; } } catch (Exception ex) { Logger.LogError("MainForm.FixRegistry", ex.Message, ex.StackTrace); } return changeDetected; } private void LoadAdvancedToggleStates() { hpetSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableHPET; loginVerboseSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableLoginVerbose; regBackupSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableRegistryBackups; } private void LoadUniversalToggleStates() { performanceSw.ToggleChecked = OptionsHelper.CurrentOptions.EnablePerformanceTweaks; allTrayIconsSw.ToggleChecked = OptionsHelper.CurrentOptions.ShowAllTrayIcons; noMenuDelaySw.ToggleChecked = OptionsHelper.CurrentOptions.RemoveMenusDelay; networkSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableNetworkThrottling; defenderSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableWindowsDefender; systemRestoreSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSystemRestore; printSw.ToggleChecked = OptionsHelper.CurrentOptions.DisablePrintService; mediaSharingSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableMediaPlayerSharing; reportingSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableErrorReporting; homegroupSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableHomeGroup; superfetchSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSuperfetch; telemetryTasksSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableTelemetryTasks; officeTelemetrySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableOffice2016Telemetry; compatSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableCompatibilityAssistant; faxSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableFaxService; smartScreenSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSmartScreen; stickySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableStickyKeys; hibernateSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableHibernation; smb1Sw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSMB1; smb2Sw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSMB2; ntfsStampSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableNTFSTimeStamp; winSearchSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSearch; ffTelemetrySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableFirefoxTemeletry; vsSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableVisualStudioTelemetry; chromeTelemetrySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableChromeTelemetry; nvidiaTelemetrySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableNVIDIATelemetry; enableUtcSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableUtcTime; } private void LoadWindows8ToggleStates() { disableOneDriveSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableOneDrive; } private void LoadWindows10ToggleStates() { oldMixerSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableLegacyVolumeSlider; uODSw.ToggleChecked = OptionsHelper.CurrentOptions.UninstallOneDrive; gameBarSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableGameBar; cortanaSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableCortana; edgeTelemetrySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableEdgeTelemetry; edgeAiSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableEdgeDiscoverBar; xboxSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableXboxLive; oldExplorerSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableQuickAccessHistory; sensorSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSensorServices; privacySw.ToggleChecked = OptionsHelper.CurrentOptions.DisablePrivacyOptions; telemetryServicesSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableTelemetryServices; autoUpdatesSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableAutomaticUpdates; peopleSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableMyPeople; adsSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableStartMenuAds; spellSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSpellingTyping; inkSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableWindowsInk; driversSw.ToggleChecked = OptionsHelper.CurrentOptions.ExcludeDrivers; insiderSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableInsiderService; storeUpdatesSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableStoreUpdates; ccSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableCloudClipboard; longPathsSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableLongPaths; castSw.ToggleChecked = OptionsHelper.CurrentOptions.RemoveCastToDevice; gameModeSw.ToggleChecked = OptionsHelper.CurrentOptions.EnableGamingMode; tpmSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableTPMCheck; classicPhotoViewerSw.ToggleChecked = OptionsHelper.CurrentOptions.RestoreClassicPhotoViewer; modernStandbySw.ToggleChecked = OptionsHelper.CurrentOptions.DisableModernStandby; hideWeatherSw.ToggleChecked = OptionsHelper.CurrentOptions.HideTaskbarWeather; hideSearchSw.ToggleChecked = OptionsHelper.CurrentOptions.HideTaskbarSearch; newsInterestsSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableNewsInterests; } private void LoadWindows11ToggleStates() { leftTaskbarSw.ToggleChecked = OptionsHelper.CurrentOptions.TaskbarToLeft; snapAssistSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableSnapAssist; widgetsSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableWidgets; chatSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableChat; stickersSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableStickers; classicContextSw.ToggleChecked = OptionsHelper.CurrentOptions.ClassicMenu; tpmSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableTPMCheck; compactModeSw.ToggleChecked = OptionsHelper.CurrentOptions.CompactMode; vbsSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableVBS; copilotSw.ToggleChecked = OptionsHelper.CurrentOptions.DisableCoPilotAI; } private void Main_Load(object sender, EventArgs e) { FixTabHeaderWidth(tabCollection); FixTabHeaderWidth(synapse); if (OptionsHelper.CurrentOptions.AutoStart && OptionsHelper.CurrentOptions.EnableTray) { this.Hide(); } //DebugHelper.FindDifferenceInTwoJsons(); } private void GetDesktopItems() { _desktopItems = IntegratorHelper.GetDesktopItems(); listDesktopItems.Items.Clear(); for (int i = 0; i < _desktopItems.Count; i++) { if (!string.IsNullOrEmpty(_desktopItems[i])) { listDesktopItems.Items.Add(_desktopItems[i]); } } if (_desktopItems.Count > 0) listDesktopItems.SelectedIndex = 0; } private void GetHostsEntries() { ((Control)this.hostsEditorTab).Enabled = false; _hostsEntries = HostsHelper.GetHostsEntries(); listHostEntries.Items.Clear(); listHostEntries.Items.AddRange(_hostsEntries.ToArray()); chkReadOnly.Checked = HostsHelper.GetReadOnly(); addHostB.Enabled = !chkReadOnly.Checked; removeAllHostsB.Enabled = !chkReadOnly.Checked; removeHostB.Enabled = !chkReadOnly.Checked; refreshHostsB.Enabled = !chkReadOnly.Checked; linkRestoreDefault.Enabled = !chkReadOnly.Checked; chkBlock.Enabled = !chkReadOnly.Checked; txtDomain.Enabled = !chkReadOnly.Checked; txtIP.Enabled = !chkReadOnly.Checked; ((Control)this.hostsEditorTab).Enabled = true; if (_hostsEntries.Count > 0) listHostEntries.SelectedIndex = 0; } private void GetStartupItems() { _startUpItems = StartupHelper.GetStartupItems(); listStartupItems.Items.Clear(); for (int i = 0; i < _startUpItems.Count; i++) { ListViewItem list = new ListViewItem(_startUpItems[i].Name); list.SubItems.Add(_startUpItems[i].FileLocation); list.SubItems.Add(_startUpItems[i].ToString()); listStartupItems.Items.Add(list); } foreach (ColumnHeader column in listStartupItems.Columns) { column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize); } } private void GetModernApps(bool showAll) { uninstallModernAppsButton.Enabled = false; refreshModernAppsButton.Enabled = false; panelUwp.Controls.Clear(); _modernApps = UWPHelper.GetUWPApps(showAll); AppCard appCard; FileInfo pngTmp; foreach (var x in _modernApps) { appCard = new AppCard(); appCard.AutoSize = true; appCard.Anchor = AnchorStyles.None; appCard.Anchor = AnchorStyles.Top | AnchorStyles.Left; appCard.appTitle.Text = x.Key; appCard.appImage.SizeMode = PictureBoxSizeMode.Zoom; // gets largest picture try { pngTmp = new DirectoryInfo(x.Value) .EnumerateFiles("*.png", SearchOption.AllDirectories) .OrderByDescending(f => f.Length) .FirstOrDefault(); } catch (Exception ex) { Logger.LogError("MainForm.GetModernApps-ImageSearch", ex.Message, ex.StackTrace); pngTmp = null; } if (pngTmp != null) { try { using (FileStream fs = new FileStream(pngTmp.FullName, FileMode.Open, FileAccess.Read)) { appCard.appImage.Image = Image.FromStream(fs); } } catch (Exception ex) { Logger.LogError("MainForm.GetModernApps-ImageLoad", ex.Message, ex.StackTrace); } } appCard.Location = new Point(0, panelUwp.Controls.Count * GetItemPadding()); panelUwp.Controls.Add(appCard); } uninstallModernAppsButton.Enabled = true; refreshModernAppsButton.Enabled = true; } private async void UninstallModernApps() { List selectedApps = new List(); foreach (Control c in Utilities.GetSelfAndChildrenRecursive(panelUwp)) { //if ((c.Name == "chkSelectAllModernApps") || (c.Name == "chkOnlyRemovable")) continue; if (c is MoonCheck && ((MoonCheck)c).Checked) { selectedApps.Add(c.Text); } } if (selectedApps.Count <= 0) return; if (MessageBox.Show(_removeModernAppsMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { uninstallModernAppsButton.Enabled = false; refreshModernAppsButton.Enabled = false; bool errorOccured = false; string failedApps = string.Empty; foreach (string app in selectedApps) { await Task.Run(() => errorOccured = UWPHelper.UninstallUWPApp(app)); if (errorOccured) { failedApps += Environment.NewLine + app; } } if (!string.IsNullOrEmpty(failedApps)) { MessageBox.Show(_errorModernAppsMessage + failedApps, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); } GetModernApps(!chkOnlyRemovable.Checked); } } private void GetCustomCommands() { _customCommands = IntegratorHelper.GetCustomCommands(); listCustomCommands.Items.Clear(); foreach (string s in _customCommands) { listCustomCommands.Items.Add(s); } if (_customCommands.Count > 0) listCustomCommands.SelectedIndex = 0; } private void Main_FormClosing(object sender, FormClosingEventArgs e) { if (_trayMenu) { e.Cancel = true; this.Hide(); } else { OptionsHelper.CurrentOptions.AppsFolder = txtDownloadFolder.Text; OptionsHelper.SaveSettings(); } } private void button32_Click(object sender, EventArgs e) { if (listStartupItems.CheckedItems.Count <= 0) return; string report = string.Empty; foreach (ListViewItem i in listStartupItems.CheckedItems) { report += i.Text + Environment.NewLine; } if (MessageBox.Show(_removeStartupItemsMessage + Environment.NewLine + Environment.NewLine + report, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { foreach (ListViewItem x in listStartupItems.CheckedItems) { var item = _startUpItems.Find(y => y.Name == x.Text); if (item != null) { item.Remove(); } } GetStartupItems(); } } internal void RemoveAllStartupItems() { foreach (ListViewItem i in listStartupItems.Items) { _startUpItems[i.Index].Remove(); } GetStartupItems(); } private void button31_Click(object sender, EventArgs e) { if (listStartupItems.SelectedItems.Count == 1) { _startUpItems[listStartupItems.SelectedIndices[0]].LocateFile(); } } private void checkEnableAll_CheckedChanged(object sender, EventArgs e) { checkTaskManager.Checked = checkEnableAll.Checked; checkCommandPrompt.Checked = checkEnableAll.Checked; checkControlPanel.Checked = checkEnableAll.Checked; checkFolderOptions.Checked = checkEnableAll.Checked; checkRunDialog.Checked = checkEnableAll.Checked; checkContextMenu.Checked = checkEnableAll.Checked; checkFirewall.Checked = checkEnableAll.Checked; checkRegistryEditor.Checked = checkEnableAll.Checked; } private void button33_Click(object sender, EventArgs e) { bool flag = FixRegistry(); if (flag) { panel2.Enabled = false; regFixB.Enabled = false; if (checkRestartExplorer.Checked) { Utilities.RestartExplorer(); } panel2.Enabled = true; regFixB.Enabled = true; } } private void pictureBox1_Click(object sender, EventArgs e) { AboutForm f = new AboutForm(); f.ShowDialog(this); } private void button37_Click(object sender, EventArgs e) { GetStartupItems(); } private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { HostsHelper.LocateHosts(); } private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { HostsEditorForm f = new HostsEditorForm(); f.ShowDialog(this); GetHostsEntries(); } private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { HostsHelper.RestoreDefaultHosts(); GetHostsEntries(); } private void button47_Click(object sender, EventArgs e) { if ((txtIP.Text != string.Empty) && (txtDomain.Text != string.Empty)) { string ip = txtIP.Text.Trim(); string domain = txtDomain.Text.Trim(); HostsHelper.AddEntry(HostsHelper.SanitizeEntry(ip) + " " + HostsHelper.SanitizeEntry(domain)); if (chkIncludeWww.Checked) { domain = $"www.{domain}"; HostsHelper.AddEntry(HostsHelper.SanitizeEntry(ip) + " " + HostsHelper.SanitizeEntry(domain)); } GetHostsEntries(); txtIP.Clear(); txtDomain.Clear(); chkBlock.Checked = false; } } private void button41_Click(object sender, EventArgs e) { GetHostsEntries(); } private void button42_Click(object sender, EventArgs e) { if (listHostEntries.SelectedItems.Count == 1) { HostsHelper.RemoveEntry(listHostEntries.SelectedItem.ToString().Replace(" : ", " ")); GetHostsEntries(); } } private void button46_Click(object sender, EventArgs e) { if (listHostEntries.Items.Count > 0) { HelperForm r = new HelperForm(this, MessageType.Hosts, _removeHostsEntriesMessage); r.ShowDialog(this); } } internal void RemoveAllHostsEntries() { List collection = new List(); foreach (string item in listHostEntries.Items) { collection.Add(item.Replace(" : ", " ")); } HostsHelper.RemoveAllEntries(collection); GetHostsEntries(); } private void aio_SelectedIndexChanged(object sender, EventArgs e) { if (tabCollection.SelectedTab == hostsEditorTab) txtIP.Focus(); if (tabCollection.SelectedTab == pingerTab) txtPingInput.Focus(); } private void button48_Click(object sender, EventArgs e) { defineCommandDialog.ShowDialog(); } private void button50_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txtRunFile.Text) && !string.IsNullOrEmpty(txtRunKeyword.Text)) { IntegratorHelper.CreateCustomCommand(txtRunFile.Text, txtRunKeyword.Text); txtRunFile.Clear(); txtRunKeyword.Clear(); GetCustomCommands(); } } private void DefineCmd_FileOk(object sender, CancelEventArgs e) { txtRunFile.Text = defineCommandDialog.FileName; txtRunKeyword.Text = Path.GetFileNameWithoutExtension(txtRunFile.Text).ToLower(); } private void button60_Click(object sender, EventArgs e) { GetDesktopItems(); } private void button61_Click(object sender, EventArgs e) { if (listDesktopItems.SelectedItems.Count == 1) { IntegratorHelper.RemoveItem(listDesktopItems.SelectedItem.ToString()); GetDesktopItems(); } } internal void RemoveAllDesktopItems() { List collection = new List(); foreach (string item in listDesktopItems.Items) { collection.Add(item); } IntegratorHelper.RemoveAllItems(collection); GetDesktopItems(); } private void button62_Click(object sender, EventArgs e) { if (listDesktopItems.Items.Count > 0) { HelperForm r = new HelperForm(this, MessageType.Integrator, _removeDesktopItemsMessage); r.ShowDialog(this); } } private void radioProgram_CheckedChanged(object sender, EventArgs e) { if (radioProgram.Checked) { btnBrowseItem.Enabled = true; txtItem.Clear(); checkDefaultIcon.Checked = true; txtIcon.Enabled = false; btnBrowseIcon.Enabled = false; itemtoaddgroup.Text = OptionsHelper.TranslationList["itemtoaddgroup"]; checkDefaultIcon.Visible = true; checkDefaultIcon.Text = OptionsHelper.TranslationList["checkDefaultIcon"]; txtItemName.Clear(); txtItem.ReadOnly = true; txtIcon.ReadOnly = true; _desktopItemType = DesktopItemType.Program; } } private void radioFolder_CheckedChanged(object sender, EventArgs e) { if (radioFolder.Checked) { checkDefaultIcon.Checked = true; btnBrowseItem.Enabled = true; txtItem.Clear(); itemtoaddgroup.Text = OptionsHelper.TranslationList["folderToAdd"]; checkDefaultIcon.Text = OptionsHelper.TranslationList["checkDefaultFolderIcon"]; txtItemName.Clear(); txtItem.ReadOnly = true; txtIcon.ReadOnly = true; _desktopItemType = DesktopItemType.Folder; } } private void radioLink_CheckedChanged(object sender, EventArgs e) { if (radioLink.Checked) { checkDefaultIcon.Checked = true; checkDefaultIcon.Text = OptionsHelper.TranslationList["checkFavicon"]; btnBrowseItem.Enabled = false; itemtoaddgroup.Text = OptionsHelper.TranslationList["linkToAdd"]; checkDefaultIcon.Visible = true; txtItem.Text = "http://"; txtItemName.Clear(); txtItem.ReadOnly = false; txtIcon.ReadOnly = true; _desktopItemType = DesktopItemType.Link; } } private void radioFile_CheckedChanged(object sender, EventArgs e) { if (radioFile.Checked) { checkDefaultIcon.Checked = true; checkDefaultIcon.Text = OptionsHelper.TranslationList["checkNoIcon"]; btnBrowseItem.Enabled = true; itemtoaddgroup.Text = OptionsHelper.TranslationList["fileToAdd"]; checkDefaultIcon.Visible = true; txtItem.Clear(); txtItemName.Clear(); txtItem.ReadOnly = true; txtIcon.ReadOnly = true; _desktopItemType = DesktopItemType.File; } } private void radioCommand_CheckedChanged(object sender, EventArgs e) { if (radioCommand.Checked) { btnBrowseItem.Enabled = false; txtItem.Clear(); checkDefaultIcon.Checked = true; txtIcon.Enabled = false; btnBrowseIcon.Enabled = false; itemtoaddgroup.Text = OptionsHelper.TranslationList["commandToAdd"]; checkDefaultIcon.Visible = true; checkDefaultIcon.Text = OptionsHelper.TranslationList["checkNoIcon"]; txtItemName.Clear(); txtItem.ReadOnly = false; txtIcon.ReadOnly = true; _desktopItemType = DesktopItemType.Command; } } private void checkDefaultIcon_CheckedChanged(object sender, EventArgs e) { if (checkDefaultIcon.Checked) { txtIcon.Clear(); txtIcon.Enabled = false; btnBrowseIcon.Enabled = false; } else { txtIcon.Clear(); txtIcon.Enabled = true; btnBrowseIcon.Enabled = true; } } private void btnBrowseItem_Click(object sender, EventArgs e) { switch (_desktopItemType) { case DesktopItemType.Program: defineProgramDialog.ShowDialog(); break; case DesktopItemType.Folder: defineFolderDialog.ShowDialog(); txtItem.Text = defineFolderDialog.SelectedPath; int i = defineFolderDialog.SelectedPath.LastIndexOf("\\"); txtItemName.Text = defineFolderDialog.SelectedPath.Remove(0, i + 1); break; case DesktopItemType.File: defineFileDialog.ShowDialog(); break; } } private void DefineProgramDialog_FileOk(object sender, CancelEventArgs e) { txtItem.Text = defineProgramDialog.FileName; txtItemName.Text = defineProgramDialog.SafeFileName.Replace(".exe", string.Empty); } private void DefineFileDialog_FileOk(object sender, CancelEventArgs e) { txtItem.Text = defineFileDialog.FileName; txtItemName.Text = defineFileDialog.SafeFileName; } private void btnBrowseIcon_Click(object sender, EventArgs e) { switch (_desktopItemType) { case DesktopItemType.Program: DefineProgramIconDialog.ShowDialog(); break; case DesktopItemType.Folder: DefineFolderIconDialog.ShowDialog(); break; case DesktopItemType.Link: DefineURLIconDialog.ShowDialog(); break; case DesktopItemType.File: DefineFileIconDialog.ShowDialog(); break; case DesktopItemType.Command: DefineCommandIconDialog.ShowDialog(); break; } } private void DefineProgramIconDialog_FileOk(object sender, CancelEventArgs e) { txtIcon.Text = DefineProgramIconDialog.FileName; if (txtIcon.Text.Contains(".exe")) { string iconpath = IntegratorHelper.ExtractIconFromExecutable(txtItemName.Text, DefineProgramIconDialog.FileName); txtIcon.Text = iconpath; } } private void DefineFolderIconDialog_FileOk(object sender, CancelEventArgs e) { txtIcon.Text = DefineFolderIconDialog.FileName; if (txtIcon.Text.Contains(".exe")) { string iconpath = IntegratorHelper.ExtractIconFromExecutable(txtItemName.Text, DefineFolderIconDialog.FileName); txtIcon.Text = iconpath; } } private void DefineURLIconDialog_FileOk(object sender, CancelEventArgs e) { txtIcon.Text = DefineURLIconDialog.FileName; if (txtIcon.Text.Contains(".exe")) { string iconpath = IntegratorHelper.ExtractIconFromExecutable(txtItemName.Text, DefineURLIconDialog.FileName); txtIcon.Text = iconpath; } } private void DefineFileIconDialog_FileOk(object sender, CancelEventArgs e) { txtIcon.Text = DefineFileIconDialog.FileName; if (txtIcon.Text.Contains(".exe")) { string iconpath = IntegratorHelper.ExtractIconFromExecutable(txtItemName.Text, DefineFileIconDialog.FileName); txtIcon.Text = iconpath; } } private void DefineCommandIconDialog_FileOk(object sender, CancelEventArgs e) { txtIcon.Text = DefineCommandIconDialog.FileName; if (txtIcon.Text.Contains(".exe")) { string iconpath = IntegratorHelper.ExtractIconFromExecutable(txtItemName.Text, DefineCommandIconDialog.FileName); txtIcon.Text = iconpath; } } private void btnAddItem_Click(object sender, EventArgs e) { if (!checkDefaultIcon.Checked && (string.IsNullOrEmpty(txtItem.Text) || string.IsNullOrEmpty(txtItemName.Text) || string.IsNullOrEmpty(txtIcon.Text))) { return; } if (checkDefaultIcon.Checked && (string.IsNullOrEmpty(txtItem.Text) || string.IsNullOrEmpty(txtItemName.Text))) { return; } string icon = string.Empty; switch (_desktopItemType) { case DesktopItemType.Program: if (checkDefaultIcon.Checked) { icon = txtItem.Text; } else { icon = txtIcon.Text; } IntegratorHelper.AddItem(txtItemName.Text, txtItem.Text, icon, _desktopItemPosition, checkShift.Checked, DesktopItemType.Program); break; case DesktopItemType.Folder: if (checkDefaultIcon.Checked) { icon = IntegratorHelper.FolderDefaultIcon; } else { icon = txtIcon.Text; } IntegratorHelper.AddItem(txtItemName.Text, txtItem.Text, icon, _desktopItemPosition, checkShift.Checked, DesktopItemType.Folder); break; case DesktopItemType.Link: if (checkDefaultIcon.Checked) { icon = IntegratorHelper.DownloadFavicon(txtItem.Text, txtItemName.Text); } else { icon = txtIcon.Text; } IntegratorHelper.AddItem(txtItemName.Text, txtItem.Text, icon, _desktopItemPosition, checkShift.Checked, DesktopItemType.Link); break; case DesktopItemType.File: if (!checkDefaultIcon.Checked) { icon = txtIcon.Text; } IntegratorHelper.AddItem(txtItemName.Text, txtItem.Text, icon, _desktopItemPosition, checkShift.Checked, DesktopItemType.File); break; case DesktopItemType.Command: if (!checkDefaultIcon.Checked) { icon = txtIcon.Text; } IntegratorHelper.AddItem(txtItemName.Text, txtItem.Text, icon, _desktopItemPosition, checkShift.Checked, DesktopItemType.Command); break; } GetDesktopItems(); ResetIntegratorForm(); } private void radioTop_CheckedChanged(object sender, EventArgs e) { if (radioTop.Checked) { _desktopItemPosition = DesktopTypePosition.Top; } } private void radioMiddle_CheckedChanged(object sender, EventArgs e) { if (radioMiddle.Checked) { _desktopItemPosition = DesktopTypePosition.Middle; } } private void radioBottom_CheckedChanged(object sender, EventArgs e) { if (radioBottom.Checked) { _desktopItemPosition = DesktopTypePosition.Bottom; } } private void ResetIntegratorForm() { txtItem.Clear(); txtIcon.Clear(); checkDefaultIcon.Checked = true; txtItemName.Clear(); if (radioLink.Checked) { txtItem.Text = "http://"; } } private void button64_Click(object sender, EventArgs e) { if (listStartupItems.SelectedItems.Count == 1) { _startUpItems[listStartupItems.SelectedIndices[0]].LocateKey(); } } private void listStartupItems_ColumnClick(object sender, ColumnClickEventArgs e) { if (e.Column == _columnSorter.CurrentColumn) { if (_columnSorter.SortOrder == SortOrder.Ascending) { _columnSorter.SortOrder = SortOrder.Descending; } else { _columnSorter.SortOrder = SortOrder.Ascending; } } else { _columnSorter.CurrentColumn = e.Column; _columnSorter.SortOrder = SortOrder.Ascending; } listStartupItems.Sort(); } private void chkBlock_CheckedChanged(object sender, EventArgs e) { if (chkBlock.Checked) { txtIP.Text = _blockedIP; txtIP.Enabled = false; } else { txtIP.Clear(); txtIP.Enabled = true; } } private void button8_Click(object sender, EventArgs e) { GetCustomCommands(); } private void button26_Click(object sender, EventArgs e) { if (listCustomCommands.SelectedItems.Count == 1) { IntegratorHelper.DeleteCustomCommand(listCustomCommands.SelectedItem.ToString()); GetCustomCommands(); } } private void button75_Click(object sender, EventArgs e) { GetModernApps(!chkOnlyRemovable.Checked); } private void button74_Click(object sender, EventArgs e) { UninstallModernApps(); } private void chkSelectAllModernApps_CheckedChanged(object sender, EventArgs e) { foreach (Control c in Utilities.GetSelfAndChildrenRecursive(panelUwp)) { if (c is MoonCheck mc) mc.Checked = chkSelectAllModernApps.Checked; } } private void btnResetConfig_Click(object sender, EventArgs e) { if (MessageBox.Show(_repairMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { Utilities.Repair(); } } private void toggleSwitch1_Click(object sender, EventArgs e) { if (performanceSw.ToggleChecked) { OptimizeHelper.EnablePerformanceTweaks(); } else { OptimizeHelper.DisablePerformanceTweaks(); } OptionsHelper.CurrentOptions.EnablePerformanceTweaks = performanceSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch2_Click(object sender, EventArgs e) { if (networkSw.ToggleChecked) { OptimizeHelper.DisableNetworkThrottling(); } else { OptimizeHelper.EnableNetworkThrottling(); } OptionsHelper.CurrentOptions.DisableNetworkThrottling = networkSw.ToggleChecked; } private void toggleSwitch3_Click(object sender, EventArgs e) { if (defenderSw.ToggleChecked) { OptimizeHelper.DisableDefender(); } else { OptimizeHelper.EnableDefender(); } OptionsHelper.CurrentOptions.DisableWindowsDefender = defenderSw.ToggleChecked; } private void toggleSwitch4_Click(object sender, EventArgs e) { if (systemRestoreSw.ToggleChecked) { if (MessageBox.Show(OptionsHelper.TranslationList["systemRestoreM"].ToString(), "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { _skipSystemRestore = true; systemRestoreSw.ToggleChecked = false; return; } _skipSystemRestore = false; OptimizeHelper.DisableSystemRestore(); } else { if (_skipSystemRestore) return; OptimizeHelper.EnableSystemRestore(); } if (!_skipSystemRestore) OptionsHelper.CurrentOptions.DisableSystemRestore = systemRestoreSw.ToggleChecked; } private void toggleSwitch5_Click(object sender, EventArgs e) { if (printSw.ToggleChecked) { OptimizeHelper.DisablePrintService(); } else { OptimizeHelper.EnablePrintService(); } OptionsHelper.CurrentOptions.DisablePrintService = printSw.ToggleChecked; } private void toggleSwitch6_Click(object sender, EventArgs e) { if (mediaSharingSw.ToggleChecked) { OptimizeHelper.DisableMediaPlayerSharing(); } else { OptimizeHelper.EnableMediaPlayerSharing(); } OptionsHelper.CurrentOptions.DisableMediaPlayerSharing = mediaSharingSw.ToggleChecked; } private void toggleSwitch8_Click(object sender, EventArgs e) { if (reportingSw.ToggleChecked) { OptimizeHelper.DisableErrorReporting(); } else { OptimizeHelper.EnableErrorReporting(); } OptionsHelper.CurrentOptions.DisableErrorReporting = reportingSw.ToggleChecked; } private void toggleSwitch9_Click(object sender, EventArgs e) { if (homegroupSw.ToggleChecked) { OptimizeHelper.DisableHomeGroup(); } else { OptimizeHelper.EnableHomeGroup(); } OptionsHelper.CurrentOptions.DisableHomeGroup = homegroupSw.ToggleChecked; } private void toggleSwitch10_Click(object sender, EventArgs e) { if (superfetchSw.ToggleChecked) { OptimizeHelper.DisableSuperfetch(); } else { OptimizeHelper.EnableSuperfetch(); } OptionsHelper.CurrentOptions.DisableSuperfetch = superfetchSw.ToggleChecked; } private void toggleSwitch11_Click(object sender, EventArgs e) { if (telemetryTasksSw.ToggleChecked) { OptimizeHelper.DisableTelemetryTasks(); } else { OptimizeHelper.EnableTelemetryTasks(); } OptionsHelper.CurrentOptions.DisableTelemetryTasks = telemetryTasksSw.ToggleChecked; } private void toggleSwitch12_Click(object sender, EventArgs e) { if (officeTelemetrySw.ToggleChecked) { OptimizeHelper.DisableOffice2016Telemetry(); } else { OptimizeHelper.EnableOffice2016Telemetry(); } OptionsHelper.CurrentOptions.DisableOffice2016Telemetry = officeTelemetrySw.ToggleChecked; } private void toggleSwitch13_Click(object sender, EventArgs e) { if (oldMixerSw.ToggleChecked) { OptimizeHelper.EnableLegacyVolumeSlider(); } else { OptimizeHelper.DisableLegacyVolumeSlider(); } OptionsHelper.CurrentOptions.EnableLegacyVolumeSlider = oldMixerSw.ToggleChecked; } private void toggleSwitch18_Click(object sender, EventArgs e) { if (oldExplorerSw.ToggleChecked) { OptimizeHelper.DisableQuickAccessHistory(); } else { OptimizeHelper.EnableQuickAccessHistory(); } OptionsHelper.CurrentOptions.DisableQuickAccessHistory = oldExplorerSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch26_Click(object sender, EventArgs e) { if (adsSw.ToggleChecked) { OptimizeHelper.DisableStartMenuAds(); } else { OptimizeHelper.EnableStartMenuAds(); } OptionsHelper.CurrentOptions.DisableStartMenuAds = adsSw.ToggleChecked; } private void toggleSwitch14_Click(object sender, EventArgs e) { if (uODSw.ToggleChecked) { if (MessageBox.Show(OptionsHelper.TranslationList["onedriveM"].ToString(), "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { _skipOneDrive = true; uODSw.ToggleChecked = false; return; } _skipOneDrive = false; Task t = new Task(() => OptimizeHelper.UninstallOneDrive()); t.Start(); } else { if (_skipOneDrive) return; Task t = new Task(() => OptimizeHelper.InstallOneDrive()); t.Start(); } if (!_skipOneDrive) OptionsHelper.CurrentOptions.UninstallOneDrive = uODSw.ToggleChecked; } private void toggleSwitch25_Click(object sender, EventArgs e) { if (peopleSw.ToggleChecked) { OptimizeHelper.DisableMyPeople(); } else { OptimizeHelper.EnableMyPeople(); } OptionsHelper.CurrentOptions.DisableMyPeople = peopleSw.ToggleChecked; } private void toggleSwitch24_Click(object sender, EventArgs e) { if (autoUpdatesSw.ToggleChecked) { OptimizeHelper.DisableAutomaticUpdates(); } else { OptimizeHelper.EnableAutomaticUpdates(); } OptionsHelper.CurrentOptions.DisableAutomaticUpdates = autoUpdatesSw.ToggleChecked; } private void toggleSwitch30_Click(object sender, EventArgs e) { if (driversSw.ToggleChecked) { OptimizeHelper.ExcludeDrivers(); } else { OptimizeHelper.IncludeDrivers(); } OptionsHelper.CurrentOptions.ExcludeDrivers = driversSw.ToggleChecked; } private void toggleSwitch23_Click(object sender, EventArgs e) { if (telemetryServicesSw.ToggleChecked) { OptimizeHelper.DisableTelemetryServices(); } else { OptimizeHelper.EnableTelemetryServices(); } OptionsHelper.CurrentOptions.DisableTelemetryServices = telemetryServicesSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch21_Click(object sender, EventArgs e) { if (privacySw.ToggleChecked) { Task t = new Task(() => OptimizeHelper.EnhancePrivacy()); t.Start(); } else { Task t = new Task(() => OptimizeHelper.CompromisePrivacy()); t.Start(); } OptionsHelper.CurrentOptions.DisablePrivacyOptions = privacySw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch16_Click(object sender, EventArgs e) { if (cortanaSw.ToggleChecked) { OptimizeHelper.DisableCortana(); } else { OptimizeHelper.EnableCortana(); } OptionsHelper.CurrentOptions.DisableCortana = cortanaSw.ToggleChecked; } private void toggleSwitch20_Click(object sender, EventArgs e) { if (sensorSw.ToggleChecked) { OptimizeHelper.DisableSensorServices(); } else { OptimizeHelper.EnableSensorServices(); } OptionsHelper.CurrentOptions.DisableSensorServices = sensorSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch29_Click(object sender, EventArgs e) { if (inkSw.ToggleChecked) { OptimizeHelper.DisableWindowsInk(); } else { OptimizeHelper.EnableWindowsInk(); } OptionsHelper.CurrentOptions.DisableWindowsInk = inkSw.ToggleChecked; } private void toggleSwitch28_Click(object sender, EventArgs e) { if (spellSw.ToggleChecked) { OptimizeHelper.DisableSpellingAndTypingFeatures(); } else { OptimizeHelper.EnableSpellingAndTypingFeatures(); } OptionsHelper.CurrentOptions.DisableSpellingTyping = spellSw.ToggleChecked; } private void toggleSwitch17_Click(object sender, EventArgs e) { if (xboxSw.ToggleChecked) { OptimizeHelper.DisableXboxLive(); } else { OptimizeHelper.EnableXboxLive(); } OptionsHelper.CurrentOptions.DisableXboxLive = xboxSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch15_Click(object sender, EventArgs e) { if (gameBarSw.ToggleChecked) { OptimizeHelper.DisableGameBar(); } else { OptimizeHelper.EnableGameBar(); } OptionsHelper.CurrentOptions.DisableGameBar = gameBarSw.ToggleChecked; ShowRestartNeeded(); } private void toggleSwitch31_Click(object sender, EventArgs e) { if (disableOneDriveSw.ToggleChecked) { OptimizeHelper.DisableOneDrive(); } else { OptimizeHelper.EnableOneDrive(); } OptionsHelper.CurrentOptions.DisableOneDrive = disableOneDriveSw.ToggleChecked; } private void toggleSwitch32_Click(object sender, EventArgs e) { if (compatSw.ToggleChecked) { OptimizeHelper.DisableCompatibilityAssistant(); } else { OptimizeHelper.EnableCompatibilityAssistant(); } OptionsHelper.CurrentOptions.DisableCompatibilityAssistant = compatSw.ToggleChecked; } private void btnUpdate_Click(object sender, EventArgs e) { CheckForUpdate(); } private void chkReadOnly_CheckedChanged(object sender, EventArgs e) { HostsHelper.ReadOnly(chkReadOnly.Checked); addHostB.Enabled = !chkReadOnly.Checked; removeAllHostsB.Enabled = !chkReadOnly.Checked; removeHostB.Enabled = !chkReadOnly.Checked; linkRestoreDefault.Enabled = !chkReadOnly.Checked; txtDomain.Enabled = !chkReadOnly.Checked; txtIP.Enabled = !chkReadOnly.Checked; txtIP.Focus(); } private void RenderAppDownloaderBusy() { btnDownloadApps.Enabled = false; changeDownDirB.Enabled = false; txtDownloadFolder.ReadOnly = true; linkWarnings.Visible = false; } private void RenderAppDownloaderFree() { btnDownloadApps.Enabled = true; changeDownDirB.Enabled = true; txtDownloadFolder.ReadOnly = false; linkWarnings.Visible = !string.IsNullOrEmpty(downloadLog); txtDownloadStatus.Text = OptionsHelper.TranslationList["downloadsFinished"]; } string appNameTemp = string.Empty; int maxCount = 0; int count = 0; Process p; string downloadLog = string.Empty; private async void btnDownloadApps_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(txtDownloadFolder.Text) || !Directory.Exists(txtDownloadFolder.Text)) { MessageBox.Show(OptionsHelper.TranslationList["downloadDirInvalid"].ToString(), "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } RenderAppDownloaderBusy(); maxCount = 0; count = 0; downloadLog = string.Empty; foreach (Control c in Utilities.GetSelfAndChildrenRecursive(appsTab)) { if (c.Name == "cAutoInstall") continue; if (c is MoonCheck && ((MoonCheck)c).Checked) maxCount++; } MoonCheck currentCheck; Control[] temp; foreach (AppInfo x in AppsFromFeed) { if (string.IsNullOrEmpty(x.Tag)) continue; temp = appsTab.Controls.Find(x.Tag, true); if (!temp.Any()) continue; currentCheck = (MoonCheck)temp[0]; if (currentCheck == null) continue; if (!currentCheck.Checked) continue; appNameTemp = x.Title; if (c64.Checked) { count++; if (string.IsNullOrEmpty(x.Link64)) { downloadLog += "• " + x.Title + ":" + Environment.NewLine + OptionsHelper.TranslationList["no64Download"] + Environment.NewLine + Environment.NewLine; await DownloadApp(x, false); } else { await DownloadApp(x, true); } } else { count++; if (!string.IsNullOrEmpty(x.Link)) { await DownloadApp(x, false); } else { downloadLog += "• " + x.Title + ":" + Environment.NewLine + OptionsHelper.TranslationList["no32Download"] + Environment.NewLine + Environment.NewLine; } } } if (cAutoInstall.Checked) { count = 0; foreach (string a in Directory.GetFiles(txtDownloadFolder.Text, "*.*", SearchOption.TopDirectoryOnly)) { using (p = new Process()) { count++; p.StartInfo.FileName = a; p.EnableRaisingEvents = true; p.StartInfo.WorkingDirectory = txtDownloadFolder.Text; // APP-SPECIFIC HACKS // if (a.ToLowerInvariant().Contains("sumatra")) p.StartInfo.Arguments = " -install"; // *** // txtDownloadStatus.Text = string.Format("{0}/{1} - {2} {3} ...", count, maxCount, OptionsHelper.TranslationList["installing"], Path.GetFileNameWithoutExtension(a)); await p.RunAsync(); }; } } // reset all checkboxes foreach (Control c in Utilities.GetSelfAndChildrenRecursive(appsTab)) { if (c.Name == "cAutoInstall") continue; if (c is MoonCheck && ((MoonCheck)c).Checked) ((MoonCheck)c).Checked = false; } RenderAppDownloaderFree(); } string fileExtension = ".exe"; private async Task DownloadApp(AppInfo app, bool pref64) { try { using (WebClient downloader = new WebClient()) { downloader.Headers.Add("User-Agent: Other"); downloader.Encoding = Encoding.UTF8; downloader.DownloadProgressChanged += Downloader_DownloadProgressChanged; downloader.DownloadFileCompleted += Downloader_DownloadFileCompleted; if (pref64) { if (app.Link64.Contains(".msi")) { fileExtension = ".msi"; } else { fileExtension = ".exe"; } await downloader.DownloadFileTaskAsync(new Uri(app.Link64), Path.Combine(txtDownloadFolder.Text, app.Title + "-x64" + fileExtension)); } else { if (app.Link.Contains(".msi")) { fileExtension = ".msi"; } else { fileExtension = ".exe"; } await downloader.DownloadFileTaskAsync(new Uri(app.Link), Path.Combine(txtDownloadFolder.Text, app.Title + "-x86" + fileExtension)); } } } catch (Exception ex) { Logger.LogError("MainForm.DownloadApp", ex.Message, ex.StackTrace); downloadLog += "• " + app.Title + ":" + Environment.NewLine + OptionsHelper.TranslationList["linkInvalid"] + Environment.NewLine + Environment.NewLine; if (pref64) try { File.Delete(Path.Combine(txtDownloadFolder.Text, app.Title + "-x64.exe")); } catch { } if (!pref64) try { File.Delete(Path.Combine(txtDownloadFolder.Text, app.Title + "-x86.exe")); } catch { } if (pref64) try { File.Delete(Path.Combine(txtDownloadFolder.Text, app.Title + "-x64.msi")); } catch { } if (!pref64) try { File.Delete(Path.Combine(txtDownloadFolder.Text, app.Title + "-x86.msi")); } catch { } } } private void Downloader_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) { this.BeginInvoke((MethodInvoker)delegate { //txtDownloadStatus.Text = "Finished"; }); } int tempProgress; private void Downloader_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) { this.BeginInvoke((MethodInvoker)delegate { double bytesIn = double.Parse(e.BytesReceived.ToString()); double totalBytes = double.Parse(e.TotalBytesToReceive.ToString()); double percentage = bytesIn / totalBytes * 100; tempProgress = int.Parse(Math.Truncate(percentage).ToString()); // if Content-Length header is missing, just show an animation if (Math.Abs(tempProgress) > 100) { txtDownloadStatus.Text = string.Format("({1}/{2}) - {0} ...", appNameTemp, count, maxCount); progressDownloader.Style = ProgressBarStyle.Marquee; } // if not, show actual progress else { txtDownloadStatus.Text = string.Format("({1}/{2}) - {0} - {3} / {4}", appNameTemp, count, maxCount, ByteSize.FromBytes(e.BytesReceived).ToString("MB"), ByteSize.FromBytes(e.TotalBytesToReceive).ToString("MB")); progressDownloader.Style = ProgressBarStyle.Continuous; progressDownloader.Value = tempProgress; } }); } private void button5_Click(object sender, EventArgs e) { FolderBrowserDialog d = new FolderBrowserDialog(); if (d.ShowDialog() == DialogResult.OK) { txtDownloadFolder.Text = d.SelectedPath; OptionsHelper.CurrentOptions.AppsFolder = d.SelectedPath; OptionsHelper.SaveSettings(); } } private void button6_Click(object sender, EventArgs e) { Process.Start(txtDownloadFolder.Text); } private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { InfoForm lf = new InfoForm(downloadLog); lf.ShowDialog(this); } private void chkOnlyRemovable_CheckedChanged(object sender, EventArgs e) { GetModernApps(!chkOnlyRemovable.Checked); } private void btnGetFeed_Click(object sender, EventArgs e) { GetFeed(); } private void l2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { AboutForm f = new AboutForm(); f.ShowDialog(this); } private void btnViewLog_Click(object sender, EventArgs e) { if (File.Exists(Logger.ErrorLogFile)) { InfoForm iform = new InfoForm(File.ReadAllText(Logger.ErrorLogFile, Encoding.UTF8)); iform.ShowDialog(); } else { MessageBox.Show(OptionsHelper.TranslationList["noErrorsM"].ToString(), "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); } } private void btnOpenConf_Click(object sender, EventArgs e) { Process.Start(CoreHelper.CoreFolder); } private void btnPing_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtPingInput.Text)) return; _pingResults = new List(); listPingResults.Items.Clear(); if (PingerHelper.PingHost(txtPingInput.Text) == null) { listPingResults.Items.Add(string.Format("{0} [{1}]", OptionsHelper.TranslationList["hostNotFound"], txtPingInput.Text)); return; } Task pinger = new Task(() => { btnShodan.Enabled = false; btnPing.Enabled = false; listPingResults.Items.Add(string.Format("{0}", OptionsHelper.TranslationList["pinging"])); listPingResults.Items.Add(""); for (int i = 0; i < 9; i++) { // wait before each pinging Thread.Sleep(1000); tmpReply = PingerHelper.PingHost(txtPingInput.Text); if (tmpReply.Address == null) { listPingResults.Items.Add(tmpReply.Status); } else { _pingResults.Add(tmpReply); _shodanIP = _pingResults[i].Address.ToString(); listPingResults.Items.Add(string.Format("{0} - {1}: {2} ms - TTL: {3}", _pingResults[i].Status, OptionsHelper.TranslationList["latency"], _pingResults[i].RoundtripTime, _pingResults[i].Options.Ttl)); } } listPingResults.Items.Add(""); // calculate statistics if (_pingResults.Count > 0) { long maxLatency = _pingResults.Max(x => x.RoundtripTime); long minLatency = _pingResults.Min(x => x.RoundtripTime); double averageLatency = _pingResults.Average(x => x.RoundtripTime); listPingResults.Items.Add(string.Format("{0} = {1}, {2} = {3}, {4} = {5:F2}", OptionsHelper.TranslationList["min"], minLatency, OptionsHelper.TranslationList["max"], maxLatency, OptionsHelper.TranslationList["avg"], averageLatency)); } else { listPingResults.Items.Add(OptionsHelper.TranslationList["timeout"]); } btnPing.Enabled = true; btnShodan.Enabled = true; }); pinger.Start(); } private void btnShodan_Click(object sender, EventArgs e) { IPAddress tryIP; if (IPAddress.TryParse(txtPingInput.Text, out tryIP)) { Process.Start(string.Format("https://www.shodan.io/host/{0}", txtPingInput.Text)); return; } if (!string.IsNullOrEmpty(_shodanIP)) { Process.Start(string.Format("https://www.shodan.io/host/{0}", _shodanIP)); return; } } private void copyB_Click(object sender, EventArgs e) { try { Clipboard.SetText(_shodanIP); } catch { } } private void copyIPB_Click(object sender, EventArgs e) { try { Clipboard.SetText(txtPingInput.Text); } catch { } } private void txtPingInput_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) btnPing.PerformClick(); } private void btnExport_Click(object sender, EventArgs e) { if (ExportDialog.ShowDialog() == DialogResult.OK) { try { File.WriteAllLines(ExportDialog.FileName, listPingResults.Items.Cast()); } catch (Exception ex) { Logger.LogError("btnExport.Click", ex.Message, ex.StackTrace); MessageBox.Show(ex.Message, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); } } } private void startupItem_Click(object sender, EventArgs e) { tabCollection.SelectedTab = startupTab; RestoreWindow(); } private void cleanerItem_Click(object sender, EventArgs e) { tabCollection.SelectedTab = cleanerTab; RestoreWindow(); } private void pingerItem_Click(object sender, EventArgs e) { tabCollection.SelectedTab = pingerTab; RestoreWindow(); txtPingInput.Focus(); } private void hostsItem_Click(object sender, EventArgs e) { tabCollection.SelectedTab = hostsEditorTab; RestoreWindow(); txtIP.Focus(); } private void appsItem_Click(object sender, EventArgs e) { tabCollection.SelectedTab = appsTab; RestoreWindow(); } private void exitItem_Click(object sender, EventArgs e) { _trayMenu = false; OptionsHelper.CurrentOptions.AppsFolder = txtDownloadFolder.Text; OptionsHelper.SaveSettings(); Application.Exit(); } private void RestoreWindow() { if (this.WindowState == FormWindowState.Minimized) this.WindowState = FormWindowState.Normal; this.Show(); this.Activate(); this.Focus(); } private void launcherIcon_MouseDoubleClick(object sender, MouseEventArgs e) { if (this.Visible) { if (this.WindowState == FormWindowState.Minimized) this.WindowState = FormWindowState.Normal; this.Hide(); } else { RestoreWindow(); } } private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_licenseLink); } private void restartExpolorerItem_Click(object sender, EventArgs e) { Utilities.RestartExplorer(); } private void flushCacheB_Click(object sender, EventArgs e) { if (MessageBox.Show(_flushDNSMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { PingerHelper.FlushDNSCache(); } } private void button11_Click(object sender, EventArgs e) { ShowBackupConfirm(); } private void ShowBackupConfirm() { removeStartupItemB.Visible = false; locateFileB.Visible = false; findInRegB.Visible = false; refreshStartupB.Visible = false; restoreStartupB.Visible = false; backupStartupB.Visible = false; lblBackupTitle.Visible = true; doBackup.Visible = true; cancelBackup.Visible = true; txtBackupTitle.Visible = true; } private void HideBackupConfirm() { removeStartupItemB.Visible = true; locateFileB.Visible = true; findInRegB.Visible = true; refreshStartupB.Visible = true; restoreStartupB.Visible = true; backupStartupB.Visible = true; lblBackupTitle.Visible = false; doBackup.Visible = false; cancelBackup.Visible = false; txtBackupTitle.Visible = false; } private void button12_Click(object sender, EventArgs e) { StartupRestoreForm f = new StartupRestoreForm(); f.ShowDialog(this); GetStartupItems(); } private void button14_Click(object sender, EventArgs e) { HideBackupConfirm(); } private void button13_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txtBackupTitle.Text.Trim())) { HideBackupConfirm(); _backupItems.Clear(); foreach (var x in _startUpItems) { _backupItems.Add(new BackupStartupItem(x.Name, x.FileLocation, x.RegistryLocation.ToString(), x.StartupType.ToString())); } try { File.WriteAllText(CoreHelper.StartupItemsBackupFolder + Utilities.SanitizeFileFolderName(txtBackupTitle.Text + " - [" + DateTime.Now.ToShortDateString() + "-" + DateTime.Now.ToShortTimeString()) + "].json", JsonConvert.SerializeObject(_backupItems, Formatting.Indented)); } catch (Exception ex) { Logger.LogError("MainForm.BackupStartupItems", ex.Message, ex.StackTrace); } } } private void btnOpenNetwork_Click(object sender, EventArgs e) { Process.Start("NCPA.cpl"); } private void listStartupItems_ItemChecked(object sender, ItemCheckedEventArgs e) { if (e.Item.Checked) { e.Item.ForeColor = OptionsHelper.ForegroundColor; } else { e.Item.ForeColor = Color.White; } } private void trayOptions_Click(object sender, EventArgs e) { tabCollection.SelectedTab = optionsTab; RestoreWindow(); } private void trayRegistry_Click(object sender, EventArgs e) { tabCollection.SelectedTab = registryFixerTab; RestoreWindow(); } private void quickAccessToggle_ToggleClicked(object sender, EventArgs e) { OptionsHelper.CurrentOptions.EnableTray = quickAccessToggle.ToggleChecked; OptionsHelper.SaveSettings(); _trayMenu = quickAccessToggle.ToggleChecked; launcherIcon.Visible = quickAccessToggle.ToggleChecked; //if (Options.CurrentOptions.EnableTray) //{ // InitNetworkMonitoring(); //} //else //{ // DisposeNetworkMonitoring(); //} } private void picUpdate_Click(object sender, EventArgs e) { CheckForUpdate(); } private void hwDetailed_ToggleClicked(object sender, EventArgs e) { specsTree.Nodes.Clear(); if (hwDetailed.ToggleChecked) { specsTree.Nodes.AddRange(_hwDetailed.ToArray()); } else { specsTree.Nodes.AddRange(_hwSummarized); } //TranslateIndicium(); specsTree.ExpandAll(); specsTree.Nodes[0].EnsureVisible(); } private void trayHW_Click(object sender, EventArgs e) { tabCollection.SelectedTab = indiciumTab; RestoreWindow(); } private void toolStripMenuItem1_Click(object sender, EventArgs e) { try { Clipboard.SetText(specsTree.SelectedNode.Text); } catch { } } private void toolStripMenuItem2_Click(object sender, EventArgs e) { if (specsTree.Nodes.Count > 0) { Utilities.SearchWith(specsTree.SelectedNode.Text, false); } } private void toolStripMenuItem3_Click(object sender, EventArgs e) { if (specsTree.Nodes.Count > 0) { Utilities.SearchWith(specsTree.SelectedNode.Text, true); } } private string GetSpecsToString(TreeView trv) { StringBuilder sb = new StringBuilder(); foreach (TreeNode node in trv.Nodes) { WriteNodeIntoString(0, node, sb); } return sb.ToString(); } private void WriteNodeIntoString(int level, TreeNode node, StringBuilder sb) { sb.AppendLine(new string('\t', level) + node.Text); foreach (TreeNode child in node.Nodes) { WriteNodeIntoString(level + 1, child, sb); } } private void specsTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { if (e.Button == MouseButtons.Right || e.Button == MouseButtons.Left) { specsTree.SelectedNode = e.Node; } } private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_discordLink); } private void linkLabel2_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_githubProjectLink); } private void btnCopyHW_Click(object sender, EventArgs e) { try { Clipboard.SetText(GetSpecsToString(specsTree)); } catch { } } private void btnSaveHW_Click(object sender, EventArgs e) { SaveFileDialog d = new SaveFileDialog(); d.InitialDirectory = Application.StartupPath; d.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"; d.FileName = $"Optimizer_Hardware_{Environment.MachineName}_{DateTime.Now.ToString("dd-MM-yyyy")}.txt"; if (d.ShowDialog() == DialogResult.OK) File.WriteAllText(d.FileName, GetSpecsToString(specsTree), Encoding.UTF8); } private string ParseChangelog() { WebClient client = new WebClient { Encoding = Encoding.UTF8 }; List changelogText = new List(); try { changelogText = client.DownloadString(_changelogRawLink).Trim().Split( new[] { "\r\n", "\r", "\n" }, StringSplitOptions.None).ToList(); } catch (Exception ex) { Logger.LogError("MainForm.ParseChangelog", ex.Message, ex.StackTrace); MessageBox.Show(ex.Message, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); return string.Empty; } if (changelogText.Count == 0) return string.Empty; int markVersion = 0; for (int d = 0; d < changelogText.Count; d++) { if (changelogText[d].Contains($"## [{Program.GetCurrentVersionTostring()}]")) { markVersion = d; break; } else continue; } changelogText.RemoveRange(markVersion, changelogText.Count - markVersion); if (changelogText.Count <= 0) { MessageBox.Show(_noNewVersionMessage, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); return string.Empty; } return string.Join(Environment.NewLine, changelogText).Replace("##", "➤"); } private void boxLang_SelectedIndexChanged(object sender, EventArgs e) { if (boxLang.Text == Constants.ENGLISH) { picFlag.Image = Properties.Resources.united_kingdom; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.EN; } else if (boxLang.Text == Constants.RUSSIAN) { picFlag.Image = Properties.Resources.russia; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.RU; } else if (boxLang.Text == Constants.HELLENIC) { picFlag.Image = Properties.Resources.greece; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.EL; } else if (boxLang.Text == Constants.GERMAN) { picFlag.Image = Properties.Resources.germany; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.DE; } else if (boxLang.Text == Constants.ITALIAN) { picFlag.Image = Properties.Resources.italy; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.IT; } else if (boxLang.Text == Constants.CZECH) { picFlag.Image = Properties.Resources.czech; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.CZ; } else if (boxLang.Text == Constants.TURKISH) { picFlag.Image = Properties.Resources.turkey; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.TR; } else if (boxLang.Text == Constants.SPANISH) { picFlag.Image = Properties.Resources.spain; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.ES; } else if (boxLang.Text == Constants.PORTUGUESE) { picFlag.Image = Properties.Resources.brazil; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.PT; } else if (boxLang.Text == Constants.FRENCH) { picFlag.Image = Properties.Resources.france; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.FR; } else if (boxLang.Text == Constants.CHINESE) { picFlag.Image = Properties.Resources.china; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.CN; } else if (boxLang.Text == Constants.TAIWANESE) { picFlag.Image = Properties.Resources.china; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.TW; } else if (boxLang.Text == Constants.KOREAN) { picFlag.Image = Properties.Resources.korea; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.KO; } else if (boxLang.Text == Constants.POLISH) { picFlag.Image = Properties.Resources.poland; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.PL; } else if (boxLang.Text == Constants.ARABIC) { picFlag.Image = Properties.Resources.egypt; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.AR; } else if (boxLang.Text == Constants.KURDISH) { picFlag.Image = Properties.Resources.kurdish; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.KU; } else if (boxLang.Text == Constants.HUNGARIAN) { picFlag.Image = Properties.Resources.hungary; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.HU; } else if (boxLang.Text == Constants.ROMANIAN) { picFlag.Image = Properties.Resources.romania; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.RO; } else if (boxLang.Text == Constants.DUTCH) { picFlag.Image = Properties.Resources.dutch; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.NL; } else if (boxLang.Text == Constants.UKRAINIAN) { picFlag.Image = Properties.Resources.ukraine; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.UA; } else if (boxLang.Text == Constants.JAPANESE) { picFlag.Image = Properties.Resources.japan; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.JA; } else if (boxLang.Text == Constants.PERSIAN) { picFlag.Image = Properties.Resources.iran; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.FA; } else if (boxLang.Text == Constants.NEPALI) { picFlag.Image = Properties.Resources.nepal; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.NE; } else if (boxLang.Text == Constants.BULGARIAN) { picFlag.Image = Properties.Resources.bulgaria; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.BG; } else if (boxLang.Text == Constants.VIETNAMESE) { picFlag.Image = Properties.Resources.vietnam; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.VN; } else if (boxLang.Text == Constants.URDU) { picFlag.Image = Properties.Resources.pakistan; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.UR; } else if (boxLang.Text == Constants.INDONESIAN) { picFlag.Image = Properties.Resources.indonesia; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.ID; } else if (boxLang.Text == Constants.CROATIAN) { picFlag.Image = Properties.Resources.indonesia; OptionsHelper.CurrentOptions.LanguageCode = LanguageCode.HR; } OptionsHelper.SaveSettings(); OptionsHelper.LoadTranslation(); Translate(); FixTabHeaderWidth(tabCollection); FixTabHeaderWidth(synapse); btnUpdate.Focus(); } private void cleanDriveB_Click(object sender, EventArgs e) { CleanPC(); } private void checkSelectAll_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { if (listCleanPreview.Items.Count < 1) { foreach (CheckBox x in panel1.Controls.OfType()) { x.Checked = !x.Checked; } return; } _cleanSelectAll = !_cleanSelectAll; for (int i = 0; i < listCleanPreview.Items.Count; i++) { listCleanPreview.SetItemChecked(i, _cleanSelectAll); } } private void analyzeDriveB_Click(object sender, EventArgs e) { CleanHelper.PreviewSizeToBeFreed = new ByteSize(0); CleanHelper.PreviewCleanList.Clear(); listCleanPreview.Items.Clear(); PreviewCleanPC(); } private void linkLabel3_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_paypalSupportLink); } private void linkDNSIP_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { try { Clipboard.SetText(((LinkLabel)sender).Text); } catch { } } private void DisplayCurrentDNS() { if (boxAdapter.Items.Count <= 0) return; if (boxAdapter.SelectedIndex <= -1) return; _currentDNS = PingerHelper.GetDNSFromNetworkAdapter(PingerHelper.NetworkAdapters[boxAdapter.SelectedIndex]).ToArray(); if (_currentDNS == null) return; if (_currentDNS.Length == 0) return; try { if (_currentDNS.Length == 1) { linkDNSv4.Text = _currentDNS[0]; } else if (_currentDNS.Length == 2) { linkDNSv4.Text = _currentDNS[0]; linkDNSv4A.Text = _currentDNS[1]; } else if (_currentDNS.Length == 3) { linkDNSv6.Text = _currentDNS[0]; linkDNSv4.Text = _currentDNS[1]; linkDNSv4A.Text = _currentDNS[2]; } else if (_currentDNS.Length == 4) { linkDNSv4.Text = _currentDNS[2]; linkDNSv4A.Text = _currentDNS[3]; linkDNSv6.Text = _currentDNS[0]; linkDNSv6A.Text = _currentDNS[1]; } } catch { } finally { pingerTab.Focus(); } } private void boxAdapter_SelectedIndexChanged(object sender, EventArgs e) { LoadNetworkAdapterConfig(); pingerTab.Focus(); } // FIX FOR LAGGING WHEN MOVING THE FORM private void MainForm_ResizeBegin(object sender, EventArgs e) { bpanel.Controls.Remove(tabCollection); } private void MainForm_ResizeEnd(object sender, EventArgs e) { bpanel.Controls.Add(tabCollection); tabCollection.Dock = DockStyle.Fill; } // END FIX private void PMB_ToggleClicked(object sender, EventArgs e) { if (PMB.ToggleChecked) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "\\PowerMenu.reg"); } else { IntegratorHelper.RemoveItem("Power Menu"); } GetDesktopItems(); } private void AddOwnerB_ToggleClicked(object sender, EventArgs e) { if (AddOwnerB.ToggleChecked) { IntegratorHelper.InstallTakeOwnership(false); } else { IntegratorHelper.InstallTakeOwnership(true); } GetDesktopItems(); } private void AddCMDB_ToggleClicked(object sender, EventArgs e) { if (AddCMDB.ToggleChecked) { IntegratorHelper.InstallOpenWithCMD(); } else { IntegratorHelper.DeleteOpenWithCMD(); } GetDesktopItems(); } private void DSB_ToggleClicked(object sender, EventArgs e) { if (DSB.ToggleChecked) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "\\DesktopShortcuts.reg"); } else { IntegratorHelper.RemoveItem("DesktopShortcuts"); } GetDesktopItems(); } private void STB_ToggleClicked(object sender, EventArgs e) { if (STB.ToggleChecked) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "\\SystemTools.reg"); } else { IntegratorHelper.RemoveItem("SystemTools"); } GetDesktopItems(); } private void WAB_ToggleClicked(object sender, EventArgs e) { if (WAB.ToggleChecked) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "\\WindowsApps.reg"); } else { IntegratorHelper.RemoveItem("WindowsApps"); } GetDesktopItems(); } private void SSB_ToggleClicked(object sender, EventArgs e) { if (SSB.ToggleChecked) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "\\SystemShortcuts.reg"); } else { IntegratorHelper.RemoveItem("SystemShortcuts"); } GetDesktopItems(); } private void trayUnlocker_Click(object sender, EventArgs e) { FileUnlockForm fuf = new FileUnlockForm(); fuf.ShowDialog(this); } private void picRestartNeeded_Click(object sender, EventArgs e) { ConfirmAndReboot(); } private void ShowRestartNeeded() { restartAndApply.Visible = true; picRestartNeeded.Visible = true; } private void btnWinClean_Click(object sender, EventArgs e) { Process.Start("cleanmgr.exe"); } private void restartAndApply_MouseLeave(object sender, EventArgs e) { restartAndApply.Font = new Font(restartAndApply.Font, FontStyle.Regular); } private void restartAndApply_MouseHover(object sender, EventArgs e) { restartAndApply.Font = new Font(restartAndApply.Font, FontStyle.Underline); } private void restartAndApply_MouseEnter(object sender, EventArgs e) { restartAndApply.Font = new Font(restartAndApply.Font, FontStyle.Underline); } private void restartAndApply_Click(object sender, EventArgs e) { ConfirmAndReboot(); } private void colorPicker1_ColorChanged(object sender, EventArgs e) { pictureBox1.BackColor = colorPicker1.Color; OptionsHelper.CurrentOptions.Theme = colorPicker1.Color; OptionsHelper.ApplyTheme(this); OptionsHelper.SaveSettings(); } private void autoStartToggle_ToggleClicked(object sender, EventArgs e) { OptionsHelper.CurrentOptions.AutoStart = autoStartToggle.ToggleChecked; OptionsHelper.SaveSettings(); if (OptionsHelper.CurrentOptions.AutoStart) { Utilities.RegisterAutoStart(); } else { Utilities.UnregisterAutoStart(); } } private void picLab_Click(object sender, EventArgs e) { SubForm sf = new SubForm(); sf.SetTip(translationList["lblLab"].ToString()); sf.ShowDialog(this); } private void btnRestoreUwp_Click(object sender, EventArgs e) { if (MessageBox.Show(_uwpRestoreMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { UWPHelper.RestoreAllUWPApps(); } } private void btnRestartSafe_Click(object sender, EventArgs e) { Program.RestartInSafeMode(); } private void btnRestart_Click(object sender, EventArgs e) { Program.RestartInNormalMode(); } private void btnRestartDisableDefender_Click(object sender, EventArgs e) { Microsoft.Win32.Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce", "*OptimizerDisableDefender", Assembly.GetExecutingAssembly().Location + " /silentdisabledefender", Microsoft.Win32.RegistryValueKind.String); Program.RestartInSafeMode(); } private void ConfirmAndReboot() { if (MessageBox.Show(_uwpRestoreMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { OptionsHelper.SaveSettings(); Utilities.Reboot(); } } private void linkLabel4_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_bugReportLink); } private void linkLabel6_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_featureRequestLink); } private void btnRefreshFonts_Click(object sender, EventArgs e) { LoadAvailableFonts(); } private void btnRestoreFont_Click(object sender, EventArgs e) { if (MessageBox.Show(_uwpRestoreMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { FontHelper.RestoreDefaultGlobalFont(); ShowRestartNeeded(); } } private void btnSetGlobalFont_Click(object sender, EventArgs e) { if (listFonts.SelectedIndex < 0) { return; } if (MessageBox.Show(_uwpRestoreMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { string fontName = listFonts.SelectedItem.ToString(); FontHelper.ChangeGlobalFont(fontName); ShowRestartNeeded(); } } private void txtSearchFonts_TextChanged(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txtSearchFonts.Text)) { listFonts.Items.Clear(); listFonts.Items.AddRange(_availableFonts.Where(x => x.ToLowerInvariant().Contains(txtSearchFonts.Text.ToLowerInvariant().Trim())).ToArray()); } else { LoadAvailableFonts(); } } private void chkCustomDns_CheckedChanged(object sender, EventArgs e) { label10.Visible = chkCustomDns.Checked; label12.Visible = chkCustomDns.Checked; txtDns4A.Visible = chkCustomDns.Checked; txtDns4B.Visible = chkCustomDns.Checked; txtDns6A.Visible = chkCustomDns.Checked; txtDns6B.Visible = chkCustomDns.Checked; boxDNS.Visible = !chkCustomDns.Checked; } private void btnSetDns_Click(object sender, EventArgs e) { if (chkCustomDns.Checked) { ApplyCustomDNS(); } else { ApplySelectedDNS(); } } private void btnReinforce_Click(object sender, EventArgs e) { if (MessageBox.Show(_reinforcePoliciesMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { Utilities.ReinforceCurrentTweaks(); if (Program.MUTEX != null) { Program.MUTEX.ReleaseMutex(); Program.MUTEX.Dispose(); Program.MUTEX = null; } Application.Restart(); } } private void autoUpdateToggle_ToggleClicked(object sender, EventArgs e) { OptionsHelper.CurrentOptions.UpdateOnLaunch = autoUpdateToggle.ToggleChecked; OptionsHelper.SaveSettings(); } private void linkLabel7_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(_faqSectionLink); } private void button2_Click(object sender, EventArgs e) { LoadSystemVariables(); } private void button3_Click(object sender, EventArgs e) { if (!string.IsNullOrWhiteSpace(txtSysVar.Text)) { listSystemVariables.Items.Add(txtSysVar.Text); _systemVariables.Add(txtSysVar.Text); IntegratorHelper.UpdatePathSystemVariables(_systemVariables.ToArray()); txtSysVar.Clear(); LoadSystemVariables(); IntegratorHelper.ApplyPathSystemVariables(); } } private void button1_Click(object sender, EventArgs e) { if (listSystemVariables.SelectedItems.Count == 1) { var indexToDelete =_systemVariables.FindIndex(x => x.Equals(listSystemVariables.SelectedItem.ToString(), StringComparison.OrdinalIgnoreCase)); if (indexToDelete != -1) { _systemVariables.RemoveAt(indexToDelete); } IntegratorHelper.UpdatePathSystemVariables(_systemVariables.ToArray()); LoadSystemVariables(); IntegratorHelper.ApplyPathSystemVariables(); } } } } ================================================ FILE: Optimizer/Forms/MainForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAXxJREFUaEPtmMuOAjEMBBH8/4fOV7BrpiOtsjV59MTAYUqqC3a3ww1xu7i4yGHb tmfL35XHvvml0KOPVOS7oIf2VPQcVNxSsX/Q7oiK+1BpS8UOocyIis9DZS0Vm4J6SK3PQUUtFbOgvlqt +lDpX7V2CuotasWDCmu1ehrqLmplDioitb4E6i9qZRwqIbW+DLoRajwGFYQ0ewUWU98oatyHwiHNXoHF 1DeKGne5t8JHn6+mvqNb933agIKhxh/9AqHGx1ihJKy3WKEkrLdYoSSst1ihJKy3WKEkrLdYoSSst1ih JKy3WKEkrLdYoSSst1ihJKy3UCjU+G3QG0KNmzzc4EoO3tD/MRdQONQ4HbodatyHwqHG6dDtUOMxqCDU OA26GWo8DpUUtbIculXUyhxUVNTKMuhGUSseVFjUymmou6gVHyqt1eo01FWr1XNQMan1LpQltb4GOpCp zq6Hjq1UZ3KhwytU/fugRziq7qPgv3ktI7NHLy4ufG63HzwGqdckXaIMAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAASJJREFUaEPtjkEOBCEIBOf/P51X7F44EIKTUsG+WAkHsYF6Lhcx7/v+dsrW6Mik ZsrW6MikZsrW6CFiJCODyJGMDCJHMjKIHMnIIHIkI4PIkYwMIkcyMogcycggciQjg8iRjAwiRzIyiBzJ yCByJCODyJGMDCJHMjKiHCkb1ZPJkbJxPZkcKRvXkonNlK3RMSs0m28lyhChlZk2iEj273u+f5QoMRLJ /n0v/h2DSoz+fT/+tROPrwhU7Fim4njFjiUqD1fuwoyOxjfBz8zOLvF1MOsR/NzK/BRfx7Iewc+tzE+x e2g06/vZfwkVR0azvp/9l1Bx4Gve/40yy7QuN1pvtC0OtN1pWxxouxMXnyo7v0+2/ETZ+X2y5SfKzl8u fTzPH/7wS2w8ChpKAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAedJREFUeF7tkFFOwzAQBXv/m/YUoIcmqJihbp1CnMUjzU/ferOvl8VisVgcwPV6 fbuVn/8HbflN4vpY+UhcHysfietj5SNxfax8JK6PlY/E9bHykbg+Vj4S18fKR+L6WPlIXB8rH4nrY+Uj cX2sfCSuj5WPxPWx8pG4PlY+EtfHykfi+lj5SHwuRorYm0j8IyNvfh07KhIrNh+JFZuPxMdhR20y8g2b jcTfsNlNRo7DjrqVsS/YXCT+gs3dythx2FGtjH5iM5H4E5tpZfRY7LBWRj+wPBJ/YHkro3NgB7Yy2v0D LGtldC7s0NZ7c8/smBY7+JXymbmxw18h68+BFdgja8+FFRmRdefECj0ja/6eVx7S7npUng+xa1f7eJN4 CNt3T54NYfsicR97HImHsZ0m48PYzkjcxx5H4l3Y3lsZ24XtjcR97HEk3o3tjsS7sd2RuI89jsQv4S93 bxL3sceReHrs9kjcxx5H4umx2yNxH3sciafHbo/EfexxJJ4euz0S97HHkXh67PZI3MceR+LpsdsjcR97 HImnx26PxH3scSSeHrs9Evexx5F4euz2SNzHHm8yMi128yYjfexxBan3GLbgzFLrcWzJmaXWc9iiM0qd MWzhmaTGfmz5zHL2YrFYLH7mcnkHBniDBBEQJcMAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADoUlEQVQ4T5WUe2iXVRjHH1cKy1lLl3Pu4uU3Nnf9zd9uTqy8zHK2kunKdm3JyhFrTsjoAsuhJSUq mBFF9IdGRNAfIUEURRFJBcFaF4rCIoloUW1TK9vi0/d532OW/0QPfHjfc95zvu95bsfAjMHZRl2+0SSG +4z2hkLqFoxRnwt1OZPUZE+SypokOXeSisth2cwzXFubommjUTLHKJBG7gyjzPTigjszjOpEFo1FmTyy s5pNqXGWz4eGfBeEsgyJpEPySqjMhHKNc2yKlcWrqc/PIM+yLwj+JO6+ZBdr9OcWbcibOc1c/SdHZIl5 onIOVAj9l1niUpEmrkibpjANlszQPttLqQveYnvYoo9tYoXY2wIfnICnDsDuATh2BE6dhO++heeehAfu hEND8N4bsL09cpDFwg+QtCPGRruXWzWoFztq+d+2eX0sulDU2j6jyx5knQbbsuD3s/GiV3Wqeyrhjmx4 aV8853ZU8yuUqMYSefBYmJRdk4B0aSy1/UaPfUKNBq/JnfP25zR88xE83adQFIOGkTVUQd9W+PRDmPoj TMqOvxDHNN++NLba89EJ75O7v50OK4J9PQLPDIaB7KEd8O6bYRBsagra18Jl0lhsr6jmrIObNagVnXkw fiqslHWV6ketYSDr14mLFoaB7OwvCoHc9xguFYXWbwxYppIyrmzHiWmeBT98Hm84vl8icvlhZfP+DsVO 7wd3x98mxiAx74LYElFieuvXTJu9zGZNtIirxchb8abz1rkSri8Lg2Afj8aJyBZeNnn2tneMn9DotYFI bIPonA1nfg673JT5pkVQpQ6Z+DHMyTwp3kXqWnJFjQ3R6IK9otsStGrSWS8Od8H3Xykh26Fbbj3arSLv 1SaV1qC+nfwChvrjzlkkFohyq2N13CmeaX++E8XRaRCrxIvqiIvtWXWQt5+2RGIFothGtcdY7oLNgQ0q cHfbu2aTcPeP7Qoq/7DH9xD1+nzhifAYVtshOqTR6oI9gdvtKp30dJQcP6W77wV/nRp/9HX47H1lUzeO lioBXiJeyPF7lRWqQnRjueCv4pyvEsO2Slk+F10WLtgh1oik3ybCi9dLxLPqYv4stRtIaW+5qHDB6JeB YXGTpXObPfF3PF3Y41kqEsKFPG4FdlRCmfIiip2fLj7hxYI3irtEjy2T2IkoBGtFUsRJGFFXpfwylasW nc6f/ym4TXgFbLFmCY7pJBMUWZsyagqL+WVKpfiXoNlf2tDLuBHpUW4AAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAABTklEQVQ4T+3Uuy9DYRjHcYSBoZtIJEikQ012G4tYOkqMNgtLu0kkBkwWk9HAgoUIEZeBwSAhLm3q EpcwCAOJP+D0+zup5s3jcekqhs9p8/Sc33veS5+qgeWoErVoRy+GMYNVHOAKOe+hJnRhEJNYwByOcIvH 0mcee1jEBDJ4U8AI1nGMazzgHpfQyNuIMIU+JFEH+yKS10U3r2AU/ehEAuGNJ6g3NasZBX3R3O2PoUZc oCOoecqBN2grFT1/MPCnNZRTVJua51yXZ+jYLH1BB/cdm0HNs4YnBb5gCzo6ng0ocCeoeTRgHPjbKdeY miee8v+x+aTiQDUHbXsWaaRgG4E2pcHUrHKggrTlekjTV/u6QwH70LHRoOPoQSts2Ie4fVkt6MYQpqG3 V5NVC9NAarAa+Ay7mMcY1MFfvcDvaCm0JFoazWwW+pcdguYc5YpBo5o82F6tegAAAABJRU5ErkJggg== iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH5AkKCzkS0sRiMgAAEF9JREFU aEPtmHdUlHe6x18ECwxTQDCbpvHe3Xi89G6J0ViRpgKCLZZoLKgUURl6L8JQBRU1RE3UGDXJRgUbwsww Q++9IxpLNhvXPfcshnPjc7/vzIuooJhdc/aPe59zPudFj7zzfH7P8/x+v5H5/0AYyepZNIxkDTw8JxnJ a+2M5JVzjeSlzkZypYuxXDbPWF4w01h+/U8m8sv6JvKLmibyXO63/01hKutk0TSVdbxjImtzNpG1pBjL mgoh0QOJh0bymj5I9BvJy/qN5co+SPw3JH4wll+rhsQpE/klb5Oi721Ni77RM5N/rWFadI578+8c5tJe Fi0z6U0bM2l3lqmsqw0Sj0xk7WQiayVjWQtoIoiAOoIIqAAlZCwvAoXgOkHiMSrxwKTou3Jzxdlgq+KT U2zLjmpYlxznPuk1h4X0DmMpvaeBp4WF9HaWufTWj+bSm2Qm7QHdBBHQAYkBkWbQyInUQqAKlCF5JZCC fEhcIdOiC2RRfPaxTemXXdPKc2JnVmZPmV+/j/mg6gD3ya8hrKQ/gr8ILKX3vSyld3shQRbSH8hcehvc Ar3DiLSB56tR/YyECSphrrhEVsXnybbsJM2oyKEPqg61z67J3DyvLoU3tzaNy+CfDGvpT+CvLBOtpD+d gsQvkCGIgHuQeFqElVBX5OUSA5VQkElRAVkoc8mm5DxNKz9FM6tyaHbNIfqoNqNvfn3K6YWNie8ubExi FtQnchn9hrCWPgA/s5gBGSSIBSLgLxBgRViJu89UYziJwbmoR/JsO1WCEjJVFJJlcS5W/zxW/yTNqs5B 8gdpXn06LWyU0OKmhALHllgLh+Z4xqklisvsFcJa+jdO4AGSf1AJASTPopZQi7xIYqASbDt1QmBwJoxU M6FuJWN5KZkpC8m6JJfsys/TzMqTWP3PaF7dAVrYkIbkk8ixJY6cW6OrlrSHm7u0RTLL2sO4DEcItcDf JgIpBJAwy7MSg5Vg24kVYNvpZVUYGGq2CjVkXFRG5hCwKc2l6RXnaFbVlzSn9ijNb8gi+6ZUJL+PXNpi aWl7JLl2hpa4dwW/59YVwmX4kuBWXoDkTwEu+ZEEnp4Hdqhf1EYDArXo/1LsPgVon0ton7P0YfUXNLfu CC1ozKTFzclY+QQkH01uneG0vDuYPHoCczxvBuh63hRzmQ4TSBD8nRXYDvqfSV72M9nI8DOeVoU/keWN +2RxAyt/A4kXAhkLBGSvVgETRQn6Px8CF2hG5ddonxNon8O0qDEDqy/B6sdh5SORfCh53gyklb0B/atu 7d2+4mYAs/rWHi7j50It8FdLPG+qV1udOPs0v3KHpp5ppcnZFfROipzejM+nNxNYruPPhfTeISW9fwq9 famVzAq7yUzOCgw3A6xANQZYSZYl18mu7Hv0/xmaU3MMw3sI7ZNOTq2JtKQ9hty6wsmzJ5hW9QbQmtt7 6OMf/BvBZMBl/FSgHXBQ/aiJ1shStYkMbYKVNvq2myZllZNBxFUSBlwEl0goziNR0GXSC76iQj/4Msil 8SEX6Y3IS/RuRgG9f6aCjG+0Yq8f2j7sLmSqKCKrkqsY4O/og8rTEPic5tcfVPW/U+s+WtoRTe5dYbTi ZhCtvrWX1t3xp/V3/VginVr9mLV3/LjMuUAvs9hC4r6V7Ecyu3ybJiJxoTiXdHdfIr74CgmC80kYWkCi cCnpRchIL1JO+lEsMhofVUgGkQUQvUYGoXlkGHoBlblCU76vRPJDzwFThQwCeRD4BgInIfCZeoCbUyCQ QMs6olTtsxLt8zFWf/3dXbTxvi9L24a7vhM33PPlMkdg+Bj07SgMYpal7C5N/a6dxkfmE88fye+9Svyg AhKEykkYoSRhVAmJYspIL7ac9OMrQDmNV1FKBnHFZBBbRIYxUjKMyifDsDxU5AL9xwkZkmdXfvAkNlUU YAYuoYXOQeALCByBQCYqkAyBeAiw/R8CATEEdqtWf9N9Hwj4/A8E1n/ytAB3QXvXQnarbcr5ZqzyNdLx v0w88Q3SDZETP7yYBFHlJIitJmF8LYn21ZNeYgPpJzWSvqSBxkvqQR0ZJNWQQWIlGSaUkmGcAiKFZIjW mxB+kSafKIBEKXeNkOEOdA1XiO8hcAYzcBxDnI0WyoCABAJxqu3TvSsELSRGC+1GC+0irLqKdXd8v1rV 66u15jYnYSbrZsyLelymXmx9JArPp3G7rpKOWEq8ECXpRpQTP6aGBPENJEyEnKSVRMltpJfSTnqpHaSf 1kHj01Gx9DYySGshg9RGMkyuJcMkVqSEDGNlZBh5nSZE5tIfz+Zj/1df5EyL8lCBb7EL4QpRyV4hcALX pWMXSsQuFEtL2iKwhbLbpxhDjAG+vYvQ92zyGGbf1tW3fN8CDIO7CvNmRjljlN+SYiiRI/lrpC2WkU5I KfEiq0g3toH4CS3ET2wjQVI7BEByB4lSOiDQSXppnaSf3knjM7po/P4uMtjfQQbprXcMU+pPQWKXYUKx PyS+hMQPf0jIo6mXr+AMyBu4hZJt6Rc4B47iHMjCOZCKU3gfOTTH4BwIRxsFowpibKN7IOGPSvhhN/LD 0/fhyl5fO1SBYYyLGhm79i7exC/KC7X35tPYvZAILiPtiBrSiWkiXnwr6Sa0ke6+Nki0DyMBWAkI6Cc3 9+vvqz1tkNZqYZjVpWWQ0cZMiJMzE+KLNQ2jC8wNw6+efi/nUr9J0Z8hcB4XudM4iY/R9PJsnMQZuAcl 04L6eLRRFDm1hGErDcZZEIBZ2IPt1B/t5IeZ8MXT55Fnj8+CFT0+DPN+XhUz5WrVJFG8rGfMbhmNDSqj ceG1pB3dTDqxraQT1zqshOC5SojYGfn01EmeU6yAv2LoXd4w4hoj2n2D/3Z67nGj/HMQOI2r9AnchY7Q tLIsDHIqzalORBvFoo0iUYVQVCEQsxAAid2oxC6I+JFHtw+e3v3uXTuXLu/eiRdnYYUOyKeNC5I9HCMu pbGhtTQuqpnGRbeQdkzLyBIpnRh6zIpraq/OnEAT3qJILuWh8ZYkl3kz8bLx1Nyves0Ux8i86ChZKQ+S XWk62kiCNoqnubVRqEIY2TcGk2OzGBJ7IOGPdvKDiA/mwhvseOTasX2ha+d2hhkbKGe0g+VzRwcU940O rqEx4U00NrKZxka1jCCBmZB0kCC8jHiu6cRbFH2c55g4imcfy6U7NAzC8xnG7tYoo2vHPjcryobAAbJU ZuD7gARtFI8qRGM7DUcVgjELYlrcuAcS/pDww1D7QGQn2A68fl7avs0SMIxWQCkzOqDUZXRgZf/osAYa DYExERB4TkJ7iEQ78THgvFVHiGcfRzzHJD8IcKm+OCxK0rHrZfmYF2WghVLJQpFE1sXx2E6jaWZFOH1Y FUwf1Yhpft0eSOxCJXzRTt6YiR3k3OIFma1gS4Vz62Z9AIHAahZHrZD6X7TCmlQCz0oMttPTEjxI8LZ+ S7zF8cRzkpCuS5q3rnMqo+uUzKU6fJgrJIyFQuJjoUhE8vEgBm0USbYloTS9LJA+qNhLs6v8IeELCW9I 7ICEF74fbCWHps3k2LQJVdkYt7hxA+PUvIlhNEMaWOZohTb2sQKvJoHkwyqJtzQNK5+I5NNJd1lWsq5z CsN3y+ZSHRoWiigQqYmkT+BnslREgFAQhCoEYBb8aUa5H82q9KbZ1dtpbs02ml+7BTPxKS2q30iLGjaQ fcP6e/aN6yyB+qWaIY0s1uCBVqha4HmJMc9LQEDH6wLxHPYRVp1Nnvhuh6/wPT7X5i//TP3iYcJSEcJi Ae6wSVsqxGAPWSl2oQo+qMIOmlbqRTPLt0LiU1RiI31UvYHm1ayDyFpaULfm8cL6NYn2DWs0F9WvUb+U E3gHdAJSSXAiL5SIbCAdz8Ns35Pukv2k65ZN/OU59/geOWZA/eLnwkqxG/jrIuET+BkJq5O2Uu4EXmSt 3Ao+hcQnNL10PSTW0qyKNTS7cjW215VoqZUQWZk7v26V4fzaVdxbEaOCG1m0wTVWYGQJDDa2W50lqcRT rf4B4rsfJaw+yAnhe+YwkOHePhhWSm/g44Rnn5VyB5LehoS3qJK2Vn4C1pON8mOwiuyKV0DCExIemAkP +rDS8/HsKs8rH1Wv+K851Su4N3LBCbAkApWAilBOhJXgRFQSrIA3LntOWH22990OsauvFlie0wj+c3iB bcBrsrVy8w1r5cZfrZUbkPQ6JLxGlbSN0hMsB25kW+xKdiWuaCc3mlHm/vPM8uWZsyo8/gC4tz0Xo4Ig ENToAPpGlIiEgFeeWmAp2sf9MLf6KgHw2edgyCwgYbCWfb6BlfayUa7Mt1F63LVRuj+yLXZ7zCb9FPg7 1y67YtfDkJgFiTHTy9y5Nw0TGkENLG+DFkjQSyXYnckLV22nZAhkon2OPC/QJ3A/6it0O6KFJ/cJg2Gr XMZMUzowWGmerdJ1KhJdBDaBbRybwWLwHtAC3G++JDQCISBu0MAzAxI0IPFE5GmJcFYgjxPA7vOk/58I EBL/OyshcD8yFnCf8juHSiKwwRrce6kEK7BtQICtwLACLP9A8pkCt8NvAIbl9w0IAE2wHxL0QokwDLKv lHRcsAMN30IDAiRwO/IrEpcK3LI9BK7ZfMAIXA9xHzhy6DkkMhNWH2dEi2LfEi2INBbODRklnPey/50T Q0LcYA56BiRUIs9IoAoBlaTtdgBnQIb6DHixADgMsvuQ+BWwSrjs4GThsgPjhB6HGOHSoddukVMqSNMQ OaXwgbGeo2SPyD6uXjQ/Qg4BfeHcUO5fDhesAFsJccNW8MsLJUIaaNzar9SnsOtBVdIjCBCSJ6HrwX4I 9EAgV7g0K1q4NHOtcEnmPOGS/bNFLhkg3V7knLZF5JyaDpEiCNzXc5A8RgX6IbBzxhlihPNeJsCGugoC 8BWgYSVQhdHehcRbgnPgSRuxyY8oQBAABwgCIPNXCPRB4B8QAOmPIPAYEARACokWJ5JoUcxZ0YIIoWjB q/4PtVriXXDjicTAXAxIBOJb28pj7C10sAq/XYAgAPYTBEA6qZIfEHCUkMg+QS5aGDMJVeCSe5VQC7CY ggpWAq31rEQIquArJ96yTNV9CLdQTuJ1CWD1HRKrRPbx5sLF+zDIMVxyrxqDEmZAOqwEGLP5groKbCup JLjk/yUBdvWT5UjcXOSQxAgXx3NJ/dYYlGDb6UvwyxCJwDoau/7coAQSxf7/rIDrbxLox+p/LXRImggJ RmifwCXzr4RaQhdsAT3DSnzyjXqoAR8JqlZdtfojCewfFHBO60XyXuh9AZv86w21hAawAIchcf8ZCTzH eF0lneXYkdAGfJwRAlaErQiHOvmnBLjVF7qk30fyR5C8JXYdjdef/NPBigQ0aOFpBYkMSLRCok99ajeR 5t5KGrfpz8RjRZAcH20hYGGFuNVWJ53Rh8Rbhc5pmULnFBuho0RLOML36dcb3NUDAm8DR0hIIFEAie5R IY0PtcTVfdil+sdtvtivve5Mn87qEw91PY9267pnF/CXZSZDyknglPw23yFJU+Ao4V7674qgelDHXsl5 aKeJwA6H3VzNsBZnzfBWF9yf5o0OqrEbs1sxaXRACY9Jvc1oxDRzv/x/OhjmfwFFTW0e0aAKIQAAAABJ RU5ErkJggg== iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAABVFJREFUaEPNWWmIHEUULm+8FS88EFFRvP5oFBVEEe+oYP5ExKCgBNGIB0EFhYAQ wR8qCEb0R4wRFdYDTZaNUzXLiEqiokazIhJFPFAM0c3OzKuZVeO236t+2zM9XT3dPbPjzAcf3VX16tXr 6urXr16pkYJpnqzKdK3S9i5l6JGQjQdxXazK9WNEaoSg7XEw7jZl7Hpcf8U1SCf9i2sZfS6U3kPCqmBP pek6GLQB3J00NIOa5lTJ3iPaBoj3mqditpaA92PQp3F9AVwHo3/wGpZGTb/gug19v8b931I3p8qNS2Sk BYKZPlSV6HYofxODTEcG9EJNm0NdWGLtqNSORDuWG8vYitT2iXLtTCh8CTNrIwP6YZkeEs1+8BI09DEe 8h83aT2DvYK2L0MZf1x+Y3qhpgb4sKoEe8tISWi7wslO1s+SmoIw9VugoL9lks2tqlQ/W0aMo2RvcDJl e4HU5ATPiqE1HQMNjtrWMN5iGb0F01gayjROlJoc2BzsD4UbE4MMnHC12t4nVoQw9Bj4V9dlFsNnwT7D MT7G5WINfwPr8J18IKUc0PRUQqGm73F9Bddmom0QdF6Hrnf2mNnTUF7p7jNh6BoIz7UU2Z34uG6FF7oS 5WpU/39QU11tap7k7GJ3monQVf7epuRVNVE7yj0Ar8F25X5uA1fDt98Bz3GT+zlxWdvPY5NShNpOiHU5 EHkcmnWDuzp2oRm+X9Mn8BAXOfk0aLsIrHj7Z7HcuFm0dAG7qHCWq1HcwWtwPh5Jo6bn1Fiwl5PPggvs 7BNePd3IcVEQ7CFaUhAGX7vARWG5cSmMa3gVtviiky0Kn5PIYql+ufT2YENwAIT+dEYzeKPBZZ+iFqcw 8/s6+aLgN2bslx36MkhvSW8P+IPTtMzdhw+zNamgk+LieoXbI/j0ppD/0vx/8mJ+5hns630KYqSf87m1 LuC3EPd42ZxsXCy9U8Duz9cxybXSoz8YetejO52aHpWeHlTsCRCaSXTyE3tVhMD90tAWj+5uXC/WeqDp HU+HESO9L9Z2gD9gb4dRI/bXCZSCA9GQkeIYGc6I1W3QtMojOKqsitWCUv1o51/9wqNHjk5jMPSMVzCb U3hwMwRuFMuBiT8OgSG9xvf3ipYhgnc4fuOyyRHoUBEmi37yGpeHmn7MDm8HCVO/zGtYEWq6WrQNAYae 9xpVhLxNzJ3m8KBEV2ESCm4zOWfkklV2R7KxB2r7pJhTDGHS9reEvq6k7WEEbOz5yUYngO1kwbwnzyAH ZUXgvB996NXXjZwfdZhPlMYase/lTY3LOne05SK9Br3x1LgPHM9r+61fRzdi/1EJDgqV+DYsvNFmbKJj cd/bn5n/kjwB2t6odO0MNT5zuNPHb5xPWHrNSDBZZwRtv4gL4Ol4GzkPY++Otw+Zmt4QywRscFwgucvR 9HpMZmik71xiLYbYyQrtVmV7vLS08NHOg9GeY2M/UO5Qk81TxKI2hGs1FNL2K6lNwlSPgEzB1MeCcRq2 hfmpBIz9piVIb0utH+yv+QAurnzQnHInnqkwdjwSjoWnKeDklaZnoz4DJY213GUa2v8DnDqfCPaTlu7g c6rwjKBj0AUgL2VO3+cCP2F7QolzomkZLw47+Ki/suswV+aH5WPRwmFAGmmLy4LnTQ5HMPUr0Hm2TdF2 zC4nXB+AwStwzyftEyjLhgehd/u6DI+glqBtHLItp5BJhCuaPsX9ajVZPV209QjO53NE6R2I6dwtfy/L ozfgA7+lkj1P/raPo98acAz91oaTwgd00MFHpL0mg7vC1M/BQHeCnC1bCS7DMjk3PZE6TCj1HxSY/LJl ORmbAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAACd9JREFUaEPF mQlQFGcahqdSJeK5wnCjXF4oYlCjMR7gweLJfcmpIgwIKsihKOisxk2sJKW1qdJdV0UREl1Q44pyDcwJ Srm4CR4hmqqs7iZ7iOHq/5/hGPj266GJgjMwM+DuV/WWVNnT/Tzv/NP9D/BGY4gg0JbEBsaTrcGnaGyw FPOMbg1+if920pggJY0J/ieNDnxEIvwkysiAkzTKL6Q9IsKCe/n/Z1p3RpqRbSEHaFz4fbo9vEe5PQyU 29iEgnJrCChjgzFBoIwJAoQHGhWA8Qca6Qc0wg9IuG8PDd9Ur4rw3QlxfpO40779oSlb7BD2j8odWwgG lHHhMABeTwG6xRezGVACaNimNhK67jQTHWjFXWb0B0JDTci2MCGNj2SU8RGg3MFGi4Ch8BqBjUBDMSHr W5jwzekgEIzhLjs605EUNZsmRDUoEyJBK/xIBPrhQzewAkCD1wEN8vlaFbB+Onf5kY1SEBmuFEQzSkEU 6BQwGH44AY3ES1Xweh8Ow7hR7YjYSQVRaq3wo7F8dMMDDfw1kADvbuq/JpHDMWw6BJF7aGJML7YPo9K+ EQI0wBuI/xo1E+gTxWHpNzQxNpAmRndrhzdSwFB4ToAGrAXit7aTBKzdzOENPW6VuXPuCJO+VSbGIPwo tG+sAAdP/TF+a4D4rmpT+Xs5cZjaZ26R0GSBRPjAp+I3T5sSInD5cPAjXT6GwOsQoL6rWYlaEPLe4XDf nHfFh44ulAgBJeDsidQHTXERQI2BH+ny0QJPfVcB3ewFzIZVGRzuwHGT5UxbKBUSFt5DchiWiIUvfkiI VDXFbQH6tts3QIBs8mxr9fEx57BfDbZ/tr99VuBdySHIyt9X/28EfYnABEWGhB+N5TMsPGajJ9BNXkc4 7L7xkB+wXCA+rBosgFIdDakxL16wEgjMsPBDtE+iAruUCVElNHvvnu5zp1bDg3rXjjr5XNXnn3jTVEEa yolJ2Aa1Bn4EAmTjipYWf68pHD6P5y7OOTgYfr74ELiLcyHgRk5D09ZQeIn5GcOw4APgOYHEqDIoyvcC AGeME8YR44CZhpmKscfYNTfsWtlUPkvaVDYVfq6wh2ZMS6UdtIpsoQ3DVNkAqbIGZbUVKMWW0CGxgE4J H7qkfFDLzaFXbgagmAIgm7yLw+fxFkoON+gSmCfOgZLDCU9YeE1iQ6CdhecEaGyQWpWZ/BHCuWCcj9V2 r/MtpnleheTJ8gJKl10idHkBeeJzmZ7NqlKtxmNsAYhtc7XHcRTobam0R3g7Dt4WSLUNwluDSmwFHVJL hLdAcD70KswRnINX/AqgZnKNBn6uQuiA8L264N2qc2CJKPf5f7aHqVn4ZoRuwbRz7dOslI8RavrfmsDV t5gUriwgPSsKCCy/RADh4QM2+QSWYt6/wKjXfEnznlLNO2LVJpt/TCu8xAq65ZbQI7dAUDZ8zCAB+eRe qLW24iFk4lDtswJzqw/CJ6dT65uxdRa+NYZNEDCJ0RX98D5X6J2VBRS0wf8icJHAEgz+n+IJ1Swpy7Yq lwoWnoptoVNqA2qFNUCtFQJb6oZXTEaBSXjcxBCee3XuueHg52DmiQ62/D0xorUV34W2PoEu5vKFtayA XzH9wrOQgi6B1+EXXyDwHsazgDmHr7XoehC/qFth2wG1NgjEwesrIJ94kjdfnFurj4Br1QHYfjnzHgvf xrYviL3Nwh+/27HBs5D0DIYfTmBRHqPeU6pcgefgw13nGwME9IPHD/KE23j/z32uC36wwOyq7O576THP 2tn7vXBfGivgf5VeNLT9RZiFeQRWFpLTeA5zuL8gzjiB8U94HuJDjD7tIzzMwnjezn7MoICqb/m44Ify aT+8oQL487cagccxCwyG12R8E/sE7h4MP5TATNF++OLjhIbOxkZ3VsCzgFBj2tfkPGE0AuSareECE1iB DhQ43KVv+yz8DNE+cKvY/+M/vrs/Hy/ujLdNYqzAgjzSjucwA1Jkoxe8NgH8ELex8IYITMekNhT4sQKr C+lTo9rHLMrTLCEzeBTpYUT7GNMmVuC5ofAuoixYX/tZNivgj09do9o/j8dfZE7hOaZAnduOoeF1CYz7 Hh9kuXJjBPA4KV7c6cMalQ/Cq4eDf1OAUceX0qUagTv2lQa3LxuHMS3lIew5feFfF3CuzFIfarzK7m0c N/6JyTe4/XzyBw18Y6Q71Fqq34TXQ0BuepKHsHGGto/w4FSZCa6ibDlCODxXgcuqL4liMLwugcUXGOk3 /wJc9K1mI2gfQDomjOdUneE4rzqnVxf8UAKOlRnwvvzopygx7ZkKnNddpnlLLxK1zvZx2azIZ870wbNr f4ZwILwBAlJT3MxN6PtdqltVzteGts/CO1RkwLTy9N7F0iMfUaDsDtPuAG6Zva/QM/hONKIAQQGy5CLT iHuf0zvLlcvwGCRsNYe6mceNuvP0ty8zuauBZ2dm1f6Dg+H1FqhIh6kVe9njKtMeXlmOgLjfB9wXAD6Z NE0jISAh7nkQfov0dwseytzPv4I3VmBsCofP4+Fa5s+pPkANbp+Dty/vi11Zajcee/MD2W9TEh5eWlb0 rM75cuNdp1jZ75e438xOtr2aXOJxPfpHUFgrjW9fI0BANInP4fcNwp4biYBdeRrYYmzKUsG6bA9YYSyL k8DiSgLwixLAvEgAZlcT4LHY9S8a+BEtn7GfcdivxrXsoO1sUTZjCPywAghtgeEXC8D8qgACbwZ/BzXW +OEzAr5fQGraDpLxNhz2wMHPwtFRa7901wB4/vX4nlaFQ6ORm7ZX7UtNtP9ii51F9WfGzBJlfzMUvN4C t1LAojgR+NdQ4FoiHKv0rjNuy/yagNT0PtTzhv7rjUNpxtwZov3tI2q/bDdY/DlZA8+/nggOX+2gXQq7 FyNsn4Eak9kc5tDjLMoMRnh1P7xRAjd2auDNv0qCW5LFNXrDa13/49S4dPw4PP3GpTIryUWU2WMMvEYA wfmYxSWxP+HXRfzSbmT70nG9eNeJ57AMG4fyjF1OFRlqg9u/vUsDb34jCX6Qz8Lbpj7wWgXUuHySOBzj xrE8PcChIr1dH/hfBG6hAC6hqIqgR0Z9WWfhZePbEN6fwxjZTCvNnO5Qnn5Pr/bx9skvSQaLkqQepsbh +6HhdQjIJvwVJGNncJcfpREK35lanrbbvjyt/XV4XQInqr3vGNy+bCJF+CPwiGfCXXX0x/FWpo1tWeoJ DKMVHuN0O4HpqbVr0g6vVYCAYuIJnU/YtzGOktQpNqV7k63L99xBAfXrAtWy9/C2OUz78im9CF4H8sm7 4Q7vzb+4/C/HTpTCxztPOObT2aXx13pqbe4j/E9QY6VC+E5MMyj4T1GgEmRmnyN0BNy1suZePoLh8f4L yrfhxSkKNOgAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH5AkKCzkPscIO6wAAE4VJREFU aEPllwd0lWW6hX8ddRRpVoo0ERFBQAghveek56SQ3kkgBQiB0BxHUSmCIOKAIlIUFCmSEAiBUAQjCoai JNT03gtJSE/OOXv2d84fiLO49067c13rfmvt9Z+cup9vv+/7/ZH+kwvNbhLqnSTcdZ3MaxJqHQwo+dXf +aJpCXccCKG0R6PLNRoHahzWo9TmIVTZye/6nS40OEsotJLQ5KqkylDnCFTbC1XRvAWvEsoV8rt/Zwu1 jjqAO85maHAp4VVnvspOp0q7NFQonqfkT/zOlqhxlspI1vx5rfla7n6l1jhoWkiNctu1KLV+DGU28qd+ J0uUBa4ZPoRqh9Va46J0qrj7wnh5j2yFWml+NgEllFjLn/43LSSP/Y3+kSV2lE2qR8Pl2rKpYeMK82U0 fU82OpXalNO8Eyrs2C8W8jf8iwuHX5SQMPJhpLykh+NjhlDyK//zQpaphCt6D6PA8hMa0xkXNS92vFRr +L7E60LF1rcpPZECCqzkb/onF/YNlfD1kMeQMDwMyaNykDLaHEdHy6/y9bNmEs6YPUo9Lh7/7cItY8po BHJMc5FvIczpdrykl2Gd6fsq0iodBdZjUfgvlBJ2Dpbw2aBH8PXgJdg/tBWJw9txeKQFkkZKOGBC85YS ksxeQqrZRpw2M6bkT95fyDSQkDHdDTcMO5FtAuSZA4WWlJVOOrOyCFXYSwU2x5Bn87wESF35rn9sy3WW v/XvWPh4iIQ1Q/+ALYPjCNJMCBCiA98Os8OBERI2mD2CL8w9sN/sOg6bV+OY2QSk/BYAFyZJuMkEfpm2 Dhn6wHVD4LYxkGMG5DKNXILk0/h9wxTTEcrXSoM8xaeabEUfVbHSVV2snIZqN6kty0X+hf9i4d1hErY9 K+GDIW74ePAdQgA7BwFfU98MjoKEh/CR+XxsMW/ALu7ofrNiHDQfQcnfoFu48pqEyxMew5XJx3F1CnBt KnCTILcEiCmvhMhiCrk0rjOsUx77RChXq3ZkK2bTvLWmRHmOIJM0pUqp+YaT/CsPWHj3BQnvDBuPlUNv 4wOa/5jGt1ACYtegHVhrHI/1ps3YSPOfUl+Yl2O32RjsMpMO6GVI+/V+eThB/9aQRP1cRYrFtQXXl20q zF75Pgo3vYHab0PReYGGBcRNQlwnwC2mkE3jOsM65bDRe5RtV67JsrdXlyiPEiJNVaIczMey279ZWMaJ Ez/mUbw1YgtBgFVDoIXYKENsH9yE7SNbsPMlAr0K7Hgd2GbYiq2mdCJJB6bemJ4wLXv9oel5Nw8bFLYl GxbjqEGZToYlOGaRjTSfs7i1aj3unvYCMrgBGQS4QajbNJ59zzTFkZsl67Z9orrQNZ4AanWpclXTLaeH uotcZde9FpYSYPFoW7wxqoEQuAexVob4lNpBfUXt43MH+XrCi1DtG7/xoFH6sgNTs6sO6efjiGERUoxK cdy4DCeMy7VKpY4b6WAOTy/GCecLKPx0GVQ/0/ivhMjk9SaN375nmuKZIXTLoU2T5bROU6ysYgmVM4Ep BJFdywuxr0iaueMex8IxCYQAIaCFeIcmV8oQH9H4J7xu43UX9Q0ffzsUmsQRXdlvxXYnmt5CAo0fMS1H imkFUk0rcZI6ZVKJ0yYVvPI5gqQYluGQXikSDbJwdelmdJ+jycsso6sEuEbjN7WmKZ7aN3vklM0UipgC 1CWun7Tedni4q6DXZMKccUITETu2ihC4B/FnATGMEEOBNTS8gdpMbaW+oPYQ7sBQqBNGIvedBUh2uIEE 8zocsaxFCnXcogYnOKhOmlGmVThBmLMuN3B+9il85/Ujkix+QcayDVCn0XA6U7hCgAw+vk7TN2RddxLq UOe6NGqKXaEpcclRFzkPp3TmO314mxtDgMgJcYhhbceOBRbIEMsI8SYh3ibEe4RYTcPrafxjSjuh+PdX 1D4q4QVUb/JEWugJHLKvxSHrJhyxrsdRqzoc08JQZjU4434ThbvWov2GN2q/i0TmmvWo2xsG/ECA8wS4 SIBfaDyTxq8J8QYw0xmabCeoC3ktdu5QFzkpedUBaIKnSJpAvccQPjEZsydACzHvFUK8DCxiw75NiA2E 2EbtGknD/PtLXj8n1BYa/5z6knB7qIND0LlvPIrWzcHZ0DQk2NcjUdGIJNsGHLG5g2TrOhy2qMNR6xLc /HALVMUK7qgNusVO/0SAMzR/jo8vUJdp/qrOPDJc2BuOBHCEplCAOG5ArZvUfsOW5RM4RWg4QibnYeZE aCGiCTGXEO+9SMM0mjgcOELTKUwllemcYkon+fphQu7le3YTbjffs4fvPcjr0ZHoPDYdNzZsxAHXO9jv cBcH7RuRoGhAom09EixrkGhZjNxtK3kK80wo4sEmzoWzTOAUzX9P8z/SeDp1heZ/pbIdaNwemgIHQtif 6c5R9KEI4DeV0jNBwJRmBE+GFmIWIaLGswdo9hs2ciKNJdFkMnf/GCFO8PnTBEjje869RvEzQj9OYgnw 4Mqchq5MK1xYtx+7lK34yqUV3zi3YJ/jXewjyD7bOuw1q8IR90toOufNQ4znQh5P6QxCHCNAKo2fpuk0 6rwrcInKoflCBdT5AsIuX52nGEYRwEtf0szQD4LPNA38eWIGcb6H0UgEjUXS4HKa3cNdTepJgTt+nKV1 krv/nYBgWuf5vvRJUF00QNclMzT+4IHv1xzC514d2ObZhR3uHfjSrR27XAnjdBdf2dXjK6sq7DIqwS+r N3D3eZuRxful29RpltIhGk9hw55UQnOWOq/kIWdL47ZQ59lBk69oUOfa6KlzRQm586bL3SAantMB72lg IkAgIUKZRrhcUktp9GPu/Jc0f5DqKaXTY9B8xBjXP4vD6VXbcWDpGXyz6DJ2xBRjo58af/FV4xMfFbZ4 dWOrZye2ubdjh0szdjrcwU6bKmw3LkGSbyo6LooDzYDjkqf0z+bQ7Oe4THCDOtkd6uMeUP9AgBwraPKs oc5h3+Qp2jR5thaUAJguqZ2M58LVCPDgl3jxnsVXDywpaEtKpBEupzF3HBuaxo+OgjplDG5tDsDW0FS8 qyzDcs8GLPdtwbsBHVgR3IXVIV1YG9yNDwNUWphN3t34xLMDW5Qt+MzxDrbaVOIzkyJ8Zf8TT2Y2L8tO e+N32RDq/a5Q7fGE6tsZUCXNgFo09m2C3baC+hYBchQdqixbBa8EcDSROs0UsXBgHboQwo27MINp+Mhp iJIKkXtDlNVqlk7yCGSs9cc7ih+xRJGDpW5FWOZTgWWBtVgW2oA/zWzGn8NbsXxmO1aEduD9oE6s9+vE RzPa8Re3ZmxyrMdm/gO2yaQAn1uko4a7jSv8ncv8vUt6UO11Rtd2H3Tt9kH3t17QpLM3rptCw75SZRDg JgFuKOw0t+wkqW2Km9T0ckC02pJvEhDOrEclIf42jR6Qt15B/c4pWGP3NeabXMQC+0zEuWVjvm8h5geV I25mNRZE1CN+VgOWRDQR5i7eDmnGioAWrPFqxnplIzY41OAj61JsMM7Fp6bnUb2PNf8zN+cC074wGd17 nNDBdDs+D0D3Yb52kb3xiynUlwhwkQBX7do0GXaWmkwC1DwfJVU/PSeyU5+db8sbLDtOA0d+oCeNnt4Q IP4EmTsBJR+aYrFhAmKM0hCjuIhoZSaifLIQGZSPqLASREdUYM6sasTOqsXC8DosCa3HmwH1eMerDquU 1VhjX44PLAqw1uAWtlieRGMif/cHDoM09lvaa+jc7oq2daHo2OoLzSm+9hM39WdTqM4R4Bwn0c92Tep0 OwNKksqfXCiVPhHv3DyWGVswBWvOZQU/JNJw4gdFb7gzDVFWAiRgKlrXTMRq582I0D+JCKs0hDunI2zG VYQF3ERYSA5mzixAREQxIsNLERNWhvnB5VjkV443PMvwlksx3rPNxyrTLKycmokd9vvQlsR0T7M0T7HH Uiei7UMftK6eCdUB3iOd4iaeoY80U3SfsIHqtB1vPeyLVWn2o9Tf20tSWZ+FUskfl4yvHTS7Sm3AGyoz TgRLHiw2BBFpODCNnrISICKRuNeQHDsbofrJCDFNRZDd9wh0u4AAnysICMxEYMhNBIdmISw0BxHBeYgO yEOsdx7i3XKx1CELf7a8geUGV7F84kWcil7GocDJlszhkDwO6gPT0LKc/zt8ytJJ4m8e5QamGkOTaoau QwqojtpDnerwU/cJ+37dqQQoJUDxH5f0reg//4f2CR6AEalNeI9uzjSsBEivshIgIpEZ+qheYoTFjp/D zzAZ/hbH4edwBr5uP8LHKx0+fpfhF/ArAgMyEeJ3DRHe1xHtfh3znDKx0OZXLDG5hGVTLuADg0RU/oXf K0bzAZ7u+19F9xZzdKzjwbWHm7WfAAn8vcPGUB20RNceB04m3lIcctyERG+p/VtOoWICVPabL5JYWTck HOppHFkiCQFiShBRVgKkpz96SstbHxeifBBuuRd+Rkfgb34UfrYn4et0Fr7Kc/D1OA9fzwsIdE9HqGs6 IhzTEW19AfNMfsQCve+xaALvSGfF6M6WL1g+X7B8dkyEZjNNb6F2EGAXze/hb+0zQdcOBSeTE1S7nTtV e5w91Ht6/X9cxj4ggGl5v9imlrG+hHCCRp+z+UEgIhEFQew5FWYY4qRvBGZZ7IWvgDARICnwsz4BP8Up +Nl/B3/7MwiyPYMwi+8wy/gUovROInbSMRyY8SfWOs+WzTzVN9H8R5xA69hj61miG2l+M81vpfkdxlBv ZyofOaJrkwtUn7nmqra5jqBk91yijEr7xA8se3LBT1XPRaJzkgdUei4PBhGlJXpENDtTUTuZ4rJrEJaa b4O/UZIWxM/osA7GlOUlZJKMIIOjCNVLwYLp+3HYez7a36Pp91n3KwjxFqfbmzT+No2v4O6/T/PraX4j y2uzKTo/UKBjpSu61inRvdFta9sWp4c7P+6VQKEoo74LRBKzy/rO764bFoau1z3QPcXtASC8VxE9Ipq9 Vyr1tk44ZhWH5RafYJbpXgSZJMDf+BACjRMRZrofi622Ybf7EuRFWkO1WPzPwbEZQ+NRND6HpudTi2j8 DRp/m1pB82s4OldZonWZCzreckPXCvfa7vfdDLvfd5ed91qlLKOSPvHPMoW0sv5z0TA6CJ2TZ9wHmeoK tR7/oSCIZjpvew0JYiynooUhiJUFWm1tUWDniStOgUhzisDPrsHI8lKiPpAlJ25LAjgyOQTgQcNeNOxP hdLwLCqGpudTi9hny8ygedMcbXEOaI11Q8diD3T9yeOLzlXKRzqXu8mue62sJ+J4JmhT8GUKbaUDo9H4 UhA6JvkQxIsgngRx14L8JpXpTKUHpicZc8JYssSs2Ss2lC0l+kZIDAL2j24YUErKi/Ln8yFUBHssmoq1 QNtse9wNdUNbpAc65s0o7Vjgqd8Z5yk7fsAqESO1T/zjTGFbad9YlD4VhTujg9H+mj86JvoSxvuBqfTA aJPpKbMeIFMBJJebuF0RJSckekjbR5QjpaRm8Hl/KtgS7f52aPR0Q4uvJ9pDvLraI7xi8fwbUkv0A8qn 95In0ouEuFzabx5KnopE3ahQtI4P0oK0T/T7TSpdTKUH5l4yHMW/ARIJiSFwD0qWSEtbfpQN5UC5WqPN yQF3bNzR5OiFFjcftHn7HGwL8h7QFuAtu/xvVmmfRYTQlpJFWd+4opJ+c1E0IBKVQ2ei6ZUQggSjbUKg DCNS0cF0TiaMNhkCTVXeB+pJqBfUPbAeOC0g73FM7NBs6IzaaZ5oMPbBXSs/tNj7/9Si9BvV4uInO/w7 Fkeq1DhgnoBwLnsyrkwkUdQ/CsXPhqNmVBjujgsjiIAJ0sK09SQz0Ucus/tAPQndg5LBesMJdbzujLqx bqh+2Rv1E/zQOCUAdw2Dfm22CJzSYhIk1Vl6ye7+ziXOhpahQeJmz5UQhTqIaBQMjEDJoDAtSNPYmWh5 NQwt40WJBaN1ggAKuF9qckL3oUT/CDBReoR73R1tk9zR8IoHKkd5oWqEH+pGBrLvQtD4asj5ptdDpjRN CJGapoXIrv7BxYaW4qR3RU8YsazOczppSvrNQWH/SOQPnInC58JQwTOj/qWZaCRM8zgdUKsM1KYFEgnd h2p7zZegPmga542a0d4oH+6D8hf8Uf1CEGqHhaJ+2MzuO8PCE++8GDbq7vAIqWpMoOzmn1xFT8RLFeKW u0/8CyypDeyLJpFGcf8YHciAcOQ/HYaCZ0NQPDgE5cNCUDUyBLWjaealECoYdRzHNS8G8Hl/GvZD6VBq SADKBgehkp+pGRKG2sHhqB8yq5yKqx8aMZCSHfybVjnTKHsi/lGmwZJakEKQttJ+sRCJiNIq7D+bMBFM Jgz5T4USKhj5zwSj4JkgFD4rFMweCkHJs6EoE8k9F46q52ah5rnZqH0usr7u+ajddYMip1cMinioetBs +Vf/F1YZQZhGX17d2B9JPPwqWVpq7bnBiSWASphOyYAoKhKlA3Uq4zgu57lSSVU9FY3qp2K6ap6OKax5 es7OmmdiTKqfiXmMkn/lP7DKOG45ch8nyKvlT8bPIsweKoNAtUyonQmpy/vOh1b9YlUV/WNbK/vHVlCX qgbEbqV8qgbOG1U5YN4jlPyt/0erss9iqfiJxX8g1DMEmshys+bVn4pi30RSXhV9F5qX913wCjWw8MmF D5X2XSh/+v/1kqS/AhjB55rV+r1JAAAAAElFTkSuQmCC 904, 44 Items can have custom icons and position. They can also be hidden, accessible only by pressing the SHIFT key. It can also create custom commands for Run Dialog, making it easy to launch any application only by typing your desired keyword. iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO vAAADrwBlbxySQAAAWVJREFUaEPtlktuQjEQBL3gMO8Wuf+pggwtAaGMxvOxXyRKqhXtmR6RRGkZHMfx 61HP90CFImpsPbQ8U63J56e1y99llWptDrRghVofgwavVDV80MAdqs4cNGinqmWDBpxB1fsMPTyTqsnQ A48E5Tz2P+eq+w49sDoDvZ9RdV+hoEUvNGtG1X5AIYsRaJ5V1b5DAasRaN6Mqh//5X2GPu+OoKxV1Y8f YJWgnNWl5bsE5Wb8HmCVoNysSw4YQdlZyw8YQVmPpQeMoKzXsgNGUDZiyQEjKBt12QGUy3DJAZTJMv0A gnJZfr+B3f7/A6r+I63+0eneynfoQ68E5TJU/foDOpSNqvp3KOBxBGUjqvYDCnkcQdmIqv0KBWclKBdR dd+hsMdn6POoqsvQgzOpmp+hh2dQ9WzQgJ2q1hw0aIeq44MGrlQ1YtDgFWp9DrSgUq3Nh5ZlqjX10PKI GrsHKmRRzwO0dgXfFG/e7E/jBAAAAABJRU5ErkJggg== iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO vAAADrwBlbxySQAAAXJJREFUaEPtz0FuIzEMBED//9MJMCgQURR5yBF34YPq5ha7bb+O4zg+39cNZ5/J b7zlfOI5RaWP3TS1gacUlR42S1QHnlJUetgsUw/iFJUeNsvUg/hPTv4N31GmHsRLzvrZL1MP4rec9rJd ph7El9+ff7qOO9ktUw/ii+j//AmbJaoDTxfRRTTx3MNmisrE80UUxANPfey+5fQREwNPvWxPPD9mZuCp n/0g3mYuiPvZD+Jt5oK4n/0g3mYuiPvZD+Jt5oK4n/0g3mYuiPvZD+Jt5oK4n/0g3mYuiPvZD+Jt5oK4 l+2J58fMTDzvs/eW0zL1t5w+YyNFJU0tRaVGt0T1lvMS1Ty9gaeLaOJ5yVmZep5eEA88DTwtOStTz9ML 4onnIF5yVqaepxfEE89BvOSsTD1PL4gnnoN4yVmZep7ewFMQDzwtOStTz9MrUb3lvES1RjdN7ZbzNLVn bNxynqZ2y/keW0vOytSXnB3HcXys1+sbU0gKg8uLU5AAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO vAAADrwBlbxySQAAAgBJREFUaEPlz1Fu3DAMBcDc/9ItoExpsLRsUfFmG3Q+3yNp+eO/9muR8X+Lty2x sszaIHoN37hlfJm1QfQ6vnPJ6BIrQfy9fDuILxkt1N/Ltx/l9Ov53kv4RI/dIC7Uj3Dy9KbqmtkpY0H8 KKd7b5HdMt7+0b8ZmzJ2OWfkk+zW3ew41mCtUD//AzPOtFlfZq3H7ikjW5xYZm2PG4lqixMtVvvsJ6ot TrRY7bOfqLY4Uagf/145KN7iRKEeRImqz34Qb3GiUCeqIO6xm6jarBfqQh3EPXaDuM16oT5lJIjX2Qvi NuuFespYEM+ZmzLWYjVR3TIexOfMTBlbZq1QL7ESxJX+ktElVgr1Eiu3lobH0CIrhXqZtSWP/YDxQt1i dYmVgzyILxkt1C1WE9UgCuKDfBBdMlqo26wHcRAH8UE+iKaMFeo264kqiIP4IB9Ep4wkqi1OJKpEFcQH +SAq1IlqmzOJKlEF8SdZECeqRLXNmURVqIP4IB9EQZyotjhRqE8ZGUSZLpxlf4yFTU4U6n3u3DK+xYlL RvvsXzLaZn2ZtT77p4y0WJ2azYzlHfYL9TJrU8YS1SDa48aUsSBeYqVQB/E+dx7j7JSxIP46977EqUtG g/g57m5zZspYEL+PdwTxlLFB9F7eEsRTxgbRe3lLEP8M3hzEP4d3B/HDPj5+A7KDH5iJTSF/AAAAAElF TkSuQmCC iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADqUlEQVRYR8WXy0tbQRTGXbal/hVtIeADqQsR0Y342okIFlTUhS4EFyIK4kIEF21E0IXSmCq48IHo yp2iCC5MF9JWBEVRfKFJdSVJjVE4Pd/JxMzNnaS3acEDPzKZOfOdc+fO62a4XC6nvGbqmM+MjwkwYQXK qEMbfOBr0rBhrEzgLeNlggw5BL7og74mzSeMlYoXzEfmnjEFcQL6fmKgZYqRNIE3zDfGJJoO0DKOhq2C ec/4GZPQvwBNaFviWf4wyPInYxL4H0DbMhJ68JfMd8bWMScnh05PTwkWDAZthEIhCofDdHV1RePj45SV lWXT0PjBIJYtAUwWUwdqaWmR4E7t+PiYsrOzjVoKxLIkgEkXYUzONDIyoqSd2+zsrFFLgVjyKmIJYM2a HIX19XUlG7fp6WkaHBwUNjc3VW3c/H6/UUvjCyMJZDIpN5lAIKBko3Z7e2sb4t3dXdUaNSRQX19PXV1d Fj8NxMxEAtg6TQ5CVVWVkoybz+ez+a2tranWqG1vb1Ntba2UW1tbbf6KOiQwkVBpoaenR0R0Gxsbs/gU FRXRw8ODao3a6OgoNTc3S3lyctLirzGBBHCImBqFmZkZEdGtra3tqb2kpIQODw9VS9wqKipocXFRygsL CxZNDR8SuE6otLCzsyMiuh0dHdHBwYH8Jj45bGhoiEpLS9U/Io/HY9RmrpFA0sMmPz+fIpGIknFmseV3 cnKiaoja29tt2or7lAk0NDQoiT/b3t6ezHr000dta2vLpqshCSR9BRjKRJufn6fKykpqbGykpqYmCVpd XU3FxcXU0dEh27JuaDNpK+QVJJ2EKysrSiZuEOzu7qa5uTmZ3VNTU7SxsWF8VSmGPoZMQuMyxNK6vLxU UlE7Pz+nsrIyOXhSGYYdq8Ckm4AsQ+NGhKWWaEtLS1RTUyPlm5sb2SP6+vqov7+fBgYGZGQw+016SZCN yLgVe71eCaRbb28vdXZ2Snl1ddXinwYhRrZigIPB4uB2uyXQ3d0dXVxc0NnZGRUWFtLy8rLUDw8PW/zT 4OkwAjgabcdxXl4e5ebmUnl5ucwJDHXMsM0m+v8FiPWOcXYh0TcV2OPjIxUUFBh9HeJmJK6eAK5JuC7Z Ouzv70tgvA4YTj6Tn0MQ4xVjSwA866U0xrNey2MgS+PrSBNoWZ48hq1CA59TmJhJL6sOQN+0Ps10sFxw acXGYQpi4heDdS5LLRXGyiTgk/sD42G+MphQeEKAMurQBh+Hn+eujN8Y1hAMZdztIwAAAABJRU5ErkJg gg== iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADaUlEQVRYR8WXz0sbURDHPbal/hVtIaCoqdGTAQ8ielJEiJKLoCJikBAEPXgUaXsST6npxatEIYcg KOQgCDYIbUDwIkrwR5oKnpLQRGE73yG75O2b3Sy24MKHvMx33szs7vu1LT6fzytviRARJ06IIvGnDtqw QYMPfKUYGqLRxnsiQZQIwyPwRR/0lWJaiMY6r4hPRJWQkngBfT8TiCXlcCzgHfGDkII+B8QSn4ZmID4S vwgp0L+AmIit5FP+EKjyNyEF+B8gtvIkGpO/Jn4SUkdXDg4OjEwmI2oCOQK5tAIwWKQOTcF1c3Mjag4g l1IABl2NkJwtgsGgZuvr6+MC1tfXrf92HwHk4ldhFoA5KzlaTE9Pc6L5+XnFHovF2N7b22sMDw9ze2Fh QfFx4BvBBbQSrotMR0eHUS6XOXg4HFa0vb09tqM9NDTE7VqtZnR3dyt+AsjZigKwdEoOFtlslgMvLy9r 2sPDg1EoFKz/0WiUfXO5nOLnQAgFbNmMChsbGxwwnU5rWltbG2vJZFKx7+7usj0ejyt2gS0UgE1EEo3J yUkOdHt7K+qjo6OsYxzYtcvLS9ampqY0rYETFHBvMzJdXV1GqVTiIIODg5oO1tbWWJdmR39/P2vVatUI BAKaXuceBYibzdXVFQeYmZnRNJPj42P2kTSAAYvr7u5O1ImqYwH5fJ47uz3Cp6cn18EWCoU4RrFYFHWC CxBfgd/vt6bewMCApvf09LCGQWrXAF4LLkxJrBGSD8GvwHEQmo/w+vpa0+bm5ljDXdo1cHFxwToWMEmv w4PQdRpubm5yoFQqpdi3t7fZ3t7ertjBzs4Oa4lEQtNs8DRsuhCdnp5ywKWlJcuGO6xUKoofiEQi7Ht2 dqZpArwQNV2KMSWRDNfIyAjbcB0eHip+4+PjbH98fOQx0qgJlAleigE2BsnJYnZ2loOPjY0ZnZ2d3F5d XVV8MGNwLS4uKnYHrM0IYGtsuh1jccHvysoKJ5IWKNOnCcj1gXjegeT8/JwLkDSPfCE4b2MBOCbhuCR1 UNjf3zeOjo5EzQPI8YbQCgAveig1edFjuQmq9PQ6PIJYyp2baIYG8DmFgdl0driAvs/6NGsE0wWHViwc UhKJCoF5zlPNDdHoAD65J4ivxHcCAwp3CNCGDRp8PH6e+1r+AtJT4tFsL8XgAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADQklEQVRYR8WXv0tbURTHHdtS/4paSAI6BBTFjBkUISCIFkEQkQxuDk6OLk0Hwa1NG8giggqCPxA3 FYQUDElx0MFJ/JE2AZckNFU8Pd/b+17fzTt5eUkLHvhA3rnnfs/Juz9fRyAQ8MtrZoL5yGSY78xPDX7D hzbEIFbScCE66+hiPjNlhnyCWPRBX0nTRnRqXjDvmRojJfED+iYYaEk5Ghbwhskxkmg7QEt8Gy4HE2YK jCT0L0AT2kY+44FBlT8YSeB/AG3jTTiTv2TyjNFpaWmJSqUSWXZyckJjY2M0ODhIPT09RqxPvjHI5SoA k8UIzmQyOi3R9vY2JZNJOj09pVwuR4uLi0ZsiyCXUQAm3S/GDlpeXtapiUZHR52dKRwO08LCAq2srNDk 5KTR5hPkUkNhFYA1awSdnZ2p5Ht7e4Z/aGiIrq6uVJtlu7u7ND8/T9Fo1IhtwhdGFdDJuDaZcrmsxNfX 120fElSrVeVvZGtra4aOB8jZiQKwdboCbm5ulGChULB95+fnytfMMFecWh5MoIBknVOxtbWl5Yjy+Txl s1n95M+Gh4ddmgJJFIBDxNUYi8W0VHu2s7Pj0hTIoIBindNmenqaarWaEnx6elK0YjMzM6KugyIK8Dxs sOTwNjY2NrSsf7u8vBQ1HdSaFmBxeHioZVuzVCol6mlUAQ2HwGJqakrL/bFWhwKblqTLqCEQJ6ETLCvL Hh8fKZ1O093dnfY0N8RKuoyahOIytOju7qbb21sldH9/T+Pj48rfSgGJRMKlq1HLUNyILEZGRmh1dZVm Z2cpGAza/v39fS3vbUdHR4ZeHWojErfiZsTjcZ3C27CBSf2ZCqO2YoCDQQry5ODgQKeRDcf2wMCA2Jex DyOAo9E4jv3Q29tLxWJRJXNeWmDX19diHw1yvWW8LyR+iEQidHx8TBcXFzr1X9vc3KS+vj6p3wdG5XUW gGsSrktSB0/wJvr7+2lubk7tfpVKhR4eHtQQhUKh+njkeMW4CgDPeim1eNZruQWqbGs4GgAt459buBwO 8DmFidny6nCAvm19mjnBcsGlFRuHlESiymCdq6XmhehsAD653zGfmK8MJhT+IcBv+NCGGJ+f54GO31Mo GfCAU20aAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADNElEQVRYR8WXwUtbQRDGPbal/hVtISZVkgqCoAnm4sl6tCQXLzkYCHjxIGiQ5qLFHsQekrQX60Eb vIl486yFpM1JBMUqiG0DnpJSqzidb9mE997O05dEcOBHktndbyZvd3b3dfh8Pq88ZcaYLLPL/GL+avAd PrShD/pKGgai08Fz5iNTZcgj6IsxGCtpNhCdmkfMPHPJSEG8gLELDLSkGK4JPGO+MZJoK0BLfBqGg3nF /GQkoXaAJrRt8Ww/GGT5m5EE7gNo256ENfhj5jtjGxSNRqlSqVChUKDo0JCtrauri7q7u9Wn1T88PEzb 29t0fHxM/f39tjamzCCWkQAWi7MzLcwvUN1qtRqtra1RPp+nra0tKhaL9OPkhL7u7dHm5iZls1na2Nig q6srPYJoenra0GQQy5YAFt0/xug8MzOjpZq3m5sbSqVShiaDWGoq6gmgZqWOFIvFtFxr9npkRNRlPjEq gU5G3GR6e3upVCppqdZsZ2eHAoGAoc0gZicSwNYpdVDzdx82MTEh6jNjSCDvcDZYWlrSEu1ZOp0W9Zk8 EsAhIjXSh+VlLdGezc3NifrMLhKoOJwNMm8zWqI9m5ycFPWZChJwPWzi8biWaN1QiqOjo6I+c3lrAgA7 Wju2uvpZ1NWoBFynAKAUDw8PtVxzhhLu6ekRdTVqCsRFOD4+TqFQSH1HHU9NTdHp6amWdjF+3NfX13Rw cECJRIL8fr+h60AtQrEMV1ZWqFwuUzAYNNoyGXlxJpNJo+8dqDJ03YhyuRwdHR2pabD6cTJK9n5x0dbP A2ojct2KX/Kj39/fV+Lp2VmKx+L0ZX1d/Zbs/PycwuGwoeNCjVFbMcDBIHWiSCTieREigcHBQVFHoHEY ARyN4nEMsAiRCC4fqOmLiwsd0m5nZ2c0MDAgajhArBfM3RcSJ7jtVKtVHdJuTUzBO0bFtSaAaxKuS9KA BriiIRAMidSBYar6+vrEcRYQ4wljJAAe9FJa50Gv5XWQ5Z3T0QTQsv3zOobDAl6nsDBdq8MDGNvSq5kV lAsurdg4pCASfxjUuSq12xCdLuCV+w2TY/YYLCj8Q4Dv8KENfTy+nvs6/gPPcHq613NeWQAAAABJRU5E rkJggg== iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGeYUxB9wAAACBjSFJNAACH EAAAjBIAAP1NAACBPgAAWesAARIPAAA85gAAGc66ySIyAAABJmlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAo z2NgYDJwdHFyZRJgYMjNKykKcndSiIiMUmA/z8DGwMwABonJxQWOAQE+IHZefl4qAwb4do2BEURf1gWZ xUAa4EouKCoB0n+A2CgltTiZgYHRAMjOLi8pAIozzgGyRZKywewNIHZRSJAzkH0EyOZLh7CvgNhJEPYT ELsI6Akg+wtIfTqYzcQBNgfClgGxS1IrQPYyOOcXVBZlpmeUKBhaWloqOKbkJ6UqBFcWl6TmFit45iXn FxXkFyWWpKYA1ULcBwaCEIWgENMAarTQZKAyAMUDhPU5EBy+jGJnEGIIkFxaVAZlMjIZE+YjzJgjwcDg v5SBgeUPQsykl4FhgQ4DA/9UhJiaIQODgD4Dw745AMDGT/0ZOjZcAAAACXBIWXMAAAsMAAALDAE/QCLI AAADDklEQVRYR8WXS09aYRCGXbZN/RVtEwLqQhcuccc/UIIbN5IYVy6Jf4CyNqZQXIpG11yiWxbWDZCY qIkx8bKgZae0lqKZzvud4XAuQ0sB6yRPAjPfvDPw3c4ZCwQC/fKWWWA+MUfMV+angM/wIYYxGKtp+FCd Ht4zn5kmQ32CschBrqZpozqFV0ySaTFakX5A7kcGWlqNng28YyqMJjoI0FL/DZ+DmWbqjCY0DNCEtque 6wuDLr8xmsAogLbrn3AWf81UGS1xlNQY1PI1gMWiJTwHqOVqAIvuF6MNfg5Qy0xFpwHsWW2gTSgUolgs Rjs7O7S8vOyLLy4u0u7uLi0tLdHk5KQvrpBlTAPjTM9DBoUh3G63qWO3t7dULBapUqlQtVqlQqFAl5eX EiV6enqifD5PMzMzqqaAmuNoAEenNsCQy+VE9t+tVCqpmg4W0EDG47SZn58XqcEtHo+r2kIGDeAS0YJ0 eHgoMoMbpkjTFo7QQMPjNEQiEZEY3qLRqE9faKAB9bJJJpOS3rW9vT0Tw4pvNpvitWx1ddXENjc3xdO1 ra0tl7aDVs8GDg4OJN2yRqNBExMTdnxjY0MiZHaJM/f8/Fwilh0fH7viDkwD6hRcXFxIumWtVovC4bAd 397elgiZZjv+qakpqtfrErHs5ubGjnswU6Auwru7O0nv2unpqVnV2WxWPF3b3983hxB+rdfu7+99+oJZ hOo29M7xMAYtrQZjtqF6ENVqNUm37OrqitLptPk7exnWSSaTobOzM/FYhjWh1WDMQdTzKE6lUvTw8CAy RCcnJ2Yhzs7O0srKCq2vrxuwA+bm5kxOuVyW0USPj49mV+A492oz3xlzFANcDNogCgaDtLa2RtfX12ae tTFOsD6wCBOJxN8uJfsyArga//d1/IF5sQeSFGPqOhvAYxIel7SEUYIabxhfA+BFH0o7vOhjeQd0Ocrp gJbrl3fwORzgdQoLc5jdgdyBXs2cYLvgoRUHh1ZE4weDfW622p9QnT3AK3eUSTNfGCwo/EKAz/AhhjF9 vp4Hxn4DLP3gQugK66gAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAHJlJREFUeF7t12t25DaWhdGe/wRrON12+bgtJ4+YlBQPXmDvtb5fVkbEBQGw6n/Y 23/+85//XamMBQCcaS/RyWUsAOBMe4lOLmMBAGfaS3RyGQsAONNeopPLWADAmfYSnVzGAgDOtJfo5DIW AHCmvUQnl7EAgDPtJTq5jAUAnGkv0cllLADgTHuJTi5jAQBn2kt0chkLADjTXqKTy1gAwJn2Ep1cxgIA zrSX6OQyFgBwpr1EJ5exAIAz7SU6uYwFAJxpL9HJZSwA4Ex7iU4uYwEAZ9pLdHIZCwA4016ik8tYAMCZ 9hKdXMYCAM60l+jkMhYAcKa9RCeXsQCAM+0lOrmMBQCcaS/RyWUsAOBMe4lOLmMBAGfaS3RyGQsAONNe opPLWADAmfYSnVzGAgDOtJfo5DIWAHCmvUQnl7EAgDPtJTq5jAUAnGkv0cllLADgTHuJTi5jAQBn2kt0 chkLADjTXqKTy1gAwJn2Ep1cxgIAzrSX6OQyFgBwpr1EJ5exAIAz7SU6uYwFAJxpL9HJZSwA4Ex7iU4u YwEAZ9pLdHIZCwA4016ik8tYAMCZ9hKdXMYCAM60l+jkMhYAcKa9RCeXsQCAM+0lOrmMBQCcaS/RyWUs AOBMe4lOLmMB8DvtEpWkieVaA65oh0iSJpZrDbiiHSJJmliuNeCKdogkaWK51oAr2iGSpInlWgOuaIdI kiaWaw24oh0iSZpYrjXginaIJGliudaAK9ohkqSJ5VoDrmiHSJImlmsNuKIdIkmaWK414Ip2iCRpYrnW gCvaIZKkieVaA65oh0iSJpZrDbiiHSJJmliuNeCKdogkaWK51oAr2iGSpInlWgOuaIdIkiaWaw24oh0i SZpYrjXginaIJGliudaAK9ohkqSJ5VoDrmiHSJImlmsNuKIdIkmaWK414Ip2iCRpYrnWgCvaIZKkieVa A65oh0iSJpZrDbiiHSJJmliuNeCKdogkaWK51oAr2iGSpInlWgOuaIdIkiaWaw24oh0iSZpYrjXginaI JGliudaAK9ohkqSJ5VoDrmiHSJImlmsNuKIdIkmaWK414Ip2iCRpYrnWgCvaIZKkieVaA65oh0iSJpZr DbiiHSJJmliuNeCKdogkaWK51oAr2iGSpInlWgOuaIdIkiaWaw24oh0iSZpYrjXginaIJGliudaAK9oh kqSJ5VoDrmiHSJImlmsNuKIdIkmaWK414Ip2iCRpYrnWgCvaIZKkieVaA65oh0iSJpZrDbiiHSJJmliu NeCKdogkaWK51gDgsdpLZ3IZCwA4016ik8tYAMCZ9hKdXMYCAM60l+jkMhYAcKa9RCeXsQCAM+0lOrmM BQCcaS/RyWUsAOBMe4lOLmMBAGfaS3RyGQsA+Ex7gU4vowEAn2kv0OllNADgM+0FOr2MBgB8pr1Ap5fR AIDPtBfo9DIaANC0l+cKZTwAoGkvz+llNADgM+0FOr2MBgB8pr1Ap5fRAIDPtBfo9DIaANC0l+cKZTwA oGkvzxXKeABA016e08toAEDTXp4rlPEAgKa9PFco4wEATXt5rlDGAwB+1V6cq5QRAYBftRfnCmU8AKBp L88VyngAQNNeniuU8QCAX7UX5yplRADgV+3FuUIZDwD4VXtxrlJGBAB+1V6cq5QRAYBftRfnKmVEAOCj 9tJcpYwIAPyqvThXKSMCAB+1l+ZKZUwA4KP20lypjAkAfNRemquUEQGAj9pLc6UyJgDwUXtprlTGBAD+ 1l6YK5UxAYCP2ktzpTImAPC39sJcrYwKAPytvTBXKmMCAH9rL8zVyqgAwN/aC3O1MioA8Kf2slytjAoA /K29MFcrowIAf2ovyxXLuAD8rV2Wq5VRKdp6rVZGBeCjdmGuWMblg7ZOK5ZxAfioXZirlpH5Q1ufVcvI APyqXZorlnH5Q1ufFcu4ADTt4ly1jLy1ti6rlpEB+Ey7PFcs426trcuKZVwAzrQLdNUy8pbaeqxaRgbg TLtAVy5jb6Wtw8plbAB+p12iq5aRt9LWYdUyMgBXtIt05TL2Ftr8K5exAbiqXaYrl7GX1uZeuYwNwFe0 C3X1Mvqy2swrl7EB+Kp2qa5cxl5Sm3flMjYA39Eu1tXL6Etpc65eRgfgu9rlunoZfQltvtXL6AD8RLtg dyjjj9bm2qGMD8BPtAt2l7IEY7WZVi+jA/AI7aLdpSzBOG2WHcr4ADxCu2h3KsswRpthhzI+AI/ULtyd yjLcXvvtu5QlAOCR2oW7W1mK22q/eZeyBAA8Q7t4dytLcTvtt+5UlgGAZ2mX725lKW6j/cadyjIA8Ezt At6xLMfbtd+2W1kKAJ6tXcI7luV4m/abditLAcArtIt417IkL9d+y45lOQB4lXYZ71qW5GXab9ixLAcA r9Qu5J3Lsjxd++5dy5IA8GrtUt65LMvTtO/ctSwJAO/QLubdy9I8XPuuXcuSAPBO7YLevSzNw7Tv2Lks CwDv1i7p3cvS/Fj77J3LsgBwB+2i1s9fVu0zdy9LA8BdtMta339htc/avSwNAHfTLm19/cXVPmP3sjQA 3FG7uPVXWaLfav9W/gcAwO21y1t/lSX6VPs38vIHGKNd4vqrLNFB+1t5+QOM0i5y/VOW6f+1v9FfZYkA mKJd5vqnLJN1OilLBMA07VKXrpQtBMBE7WKXrpQtBMBU7XKXzsrWAWC6dslLrWwZAFbRLnvpY9kqAKyk XfjSx7JVAFhNu/SlP8sWAWBV7fLX3mVrALC69hLQnmVLALCL9jLQXmUrALCb9lLQHmULALCr9nLQ+uXx s4D2fKeX0YBnaodPa5dHzyLaM55eRgOerR1ArVkeOYtoz3iFMh7wCu0Qaq3yqFlIe86rlBGBV2iHUGuU R8xi2rNepYwIvEo7iJpdHi2Lac96tTIq8CrtIGpmeaQsqD3v1cqowCu1w6hZ5VGyoPa8VyzjAq/WDqRm lEfIotozX7WMDLxaO5C6d3l0LKo985XL2MA7tEOpe5ZHxsLac1+9jA68QzuUuld5VCyuPfvVy+jAu7SD qXuUR8Ti2rPfpSwB8C7tYOq95dGwgfb8dylLALxTO5x6T3kkbKA9/53KMgDv1g6oXlseBZtoe2C3shTA u7UDqteUR8BG2j7YrSwFcAftkOq5ZenZSNsHu5YlAe6gHVI9pyw5m2l7YdeyJMBdtIOqx5alZjNtL+xc lgW4k3ZY9fOyvGyq7Yndy9IAd9IOq75flpVNtT0h5wJuqx1Yfb0sJxtr+0J/lSUC7qYdWF0vy8jm2t7Q X2WJgDtqh1a/L8vH5tre0L/LUgF31A6tPi/LBs7OhbJUwF21g6telozNtb2hY1ku4I7aodV5WTo21vaF elky4E7aYdW1soRsqu0J9bJkwF20g6qvlaVkM20v6LwsHfBu7YDqe2VJ2UjbBzovSwe8Uzuc+llZWjbQ nr9+X5YPeJd2MPWYssQsrj17XStLCLxaO5B6bFlqFtWeua6XZQReqR1GPacsOQtqz1tfK0sJvEI7hHpu WXoW0561vlaWEni2dgD1mvIIWER7xvpeWVLgWdrB02vLo2AB7fnqe2VJgWdoh07vKY+Ewdpz1ffLsgKP 1g6c3lseDUO1Z6qflaUFHqUdNN2jPCIGas9TPytLCzxCO2S6V3lUDNKeox5Tlhj4iXa4dM/yyBiiPUM9 piwx8F3tYOne5dFxc+3Z6XFlmYHvaIdKM8oj5Mbac9Njy1IDX9EOk2aVR8kNteelx5flBq5qB0kzyyPl Ztqz0nPKkgO/0w6QZpdHy42056TnlCUHzrTDozXKI+YG2vPRc8vSA007NFqrPGrerD0bPbcsPfCrdmC0 ZnnkvEl7Jnp+WX7go3ZYtHZ59LxBex56TXkEwJ/aIdEeZQvwYu1Z6DXlEQDtgGivshV4kfYM9NryKGBf 7WBoz7IleIG2/npteRSwp3YotHfZGjxRW3e9vjwO2E87ENKfZYvwJG3N9Z7ySGAf7SBIH8tW4cHaWut9 5bHAHtohkFrZMjxQW2e9tzwaWFvb/NJZ2To8SFtjvbc8GlhX2/jSlbKF+KG2trpHeUSwnrbhpa+UrcQP tHXVPcojgrW0zS59p2wpvqGtp+5THhOso210HbNW1/vvxuLL2lrqXuVRwXxtg+tYluu/2n/XsSwXX9DW cXKrzgTjtc2tY1muf2l/p2NZLi5o6ze9leeCsdqm1rEsV9X+XseyXPxGW7vJZSz/AwDupG1oHctynWr/ TseyXHyirdn0Mtp/tf8+uYwFs7TNrGNZrkvav9exLBdFW6/JZaz/1/5mehkNZmibWMeyXF/SPkfHslx8 0NZpehntX9rfTS5jwf21DaxjWa5vaZ+nY1kuoq3R9DLav7S/m15Gg/tqG1fHslw/0j5Xx7Jc/KGtz+Qy VtX+fnIZC+6pbVody3I9RPt8Hctyba2ty/QyWtX+fnoZDe6lbVYdy3I9VPseHctybautyeQy1qfav5le RoP7aBtVx7JcT9G+T8eyXNtpazG9jHaq/bvJZSy4h7ZJdSzL9VTte3Usy7WVtg7Ty2in2r+bXkaD92qb U8eyXC/Rvl/HslzbaGswuYx1Sfv3k8tY8D5tY+pYluul2u/QsSzX8trs08tol7R/P72MBq/XNqSOZbne ov0eHctyLa3NPbmMdVn7jOllNHitthl1LMv1Vu136ViWa0lt3ulltC9pnzO5jAWv0zaijmW5bqH9Ph3L ci2nzTq5jPVl7bOml9Hg+doG1LEs162036ljWa5ltBmnl9G+pX3e5DIWPFfbfDqW5bql9nt1LMu1hDbf 9DLat7TPm15Gg+dom07Hsly31n63jmW5xmuzTS5j/Uj73MllLHi8tuF0LMs1Qvv9+qcs03httulltB9p nzu9jAaP0zaajmW5Rmlz6K+yROO12SaXsX6sffb0Mho8RttkOpblGqnNozUu0zbX9DLaQ7TPn1zGgp9r G0zHslyjtbl2LssyXpttehntIdrnTy+jwfe1jaVjWa4ltPl2LUsyXpttchnrodr3TC5jwfe0TaVjWa6l tDl3K0sxXpttehntodr3TC+jwde0zaRjWa4ltXl3KsswXpttchnr4dp3TS+jwXVtI+lYlmtpbe5dyhKM 1uaaXkZ7ivZ9k8tYcE3bRDqW5dpCm3/1Mvp4bbbJZaynad85vYwG59rm0bEs11baOqxcxh6tzTW9jPZU 7Xsnl7Hgc23j6FiWa0ttPVYs447XZpteRnuq9r3Ty2hw1DaMjmW5ttbWZbUy6nhttsllrJdo3z+5jAX/ 1jaLjmW5+ENbn1XKiOO12aaX0V6iff/0Mhr8pW0SHcty8UFbpxXKeOO12SaXsV6m/YbpZTTw8r9aloui rdf0Mtpoba7pZbSXar9jchmL3bXNoWNZLk60dZtaRhqvzTa9jPZS7XdML6Oxq7YpdCzLxQVt/SaWccZr s00uY71F+z2Ty1jsqG0IHcty8QVtHSeVMcZrs00vo71F+z3Ty2jspG0EHcty8Q1tPaeUEcZrs00uY71N +03Ty2jsom0CHcty8QNtXSeUnz9am2t6Ge2t2u+aXMZiB20D6FiWiwdo63vn8rPHa7NNLmO9Xftt08to rKw9eB3LcvFAbZ3vWn7yaG2u6WW0W2i/b3IZi1W1h65jWS6eoK333cpPHa/NNr2Mdgvt900vo7Ga9rB1 LMvFE7V1v1P5meO12SaXsW6l/c7JZSxW0h60jmW5eIG2/ncoP2+8Ntv0MtqttN85vYzGCtoD1rEsFy/U nsO7y08br802uYx1O+23Ti+jsYL2gPXvslS8QXse7yw/a7Q21/Qy2i213zu5jMUK2gPWP2WZeKP2XN5R fs54bbbpZbRbar93ehmNFbQHLJv8TtrzeXX5KeO12SaXsW6t/e7JZSxW0R7yzmVZuJH2nF5VfsJ4bbbp ZbRba797ehmNVbSHvGNZDm6oPa9XlK8fr802uYw1Qvv9k8tYrKQ96J3KMnBT7Zm9onz9aG2u6WW0Edrv n1zGYjXtYe9Qxufm2rN7Zvna8dpsk8tYY7QZppfRWE172CuXsRmiPcNnla8crc01vYw2SptjchmLFbUH vmIZl2Has3x0+arx2mzTy2ijtDmml9FYUXvgK5UxGao900eWrxmvzTa5jDVSm2dyGYtVtYe+QhmP4dqz fUT5+PHabNPLaCO1eaaX0VhVe+iTy1gsoj3jn5aPHq/NNrmMNVabaXoZjZW1Bz+xjMNi2rP+SfnY0dpc 08too7W5JpexWF17+JPKGCyqPfPvlI8br802vYw2WptrehmN1bWHP6H8fBbXnv1Xy0eN12abXMZaQptv chmLHbQNcOfys9lE2wNXy0eM12abXkZbQptvehmNHbQNcMfyc9lM2wtXyj8fr802uYy1lDbn5DIWu2ib 4E7lZ7Kptid+V/7paG2u6WW0pbQ5J5ex2EnbCHcoP4/Ntb3xWfkn47XZJpexltNmnV5GYydtI7yz/Cz4 r7ZHWvnz0dpc08toS2rzTi5jsZu2Gd5Rfg78S9srH8ufjddmm15GW1Kbd3oZjd20zfDK8jOganvm7/In 47XZJpexltbmnlzGYkdtQ7yifD2canvnz/KfR2tzTS+jLa3NPb2Mxo7ahnhm+Vq4ZNX98+tc08tYy2uz Ty+jsau2KZ5Rvg6+ZLU99HGeVcpoW2jzTy5jsbO2MR5Zvga2187H9DLaFtr808to7KxtjEeUjwf+0M7I 5DLWVto6TC5jsbu2OX5SPhb4Qzsj08toW2nrML2Mxu7a5vhO+Tgg2jmZXMbaUluPyWUs+PnmzscA0c7J 9DLaltp6TC5jwV/aJrlS/jnwQTsrk8tY22prMr2MBn9pm+Ss/DPgg3ZWppfRttbWZXIZC/7RNkorfw78 op2X6WW0rbV1mV5Gg3+0jfKx/BlQtDMzuYzFH9r6TC5jwb+1zfJn+c9A0c7M9DIaf2jrM72MBv9mo8DX /HpmppexiLZG08tocGSTwDUfL9VVymh80NZpchkLgO9ql+v0MhoftHWaXkYD4DvaxTq5jEXR1mtyGQuA r2qX6vQyGkVbr+llNAC+ol2ok8tYnGjrNrmMBcBV7TKdXkbjRFu3yWUsAK5ql+nkMha/0dZuehkNgN9p l+j0MhoXtPWbXMYC4HfaJTq9jMYFbf2ml9EAONMu0MllLL6grePkMhYAn2mX5/QyGl/Q1nF6GQ2Apl2c k8tYfFFby+llNAB+1S7N6WU0vqGt5+QyFgC/apfm9DIa39DWc3oZDYCP2oU5uYzFD7R1nVzGAuBv7bKc XkbjB9q6Ti+jAfCndlFOLmPxAG19J5exAGiX5PQyGg/Q1ndyGQuAdklOLmPxIG2Np5fRAPbVLsfpZTQe qK3z5DIWwL7a5Ti9jMYDtXWeXkYD2FO7GCeXsXiCtt6Ty1gA+2mX4vQyGk/Q1nt6GQ1gL+1CnFzG4kna mk8vowHso12G08toPFFb98llLIB9tMtwehmNJ2rrPr2MBrCHdhFOLmPxAm39J5exANbXLsHpZTReoK3/ 9DIawNraBTi5jMULtecwuYwFsK52+U0vo/FC7TlMLmMBrKtdfpPLWLxYexbTy2gA62mX3vQyGm/Qnsfk MhbAetqlN72Mxhu05zG9jAawlnbhTS5j8UbtuUwuYwGso112ko7lyACsoV10ko7lyADM1y45Sb0cG4D5 2iUn6fNydABmaxecpM/L0QGYq11ukn5fjhDATO1ik/T7coQA5mmXmqRr5RgBzNMuNUnXy1ECmKNdZpK+ Vo4TwBztMpP09XKkAGZoF5mkr5cjBXB/7RKT9P1ytADurV1gkr5fjhbAfbXLS9LPyvECuK92eUn6eTli APfULi5JPy9HDOB+2qUl6XHlqAHcS7uwJD2uHDWA+2iXlaTHluMGcB/tspL0+HLkAN6vXVKSnlOOHcD7 tUtK0vPK0QN4r3ZBSXpeOXoA79MuJ0nPL0cQ4D3axSTp+eUIArxeu5QkvaYcQ4DXa5eSpNeVowjwWu1C kvS6chQBXqddRpJeX44kwGu0i0jS68uRBHi+dglJek85lgDP1y4hSe8rRxPgedrlI+m95XgCPE+7fCS9 vxxRgOdoF4+k95cjCvB47dKRdJ9yVAEeq104ku5TjirA47TLRtK9ynEFeJx22Ui6XzmyAI/RLhpJ9ytH FuDn2iUj6b7l6AL8TLtgJN23HF2A72uXi6R7l+ML8H3tcpF0/3KEAb6uXSqSZpRjDPB17VKRNKccZYCv aReKpDnlKANc1y4TSfPKkQa4pl0kkuaVIw3we+0SkTSzHGuA32uXiKS55WgDnGsXyOQyFlzW9tHkMhbA 59rlMb2MBpe1fTS9jAbQtYtjchkLvqTtpellNICjdmlML6PBl7X9NLmMBXDULo3JZSz4lranppfRAP7R LovpZTT4travJpexAP7RLovpZTT4travppfRAP7SLorJZSz4sba/JpexAPy/HDjT9tf0Mhqwu3ZBTC5j wUO0PTa9jAbsrF0O08to8DBtn00uYwE7a5fD9DIaPEzbZ9PLaMCu2sUwuYwFD9f22+QyFrCjdilML6PB w7X9Nr2MBuymXQiTy1jwFG3PTS+jATtpl8H0Mho8Tdt3k8tYwE7aZTC5jAVP1fbe9DIasIN2CUwvo8HT tf03uYwF7KBdAtPLaPB0bf9NL6MBq2sXwOQyFrxM24eTy1jAytrhn15Gg5dp+3B6GQ1YVTv4k8tY8FJt L04vowEraod+ehkNXq7tx8llLGBF7dBPL6PBy7X9OL2MBqymHfjJZSx4m7YvJ5exgJW0wz69jAZv0/bl 9DIasIp20CeXseCt2t6cXkYDVtAO+fQyGrxd25+Ty1jACtohn1zGgltoe3R6GQ2YrB3u6WU0uI22TyeX sYDJ2uGeXkaD22j7dHoZDZiqHezJZSy4nbZfJ5exgInaoZ5eRoPbaft1ehkNmKYd6MllLLiltmenl9GA Sdphnl5Gg9tq+3ZyGQuYpB3m6WU0uK22b6eX0YAp2kGeXMaC22v7d3IZC5igHeLpZTS4vbZ/p5fRgLtr B3hyGQtGaHt4ehkNuLN2eKeX0WCMto8nl7GAO2uHd3IZC0Zpe3l6GQ24o3Zop5fRYJy2nyeXsYA7aod2 ehkNxmn7eXoZDbibdmAnl7FgrLavJ5exgDtph3V6GQ3Gavt6ehkNuIt2UCeXsWC0trenl9GAO2iHdHoZ DcZr+3tyGQu4g3ZIp5fRYLy2v6eX0YB3awd0chkLltH2+eQyFvBO7XBOL6PBMto+n15GA96lHczJZSxY Stvr08towDu0Qzm9jAbLaft9chkLeId2KCeXsWBJbc9PL6MBr9QO4/QyGiyr7fvJZSzgldphnF5Gg2W1 fT+9jAa8SjuIk8tYsLy2/yeXsYBXaIdwehkNltf2//QyGvBs7QBOLmPBFtoZmF5GA56pHb7pZTTYRjsH k8tYwDO1wze9jAbbaOdgehkNeJZ28CaXsWA77TxMLmMBz9AO3fQyGmynnYfpZTTg0dqBm1zGgi21MzG9 jAY8Ujts08tosK12LiaXsYBHaodtchkLttbOxvQyGvAI7ZBNL6PB9tr5mFzGAh6hHbLpZTTYXjsf08to wE+1Aza5jAVEOyeTy1jAT7TDNb2MBkQ7J9PLaMB3tYM1uYwFfNDOyvQyGvAd7VBNL6MBv2jnZXIZC/iO dqiml9GAX7TzMr2MBnxVO1CTy1jAJ9q5mVzGAr6iHabpZTTgE+3cTC+jAVe1gzS5jAWcaGdnehkNuKId oullNOA32vmZ23/+9/8A8VIS644ZBj0AAAAASUVORK5CYII= 796, 44 AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAC0 GgAAAk1TRnQBSQFMAgEBCQEAASgBEAEoARABIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA AwABYAMAAQEBAAEgBgABwP8A/wD/AP8A/wD/AP8A/wAeAANHAYB0//8AiQADRwGAdP//AIkAAyoBQANH AYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANH AYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGA/wD/AP8A kwBo/wNHAYD/AJUAaP8DRwGA/wCVAAj/A1oBwANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGA A0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgAj/A0cBgP8A lQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNH AYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/ A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8A lQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNHAYBUAAj/A0cBgP8AlQAI/wNH AYBUAAj/A0cBgP8AlQBo/wNHAYD/AJUAaP8DRwGA/wCVAGj/A0cBgP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AB8AA0cBgGj/A1oBwP8AjQADRwGAdP8QAANHAYBg/wNHAYADKgFARAAI/wNHAYC8AAz/ A0cBgAMqAUBUAANHAYAM/wNHAYAMAGj/A0cBgEQACP8DRwGAeAAM/zgACP8DRwGAZAAI/wNHAYAIAHD/ RAADRwGAA0cBgAMqAUBwAANHAYAQ/yAAA0cBgANHAYADKgFADAAI/wNHAYAEAAj/A0cBgAQAKP8DRwGA BAAI/wNHAYAEAAj/A0cBgAQACP8DRwGACAAM/1gAA0cBgAj/vAAY/yAACP8DRwGADAAI/wNHAYAEAAj/ A0cBgAQAKP8DRwGABAAI/wNHAYAEAAj/A0cBgAQACP8DRwGACAAM/zQAA0cBgANHAYADRwGACAADRwGA A0cBgAMqAUAEAANHAYAI/zQAA0cBgCAAA0cBgAMqAUBUAANHAYAc/yAACP8DRwGADAAI/wNHAYBkAAj/ A0cBgAgADP80AAz/A0cBgBD/BAADRwGACP8wAAz/A0cBgBQADP9QACT/IAAI/wNHAYAMAAj/A0cBgGQA CP8DRwGACAAM/zQADP8DRwGAEP8EAANHAYAI/zAAMP80AAMqAUADRwGAA0cBgANHAYADRwGAA0cBgCj/ IAAI/wNHAYAMAAj/A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/ A0cBgAQACP8DRwGACAAM/zQADP8IAAj/A0cBgAQAA0cBgAj/MAAw/zQAQP8gAAj/A0cBgAwACP8DRwGA BAAI/wNHAYAEAAj/A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/A0cBgAQACP8DRwGABAAI/wNHAYAIAAz/ WAADRwGACP80AANHAYADRwGAGP8DWgHAA0cBgAMqAUA0AED/CAADRwGACP8MAAj/A0cBgAwACP8DRwGA ZAAI/wNHAYAIAHD/IAAE/wNHAYBEAAT/JABA/wgAA0cBgAj/DAAI/wNHAYAMAAj/A0cBgGQACP8DRwGA CABw/xwAA0cBgAz/AyoBQDQAA0cBgAz/AyoBQBwAQP8IAANHAYAI/wwACP8DRwGADAAI/wNHAYAEAAj/ A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/A0cBgAwAaP8DRwGA HAADRwGAFP8oAANHAYAU/wNHAYAcAED/CAADRwGACP8MAAj/A0cBgAwACP8DRwGABAAI/wNHAYAEAAj/ A0cBgAQACP8DRwGABAAI/wNHAYAEAAj/A0cBgAQACP8DRwGABAAI/wNHAYAMAAz/UAAM/wNHAYAcAAMq AUAY/wNHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAGP8DRwGAIABA/wgAA0cBgAj/DAAI/wNH AYAMAAj/A1oBwGAAA0cBgAj/A0cBgAwAA0cBgAz/SAADRwGADP8oAEj/A0cBgCQAQP8IAANHAYAI/wwA CP8DRwGADAAQ/wNHAYBUABD/A0cBgAwAA0cBgAz/SAADRwGADP8QAANHAYADRwGAAyoBQBAAA0cBgANa AcA0/wNHAYAUAANHAYADRwGAAyoBQAwAQP8IAANHAYAI/wwACP8DRwGADAADKgFAcP8DRwGAFAAM/wNH AYBEAAz/EAAQ/xwAA0cBgCT/HAAQ/wwAQP8IAANHAYAI/wwACP8DRwGAFABo/wNHAYAYAAz/A0cBgEQA DP8QAANHAYAQ/wNaAcBQAANHAYAQ/wNaAcAMAANaAcA8/yAACP8DRwGARAADWgHACP9MAAz/QAAM/wNH AYAUAANHAYAU/wNHAYBEABj/KAAo/yAACP8DRwGARAADRwGACP9MAAz/QAAM/wNHAYAYAANHAYAY/wNa AcADRwGAAyoBQCQAA0cBgANHAYAY/wNaAcAsAAQBA0cBgCD/IAAI/wNHAYBEAANHAYAI/0wAA0cBgAz/ OAADRwGADP8kAGD/QAAc/yAACP8DRwGARAADRwGACP9MAANHAYAM/wNHAYADRwGAA0cBgANHAYADRwGA A0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA1oBwAz/KAADKgFAA0cBgEj/A1oBwANH AYBIAANHAYAU/yAACP8DRwGARAAI/wNaAcBQAFD/OABA/1wAEP9sAAz/A0cBgFAAA0cBgEj/A1oBwEQA A0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgAMqAUBkAAQBA0cBgANHAYADRwGA bAAM/1wAQP//AFkADP//APUADP//APUADP8DRwGA/wD/AP8A/wD/AP8A/wD/AGQAAyoBQANHAYADRwGA DAADRwGAA0cBgAMqAUAIAANHAYADRwGAA0cBgFAAA0cBgANHAYADKgFAVAADRwGA/wAVAANHAYAI/wwA CP8DRwGACAAM/0wAEP9UAAT//wAVAANHAYAI/wwACP8DRwGACAAM/0gAA1oBwBT/AyoBQEwABP8MAANH AYADRwGAA0cBgANHAYADRwGABAADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGA A0cBgANHAYADRwGAbAADKgFAEP8DRwGAOAADRwGACP8MAAj/A0cBgAgADP9EACD/TAAE/wwAFP8EADT/ bAAY/wNHAYAwAANHAYADWgHACP8DRwGAA0cBgANHAYAI/wNaAcADRwGAA0cBgAz/A0cBgDwAA1oBwAz/ A1oBwANHAYAQ/wMqAUBEAAT/DAAE/wQABP8EAAT/BAAE/wQABP8EAAT/BAAE/wQABP8EAAT/BAAE/yAA A0cBgBD/A1oBwBQAA0cBgANHAYADKgFABAADRwGAA0cBgAMqAUAEAAj/A1oBwANHAYAI/wNHAYAsAANH AYBE/zQAFP8IAANHAYAQ/0QABP8MAAT/DAAE/wQABP8sAAT/IAAY/xQACP8DRwGABAAI/wNHAYAEABj/ A0cBgCwASP8DRwGALAADWgHADP8DWgHADAADWgHAFP8DKgFANABw/wMqAUAQAAz/A1oBwAj/FAAI/wNH AYAEAAj/A0cBgAQAA1oBwBT/AyoBQBwAIP8oAANHAYAc/wNHAYAYABT/DAAg/zwABP9cAANHAYAI/xAA GP8UAAj/A0cBgAQACP8DRwGACAAQ/yQAGP8DWgHAMAADRwGAGP8DRwGAFAADWgHADP8DWgHADAADKgFA BAADWgHABP8DWgHAA0cBgBD/AyoBQCwAEP8DRwGACAADRwGAA0cBgANHAYADKgFAFAADRwGAGP8DRwGA AyoBQAgAA0cBgAT/A0cBgAwAGP8MACj/A0cBgAQACP8DRwGAJAAY/wNHAYA0ABj/A0cBgBQAEP8QAAj/ BAAE/wgAA0cBgBD/LAAE/wQABP8QAAz/A0cBgAwABAEU/wNHAYAEAAz/BAEIAANHAYAE/wNHAYAMABD/ A0cBgAwAKP8DRwGABAAI/wNHAYA0AAj/A0cBgAgAIP8MAAj/A0cBgCQAEP8DKgFABAADKgFADP8DWgHA DAADWgHAFP8DKgFAJAAE/wQACP8DRwGACAAE/wNHAYAE/wNHAYAMAANaAcAE/wNHAYAEAANHAYAE/wgA A1oBwAz/AyoBQAQAAyoBQAT/A0cBgBAACP8UAAj/A0cBgBQACP8DRwGABAAI/wNHAYA0AAj/A0cBgAgA IP8MAAj/A0cBgCQAA0cBgBD/CAAU/wQAIP8kAAT/BAAE/xAABP8DRwGABP8DRwGACAAM/wNHAYAEAANH AYAE/wQADP8EAQj/CAAE/wNHAYAQAAj/FAAI/wNHAYAUAAj/A0cBgAQACP8DRwGAJAADRwGAA0cBgANH AYADRwGACP8DRwGACAAM/wNHAYADRwGAA1oBwAj/DAAI/wNaAcADRwGAA0cBgANHAYADKgFAGAADRwGA EP8DKgFABAADWgHABP8DWgHADAADWgHABP8DWgHAA0cBgBD/AyoBQBwABP8DRwGACP8DRwGACAAE/wNa AcAE/wNHAYAEAAMqAUAE/wNaAcAE/wNaAcAEAANHAYAE/wNaAcAE/wNaAcAIAANHAYAE/wNHAYAEAAT/ A0cBgBAAJP8DRwGACP8MABj/A0cBgCQAGP8DRwGACAAM/wgAA0cBgAj/DAAY/wNHAYAcAANHAYAQ/wgA BP8UAAT/CAADRwGAEP8cAAz/EAAM/wNHAYAEAANHAYAE/wNHAYAc/wNHAYAU/wQABP8DRwGAEAAk/wNH AYAI/wwAGP8DRwGAJAAY/wNHAYAIAAz/CAADRwGACP8MABj/A0cBgCAAA0cBgBD/AyoBQCQAA1oBwBT/ AyoBQBQAA0cBgANHAYAI/wNHAYAcAANHAYAE/wgAAyoBQAj/A0cBgANHAYAc/wQABP8DRwGALAAI/wNH AYAUAAj/A0cBgAgAA0cBgBD/A1oBwCQACP8DRwGACAAg/wwACP8DRwGANAADRwGAEP8YAAT/BAAg/xQA DP8kAANHAYAI/wgACP8IAAj/DAAI/wQABP8DRwGALAAI/wNHAYAUAAj/A0cBgAgAGP8kAAj/A0cBgAgA IP8MAAj/A0cBgDgAA0cBgBD/AyoBQAwAA1oBwAT/A1oBwAQAA1oBwAT/A1oBwANHAYAQ/wMqAUAUAAj/ A0cBgAgADP8DRwGABAADRwGAGP8DRwGBA0cBgAz/AyoBQAQAA1oBwAT/BAAE/wNHAYAQACT/A0cBgBQA IP8DWgHACP8kAAj/A0cBgAgAIP8MAAj/A0cBgDwAA0cBgBD/CAAU/wQABP8IAANHAYAM/wNHAYAUAAT/ EAAE/wNHAYAE/wNHAYAEAANHAYAE/wNHAYAMABD/A0cBgAj/BAAI/wQABP8DRwGAEAAk/wNHAYAUACz/ FAAY/wNHAYA0ABj/A0cBgDAAA0cBgBD/AyoBQAQAA1oBwAz/AyoBQAwAA1oBwAz/A0cBgAwAEP8DRwGA CAAE/wNHAYAE/wNHAYAEAAQBBP8DWgHACAADRwGABP8DRwGAA0cBgAT/BAADRwGABP8DRwGBBP8EAQQA BP8DRwGAEAAI/xQACP8DRwGAFAAI/wNHAYAIABj/FAAc/zAAHP8DRwGANAADRwGAEP8IAAj/EAAU/xAA BP8EAAT/EAAE/wNHAYAE/wNHAYAIABT/A0cBgQQAA0cBgAT/CAAI/wNHAYEIAAT/A0cBgBAACP8UAAj/ A0cBgBQACP8DRwGADAAQ/wNHAYAUAANHAYADRwGAA0cBgANHAYAQ/wNHAYADRwGAA0cBgANHAYADRwGA A0cBgANHAYADRwGAA0cBgANHAYADWgHADP8DWgHAA0cBgANHAYADRwGAAyoBQDgAA0cBgBD/AyoBQAQA AyoBQAwAA1oBwAz/A1oBwBQABP8DRwGACP8DRwGACAAE/wNaAcAE/wNHAYAMAANaAcAM/wQBBAADWgHA BP8DKgFAA0cBgAj/AyoBQAQAAyoBQAT/A0cBgAgAA0cBgBD/A1oBwAwAKP8DRwGARABI/wNHAYBMAANH AYAQ/xAAFP8YAAz/EAAM/wNHAYAQACj/DAAI/wNHAYAIABj/DAAo/wNHAYBEAAMqAUBA/wNHAYBUAANH AYAQ/wMqAUAEAANaAcAM/wNaAcAkAAj/A0cBgCwAAyoBQANHAYAQ/wNaAcADRwGACAADKgFACP8DRwGA DAAM/wNaAcAI/xQACP8DRwGABAAI/wNHAYBUAANHAYAI/wwACP8DRwGACAAM/2AAA0cBgCT/KAAE/1wA A0cBgAT/A0cBgBAAGP8UAAj/A0cBgAQACP8DRwGAVAADRwGACP8MAAj/A0cBgAgADP9kAANHAYAY/wNa AcAkAGz/A0cBgBQAGP8UAAj/A0cBgAQACP8DRwGAVAADRwGACP8MAAj/A0cBgAgADP9oAANHAYAU/7AA EP8DRwGAhAADRwGACP8MAAj/A0cBgAgADP9sAANHAYAI/wNaAcD/AP8A/wD/AP8A/wD/AC8AAUIBTQE+ BwABPgMAASgDAAGAAwABYAMAAQEBAAEBBgABBhYAA/8BAAT/DAAE/wwABP8MAAT/DAABgAIAAQEMAAGA AgABAQwAAYACAAEBDAAE/wwAAeACAAEDDAAB4AIAAQMMAAHgAgABAwwAAeMC/wHjDAAB4wL/AeMMAAHj Av8B4wwAAeMC/wHjDAAB4wL/AeMMAAHjAv8B4wwAAeMC/wHjDAAB4wL/AeMMAAHjAv8B4wwAAeMC/wHj DAAB4wL/AeMMAAHjAv8B4wwAAeMC/wHjDAAB4wL/AeMMAAHgAgABAwwAAeACAAEDDAAB4AIAAQMMAAT/ DAAE/wwABP8MAAT/DAAs/wHAAgABAwz/AYACAAEBAeACAAEDAf8B/gE/Bf8BgwL/AuACAAEDAf8B/gE/ A/8BHwH/AY8C/wH4AcACAAEDAf8B/gE/Av8B/AEfAeMBiAGAAQgBiAHHAv8B4wX/AfgBHwHjAYgBgAEI AYgBxwH/AcYBIwH/Ae8B8wL/AeABHwHjAY8C/wH4AccB/wHAASMB/wHDAeMC/wHAAR8B4wGPAv8B+AHH Af8BwAEjAf8BwAEDAf8B4AEAAR8B4wSIAccB/wHGASMB/wHAAQMB/wHgAQABHwHjBIgBxwL/AeMB/wHg AQMB/wHgAQABGAHjAY8C/wH4AcACAAEDAfwC/wG/AeABAAEYAeMBjwL/AfgBwAIAAQMB+AE/Af4BDwHg AQABGAHjBIgB4AIAAQMB+AEfAfgBDwHgAQABGAHjBIgB4wL/AcMB+AIAAR8B4AEAARgB4wGPAv8B8AHh Av8BhwH+AgABPwHgAQABGAHjAYMC/wHgAeEC/wGHAY8CAAH4AeABAAEYAeMBgAIAAQEB8AL/AY8BDwHg AQcB8AHgAQABGAHjAeACAAEDAfAC/wGPAQMC/wHAAeABAAEfAeMB/wH+AT8B/wH4Av8BDwGAAv8BgQH/ AYABHwHjAf8B/gE/Af8B+AL/AQ8BwAEPAfgBAwH/AYABHwHjAf8B/gE/Af8B+AF/Af4BHwHwAgABDwH/ AfABHwHjAf8B/gE/Af8B+AIAAR8B+AIAAR8B/wH4AR8B4wH/Af4BPwH/AfwCAAE/Af8CAAL/Af4BHwL/ AfwBPwH/AfwCAAE/Af8B4AEDAv8B/gEfAv8B/AF/Av8CAAr/AfwBfw7/AfwBfw7/AfwBP0L/AY4BMQL/ AeMC/wHvCP8BjgExAv8BwwL/Ae8I/wGOATEC/wGAAv8B7gEIAQABPwL/AfgBHwH/AY4BMQL/AQAC/wHu AQgBAAE/Av8B+AEPAf8CAAH/Af4BAAE/Af8B7gKqAb8BwAH4AYgBDwH+AgABfwH8ARgBPwH/Ae4B6wH/ Ab8BwAH4AYgBDwH+AgABPwH4ATgBDwH/AYACAAEDAcAB+AGIAQ8B4AEfAfgBAwHwAXABDwH/Ae8C/wHj AcAB+AGMAT8B4AE/AfwBAwHgAegBAwH/AYMBDwGAATEBwAHgAQIBPwHgAT8B/gEDAeEB5QGDAf8BrwEO AQIBGALgAQIBPwH+ATABDgE/AeABgwGAAf8BowEOASYBCAHzAeMB4gE/Af4BMAEOAT8B4AHBAQAB/wGv AQwBJAEMAfMB4wHiAT8B4AEwAQ4BAwHwASMBgAE/AYMBCAEgAcQB8AEAAeABPwHgATEBjgEDAfgBNwHY AT8BjwEIAQABBAHwAQAB4AE/AeABMQGOAQMB/AEPAfgBDwGDAfkBgAEEAf8C4wEDAf4BMAEOAT8B/gEP AdABDwGPAfgBzAHkAf8C4wEDAf4BMAEOAT8B/wEDAYgBAwHjAQgBAAEkAfABAwHgAQMB/gEwAQ4BPwH/ AYMBBQGDAe8BCAHgASQB8AEDAeABAwHgAT8B/gEDAf8BwAODAQgBwQEEAfMC4wEDAeABPwH8AQMB/wHg Ac8BBwGvAQwBCQGMAfMC4wGDAeACAAEDAf8B8AEuAQ8BgwEOAggBwAHgAQMB/wH+AgABPwH/AfgBPAEf AY8BDwEAATgBwAHgAQMB/wH+AgABfwH/AfwBCAE/AeMB/wGAAWEBwAH4AY8C/wGOATEC/wH+AQABfwHv Av8B4wHAAfgBjwL/AY4BMQP/AQAB/wGAAgABBwHAAfgBjwL/AY4BMQP/AYEF/wHgBP8BjgExA/8Bwzn/ Cw== 83, 12 261, 12 429, 12 584, 12 724, 12 917, 12 1219, 12 1386, 12 594, 44 1097, 12 56, 65 iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAABI1JREFUeF7tmQtuIzkMRLO7979TbrYb1VKAYdAjijJldec9oKaB2NUMP2q1Ml8A AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEP+QUfprx8BbOD7+/tfdJ6sPaX83f7xgqPPSx0qRvuMFxx9 XupQFT3Ac1B0htSkSnqQ58DoDKlJlXhB0RmyFpUeA3n5O1jq0P9/CyiDAThY6lA1XmD0eVl7tECr0KPF Cz6S3BDGq+FIZi0dgNTZP+NBObVaV5H+w0/3tSu85rFWs3r0V5F++ZMbhvRaPdcvokd/Gc9BIzJr6b50 F3q9nms4ksynnv3lZgAiLG2xP5TWODUAchZP5o1YXWS1eIFHMuvMX6XasLRCXF0pvBqOZNZ0zAic/etR A70ajiR38QCk9iY5479Yev87VcoqTmoA5CzeYtONkTs+AOkVcLKUWRDPP5JZz/yPH7kn8O5xVfV8lNiY s7dYL/BIZv21q19ZxdmxxaZYXf3RvelWA6CM4o3ZtcWmSDVGzskXE+8+V5WlFG1MevjlrsYLPJJZoy8m 6f3vVCmrCbx7jGTW0tW/68Xk5SNQnx6C9/t5sq/vWv1TT9lZUnuTnPECpPe/U6Ws4o1JDYCcJza/Se43 rYBXn/Wft2s1j/FGkmGyMd59RjLrvc/+kc/atZipOsix4d1H7mq8wCOZtXT1N7XPNpEZgCipp6yc8Rqn mEr6UXK/Yf/Tpz+8+qxfd/Ac/5Xs69HG7NpiU6QGQM437X/2sft5/7m+UMhjrIhkijcmVeMmuavxAo9k 1rfsf5HP2rWSx1gRyTSBd4+RzFq6+ne9mKQfgSdKGe1b/VNP2VlSjZEzXoA/xtA3DsH7/TzZ16ONWanx ec1vknvDCjhRymiyMd59RjJrdItNsfpoCuPd46qylKLDz9m//ePd56pSVnse/9Eap1hd/dEC3GoAlNGG 4Zf7xAGQc8P+d6ospV0DUIsXeCSzvuXsf1UpsyCefySzlq5+zv4J9VzaNcDq6p96ys6y48XkVs1v6vm0 a4CVGp/X/Ca5N+x/J0oZxRuzWmPO/qfJUioffrmr8QKPZNZfufqblFXxE0DOeI1TrE5mtAC3GgBltGH4 5S4egJXJjDZfePe5qiylXQNQixd4JLNGC8DZ3/GPZNbS1b969i/d/05Vz6VdA6yu/qmn7Cwrj//oZN6q +U09n3YNsFLj0uavTmZ0ANJxTpQyijcmPfxyc/Y/T5ZS+fDLXY0XeCSzRgsgvPtcUZbODCuP/6kaz7I6 maV7001YrXHpAKxMZrb5zXd1zbA6AGUoES/wSHIXT+ad8Go4kllLa7w6mbMr4TdydI1TT4DuaVcYkq7x D6XNX5rMfoXXPNZqVrrBqWd/VC91qBov8EhmhQm8Ov5JZjvz5Q/VSx0qHoDUiwnaI3Woih7gOSg6Q2pS 5ervQZ4DozOkJlUe/7yg6AxZi0rP/sILjj4va0/p2V94wdHnZe2pxQuMPi9rT+nRT3jB0edl7WEAfqOs NQB7aMcMdJYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF7y9fUfA3kM7l7sJPMAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAABUFJREFUeF7tkVFuHEcMBXX/U+lmCQyXkSeqetaJJ1h2DwuoLxW1w+bHk/j8/Pzr dyQfTsGO/DsyPuyMHfbfyL8ZdsQO+l/k3w07YYf8E/m3ww7YAe+Qfz90x453h/z7oTN2uDvlZ4au2NHu lJ8ZumJHq5J+w9oq6dAVO1qV9BvWVkmHrtjRqqTfsLZKOnTFjpaSLbGZlGzoih0tJVtiMynZ0BU7Wkq2 xGZSsqErdrSUbInNpGRDV+xoKdkSm0nJhq7Y0VKyJTaTkg1dsaOlZEtsJiUbumJHS8mW2ExKNnTFjpaS LbGZlGzoih0tJVtiMynZ0BU7Wkq2xGZSsqErdrSUbInNpGRDV+xoKdkSm0nJhq7Y0VKyJTaTkg1dsaOl ZEtsJiUbumJHS8mW2ExKNnTFjpaSLbGZlGzoih0tJVtiMynZ0BU7Wkq2xGZSsqErdrSUbInNpGRDV+xo KdkSm0nJhq7Y0VKyJTaTkg1dsaOlZEtsJiUbumJHS8mW2ExKNnTFjpaSLbGZlGzoih0tJVtiMynZ0BU7 Wkq2xGZSsqErdrSUbInNpGRDV+xoKdkSm0nJhq7Y0VKyJTaTkg1dsaOlZEtsJiUbumJHS8mW2ExKNnTF jpaSLbGZlGzoih0tJVtiMynZ0BU7Wkq2xGZSsqErdrSUbInNpGRDV+xoKdkSm0nJhq7Y0VKyJTaTkg1d saOlZEtsJiUbumJHS8mW2ExKNnTFjnan/MzQFTvanfIzQ1fsaHfKzwxdsaPdKT8zdMWOdqf8zNAVO9qd 8jNDV+xod8rPDF2xo90pPzN0xY6Wki2xmZRs6IodLSVbYjMp2dAVO1pKtsRmUrKhK3a0lGyJzaRkw/+N Pf7ustpwhT3cabLqULHHOlVWHn5hj3S6rD7Y4zxFnuC52KM8TZ7iedhjPFGe43nYYzxVnuRZ2ENcydgW 2PdfydhzsEcwybfFdjLJn4M9gkm+NbaXSf4M7AGqpEdg+1VJn4E9QJX0CGy/Kun52PIm+RHYflXS87Hl TfIjsP1M8rOxxaukx2A7muRnY4uPP+WJzsYWH3/KE52LLT3+I890Lrb0+FWe6kxs4fGrPNWZ2MLjV3mq 87Blx+/yXOdhy47f5bnOw5atkh6L7WySn4UtWiU9FtvZJD8LW7RKejS2d5X0HGxJk/xobO8q6TnYkib5 0djeVdJzsCWrpMdju5vkZ2ALVkmPx3Y3yc/AFqySPgLbv0q6P7acSf4IbP8q6f7YclXSx2BvUCXdH1uu SvoY7A1M8r2xxaqkj8HewCTfF1vKJH8U9g5V0n2xpUzyR2HvUCXdF1uqSvo47C2qpPtiS1VJH4e9hUm+ J7ZQlXSJzfyQP2+L7WSS74ctY5Ir1qdk22I7VUn3w5YxyRXrU7JtsZ2qpPthy1RJl9hMSrYttlOVdD9s mSrpEptJybbFdjLJ98GWMMmX2ExKti22k0m+D7aESb7EZlKyrbG9qqT7YEtUSS+xuZRsa2yvKuk+2BJV 0ktsLiV7K/ZdP+TPL7HZKuk+2BJV0ktsLiV7G/ZNKdklNmeS98c+3iS/xOZSsrdh35SSXWJzJnl/7ONN 8ktsLiV7G/ZNKdlLbLZK2h/7+CrpS2w2JXsb9k0p2UtstkraH/v4KulLbDYlexv2TSnZS2y2Stob+3CT /CU2m5K9DfumlOwlNmuS98U+2iR/ic2mZG/Dvikle4nNmuR9sY8e75Nn7ot99HifPHNf7KPH++SZ+2If Pd4nz9wX++jxPnnmvthHj/fJM/fFPnq8T565N/bh45/L897Ix8ffsoG9jtNF4hYAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAABItJREFUeF7tnEGKHUkMBc2c3EfzzWZoCINp4knVBlNj8QJi9TMKKRO8avytlFJK KaWUUkoppZRSSimllFJKKaWUUkoppZRSSimllFLu8f37939+/Pjx76/yU7nO54f/LMfKRezBP/vxrwPH yyXssZMk5RL20EmScgl76CRJuYQ9dJKkXMIeOklSLmEPnSQpl7CHTpKUS9hDJ0nKJeyhkyTlEvbQSZJy CXvoJEm5hD10kqRcwh46SVIuYQ+dJCmXsIdOkpRL2EMnScol7KGTJOUS9tBJknIJe+gkSXmK/ZXtT/8v f2NnsyVJyhPsAk2Ov4bNlCQpT7ALNDn+GjZTkqRs2OVNkr2CzZMkKRt2eZNkr2DzJEnKhl3eJNkr2DxJ krJhlzdJ9go2T5KkbNjlTZK9gs2TJCkbdnmTZK9g8yRJyoZd3iTZK9g8SZKyYZc3SfYKNk+SpGzY5U2S vYLNkyQpG3Z5k2SvYPMkScqGXd4k2SvYPEmSsmGXN0n2CjZPkqRs2OVNkr2CzZMkKRt2eZNkr2DzJEke 8zf8PcQfwRaeJHsFmydJ8gjrTY7fwhadJHsFmydJ8gjrTY7fwhadJHsFmydJsmLtJNkdbMlJsleweZIk K9ZOkt3BlpwkewWbJ0myYu0k2R1syUmyV7B5kiQr1k6S3cGWnCR7BZsnSbJi7STZHWzJSbJXsHmSJCvW TpLdwZacJHsFmydJsmLtJNkdbMlJsleweZIkK9ZOkt3BlpwkewWbJ0myYu0k2R1syUmyV7B5kiQr1k6S 3cGWnCR7BZsnSbJi7STZHWzJSbJXsHmSJCvWTpLdwZacJHsFmydJsmLtJNkdbMlJssfYN37KkcfYN5Ik K9ZOkt3Blpwke4T1n+XoI6xPkqxYO0l2B1tykmzF2iTJirVJkhVrJ8nuYEtOkq1YmyRZsTZJsmLtJNkd bMlJshVrkyQr1iZJVqydJLuDLTlJtmJtkmTF2iTJirWTZHewJSfJVqxNkqxYmyRZsXaS7A625CTZirVJ khVrkyQr1k6S3cGWnCRbsTZJsmJtkmTF2kmyO9iSk2Qr1iZJVqxNkqxYO0l2B1tykmzF2iTJirVJkhVr J8nuYEtOkq1YmyRZsTZJsmLtJNkdbMlJshVrkyQr1iZJVqydJLuDLTlJtmJtkmTF2iTJirWTZHewJSfJ VqxNkqxYmyRZsXaS7A625CTZirVJkhVrkyQr1k6S3cGWnCRbsTZJsmJtkmTF2kmyO9iSk2Qr1iZJVqxN kqxYO0l2B1tykmzF2iTJirVJkhVrJ8nuYEtOkq1YmyRZsTZJsmLtJNkdbMlJshVrkyQr1iZJVqydJLuD LTlJtmJtkmTF2iTJirWTZHewJSfJVqxNkqxYmyRZsXaS7A7Tf4/22a/8d2nWJ0lWrE2SrPyp/f8qbFmT 44+w3uT4Y+wbJscfYb3J8ZvYwr/KsS9h3/ksRx9j3/gsR7+EfedXOXYbW/xDfv4t7Hsf8vNvY9/8kJ9/ C/veh/xcSimllFJKKaWUUkoppZRSSimllFJKKaWUUspX+PbtPyj1nC5Nhn2kAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAQpJREFUaEPtjlEKhDAQxbz/qbzZLsoslDLV+GE6hQ28D50Usv15mX3fP8ficx1+ 4dlCqUsW3S/UmmTB/UKtRRvXxmY7H1Qii2v/ZQttPldh/a1dKHMhYcSZwpMw6mn0QSSKeq/TRl9FEUen jxqFUU+FRlFPhUZRT4VGUU+FRlFPhUZRT4VGUU+FRlFPhUZRT4VGUU+FRlFPhUZRT4VGUU+FRlFPhUZR T4VGUU+FRlFPhUZRT4VGUU+FRlFPhUZRT4VGUU+FRlFPhUZRT4VGUU+FRlFPh0T1zsibwl3c3X06WeCx 0e18VIUs8GrxrA5Z5GjxpBZZaLbQa5GFZgu9HlnssTivwZLR67NtX/iChFkzyVR6AAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAABYhJREFUeF7tkltyIzkMBOf+p/LNdtd27tiWkyDZD4noRkbkl1hFgK0/RVEURVEU RVEURVEURVEU6/D29vbPrESLbNjHPEquKFbCPtQz5PriFdgHeaWMVZyNPf5KMmZxNPbYK8vYxV7scTPJ GsUW7EGzykrFCPaAV5D1ihb2aFeTVYtH7LGuLGsX79gD3UHWvzf2MEfLVVNYzxly3T2xBzlC6g/H7jpC 6u+DPcJeqX4aNsMeqb0+tvweqX0ZNtNWqbwutvRWqVwGm3GL1F0TW3hWqpbFZp6Vqmthi85K1fLY7LNS dQ1swRmpSYXtMStVubHFZqQmLbbTjNTkxZYalYr02G6jUpETW2hUKi6D7TgqFbmwRUal4nLYrqNSkQdb YkTil8V2HpF4DmyBUam4NLb3iMTXx4Yfkfjlsd1HJL42NviIxG+DvcGIxNfFhu5J9HbYW/QkuiY28IjE b4e9xYjE18OG7Un0ttib9CS6FjboiMRvi71JT6JrYYP2JHp77G32SO1zsUF6Er099jZHyjXnYZf2JFqA vdEZct2x2EU9iRZgb3SmXHsMdkEkseIBe6uz5ep9WHEkseIBe6tnyQjbsMJIYsUD9lbPlDHmsKJIYkUD e7NnyhjjWEkksaKBvdkrZJw+Fo4kVjSwN3uVjBRjwUhiRYC926tkpDYWakmkGMTe8BUyjmOBlkSKk7G3 3yO1jgVaEimeiH2HLVL3GzvckkjxAux7zErVT+xgSyLFC7HvMiM1X9ihlkQuQebdHmefkYov7FBLIqmx vb7LseWx2Uel4hM70JJIWmwnk+PLY7OPSPwTO9CSSFpsJ5PjKbD5RyR+nz+A7RNJLAU2f0+i9QdoSSwN tkPPTcGPUEJsl0hiabAdem4KfoQSYrtEEkuF7RG5PZQQ2yWSWCpsj8jtoYTYLpHEUmF79JwOfgQSYrtE EkuH7RK5PZQM2yOSWDpsl8jtoWTYHpHE0mG7RG4KvfsRTITtEEksJbZPSyLXfyDbIZJYSmyflkTqD/Ao sZTYPi2JzD/Qu0RTYPNHEkuJ7dOSyCd2IJJYCmz+SGIpsX1aEvnEDvQkujw2eySxlNg+LYl8YgdGJL40 NncksZTYPi2JfGGHehJdGps7klhKbJ+WRL6wQyMSXxabOZJYOmyXSGI/sYMjEl8SmzeSWDpsl0hiP7GD IxJfEps3klg6bJdIYr+xwyMSXw6bNZJYKmyPSGKOBUalYilszkhiqbA9Iom1sdCIxJfC5owklgbboSfR NhYalYrdWPe7/DyMdUQSG8Y63uXn07G7exKNseCIxDdjnY9ydAjLRxIbwvKPcvQU7L6eRMewgp5EN2Od Jse7WDaSWBfLmhw/HLtrROLjWEkksU1YXySxEMtFEguxXCSxw7A7RiQ+hxW1JLIZ6+xJtIllIok1sUxP oodg/aNSMY+VmRzfjHWOSFyx85HEFDs/IvHdWPeoVGzHSr/LsV1Y76hU/MLORhL7hZ0dlYpdWO+M1Ozn tOL/eOyelZof2LlIYj+wczNSsxnrnJGa9bHhZ6XqL3Ymkthf7MysVG3C+makJg+2xKxUfWC/RxL7wH6f larNWOeM1OTCFpmVqs1/APttVqp2Yb2jUpETW2jWLT1H3n0E1j0i8dzYYhlk/EOw/p5Er4EtuLKMfRh2 RySxa2GLrijjHord05LINbGFV5IxT8Hue5Sj18YWX0HGOxW79385cg/sAV4pYxXPxD7EK2Sc4hXYB3mm jFG8Evswz5DrixWwD3SmXFushH2oM+S6YkXsgx0p1xQrYx/uCKkvMmAfcI/UFpmwD7lF6oqM2AedkZoi M/ZhRyReXAH7wJHEiithH9rkeHFF7IN/l2PF1akPXxRFURRFURRFURRFURTFXfjz51+ntwAJHZvXfwAA AABJRU5ErkJggg== iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAZ1JREFUaEPtjgHOqjAQBr3/qbzZe6GZzyx1BH5ULAmTTKJ0ut3bxcXFsdzv939V Pp+DfvnI8djY4lWyMbGFTfKxsEWX5NoY2IJb5PpvscUiyabmJ9hCkeSBNZHkWGyRSPKEtZHkGGyBSPIS uxNJvos9HEka/f9Kf69K8h3swUjSePW9Upteks9iD0WSxtp5xdpI8hnsgUjSsPNI8oS1kxy/jw2PJA07 jySt4eeDvo0cv4cNjiQzlrq1b70k+7GhkUSxrn7bItf2Y0MjySK16++vybX92NBI8mdslkm+HxsaSXZj M6tk+7GhkaTR/zesqfN6SfZjQyNJ49X3ijX1Wy/JfmxoJGmsnU9YsyTX9mNDI0nDziPJuZcP1pjk72GD JzmesbWbsLZK9j42fJLjJ6yxvna9JJ/BHogkT9Qz6+u3XpLPYg9FEsX6Jbn2HezBSDLDuiW59l3s4Ugy wzqT/BhsgUgyw7oq2bHYIpHkgTWR5DfYQpFk3OWDLbZFro+BLbgk18bCFjXJx8QWrpKNjS0+yfE5OPXy Fxen53b7D1YCyYQqquMKAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAidJREFUaEPNklGOKyEMBHP/U+VmbwWvBhmnDfYso01J9RHcbidSXk/xfr//WXn+ fvwX9xL7TtQXjmTlO1BfMCPrf4f6UlZi3/e3Ul/CSuwDlbUSexZ12EpsidqzEjuPOnZJJI3quCRyHnXs kkgJ1dNkfB51zEpsi9q1EjuPOqYk/oHKKomfRx1byVpHzSNZOU90yL9XVPu99AlWh/xsJ2ud1ewomUM+ 4yU2kckcYXfIz1ey0lnNjhId8u9ZWf+7H/CUnDuPOqZU2er+I6hjXqLyB1z4mZfYWdQhK7FBda4k+jtU sZL4oDqPJF5HlWVkffkD/CwjqzlUwSWRbSbz5s1mQtSCldhAZe5I3YTKWYn9RwWsxELUTkbWQ9SOdRvq gQKqQ0k8jeq4DIfsllFdVmJlVFfz2EG1u5K1FGr/MnWYnhC1k5UKicp7S8fpHajMHakbqEzkR7haoFQd md5dps0b05v90B8MfraTtU5llpHVzvRuP/QHh59HEh/s5g2fURKdmOb2Q39w+Hkk8UF1Hkl8YprbD/0B /HtW1pc/wM8ystqZ3u2H/uACd1QdJ3qbvudI6WkrPzYVbIWN7HtW1n/VuwzRM6jOV7LSWc0afm4Nh+xO 3MkoiQ5284bPXG4Pst+pzHay1qnMvMRywcxb1ai34d+tRD5R4TtSN1CZu1IZo5YqUiNR+axU5FElK1nb onZXsnYfVWolVkZ1WYmd46kDvjff/Xr9AGYDf5yx3Td9AAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAXdJREFUaEPtj1EKgzAQBb3/qbxZS8lgFSfJbiu4hQ7Ml+89N8uVrOv6iEi8Fnbo SGp1sCNHUquDHTmSWh3syJHU6mBHjqRWAzswIvX7seMiUr+e7M8sH5G6ks1vWHEvsQ3LZGRmwzJ7iTlW qCjnnrFwRTn3iAUry9lvLFRZzm5Y4Bfk/P8DbpPzGxb4VCZPWPYbmW1YICtTU6yblakjFozKRBjbiMpE HyvNpBrGNmZSjWEDPamksa2eVHLYkEk8jW2ZxPPYmEk8jW2ZxPPYmEk8jW2ZxPPYmEk8jW2ZxHPYUE8q aWyrJ5UYNjCTahjbmEm1j5WiMhHGNqIyccSCWZmaYt2sTDUs8I3MnrDspzLZsMAvyPn/B9wm5zcsUFnO fmOhynL2EQtWlHPPWLiinOtYYS+xDctkZGbDMnuJjckWLR+R+gnLvuTz9djPIlK/HzsuIvUa2IEjqdXB jhxJrQ525EhqdbAjR1Krgx05klot7FCT+AUsyxOJu6CSUaL+ZAAAAABJRU5ErkJggg== iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAV5JREFUaEPtj2GugzAMg7n/qbjZnkBmqionbkneUqZ9kv8Q2zXbD8K+769eOK0J GzwixGtggyJC7Rt1v01fnC088z8/0Jd6QuSE3T2xzFl0l76MCdZhWIcnxOZhZa1guw3rZIJ9DlZ0CZY0 2ButYBuHlVyCJQzrtoTIOCklAvaGJUTGCBcMwt6xhIiGhQ/hnAp7xxIimlC4mkePP/i6H8DnZ9CPX+0H 5DZpKEbuk4Zi5D5pKEbuk4Zi3H3ucSHMneZhMcyd5mExzJ3mYTHcne5xAeQ+aShG7pOGYuQ+aShG7nOP xbTbVt3o8lXjfz/wSULjWdgSIqmwdw7hrGFhS4ikEn6HFVhCJI2UN1iJJUTCsO5DOM/BilrBlgZ74xIs c7AiJthvwzpbwTYPK/OE2DCsoxVs92GF/TdPZ0kD81hCJIZV2n/PFp6Jo4r7e1SozWPmgd47KsTX5VFj a9i2P941dR7atLRpAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAARhJREFUaEPtjwEOgzAMA/n/q/jZJqYEGSsrtLTFm3JSpBKn5LokSZJ8WNf15WWt 3wIf8JMPiR6wlcX6RPJbWawPS+cDZvO3D8CeNCyL39iXhUXxG/uysOi3sywuGUnjWRaXjKTxLItLRtJ4 lsUlI2nMvCcHC0ZnrK0vBctFojwjBctFojwjBctFojwjBctFojwjA4q5HJ4dnOHsMWqlaueH0irTeq87 dyTu3O1CD4Ee/2imx/Ie/2jmbDHKXZmzz3mUFnvGZfGBUjaUK1JcFh8oZUOpkaqZnYYvjpZjhmXxTikb Tmk5ZlgW75SyKZQEMDvLrTUflKgRab03hFqZ2vkpsFQkdmXmUSLBUtk1PSJZLBtLkiTZWJY3wD7ERWkV gHcAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL DAAACwwBP0AiyAAAAzNJREFUeF7t0Vlq7EAQBVHvf1Xe2Xs0XIzB0baGqlQpFQfuV3flpA9JkiRJkiRJ kiRJkiRJkiRJkiRJOu7z8/MfJT/fFu30Sn4WHedd8mR5NPu75Mnz0DG2JM+XRTNvSZ4/Ax1gT1JmOTTr nqRMb7T4kaTcMmjGI0m5vmjpo0nJy9FsR5OSPdHCZ5PSl6GZzial+6FlRyTly9EsI5LyvdCiI5M2ZWiG UUmLXmjR0Umr6aj36KRVH7TkjKTdNNRzRtKuD1pyVtJyOOo1K2nZBy05M2k7DPWYmbTtg5acnbQ+jWrP Tlr3QovOTlofRjVnJ637oWUrkva7Ua2KpH0/tGxVMsJmVKMqGaEnWrgqGeFP9LYqGaE3WrwqGeEtelOV jPAMdICqZIQf6L9VyQjPQoeoSkb4Qv+pSkZ4JjpIVTKCH/9qdJgnJOvrhQ7UOVlb39GhOibritDBOiVr 6jd0uA7JetqCDnjnZC3tQYe8Y7KOjqCD3ilZQ2fQYe+QjK8R6MArJ2NrJDr0ism4moEOvlIypmaiw6+Q jKcK9AGuTMZSJfoQVyTj6Ar0QSqTMXQV+iiVyRi6An2QK5JxVIk+xJXJWKpAH2CFZDzNRIdfKRlTM9DB V0zG1Uh06JWTsTUCHfgOyfg6gw57p2QNHUEHvWOyjvagQ945WUtb0AE7JOvpN3S4TsmaInSwjsm6+o4O 1TlZWy90oCck6z8bHaYqGWGJGR6JDlKVjPCF/lOVjPAsdIiqZIQf6L9VyQjPQAeoSkZ4i95UJSP0RotX JSP8id5WJSP0RAtXJSNsRjWqkhH6oWUrkva7Ua2KpH0/tOzspPVhVHN20roXWnR20vo0qj07ad0HLTkz aTsM9ZiZtO2DlpyVtByOes1KWvZBS85I2k1DPWck7fqgJUcnraaj3qOTVn3QkiOTNmVohlFJi35o2RFJ +XI0y4ikfD+07Nmk9GVoprNJ6Z5o4aNJycvRbEeTkn3R0keScsugGY8k5XqjxfckZZZDs+5JyjwDHWBL 8nxZNPOW5Pnz0DHeJU+WR7O/S56IjvNKfr6tjjtJkiRJkiRJkiRJkiRJkiRJkiRJutbHx3/Tz/m7tiVR ZAAAAABJRU5ErkJggg== 305, 51 AAABAAQAQEAAAAEAIAAoQgAARgAAADAwAAABACAAqCUAAG5CAAAgIAAAAQAgAKgQAAAWaAAAEBAAAAEA IABoBAAAvngAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tv62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/AAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// ///////////////////////////////////////////////////////////x/////////+D///////// wH////////+AP////////wAf///////+AA////////wAB///////+AAD///////wAAH//////+AAAP// ////wAAAf/////+AAAA//////wAAAB/////+AAAAD/////wAAAAH////+AAAAAP////wAAAAAf///+AA AAAA////wAAAAAB///+AAAAAAD///wAABAAAH///AAAOAAAP//8AAB8AAAf//4AAP4AAA///wAB/wAAB ///gAP/gAAD///AB//AAAH//+AP/+AAAP//8B//8AAAf//4P//4AAA///x///wAAB///v///gAAD//// ///AAAH//////+AAAP//////8AAAf//////4AAA///////wAAB///////gAAD///////AAAH//////+A AAP//////8AAAf//////4AAA///////wAAD///////gAAP///////AAB///////+AAP///////8AB/// /////4AP////////wB/////////gP/////////B/////////+P////////////////////////////// //////////////////////////////////8oAAAAMAAAAGAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t rXStra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0kra2t562trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t reOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t062t rWitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3bra2tGAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3bra2tGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62trf+tra3bra2tGAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tq62t rdOtra0YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tCK2trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2t rfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62treOtra0sAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t562trSwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3nra2tJAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t reOtra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t562trSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3nra2tJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUytra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////// /////////////////////j/////////8P/////////gP////////8Af////////gB////////8AB//// ////gAD///////8AAP///////gAAP//////8AAAf//////gAAB//////8AAAB//////gAAAD/////8AA AAP/////gAAAAP////8AAAAAf////wAAgAB/////AAHAAB////8AA+AAD////4AH8AAP////4A/4AAP/ ///gH/wAAf////A//gAB/////H//AAB////8//+AAD///////8AAP///////4AAP///////wAAf///// //gAB////////AAB///////+AAD///////8AAP///////4AA////////wAD////////gAf////////AD ////////+Af////////8D/////////4f/////////z////////////////////////////////////// ////////KAAAACAAAABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0Qra2tz62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tEK2t rc+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3vra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t762trTCtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62tre+tra0wAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62t rf+tra3/ra2t/62trf+tra3vra2tMAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra2fra2t/62trf+tra3/ra2t762trTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2fra2t/62tre+tra0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2tMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trc+tra0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3Pra2tEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD/////////////////j////wf///4D///8Af//+AD///AAf//gAD//wAAf/4AAD/8AAAf/AAAD/wAw Af+AeAD/wPwAf+H+AD/z/wAf//+AD///wAf//+AD///wAf//+AD///wA///+AP///wH///+D////x/// /////////////ygAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2rra2t/62trf+tra3/ra2t+62trZ+tra3/ra2t/62trf+tra3/ra2tjwAA AAAAAAAAAAAAAAAAAAAAAAAAra2tj62trf+tra3/ra2t+62trVQAAAAAra2tcK2trf+tra3/ra2t/62t rf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2t+62trVQAAAAAAAAAAAAAAACtra1wra2t/62t rf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAK2trTAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rXCtra3/ra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tcK2trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1wra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trXCtra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tcK2trf+tra2rra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Mra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//+sQfP/ rEHh/6xBwP+sQYB/rEEAP6xBAB+sQQQPrEGOB6xB3wOsQf+BrEH/wKxB/+CsQf/wrEH/+axB//+sQQ== 26 AAABAAQAQEAAAAEAIAAoQgAARgAAADAwAAABACAAqCUAAG5CAAAgIAAAAQAgAKgQAAAWaAAAEBAAAAEA IABoBAAAvngAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tv62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/AAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// ///////////////////////////////////////////////////////////x/////////+D///////// wH////////+AP////////wAf///////+AA////////wAB///////+AAD///////wAAH//////+AAAP// ////wAAAf/////+AAAA//////wAAAB/////+AAAAD/////wAAAAH////+AAAAAP////wAAAAAf///+AA AAAA////wAAAAAB///+AAAAAAD///wAABAAAH///AAAOAAAP//8AAB8AAAf//4AAP4AAA///wAB/wAAB ///gAP/gAAD///AB//AAAH//+AP/+AAAP//8B//8AAAf//4P//4AAA///x///wAAB///v///gAAD//// ///AAAH//////+AAAP//////8AAAf//////4AAA///////wAAB///////gAAD///////AAAH//////+A AAP//////8AAAf//////4AAA///////wAAD///////gAAP///////AAB///////+AAP///////8AB/// /////4AP////////wB/////////gP/////////B/////////+P////////////////////////////// //////////////////////////////////8oAAAAMAAAAGAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t rXStra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0kra2t562trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t reOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t062t rWitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3bra2tGAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3bra2tGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62trf+tra3bra2tGAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tq62t rdOtra0YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tCK2trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2t rfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62treOtra0sAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t562trSwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3nra2tJAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t reOtra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t562trSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3nra2tJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUytra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////// /////////////////////j/////////8P/////////gP////////8Af////////gB////////8AB//// ////gAD///////8AAP///////gAAP//////8AAAf//////gAAB//////8AAAB//////gAAAD/////8AA AAP/////gAAAAP////8AAAAAf////wAAgAB/////AAHAAB////8AA+AAD////4AH8AAP////4A/4AAP/ ///gH/wAAf////A//gAB/////H//AAB////8//+AAD///////8AAP///////4AAP///////wAAf///// //gAB////////AAB///////+AAD///////8AAP///////4AA////////wAD////////gAf////////AD ////////+Af////////8D/////////4f/////////z////////////////////////////////////// ////////KAAAACAAAABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0Qra2tz62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tEK2t rc+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3vra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t762trTCtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62tre+tra0wAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62t rf+tra3/ra2t/62trf+tra3vra2tMAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra2fra2t/62trf+tra3/ra2t762trTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2fra2t/62tre+tra0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2tMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trc+tra0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3Pra2tEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD/////////////////j////wf///4D///8Af//+AD///AAf//gAD//wAAf/4AAD/8AAAf/AAAD/wAw Af+AeAD/wPwAf+H+AD/z/wAf//+AD///wAf//+AD///wAf//+AD///wA///+AP///wH///+D////x/// /////////////ygAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2rra2t/62trf+tra3/ra2t+62trZ+tra3/ra2t/62trf+tra3/ra2tjwAA AAAAAAAAAAAAAAAAAAAAAAAAra2tj62trf+tra3/ra2t+62trVQAAAAAra2tcK2trf+tra3/ra2t/62t rf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2t+62trVQAAAAAAAAAAAAAAACtra1wra2t/62t rf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAK2trTAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rXCtra3/ra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tcK2trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1wra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trXCtra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tcK2trf+tra2rra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Mra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//+sQfP/ rEHh/6xBwP+sQYB/rEEAP6xBAB+sQQQPrEGOB6xB3wOsQf+BrEH/wKxB/+CsQf/wrEH/+axB//+sQQ== ================================================ FILE: Optimizer/Forms/SplashForm.Designer.cs ================================================  namespace Optimizer { partial class SplashForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SplashForm)); this.LoadingStatus = new System.Windows.Forms.Label(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); this.SuspendLayout(); // // LoadingStatus // this.LoadingStatus.Dock = System.Windows.Forms.DockStyle.Bottom; this.LoadingStatus.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.LoadingStatus.ForeColor = System.Drawing.Color.Silver; this.LoadingStatus.Location = new System.Drawing.Point(0, 215); this.LoadingStatus.Name = "LoadingStatus"; this.LoadingStatus.Size = new System.Drawing.Size(458, 43); this.LoadingStatus.TabIndex = 2; this.LoadingStatus.Text = "loading settings"; this.LoadingStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // pictureBox2 // this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox2.Image = global::Optimizer.Properties.Resources.banner; this.pictureBox2.Location = new System.Drawing.Point(0, 0); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(458, 258); this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox2.TabIndex = 1; this.pictureBox2.TabStop = false; // // SplashForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(458, 258); this.Controls.Add(this.LoadingStatus); this.Controls.Add(this.pictureBox2); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SplashForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.ResumeLayout(false); } #endregion internal System.Windows.Forms.Label LoadingStatus; private System.Windows.Forms.PictureBox pictureBox2; } } ================================================ FILE: Optimizer/Forms/SplashForm.cs ================================================ using System.Windows.Forms; namespace Optimizer { public sealed partial class SplashForm : Form { public SplashForm() { InitializeComponent(); this.DoubleBuffered = true; CheckForIllegalCrossThreadCalls = false; LoadingStatus.Font = FontHelper.Poppins15; pictureBox2.BackColor = OptionsHelper.CurrentOptions.Theme; } } } ================================================ FILE: Optimizer/Forms/SplashForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 AAABAAQAQEAAAAEAIAAoQgAARgAAADAwAAABACAAqCUAAG5CAAAgIAAAAQAgAKgQAAAWaAAAEBAAAAEA IABoBAAAvngAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tv62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tv62trf+tra3/ra2t/62trf+tra3/ra2tvwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rb+tra3/ra2tvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tvwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trb8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/AAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tQAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tQK2t rf+tra3/ra2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ara2t/62trf+tra3/ra2tQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUCtra3/ra2tQAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// ///////////////////////////////////////////////////////////x/////////+D///////// wH////////+AP////////wAf///////+AA////////wAB///////+AAD///////wAAH//////+AAAP// ////wAAAf/////+AAAA//////wAAAB/////+AAAAD/////wAAAAH////+AAAAAP////wAAAAAf///+AA AAAA////wAAAAAB///+AAAAAAD///wAABAAAH///AAAOAAAP//8AAB8AAAf//4AAP4AAA///wAB/wAAB ///gAP/gAAD///AB//AAAH//+AP/+AAAP//8B//8AAAf//4P//4AAA///x///wAAB///v///gAAD//// ///AAAH//////+AAAP//////8AAAf//////4AAA///////wAAB///////gAAD///////AAAH//////+A AAP//////8AAAf//////4AAA///////wAAD///////gAAP///////AAB///////+AAP///////8AB/// /////4AP////////wB/////////gP/////////B/////////+P////////////////////////////// //////////////////////////////////8oAAAAMAAAAGAAAAABACAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t rXStra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0kra2t562trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2treOtra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0kra2t562trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trSytra3nra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tLK2t reOtra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t062t rWitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2t562trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3bra2tGAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3bra2tGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tq62trf+tra3/ra2t/62trf+tra3/ra2t/62trdOtra0YAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tCK2traetra3/ra2t/62trf+tra3/ra2t062trRwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trQitra2rra2t/62trf+tra3bra2tGAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tq62t rdOtra0YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tq62trQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tCK2trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2t rfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62t rQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62traetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tq62trQgAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rVitra33ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t raetra0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62treOtra0sAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1Ura2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t562trSwAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tVK2trfetra3/ra2t/62trf+tra3/ra2t/62trf+tra3nra2tJAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trVitra33ra2t/62trf+tra3/ra2t/62t reOtra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Ura2t/62t rf+tra3/ra2t562trSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tVK2trfetra3nra2tJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trUytra0sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////// /////////////////////j/////////8P/////////gP////////8Af////////gB////////8AB//// ////gAD///////8AAP///////gAAP//////8AAAf//////gAAB//////8AAAB//////gAAAD/////8AA AAP/////gAAAAP////8AAAAAf////wAAgAB/////AAHAAB////8AA+AAD////4AH8AAP////4A/4AAP/ ///gH/wAAf////A//gAB/////H//AAB////8//+AAD///////8AAP///////4AAP///////wAAf///// //gAB////////AAB///////+AAD///////8AAP///////4AA////////wAD////////gAf////////AD ////////+Af////////8D/////////4f/////////z////////////////////////////////////// ////////KAAAACAAAABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra0Qra2tz62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tEK2t rc+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra0Qra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAra2tEK2trc+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trRCtra3Pra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3vra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tz62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t762trTCtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62tre+tra0wAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2fra2t/62t rf+tra3/ra2t/62trf+tra3vra2tMAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra2fra2t/62trf+tra3/ra2t762trTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2fra2t/62tre+tra0wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2tMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trf+tra3/ra2tnwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62t rf+tra3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62trf+tra3/ra2t/62t rf+tra3/ra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1gra2t/62t rf+tra3/ra2t/62trc+tra0QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AACtra1gra2t/62trf+tra3Pra2tEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1gra2tz62trRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAD/////////////////j////wf///4D///8Af//+AD///AAf//gAD//wAAf/4AAD/8AAAf/AAAD/wAw Af+AeAD/wPwAf+H+AD/z/wAf//+AD///wAf//+AD///wAf//+AD///wA///+AP///wH///+D////x/// /////////////ygAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra1cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAK2trQStra2rra2t/62trf+tra3/ra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra2rra2t/62trf+tra3/ra2t+62trZ+tra3/ra2t/62trf+tra3/ra2tjwAA AAAAAAAAAAAAAAAAAAAAAAAAra2tj62trf+tra3/ra2t+62trVQAAAAAra2tcK2trf+tra3/ra2t/62t rf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAACtra2Pra2t+62trVQAAAAAAAAAAAAAAACtra1wra2t/62t rf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAK2trTAAAAAAAAAAAAAAAAAAAAAAAAAAAK2t rXCtra3/ra2t/62trf+tra3/ra2tjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAra2tcK2trf+tra3/ra2t/62trf+tra2PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAACtra1wra2t/62trf+tra3/ra2t/62trY8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAK2trXCtra3/ra2t/62trf+tra2rAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAra2tcK2trf+tra2rra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtra1Mra2tBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//+sQfP/ rEHh/6xBwP+sQYB/rEEAP6xBAB+sQQQPrEGOB6xB3wOsQf+BrEH/wKxB/+CsQf/wrEH/+axB//+sQQ== ================================================ FILE: Optimizer/Forms/StartupPreviewForm.Designer.cs ================================================ namespace Optimizer { partial class StartupPreviewForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.listPreview = new MoonList(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.listPreview); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(757, 432); this.panel1.TabIndex = 0; // // listPreview // this.listPreview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listPreview.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listPreview.Dock = System.Windows.Forms.DockStyle.Fill; this.listPreview.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listPreview.ForeColor = System.Drawing.Color.White; this.listPreview.FormattingEnabled = true; this.listPreview.HorizontalScrollbar = true; this.listPreview.ItemHeight = 17; this.listPreview.Location = new System.Drawing.Point(0, 0); this.listPreview.Name = "listPreview"; this.listPreview.SelectionMode = System.Windows.Forms.SelectionMode.None; this.listPreview.Size = new System.Drawing.Size(757, 432); this.listPreview.TabIndex = 0; // // StartupPreviewForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(757, 432); this.Controls.Add(this.panel1); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "StartupPreviewForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Startup Items Preview"; this.Load += new System.EventHandler(this.StartupPreviewForm_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel panel1; private MoonList listPreview; } } ================================================ FILE: Optimizer/Forms/StartupPreviewForm.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class StartupPreviewForm : Form { string _token = string.Empty; public StartupPreviewForm(List items) { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; OptionsHelper.ApplyTheme(this); // translate UI elements if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate(); foreach (BackupStartupItem x in items) { if (File.Exists(SanitizePath(x.FileLocation))) { _token = "[✓] "; } else { _token = "[⚠] "; } listPreview.Items.Add(_token + x.Name + " - " + x.FileLocation); } } private void Translate() { this.Text = OptionsHelper.TranslationList["StartupPreviewForm"]; Dictionary translationList = OptionsHelper.TranslationList.ToObject>(); Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; element.Text = x.Value; } } private void StartupPreviewForm_Load(object sender, EventArgs e) { this.Focus(); } private string SanitizePath(string s) { s = s.Replace("\"", string.Empty); int i; while (s.Contains("/")) { i = s.LastIndexOf("/"); s = s.Substring(0, i); } i = s.IndexOf(".exe"); s = s.Substring(0, i + 4); return s.Trim(); } } } ================================================ FILE: Optimizer/Forms/StartupPreviewForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 True ================================================ FILE: Optimizer/Forms/StartupRestoreForm.Designer.cs ================================================ namespace Optimizer { partial class StartupRestoreForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.backupL = new System.Windows.Forms.Label(); this.listRestoreItems = new Optimizer.MoonList(); this.panel1 = new System.Windows.Forms.Panel(); this.txtNoBackups = new System.Windows.Forms.Label(); this.previewBackupB = new System.Windows.Forms.Button(); this.restoreBackupB = new System.Windows.Forms.Button(); this.deleteBackupB = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // backupL // this.backupL.AutoSize = true; this.backupL.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.backupL.ForeColor = System.Drawing.Color.DodgerBlue; this.backupL.Location = new System.Drawing.Point(7, 9); this.backupL.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.backupL.Name = "backupL"; this.backupL.Size = new System.Drawing.Size(254, 28); this.backupL.TabIndex = 4; this.backupL.Tag = "themeable"; this.backupL.Text = "Restore your startup items"; // // listRestoreItems // this.listRestoreItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.listRestoreItems.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listRestoreItems.Dock = System.Windows.Forms.DockStyle.Fill; this.listRestoreItems.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; this.listRestoreItems.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listRestoreItems.ForeColor = System.Drawing.Color.White; this.listRestoreItems.FormattingEnabled = true; this.listRestoreItems.ItemHeight = 21; this.listRestoreItems.Location = new System.Drawing.Point(0, 0); this.listRestoreItems.Name = "listRestoreItems"; this.listRestoreItems.Size = new System.Drawing.Size(364, 383); this.listRestoreItems.TabIndex = 5; this.listRestoreItems.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listRestoreItems_MouseDoubleClick); // // panel1 // this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.txtNoBackups); this.panel1.Controls.Add(this.listRestoreItems); this.panel1.Location = new System.Drawing.Point(12, 50); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(366, 385); this.panel1.TabIndex = 6; // // txtNoBackups // this.txtNoBackups.BackColor = System.Drawing.Color.Transparent; this.txtNoBackups.Dock = System.Windows.Forms.DockStyle.Fill; this.txtNoBackups.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtNoBackups.ForeColor = System.Drawing.Color.Gold; this.txtNoBackups.Location = new System.Drawing.Point(0, 0); this.txtNoBackups.Name = "txtNoBackups"; this.txtNoBackups.Size = new System.Drawing.Size(364, 383); this.txtNoBackups.TabIndex = 168; this.txtNoBackups.Text = "No backups found"; this.txtNoBackups.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.txtNoBackups.Visible = false; // // previewBackupB // this.previewBackupB.BackColor = System.Drawing.Color.DodgerBlue; this.previewBackupB.FlatAppearance.BorderSize = 0; this.previewBackupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.previewBackupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.previewBackupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.previewBackupB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.previewBackupB.ForeColor = System.Drawing.Color.White; this.previewBackupB.Location = new System.Drawing.Point(383, 50); this.previewBackupB.Margin = new System.Windows.Forms.Padding(2); this.previewBackupB.Name = "previewBackupB"; this.previewBackupB.Size = new System.Drawing.Size(209, 31); this.previewBackupB.TabIndex = 31; this.previewBackupB.Text = "Preview"; this.previewBackupB.UseVisualStyleBackColor = false; this.previewBackupB.Click += new System.EventHandler(this.button39_Click); // // restoreBackupB // this.restoreBackupB.BackColor = System.Drawing.Color.DodgerBlue; this.restoreBackupB.FlatAppearance.BorderSize = 0; this.restoreBackupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.restoreBackupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.restoreBackupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.restoreBackupB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.restoreBackupB.ForeColor = System.Drawing.Color.White; this.restoreBackupB.Location = new System.Drawing.Point(383, 85); this.restoreBackupB.Margin = new System.Windows.Forms.Padding(2); this.restoreBackupB.Name = "restoreBackupB"; this.restoreBackupB.Size = new System.Drawing.Size(209, 31); this.restoreBackupB.TabIndex = 32; this.restoreBackupB.Text = "Restore"; this.restoreBackupB.UseVisualStyleBackColor = false; this.restoreBackupB.Click += new System.EventHandler(this.button1_Click); // // deleteBackupB // this.deleteBackupB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.deleteBackupB.BackColor = System.Drawing.Color.DodgerBlue; this.deleteBackupB.FlatAppearance.BorderSize = 0; this.deleteBackupB.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.deleteBackupB.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.deleteBackupB.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.deleteBackupB.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.deleteBackupB.ForeColor = System.Drawing.Color.White; this.deleteBackupB.Location = new System.Drawing.Point(383, 404); this.deleteBackupB.Margin = new System.Windows.Forms.Padding(2); this.deleteBackupB.Name = "deleteBackupB"; this.deleteBackupB.Size = new System.Drawing.Size(209, 31); this.deleteBackupB.TabIndex = 33; this.deleteBackupB.Text = "Delete"; this.deleteBackupB.UseVisualStyleBackColor = false; this.deleteBackupB.Click += new System.EventHandler(this.button2_Click); // // StartupRestoreForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(603, 447); this.Controls.Add(this.deleteBackupB); this.Controls.Add(this.restoreBackupB); this.Controls.Add(this.previewBackupB); this.Controls.Add(this.panel1); this.Controls.Add(this.backupL); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.MaximizeBox = false; this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(552, 486); this.Name = "StartupRestoreForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Restore Startup Items"; this.Load += new System.EventHandler(this.StartupRestoreForm_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label backupL; private MoonList listRestoreItems; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Button previewBackupB; private System.Windows.Forms.Button restoreBackupB; private System.Windows.Forms.Button deleteBackupB; private System.Windows.Forms.Label txtNoBackups; } } ================================================ FILE: Optimizer/Forms/StartupRestoreForm.cs ================================================ using Microsoft.Win32; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Windows.Forms; namespace Optimizer { public sealed partial class StartupRestoreForm : Form { string[] _backups; public StartupRestoreForm() { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; OptionsHelper.ApplyTheme(this); // translate UI elements if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate(); RefreshBackups(); } private void RefreshBackups() { _backups = Directory.GetFiles(CoreHelper.StartupItemsBackupFolder, "*.json"); Array.Reverse(_backups); listRestoreItems.Items.Clear(); txtNoBackups.Visible = _backups.Length == 0; foreach (string x in _backups) { listRestoreItems.Items.Add(Path.GetFileNameWithoutExtension(x)); } if (_backups.Any()) listRestoreItems.SelectedIndex = 0; } private void Translate() { this.Text = OptionsHelper.TranslationList["StartupRestoreForm"]; Dictionary translationList = OptionsHelper.TranslationList.ToObject>(); Control element; foreach (var x in translationList) { if (x.Key == null || x.Key == string.Empty) continue; element = this.Controls.Find(x.Key, true).FirstOrDefault(); if (element == null) continue; element.Text = x.Value; } } private void StartupRestoreForm_Load(object sender, EventArgs e) { } // DeleteStartupBackup private void button2_Click(object sender, EventArgs e) { if (listRestoreItems.SelectedIndex > -1) { if (MessageBox.Show("Do you really want to delete this backup?", "Delete Backup?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { try { File.Delete(_backups[listRestoreItems.SelectedIndex]); } catch (Exception ex) { Logger.LogError("StartupRestoreForm.DeleteStartupBackup", ex.Message, ex.StackTrace); } RefreshBackups(); } } } private void ShowPreview() { if (listRestoreItems.SelectedIndex > -1) { List backup = JsonConvert.DeserializeObject>(File.ReadAllText(_backups[listRestoreItems.SelectedIndex])); StartupPreviewForm f = new StartupPreviewForm(backup); f.ShowDialog(this); } } private void button39_Click(object sender, EventArgs e) { ShowPreview(); } private void listRestoreItems_MouseDoubleClick(object sender, MouseEventArgs e) { ShowPreview(); } // RestoreStartupBackup private void button1_Click(object sender, EventArgs e) { if (listRestoreItems.SelectedIndex > -1) { List backup = JsonConvert.DeserializeObject>(File.ReadAllText(_backups[listRestoreItems.SelectedIndex])); string keyPath = string.Empty; RegistryKey hive = null; foreach (BackupStartupItem x in backup) { if (x.RegistryLocation == StartupItemLocation.HKLM.ToString()) { hive = Registry.LocalMachine; if (x.StartupType == StartupItemType.Run.ToString()) { keyPath = StartupHelper.LocalMachineRun; } else if (x.StartupType == StartupItemType.RunOnce.ToString()) { keyPath = StartupHelper.LocalMachineRunOnce; } } else if (x.RegistryLocation == StartupItemLocation.HKLMWoW.ToString()) { hive = Registry.LocalMachine; if (x.StartupType == StartupItemType.Run.ToString()) { keyPath = StartupHelper.LocalMachineRunWoW; } else if (x.StartupType == StartupItemType.RunOnce.ToString()) { keyPath = StartupHelper.LocalMachineRunOnceWow; } } else if (x.RegistryLocation == StartupItemLocation.HKCU.ToString()) { hive = Registry.CurrentUser; if (x.StartupType == StartupItemType.Run.ToString()) { keyPath = StartupHelper.CurrentUserRun; } else if (x.StartupType == StartupItemType.RunOnce.ToString()) { keyPath = StartupHelper.CurrentUserRunOnce; } } if (hive != null) { try { RegistryKey key = hive.OpenSubKey(keyPath, true); key.SetValue(x.Name, x.FileLocation, RegistryValueKind.String); } catch (Exception ex) { Logger.LogError("StartupRestoreForm.RestoreStartupBackup", ex.Message, ex.StackTrace); } } } this.Close(); } } } } ================================================ FILE: Optimizer/Forms/StartupRestoreForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/SubForm.Designer.cs ================================================ namespace Optimizer { partial class SubForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.txtInfo = new System.Windows.Forms.RichTextBox(); this.panel1 = new System.Windows.Forms.Panel(); this.btnStart = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // txtInfo // this.txtInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(25))))); this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtInfo.Cursor = System.Windows.Forms.Cursors.Arrow; this.txtInfo.DetectUrls = false; this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 10.5F, System.Drawing.FontStyle.Bold); this.txtInfo.ForeColor = System.Drawing.Color.White; this.txtInfo.Location = new System.Drawing.Point(11, 11); this.txtInfo.Name = "txtInfo"; this.txtInfo.ReadOnly = true; this.txtInfo.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical; this.txtInfo.ShortcutsEnabled = false; this.txtInfo.Size = new System.Drawing.Size(391, 321); this.txtInfo.TabIndex = 0; this.txtInfo.Text = ""; // // panel1 // this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.btnStart); this.panel1.Controls.Add(this.txtInfo); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(415, 345); this.panel1.TabIndex = 1; // // btnStart // this.btnStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(102)))), ((int)(((byte)(204))))); this.btnStart.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnStart.FlatAppearance.BorderColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatAppearance.BorderSize = 0; this.btnStart.FlatAppearance.MouseDownBackColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatAppearance.MouseOverBackColor = System.Drawing.Color.DarkOrchid; this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnStart.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnStart.ForeColor = System.Drawing.Color.White; this.btnStart.Location = new System.Drawing.Point(336, 301); this.btnStart.Margin = new System.Windows.Forms.Padding(2); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(67, 31); this.btnStart.TabIndex = 0; this.btnStart.Tag = "themeable"; this.btnStart.Text = "✓"; this.btnStart.UseVisualStyleBackColor = false; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // SubForm // this.AcceptButton = this.btnStart; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30))))); this.CancelButton = this.btnStart; this.ClientSize = new System.Drawing.Size(415, 345); this.ControlBox = false; this.Controls.Add(this.panel1); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SubForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Load += new System.EventHandler(this.SubForm_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.RichTextBox txtInfo; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Button btnStart; } } ================================================ FILE: Optimizer/Forms/SubForm.cs ================================================ using System; using System.Windows.Forms; namespace Optimizer { public sealed partial class SubForm : Form { public SubForm() { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; this.DoubleBuffered = true; OptionsHelper.ApplyTheme(this); btnStart.Focus(); btnStart.Select(); } internal void SetTip(string tip) { txtInfo.Text = tip; btnStart.Focus(); btnStart.Select(); } private void btnStart_Click(object sender, EventArgs e) { this.Close(); } private void SubForm_Load(object sender, EventArgs e) { OptionsHelper.ApplyTheme(this); } } } ================================================ FILE: Optimizer/Forms/SubForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/Forms/UpdateForm.Designer.cs ================================================  namespace Optimizer { partial class UpdateForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.txtMessage = new System.Windows.Forms.Label(); this.btnOK = new System.Windows.Forms.Button(); this.btnNo = new System.Windows.Forms.Button(); this.txtVersions = new System.Windows.Forms.Label(); this.txtChanges = new System.Windows.Forms.Label(); this.txtInfo = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // txtMessage // this.txtMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 11.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtMessage.ForeColor = System.Drawing.Color.DodgerBlue; this.txtMessage.Location = new System.Drawing.Point(11, 9); this.txtMessage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtMessage.Name = "txtMessage"; this.txtMessage.Size = new System.Drawing.Size(562, 60); this.txtMessage.TabIndex = 62; this.txtMessage.Tag = "themeable"; this.txtMessage.Text = "Message"; // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.BackColor = System.Drawing.Color.DodgerBlue; this.btnOK.FlatAppearance.BorderSize = 0; this.btnOK.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnOK.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnOK.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOK.ForeColor = System.Drawing.Color.White; this.btnOK.Location = new System.Drawing.Point(442, 464); this.btnOK.Margin = new System.Windows.Forms.Padding(2); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(131, 31); this.btnOK.TabIndex = 63; this.btnOK.Text = "Yes"; this.btnOK.UseVisualStyleBackColor = false; // // btnNo // this.btnNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNo.BackColor = System.Drawing.Color.DodgerBlue; this.btnNo.FlatAppearance.BorderSize = 0; this.btnNo.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue; this.btnNo.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue; this.btnNo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnNo.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNo.ForeColor = System.Drawing.Color.White; this.btnNo.Location = new System.Drawing.Point(307, 464); this.btnNo.Margin = new System.Windows.Forms.Padding(2); this.btnNo.Name = "btnNo"; this.btnNo.Size = new System.Drawing.Size(131, 31); this.btnNo.TabIndex = 64; this.btnNo.Text = "No"; this.btnNo.UseVisualStyleBackColor = false; // // txtVersions // this.txtVersions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtVersions.Font = new System.Drawing.Font("Segoe UI Semibold", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtVersions.ForeColor = System.Drawing.Color.White; this.txtVersions.Location = new System.Drawing.Point(11, 80); this.txtVersions.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtVersions.Name = "txtVersions"; this.txtVersions.Size = new System.Drawing.Size(562, 39); this.txtVersions.TabIndex = 66; this.txtVersions.Tag = ""; this.txtVersions.Text = "-"; this.txtVersions.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // txtChanges // this.txtChanges.AutoSize = true; this.txtChanges.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtChanges.ForeColor = System.Drawing.Color.DodgerBlue; this.txtChanges.Location = new System.Drawing.Point(11, 135); this.txtChanges.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.txtChanges.Name = "txtChanges"; this.txtChanges.Size = new System.Drawing.Size(102, 20); this.txtChanges.TabIndex = 67; this.txtChanges.Tag = "themeable"; this.txtChanges.Text = "View changes"; // // txtInfo // this.txtInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.txtInfo.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtInfo.Font = new System.Drawing.Font("Segoe UI Semibold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtInfo.ForeColor = System.Drawing.Color.White; this.txtInfo.Location = new System.Drawing.Point(15, 168); this.txtInfo.Margin = new System.Windows.Forms.Padding(2); this.txtInfo.Multiline = true; this.txtInfo.Name = "txtInfo"; this.txtInfo.ReadOnly = true; this.txtInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtInfo.Size = new System.Drawing.Size(558, 280); this.txtInfo.TabIndex = 68; this.txtInfo.Text = "Integrator InfoBox"; // // UpdateForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); this.ClientSize = new System.Drawing.Size(584, 506); this.Controls.Add(this.txtInfo); this.Controls.Add(this.txtChanges); this.Controls.Add(this.txtVersions); this.Controls.Add(this.btnNo); this.Controls.Add(this.btnOK); this.Controls.Add(this.txtMessage); this.DoubleBuffered = true; this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ForeColor = System.Drawing.Color.White; this.MinimizeBox = false; this.Name = "UpdateForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Load += new System.EventHandler(this.UpdateForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label txtMessage; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnNo; private System.Windows.Forms.Label txtVersions; private System.Windows.Forms.Label txtChanges; private System.Windows.Forms.TextBox txtInfo; } } ================================================ FILE: Optimizer/Forms/UpdateForm.cs ================================================ using System; using System.Drawing; using System.Windows.Forms; namespace Optimizer { public sealed partial class UpdateForm : Form { public UpdateForm(string message, bool newUpdate, string changelog, string latestVersion) { InitializeComponent(); CheckForIllegalCrossThreadCalls = false; OptionsHelper.ApplyTheme(this); txtMessage.Text = message; if (newUpdate) { this.Size = new Size(600, 545); btnOK.Text = OptionsHelper.TranslationList["btnYes"].ToString(); btnNo.Text = OptionsHelper.TranslationList["btnNo"].ToString(); btnNo.Visible = true; txtChanges.Text = OptionsHelper.TranslationList["btnChangelog"].ToString(); txtVersions.Text = $"{Program.GetCurrentVersionTostring()} → {latestVersion}"; txtVersions.Visible = true; btnOK.DialogResult = DialogResult.Yes; btnNo.DialogResult = DialogResult.No; txtInfo.Text = changelog; txtInfo.Visible = true; txtChanges.Visible = true; } else { this.Size = new Size(600, 188); btnOK.Text = OptionsHelper.TranslationList["btnAbout"].ToString(); btnNo.Visible = false; txtVersions.Visible = false; btnOK.DialogResult = DialogResult.OK; txtInfo.Visible = false; txtChanges.Visible = false; } } private void UpdateForm_Load(object sender, EventArgs e) { } } } ================================================ FILE: Optimizer/Forms/UpdateForm.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ================================================ FILE: Optimizer/HostsHelper.cs ================================================ using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Windows.Forms; namespace Optimizer { internal static class HostsHelper { internal static string NewLine = Environment.NewLine; internal static readonly string HostsFile = CleanHelper.System32Folder + "\\drivers\\etc\\hosts"; internal static void RestoreDefaultHosts() { try { if (File.Exists(HostsFile)) { File.Delete(HostsFile); } File.WriteAllBytes(HostsFile, Properties.Resources.hosts); } catch (Exception ex) { Logger.LogError("HostsHelper.RestoreDefaultHosts", ex.Message, ex.StackTrace); MessageBox.Show(OptionsHelper.TranslationList("dnsCacheM").ToString(), "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); } } internal static string[] ReadHosts() { StringBuilder sb = new StringBuilder(); try { using (StreamReader sr = File.OpenText(HostsFile)) { sb.Append(sr.ReadToEnd()); } } catch (Exception ex) { Logger.LogError("HostsHelper.ReadHosts", ex.Message, ex.StackTrace); } return sb.ToString().Split(Environment.NewLine.ToCharArray()); //return File.ReadAllLines(HostsFile); } internal static string ReadHostsFast() { StringBuilder sb = new StringBuilder(); try { using (StreamReader sr = File.OpenText(HostsFile)) { sb.Append(sr.ReadToEnd()); } } catch (Exception ex) { Logger.LogError("HostsHelper.ReadHostsFast", ex.Message, ex.StackTrace); } return sb.ToString(); } internal static void LocateHosts() { Utilities.FindFile(HostsFile); } internal static void SaveHosts(string[] lines) { for (int i = 0; i < lines.Length; i++) { if (!lines[i].StartsWith("#") && (!string.IsNullOrEmpty(lines[i]))) { lines[i] = SanitizeEntry(lines[i]); } } try { File.WriteAllText(HostsFile, string.Empty); File.WriteAllLines(HostsFile, lines); } catch (Exception ex) { Logger.LogError("HostsHelper.SaveHosts", ex.Message, ex.StackTrace); MessageBox.Show(OptionsHelper.TranslationList("dnsCacheM").ToString(), "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); } } internal static List GetHostsEntries() { List entries = new List(); //string[] lines = File.ReadAllLines(HostsFile); string[] lines = ReadHosts(); foreach (string line in lines) { if (!line.StartsWith("#") && (!string.IsNullOrEmpty(line))) { entries.Add(line.Replace(" ", " : ")); } } return entries; } internal static void AddEntry(string entry) { try { File.AppendAllText(HostsFile, NewLine + $"{entry}"); } catch (Exception ex) { Logger.LogError("HostsHelper.AddEntry", ex.Message, ex.StackTrace); MessageBox.Show(OptionsHelper.TranslationList("dnsCacheM").ToString(), "DNS Cache is running", MessageBoxButtons.OK, MessageBoxIcon.Information); } } internal static void RemoveEntry(string entry) { try { File.WriteAllLines(HostsFile, File.ReadLines(HostsFile).Where(x => x != entry).ToList()); } catch (Exception ex) { Logger.LogError("HostsHelper.RemoveEntry", ex.Message, ex.StackTrace); MessageBox.Show(OptionsHelper.TranslationList("dnsCacheM").ToString(), "DNS Cache is running", MessageBoxButtons.OK, MessageBoxIcon.Information); } } internal static void RemoveEntryFromTemplate(string domain) { try { File.WriteAllLines(HostsFile, File.ReadLines(HostsFile).Where(x => !x.Contains(domain)).ToList()); } catch (Exception ex) { Logger.LogError("HostsHelper.RemoveEntryFromTemplate", ex.Message, ex.StackTrace); } } internal static void RemoveAllEntries(List collection) { try { foreach (string text in collection) { File.WriteAllLines(HostsFile, File.ReadLines(HostsFile).Where(l => l != text).ToList()); } } catch (Exception ex) { Logger.LogError("HostsHelper.RemoveAllEntries", ex.Message, ex.StackTrace); MessageBox.Show(OptionsHelper.TranslationList("dnsCacheM").ToString(), "DNS Cache is running", MessageBoxButtons.OK, MessageBoxIcon.Information); } } internal static string SanitizeEntry(string entry) { // remove multiple white spaces and keep only one return Regex.Replace(entry, @"\s{2,}", " "); } internal static bool GetReadOnly() { try { return new FileInfo(HostsFile).IsReadOnly; } catch (Exception ex) { Logger.LogError("HostsHelper.ReadOnly", ex.Message, ex.StackTrace); return false; } } internal static void ReadOnly(bool enable) { try { FileInfo fi = new FileInfo(HostsFile); fi.IsReadOnly = enable; } catch (Exception ex) { Logger.LogError("HostsHelper.ReadOnly", ex.Message, ex.StackTrace); } } } } ================================================ FILE: Optimizer/IndiciumHelper.cs ================================================ using Microsoft.Win32; using System; using System.Collections.Generic; using System.Management; namespace Optimizer { public static class IndiciumHelper { public static List Volumes = new List(); public static List Opticals = new List(); public static List Removables = new List(); public static List PhysicalAdapters = new List(); public static List VirtualAdapters = new List(); public static List Keyboards = new List(); public static List PointingDevices = new List(); public static List GetCPUs() { List CPUs = new List(); CPU cpu; try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Processor"); foreach (ManagementObject mo in searcher.Get()) { cpu = new CPU(); cpu.Name = Convert.ToString(mo.Properties["Name"].Value); cpu.L2CacheSize = ByteSize.FromKiloBytes(Convert.ToDouble(mo.Properties["L2CacheSize"].Value)); cpu.L3CacheSize = ByteSize.FromKiloBytes(Convert.ToDouble(mo.Properties["L3CacheSize"].Value)); cpu.Cores = Convert.ToUInt32(mo.Properties["NumberOfCores"].Value); // ThreadCount is for Windows 10+ //cpu.Threads = Convert.ToUInt32(mo.Properties["ThreadCount"].Value); cpu.LogicalCpus = Convert.ToUInt32(mo.Properties["NumberOfLogicalProcessors"].Value); if (Utilities.CurrentWindowsVersion != WindowsVersion.Windows7) { bool temp = Convert.ToBoolean(mo.Properties["VirtualizationFirmwareEnabled"].Value); cpu.Virtualization = (temp) ? "Yes" : "No"; } else { cpu.Virtualization = "-"; } cpu.Stepping = Convert.ToString(mo.Properties["Description"].Value); cpu.Revision = Convert.ToString(mo.Properties["Revision"].Value); try { ManagementObjectSearcher searcher2 = new ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem"); foreach (ManagementObject mo2 in searcher2.Get()) { bool temp2 = Convert.ToBoolean(mo2.Properties["DataExecutionPrevention_Available"].Value); cpu.DataExecutionPrevention = (temp2) ? "Yes" : "No"; } } catch { cpu.DataExecutionPrevention = "-"; } if (string.IsNullOrEmpty(cpu.Name)) cpu.Name = GetCPUNameAlternative(); CPUs.Add(cpu); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetCPUs", ex.Message, ex.StackTrace); } return CPUs; } private static string GetCPUNameAlternative() { using (RegistryKey key = Registry.LocalMachine.OpenSubKey(@"HARDWARE\DESCRIPTION\System\CentralProcessor\0", false)) { return key.GetValue("ProcessorNameString").ToString(); } } public static VirtualMemory GetVM() { VirtualMemory vm = new VirtualMemory(); try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem"); foreach (ManagementObject mo in searcher.Get()) { vm.TotalVirtualMemory = ByteSize.FromKiloBytes(Convert.ToUInt64(mo.Properties["TotalVirtualMemorySize"].Value)); vm.AvailableVirtualMemory = ByteSize.FromKiloBytes(Convert.ToUInt64(mo.Properties["FreeVirtualMemory"].Value)); vm.UsedVirtualMemory = vm.TotalVirtualMemory.Subtract(vm.AvailableVirtualMemory); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetVM", ex.Message, ex.StackTrace); } return vm; } public static List GetRAM() { List modules = new List(); RAM module; try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PhysicalMemory"); foreach (ManagementObject mo in searcher.Get()) { module = new RAM(); module.BankLabel = Convert.ToString(mo.Properties["BankLabel"].Value); module.Capacity = ByteSize.FromBytes(Convert.ToDouble(mo.Properties["Capacity"].Value)); module.Manufacturer = Convert.ToString(mo.Properties["Manufacturer"].Value); module.Speed = Convert.ToUInt32(mo.Properties["Speed"].Value); UInt16 memorytype = Convert.ToUInt16(mo.Properties["MemoryType"].Value); UInt16 formfactor = Convert.ToUInt16(mo.Properties["FormFactor"].Value); module.MemoryType = SanitizeMemoryType(memorytype); module.FormFactor = SanitizeFormFactor(formfactor); modules.Add(module); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetRAM", ex.Message, ex.StackTrace); } return modules; } public static List GetMotherboards() { List mobos = new List(); try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_BaseBoard"); foreach (ManagementObject mo in searcher.Get()) { Motherboard mobo = new Motherboard(); mobo.Model = Convert.ToString(mo.Properties["Model"].Value); mobo.Manufacturer = Convert.ToString(mo.Properties["Manufacturer"].Value); mobo.Product = Convert.ToString(mo.Properties["Product"].Value); mobo.Version = Convert.ToString(mo.Properties["Version"].Value); try { ManagementObjectSearcher searcher2 = new ManagementObjectSearcher("SELECT * FROM Win32_IDEController"); foreach (ManagementObject mo2 in searcher2.Get()) { mobo.Chipset = Convert.ToString(mo2.Properties["Description"].Value); } } catch { } try { ManagementObjectSearcher searcher3 = new ManagementObjectSearcher("SELECT * FROM Win32_IDEController"); foreach (ManagementObject mo3 in searcher3.Get()) { mobo.Revision = Convert.ToString(mo3.Properties["RevisionNumber"].Value); } } catch { } try { ManagementObjectSearcher searcher4 = new ManagementObjectSearcher("SELECT * FROM Win32_ComputerSystem"); foreach (ManagementObject mo4 in searcher4.Get()) { mobo.SystemModel = Convert.ToString(mo4.Properties["Model"].Value); } } catch { } ManagementObjectSearcher searcher5 = new ManagementObjectSearcher("SELECT * FROM Win32_BIOS"); foreach (ManagementObject mo5 in searcher5.Get()) { mobo.BIOSName = Convert.ToString(mo5.Properties["Name"].Value); mobo.BIOSManufacturer = Convert.ToString(mo5.Properties["Manufacturer"].Value); mobo.BIOSVersion = Convert.ToString(mo5.Properties["Version"].Value); mobo.BIOSBuildNumber = Convert.ToString(mo5.Properties["BuildNumber"].Value); //ReleaseDate = DateTime.Parse(mo.Properties["ReleaseDate"].Value.ToString()); } mobos.Add(mobo); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetMotherboards", ex.Message, ex.StackTrace); } return mobos; } public static List GetDisks() { List disks = new List(); try { ManagementObjectSearcher searcher2 = new ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive"); foreach (ManagementObject mo2 in searcher2.Get()) { Disk disk = new Disk(); disk.Model = Convert.ToString(mo2.Properties["Model"].Value); disk.BytesPerSector = Convert.ToUInt32(mo2.Properties["BytesPerSector"].Value); disk.FirmwareRevision = Convert.ToString(mo2.Properties["FirmwareRevision"].Value); disk.MediaType = Convert.ToString(mo2.Properties["MediaType"].Value); disk.Capacity = ByteSize.FromBytes(Convert.ToDouble(mo2.Properties["Size"].Value)); disks.Add(disk); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetDisks", ex.Message, ex.StackTrace); } return disks; } public static void GetVolumes() { try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Volume"); foreach (ManagementObject mo in searcher.Get()) { Volume volume = new Volume(); volume.BlockSize = Convert.ToUInt64(mo.Properties["BlockSize"].Value); volume.Capacity = ByteSize.FromBytes(Convert.ToDouble(mo.Properties["Capacity"].Value)); bool temp = Convert.ToBoolean(mo.Properties["Compressed"].Value); volume.Compressed = (temp) ? "Yes" : "No"; volume.DriveLetter = Convert.ToString(mo.Properties["DriveLetter"].Value); UInt32 i = Convert.ToUInt32(mo.Properties["DriveType"].Value); volume.DriveType = SanitizeDriveType(i); volume.FileSystem = Convert.ToString(mo.Properties["FileSystem"].Value); volume.FreeSpace = ByteSize.FromBytes(Convert.ToDouble(mo.Properties["FreeSpace"].Value)); volume.UsedSpace = volume.Capacity.Subtract(volume.FreeSpace); bool temp2 = Convert.ToBoolean(mo.Properties["IndexingEnabled"].Value); volume.Indexing = (temp2) ? "Yes" : "No"; volume.Label = Convert.ToString(mo.Properties["Label"].Value); if (i == 2) { Removables.Add(volume); } else if (i == 5) { Opticals.Add(volume); } else { Volumes.Add(volume); } } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetVolumes", ex.Message, ex.StackTrace); } } public static void GetPeripherals() { try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Keyboard"); foreach (ManagementObject mo in searcher.Get()) { Keyboard keyboard = new Keyboard(); keyboard.Name = Convert.ToString(mo.Properties["Description"].Value); keyboard.Layout = Convert.ToString(mo.Properties["Layout"].Value); keyboard.Status = Convert.ToString(mo.Properties["Status"].Value); keyboard.FunctionKeys = Convert.ToUInt16(mo.Properties["NumberOfFunctionKeys"].Value); bool temp = Convert.ToBoolean(mo.Properties["IsLocked"].Value); keyboard.Locked = (temp) ? "Yes" : "No"; Keyboards.Add(keyboard); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetKeyboards", ex.Message, ex.StackTrace); } try { ManagementObjectSearcher searcher2 = new ManagementObjectSearcher("SELECT * FROM Win32_PointingDevice"); foreach (ManagementObject mo2 in searcher2.Get()) { PointingDevice pointingDevice = new PointingDevice(); pointingDevice.Name = Convert.ToString(mo2.Properties["Description"].Value); pointingDevice.Manufacturer = Convert.ToString(mo2.Properties["Manufacturer"].Value); pointingDevice.Status = Convert.ToString(mo2.Properties["Status"].Value); pointingDevice.Buttons = Convert.ToUInt16(mo2.Properties["NumberOfButtons"].Value); bool temp = Convert.ToBoolean(mo2.Properties["IsLocked"].Value); pointingDevice.Locked = (temp) ? "Yes" : "No"; pointingDevice.HardwareType = Convert.ToString(mo2.Properties["HardwareType"].Value); UInt16 i = Convert.ToUInt16(mo2.Properties["PointingType"].Value); pointingDevice.PointingType = SanitizePointingType(i); UInt16 i2 = Convert.ToUInt16(mo2.Properties["DeviceInterface"].Value); pointingDevice.DeviceInterface = SanitizeDeviceInterface(i2); PointingDevices.Add(pointingDevice); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetPointingDevices", ex.Message, ex.StackTrace); } } public static List GetGPUs() { List GPUs = new List(); try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_VideoController"); foreach (ManagementObject mo in searcher.Get()) { GPU gpu = new GPU(); gpu.Name = Convert.ToString(mo.Properties["Name"].Value); gpu.Memory = ByteSize.FromBytes(Convert.ToDouble(mo.Properties["AdapterRAM"].Value)); gpu.ResolutionX = Convert.ToUInt32(mo.Properties["CurrentHorizontalResolution"].Value); gpu.ResolutionY = Convert.ToUInt32(mo.Properties["CurrentVerticalResolution"].Value); gpu.RefreshRate = Convert.ToUInt32(mo.Properties["CurrentRefreshRate"].Value); gpu.DACType = Convert.ToString(mo.Properties["AdapterDACType"].Value); UInt16 vtype = Convert.ToUInt16(mo.Properties["VideoMemoryType"].Value); gpu.VideoMemoryType = SanitizeVideoMemoryType(vtype); GPUs.Add(gpu); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetGPUs", ex.Message, ex.StackTrace); } return GPUs; } public static void GetNetworkAdapters() { try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter"); foreach (ManagementObject mo in searcher.Get()) { NetworkDevice adapter = new NetworkDevice(); adapter.AdapterType = Convert.ToString(mo.Properties["AdapterType"].Value); adapter.Manufacturer = Convert.ToString(mo.Properties["Manufacturer"].Value); adapter.ProductName = Convert.ToString(mo.Properties["ProductName"].Value); bool temp = Convert.ToBoolean(mo.Properties["PhysicalAdapter"].Value); adapter.PhysicalAdapter = (temp) ? "Yes" : "No"; adapter.MacAddress = Convert.ToString(mo.Properties["MacAddress"].Value); adapter.ServiceName = Convert.ToString(mo.Properties["ServiceName"].Value); if (temp) { PhysicalAdapters.Add(adapter); } else { VirtualAdapters.Add(adapter); } } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetNetworkAdapters", ex.Message, ex.StackTrace); } } public static List GetAudioDevices() { List audioDevices = new List(); try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_SoundDevice"); foreach (ManagementObject mo in searcher.Get()) { AudioDevice device = new AudioDevice(); device.ProductName = Convert.ToString(mo.Properties["ProductName"].Value); device.Manufacturer = Convert.ToString(mo.Properties["Manufacturer"].Value); device.Status = Convert.ToString(mo.Properties["Status"].Value); audioDevices.Add(device); } } catch (Exception ex) { Logger.LogError("IndiciumHelper.GetAudioDevices", ex.Message, ex.StackTrace); } return audioDevices; } private static string SanitizeDriveType(UInt32 i) { string result = string.Empty; switch (i) { case 0: result = "Unknown"; break; case 1: result = "No Root Directory"; break; case 2: result = "Removable Disk"; break; case 3: result = "Local Disk"; break; case 4: result = "Network Drive"; break; case 5: result = "Compact Disk"; break; case 6: result = "RAM Disk"; break; } return result; } private static string SanitizeVideoMemoryType(UInt16 i) { string result = string.Empty; switch (i) { case 1: result = "Other"; break; case 2: result = "Unknown"; break; case 3: result = "VRAM"; break; case 4: result = "DRAM"; break; case 5: result = "SRAM"; break; case 6: result = "WRAM"; break; case 7: result = "EDO RAM"; break; case 8: result = "Burst Synchronous DRAM"; break; case 9: result = "Pipelined Burst SRAM"; break; case 10: result = "CDRAM"; break; case 11: result = "3DRAM"; break; case 12: result = "SDRAM"; break; case 13: result = "SGRAM"; break; } return result; } private static string SanitizeFormFactor(UInt16 i) { string result = string.Empty; switch (i) { case 0: result = "Unknown"; break; case 1: result = "Other"; break; case 2: result = "SIP"; break; case 3: result = "DIP"; break; case 4: result = "ZIP"; break; case 5: result = "SOJ"; break; case 6: result = "Proprietary"; break; case 7: result = "SIMM"; break; case 8: result = "DIMM"; break; case 9: result = "TSOP"; break; case 10: result = "PGA"; break; case 11: result = "RIMM"; break; case 12: result = "SODIMM"; break; case 13: result = "SRIMM"; break; case 14: result = "SMD"; break; case 15: result = "SSMP"; break; case 16: result = "QFP"; break; case 17: result = "TQFP"; break; case 18: result = "SOIC"; break; case 19: result = "LCC"; break; case 20: result = "PLCC"; break; case 21: result = "BGA"; break; case 22: result = "FPBGA"; break; case 23: result = "LGA"; break; } return result; } private static string SanitizeMemoryType(UInt16 i) { string result = string.Empty; switch (i) { case 0: result = "Unknown"; break; case 1: result = "Other"; break; case 2: result = "DRAM"; break; case 3: result = "Synchonous DRAM"; break; case 4: result = "Cache DRAM"; break; case 5: result = "EDO"; break; case 6: result = "EDRAM"; break; case 7: result = "VRAM"; break; case 8: result = "SRAM"; break; case 9: result = "RAM"; break; case 10: result = "ROM"; break; case 11: result = "Flash"; break; case 12: result = "EEPROM"; break; case 13: result = "FEPROM"; break; case 14: result = "EPROM"; break; case 15: result = "CDRAM"; break; case 16: result = "3DRAM"; break; case 17: result = "SDRAM"; break; case 18: result = "SGRAM"; break; case 19: result = "RDRAM"; break; case 20: result = "DDR"; break; case 21: result = "DDR2"; break; case 22: result = "DDR2 FB-DIMM"; break; case 24: result = "DDR3"; break; case 25: result = "FBD2"; break; } return result; } private static string SanitizeDeviceInterface(UInt16 i) { string result = string.Empty; switch (i) { case 1: result = "Other"; break; case 2: result = "Unknown"; break; case 3: result = "Serial"; break; case 4: result = "PS/2"; break; case 5: result = "Infrared"; break; case 6: result = "HP-HIL"; break; case 7: result = "Bus mouse"; break; case 8: result = "ADB (Apple Desktop Bus)"; break; case 160: result = "Bus mouse DB-9"; break; case 161: result = "Bus mouse micro-DIN"; break; case 162: result = "USB"; break; } return result; } private static string SanitizePointingType(UInt16 i) { string result = string.Empty; switch (i) { case 1: result = "Other"; break; case 2: result = "Unknown"; break; case 3: result = "Mouse"; break; case 4: result = "Track Ball"; break; case 5: result = "Track Point"; break; case 6: result = "Glide Point"; break; case 7: result = "Touch Pad"; break; case 8: result = "Touch Screen"; break; case 9: result = "Mouse - Optical Sensor"; break; } return result; } } } ================================================ FILE: Optimizer/IntegratorHelper.cs ================================================ using Microsoft.Win32; using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Net; using System.Runtime.InteropServices; using System.Windows.Forms; namespace Optimizer { public static class IntegratorHelper { internal static string FolderDefaultIcon = @"%systemroot%\system32\imageres.dll,-112"; internal static void CreateCustomCommand(string file, string keyword) { if (!keyword.EndsWith(".exe")) { keyword = keyword + ".exe"; } string key = @"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\" + keyword; Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\" + keyword); Registry.SetValue(key, "", file); Registry.SetValue(key, "Path", file.Substring(0, file.LastIndexOf("\\"))); } internal static List GetCustomCommands() { List items = new List(); using (RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\")) { foreach (string command in key.GetSubKeyNames()) { items.Add(command); } } return items; } internal static void DeleteCustomCommand(string command) { Registry.LocalMachine.DeleteSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\" + command, false); } private static void CreateDefaultCommand(string itemName) { using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell\" + itemName, true)) { key.CreateSubKey("command", RegistryKeyPermissionCheck.Default); } } internal static List GetDesktopItems() { List items = new List(); using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell", false)) { foreach (string item in key.GetSubKeyNames()) { // filter the list, so the default items will not be visible if (item.Contains("Gadgets")) continue; if (item.Contains("Display")) continue; if (item.Contains("Personalize")) continue; items.Add(item); } } return items; } internal static void RemoveItem(string name) { try { using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell", true)) { try { key.DeleteSubKeyTree(name, false); } catch (Exception ex) { Logger.LogError("Integrator.RemoveItem", ex.Message, ex.StackTrace); } } } catch (Exception ex) { Logger.LogError("Integrator.RemoveItem", ex.Message, ex.StackTrace); } } internal static bool DesktopItemExists(string name) { try { return Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell\" + name, false) != null; } catch (Exception ex) { Logger.LogError("Integrator.ItemExists", ex.Message, ex.StackTrace); return false; } } internal static bool TakeOwnershipExists() { try { return Registry.ClassesRoot.OpenSubKey(@"*\shell\runas", false).GetValue("").ToString() == "Take Ownership"; } catch (Exception ex) { Logger.LogError("Integrator.TakeOwnershipExists", ex.Message, ex.StackTrace); return false; } } internal static bool OpenWithCMDExists() { try { return Registry.ClassesRoot.OpenSubKey(@"Directory\shell\OpenWithCMD", false) != null; } catch (Exception ex) { Logger.LogError("Integrator.OpenWithCMDExists", ex.Message, ex.StackTrace); return false; } } internal static void RemoveAllItems(List items) { using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell", true)) { foreach (string item in items) { try { key.DeleteSubKeyTree(item, false); } catch (Exception ex) { Logger.LogError("Integrator.RemoveAllItems", ex.Message, ex.StackTrace); } } } } internal static string ExtractIconFromExecutable(string itemName, string fileName) { string iconPath = string.Empty; if (File.Exists(fileName)) { Icon ico = Icon.ExtractAssociatedIcon(fileName); Clipboard.SetImage(ico.ToBitmap()); Clipboard.GetImage().Save(CoreHelper.ExtractedIconsFolder + itemName + ".ico", ImageFormat.Bmp); Clipboard.Clear(); iconPath = CoreHelper.ExtractedIconsFolder + itemName + ".ico"; } return iconPath; } internal static string DownloadFavicon(string link, string name) { string favicon = string.Empty; try { Uri url = new Uri(link); if (url.HostNameType == UriHostNameType.Dns) { Image.FromStream(((HttpWebResponse)WebRequest.Create("http://" + url.Host + "/favicon.ico").GetResponse()).GetResponseStream()).Save(CoreHelper.FavIconsFolder + name + ".ico", ImageFormat.Bmp); favicon = CoreHelper.FavIconsFolder + name + ".ico"; } } catch (Exception ex) { Logger.LogError("Integrator.DownloadFavicon", ex.Message, ex.StackTrace); } return favicon; } internal static void AddItem(string name, string item, string icon, DesktopTypePosition position, bool shift, DesktopItemType type) { using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell", true)) { key.CreateSubKey(name, RegistryKeyPermissionCheck.Default); } CreateDefaultCommand(name); if (shift) { Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name, "Extended", ""); } else { using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"DesktopBackground\Shell\" + name, true)) { key.CreateSubKey(name, RegistryKeyPermissionCheck.Default); } } Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name, "Icon", icon); Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name, "Position", position.ToString()); switch (type) { case DesktopItemType.Program: Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name + "\\command", "", item); break; case DesktopItemType.Folder: Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name + "\\command", "", "explorer " + item); break; case DesktopItemType.Link: Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name + "\\command", "", "explorer " + item); break; case DesktopItemType.File: string tmp = @""""; string tmp2 = "explorer.exe"; Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name + "\\command", "", tmp2 + " " + tmp + item + tmp); break; case DesktopItemType.Command: Registry.SetValue(@"HKEY_CLASSES_ROOT\DesktopBackground\Shell\" + name + "\\command", "", item); break; } } internal static void InstallOpenWithCMD() { Utilities.ImportRegistryScript(CoreHelper.ScriptsFolder + "AddOpenWithCMD.reg"); } internal static void DeleteOpenWithCMD() { Registry.ClassesRoot.DeleteSubKeyTree(@"Directory\shell\OpenWithCMD", false); Registry.ClassesRoot.DeleteSubKeyTree(@"Directory\Background\shell\OpenWithCMD", false); Registry.ClassesRoot.DeleteSubKeyTree(@"Drive\shell\OpenWithCMD", false); } internal static void InstallTakeOwnership(bool remove) { if (!File.Exists(CoreHelper.ReadyMadeMenusFolder + "InstallTakeOwnership.reg")) { try { File.WriteAllText(CoreHelper.ReadyMadeMenusFolder + "InstallTakeOwnership.reg", Properties.Resources.InstallTakeOwnership); } catch (Exception ex) { Logger.LogError("Integrator.TakeOwnership", ex.Message, ex.StackTrace); } } if (!File.Exists(CoreHelper.ReadyMadeMenusFolder + "RemoveTakeOwnership.reg")) { try { File.WriteAllText(CoreHelper.ReadyMadeMenusFolder + "RemoveTakeOwnership.reg", Properties.Resources.RemoveTakeOwnership); } catch (Exception ex) { Logger.LogError("Integrator.TakeOwnership", ex.Message, ex.StackTrace); } } if (!remove) { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "InstallTakeOwnership.reg"); } else { Utilities.ImportRegistryScript(CoreHelper.ReadyMadeMenusFolder + "RemoveTakeOwnership.reg"); } } /// /// PATH System Variables functions /// const int HWND_BROADCAST = 0xffff; const uint WM_SETTINGCHANGE = 0x001a; [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern bool SendNotifyMessage(IntPtr hWnd, uint Msg, UIntPtr wParam, string lParam); internal static string[] GetPathSystemVariables() { try { string basePathKey = @"SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; using (var key = Registry.LocalMachine.OpenSubKey(basePathKey, false)) { string result = key.GetValue("Path", new string[] { }).ToString(); return result.Split(';'); } } catch (Exception ex) { Logger.LogError("Integrator.GetPathSystemVariables", ex.Message, ex.StackTrace); return new string[] { }; } } internal static void UpdatePathSystemVariables(string[] newValues) { if (newValues == null || newValues.Length <= 0) { return; } try { string basePathKey = @"SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; using (var key = Registry.LocalMachine.OpenSubKey(basePathKey, true)) { string updatedSystemVariables = string.Join(";", newValues); key.SetValue("Path", updatedSystemVariables, RegistryValueKind.ExpandString); } } catch (Exception ex) { Logger.LogError("Integrator.UpdatePathSystemVariables", ex.Message, ex.StackTrace); } } // Notifies the shell that System variables have been changed // Otherwise, a restart is needed internal static void ApplyPathSystemVariables() { SendNotifyMessage((IntPtr)HWND_BROADCAST, WM_SETTINGCHANGE, (UIntPtr)0, "Environment"); } } } ================================================ FILE: Optimizer/Models/AppInfo.cs ================================================ namespace Optimizer { /// /// Represents an app from feed, containing: /// - Title /// - Download link for both 32 and 64 bit variant /// - Image /// - Group /// public sealed class AppInfo { public string Title { get; set; } public string Link64 { get; set; } public string Link { get; set; } public string Tag { get; set; } public string Image { get; set; } public string Group { get; set; } } } ================================================ FILE: Optimizer/Models/Enums.cs ================================================ namespace Optimizer { internal enum LogType { Information, Error, } internal enum EventType { Modified, Renamed, Created, Deleted } internal enum WindowsVersion { Unsupported = 0, Windows7 = 7, Windows8 = 8, Windows10 = 10, Windows11 = 11 } public enum StartupItemLocation { LMStartupFolder, CUStartupFolder, HKLM, HKLMWoW, HKCU } public enum StartupItemType { None, Run, RunOnce } internal enum MessageType { Error, Startup, Restart, Hosts, Integrator } internal enum DesktopItemType { Program, Folder, Link, File, Command } internal enum DesktopTypePosition { Top, Middle, Bottom } internal enum RecycleFlag : int { SHERB_NOCONFIRMATION = 0x00000001, SHERB_NOPROGRESSUI = 0x00000001, SHERB_NOSOUND = 0x00000004 } public enum ToggleSwitchAlignment { Near, Center, Far } public enum ToggleSwitchButtonAlignment { Left, Center, Right } public enum RestartType { Normal, SafeMode, DisableDefender, EnableDefender } public enum LanguageCode { EN, // english RU, // russian EL, // hellenic TR, // turkish DE, // german ES, // spanish PT, // portuguese FR, // french IT, // italian CN, // chinese CZ, // czech TW, // taiwan KO, // korean PL, // polish AR, // arabic KU, // kurdish HU, // hungarian RO, // romanian NL, // dutch UA, // ukrainian JA, // japanese FA, // farsi NE, // nepali BG, // bulgarian VN, // vietnamese UR, // urdu ID, // indonesian HR // croatian } } ================================================ FILE: Optimizer/Models/Hardware.cs ================================================ using System; using System.Collections.Generic; namespace Optimizer { /// /// A full representation of all the computer components with the most usual details /// public sealed class CPU { public string Name { get; set; } public ByteSize L2CacheSize { get; set; } public ByteSize L3CacheSize { get; set; } public UInt32 Cores { get; set; } public UInt32 Threads { get; set; } public UInt32 LogicalCpus { get; set; } public string Virtualization { get; set; } public string DataExecutionPrevention { get; set; } public string Stepping { get; set; } public string Revision { get; set; } } public sealed class RAM { public string BankLabel { get; set; } public ByteSize Capacity { get; set; } public string FormFactor { get; set; } public string Manufacturer { get; set; } public string MemoryType { get; set; } public UInt32 Speed { get; set; } } public sealed class VirtualMemory { public ByteSize TotalVirtualMemory { get; set; } public ByteSize AvailableVirtualMemory { get; set; } public ByteSize UsedVirtualMemory { get; set; } } public sealed class GPU { public string Name { get; set; } public ByteSize Memory { get; set; } public UInt32 ResolutionX { get; set; } public UInt32 ResolutionY { get; set; } public UInt32 RefreshRate { get; set; } public string DACType { get; set; } public string VideoMemoryType { get; set; } } public sealed class Disk { public UInt32 BytesPerSector { get; set; } public string FirmwareRevision { get; set; } public string MediaType { get; set; } public string Model { get; set; } public ByteSize Capacity { get; set; } } public sealed class Volume { public UInt64 BlockSize { get; set; } public ByteSize Capacity { get; set; } public string Compressed { get; set; } public string DriveLetter { get; set; } public string DriveType { get; set; } public string FileSystem { get; set; } public ByteSize FreeSpace { get; set; } public ByteSize UsedSpace { get; set; } public string Indexing { get; set; } public string Label { get; set; } } public sealed class NetworkDevice { public string AdapterType { get; set; } public string Manufacturer { get; set; } public string ProductName { get; set; } public string PhysicalAdapter { get; set; } public string MacAddress { get; set; } public string ServiceName { get; set; } } public sealed class Keyboard { public string Name { get; set; } public string Layout { get; set; } public string Status { get; set; } public UInt16 FunctionKeys { get; set; } public string Locked { get; set; } } public sealed class PointingDevice { public string Name { get; set; } public string Manufacturer { get; set; } public string Status { get; set; } public UInt16 Buttons { get; set; } public string Locked { get; set; } public string HardwareType { get; set; } public string PointingType { get; set; } public string DeviceInterface { get; set; } } public sealed class AudioDevice { public string ProductName { get; set; } public string Manufacturer { get; set; } public string Status { get; set; } } public sealed class Motherboard { public string Model { get; set; } public string Manufacturer { get; set; } public string Chipset { get; set; } public string Product { get; set; } public string Version { get; set; } public string Revision { get; set; } public string SystemModel { get; set; } public string BIOSName { get; set; } public string BIOSManufacturer { get; set; } public string BIOSVersion { get; set; } public string BIOSBuildNumber { get; set; } } public static class HardwareSummary { public static List CPUs = new List(); public static string TotalRAM = string.Empty; public static List Motherboards = new List(); public static List GPUs = new List(); public static List Disks = new List(); public static List NetworkAdapters = new List(); public static List BIOS = new List(); public static List OSInfo = new List(); } } ================================================ FILE: Optimizer/Models/Options.cs ================================================ using System; using System.Drawing; namespace Optimizer { [Serializable] public sealed class Options { /// /// Represents the theme color in RGB /// public Color Theme { get; set; } /// /// The folder in which the apps are downloaded from Apps tool /// public string AppsFolder { get; set; } /// /// Configures if the app will appear in the taskbar icons /// public bool EnableTray { get; set; } /// /// Configures if the app will start with Windows /// public bool AutoStart { get; set; } /// /// The DNS that the app will use for checking the internet connectivity /// public string InternalDNS { get; set; } /// /// Configures if the app will check for updates automatically on each run /// public bool UpdateOnLaunch { get; set; } /// /// Each option from this section will completely disable the respective tool (useful for troubleshooting) /// public bool DisableIndicium { get; set; } public bool DisableAppsTool { get; set; } public bool DisableHostsEditor { get; set; } public bool DisableUWPApps { get; set; } public bool DisableStartupTool { get; set; } public bool DisableCleaner { get; set; } public bool DisableIntegrator { get; set; } public bool DisablePinger { get; set; } /// /// Telemetry-related info, unique to each instance /// //public string TelemetryClientID { get; set; } //public bool DisableOptimizerTelemetry { get; set; } /// /// The saved language of the app /// public LanguageCode LanguageCode { get; set; } /// /// The state of the general tweaks /// Changing them will not disable/enable the respective tweak /// public bool EnablePerformanceTweaks { get; set; } public bool DisableNetworkThrottling { get; set; } public bool DisableWindowsDefender { get; set; } public bool DisableSystemRestore { get; set; } public bool DisablePrintService { get; set; } public bool DisableMediaPlayerSharing { get; set; } public bool DisableErrorReporting { get; set; } public bool DisableHomeGroup { get; set; } public bool DisableSuperfetch { get; set; } public bool DisableTelemetryTasks { get; set; } public bool DisableCompatibilityAssistant { get; set; } public bool DisableFaxService { get; set; } public bool DisableSmartScreen { get; set; } public bool DisableCloudClipboard { get; set; } public bool DisableStickyKeys { get; set; } public bool DisableHibernation { get; set; } public bool DisableSMB1 { get; set; } public bool DisableSMB2 { get; set; } public bool DisableNTFSTimeStamp { get; set; } public bool DisableSearch { get; set; } public bool EnableUtcTime { get; set; } public bool ShowAllTrayIcons { get; set; } public bool RemoveMenusDelay { get; set; } /// /// The state of the apps telemetry tweaks /// Changing them will not disable/enable the respective tweak /// public bool DisableOffice2016Telemetry { get; set; } public bool DisableVisualStudioTelemetry { get; set; } public bool DisableFirefoxTemeletry { get; set; } public bool DisableChromeTelemetry { get; set; } public bool DisableNVIDIATelemetry { get; set; } /// /// The state of the Edge-related tweaks /// Changing them will not disable/enable the respective tweak /// public bool DisableEdgeDiscoverBar { get; set; } public bool DisableEdgeTelemetry { get; set; } /// /// The state of the Windows 8/8.1 tweaks /// Changing them will not disable/enable the respective tweak /// public bool DisableOneDrive { get; set; } /// /// The state of the Windows 10 tweaks /// Changing them will not disable/enable the respective tweak /// public bool EnableLegacyVolumeSlider { get; set; } public bool DisableQuickAccessHistory { get; set; } public bool DisableStartMenuAds { get; set; } public bool UninstallOneDrive { get; set; } public bool DisableMyPeople { get; set; } public bool DisableAutomaticUpdates { get; set; } public bool ExcludeDrivers { get; set; } public bool DisableTelemetryServices { get; set; } public bool DisablePrivacyOptions { get; set; } public bool DisableCortana { get; set; } public bool DisableSensorServices { get; set; } public bool DisableWindowsInk { get; set; } public bool DisableSpellingTyping { get; set; } public bool DisableXboxLive { get; set; } public bool DisableGameBar { get; set; } public bool DisableInsiderService { get; set; } public bool DisableStoreUpdates { get; set; } public bool EnableLongPaths { get; set; } public bool RemoveCastToDevice { get; set; } public bool EnableGamingMode { get; set; } public bool RestoreClassicPhotoViewer { get; set; } public bool DisableModernStandby { get; set; } public bool HideTaskbarWeather { get; set; } public bool HideTaskbarSearch { get; set; } public bool DisableNewsInterests { get; set; } /// /// The state of the Windows 11 tweaks /// Changing them will not disable/enable the respective tweak /// public bool TaskbarToLeft { get; set; } public bool DisableSnapAssist { get; set; } public bool DisableWidgets { get; set; } public bool DisableChat { get; set; } public bool ClassicMenu { get; set; } public bool DisableTPMCheck { get; set; } public bool CompactMode { get; set; } public bool DisableStickers { get; set; } public bool DisableVBS { get; set; } public bool DisableCoPilotAI { get; set; } /// /// The state of the advanced tweaks /// Changing them will not disable/enable the respective tweak /// public bool DisableHPET { get; set; } public bool EnableLoginVerbose { get; set; } public bool EnableRegistryBackups { get; set; } } } ================================================ FILE: Optimizer/Models/SilentConfig.cs ================================================ using Newtonsoft.Json; using System; namespace Optimizer { [Serializable] public sealed class SilentConfig { [JsonProperty("WindowsVersion", Required = Required.Always, NullValueHandling = NullValueHandling.Ignore)] public int WindowsVersion { get; set; } [JsonProperty("PostAction", NullValueHandling = NullValueHandling.Ignore)] public PostAction PostAction { get; set; } [JsonProperty("Cleaner", NullValueHandling = NullValueHandling.Ignore)] public Cleaner Cleaner { get; set; } [JsonProperty("Pinger", NullValueHandling = NullValueHandling.Ignore)] public Pinger Pinger { get; set; } [JsonProperty("ProcessControl", NullValueHandling = NullValueHandling.Ignore)] public ProcessControl ProcessControl { get; set; } [JsonProperty("HostsEditor", NullValueHandling = NullValueHandling.Ignore)] public HostsEditor HostsEditor { get; set; } [JsonProperty("RegistryFix", NullValueHandling = NullValueHandling.Ignore)] public RegistryFix RegistryFix { get; set; } [JsonProperty("Integrator", NullValueHandling = NullValueHandling.Ignore)] public Integrator Integrator { get; set; } [JsonProperty("Tweaks", NullValueHandling = NullValueHandling.Ignore)] public Tweaks Tweaks { get; set; } [JsonProperty("AdvancedTweaks", NullValueHandling = NullValueHandling.Ignore)] public AdvancedTweaks AdvancedTweaks { get; set; } } [Serializable] public sealed class AdvancedTweaks { [JsonProperty("DisableHPET", NullValueHandling = NullValueHandling.Ignore)] public bool? DisableHPET { get; set; } [JsonProperty("EnableLoginVerbose", NullValueHandling = NullValueHandling.Ignore)] public bool? EnableLoginVerbose { get; set; } [JsonProperty("UnlockAllCores", NullValueHandling = NullValueHandling.Ignore)] public bool? UnlockAllCores { get; set; } [JsonProperty("EnableRegistryBackups", NullValueHandling = NullValueHandling.Ignore)] public bool? EnableRegistryBackups { get; set; } [JsonProperty("SvchostProcessSplitting", NullValueHandling = NullValueHandling.Ignore)] public SvchostProcessSplitting SvchostProcessSplitting { get; set; } } [Serializable] public sealed class Cleaner { [JsonProperty("TempFiles", NullValueHandling = NullValueHandling.Ignore)] public bool? TempFiles { get; set; } [JsonProperty("BsodDumps", NullValueHandling = NullValueHandling.Ignore)] public bool? BsodDumps { get; set; } [JsonProperty("ErrorReports", NullValueHandling = NullValueHandling.Ignore)] public bool? ErrorReports { get; set; } [JsonProperty("RecycleBin", NullValueHandling = NullValueHandling.Ignore)] public bool? RecycleBin { get; set; } [JsonProperty("GoogleChrome", NullValueHandling = NullValueHandling.Ignore)] public BaseBrowser GoogleChrome { get; set; } [JsonProperty("MozillaFirefox", NullValueHandling = NullValueHandling.Ignore)] public BaseBrowser MozillaFirefox { get; set; } [JsonProperty("MicrosoftEdge", NullValueHandling = NullValueHandling.Ignore)] public BaseBrowser MicrosoftEdge { get; set; } [JsonProperty("BraveBrowser", NullValueHandling = NullValueHandling.Ignore)] public BaseBrowser BraveBrowser { get; set; } [JsonProperty("InternetExplorer", NullValueHandling = NullValueHandling.Ignore)] public bool? InternetExplorer { get; set; } } [Serializable] public sealed class BaseBrowser { [JsonProperty("Cache", NullValueHandling = NullValueHandling.Ignore)] public bool? Cache { get; set; } [JsonProperty("Cookies", NullValueHandling = NullValueHandling.Ignore)] public bool? Cookies { get; set; } [JsonProperty("History", NullValueHandling = NullValueHandling.Ignore)] public bool? History { get; set; } [JsonProperty("Session", NullValueHandling = NullValueHandling.Ignore)] public bool? Session { get; set; } [JsonProperty("Passwords", NullValueHandling = NullValueHandling.Ignore)] public bool? Passwords { get; set; } } [Serializable] public sealed class HostsEditor { [JsonProperty("Block", NullValueHandling = NullValueHandling.Ignore)] public string[] Block { get; set; } [JsonProperty("Remove", NullValueHandling = NullValueHandling.Ignore)] public string[] Remove { get; set; } [JsonProperty("Add", NullValueHandling = NullValueHandling.Ignore)] public AddHostsEntry[] Add { get; set; } [JsonProperty("IncludeWwwCname", NullValueHandling = NullValueHandling.Ignore)] public bool? IncludeWwwCname { get; set; } } [Serializable] public sealed class AddHostsEntry { [JsonProperty("Domain", NullValueHandling = NullValueHandling.Ignore)] public string Domain { get; set; } [JsonProperty("IPAddress", NullValueHandling = NullValueHandling.Ignore)] public string IpAddress { get; set; } } [Serializable] public sealed class Integrator { [JsonProperty("TakeOwnership", NullValueHandling = NullValueHandling.Ignore)] public bool? TakeOwnership { get; set; } [JsonProperty("OpenWithCMD", NullValueHandling = NullValueHandling.Ignore)] public bool? OpenWithCmd { get; set; } } [Serializable] public sealed class Pinger { [JsonProperty("SetDNS", NullValueHandling = NullValueHandling.Ignore)] public string SetDns { get; set; } [JsonProperty("FlushDNSCache", NullValueHandling = NullValueHandling.Ignore)] public bool? FlushDnsCache { get; set; } [JsonProperty("CustomDNSv4", NullValueHandling = NullValueHandling.Ignore)] public string[] CustomDNSv4 { get; set; } [JsonProperty("CustomDNSv6", NullValueHandling = NullValueHandling.Ignore)] public string[] CustomDNSv6 { get; set; } } [Serializable] public sealed class PostAction { [JsonProperty("Restart", NullValueHandling = NullValueHandling.Ignore)] public bool? Restart { get; set; } [JsonProperty("RestartType", NullValueHandling = NullValueHandling.Ignore)] public string RestartType { get; set; } } [Serializable] public sealed class ProcessControl { [JsonProperty("Prevent", NullValueHandling = NullValueHandling.Ignore)] public string[] Prevent { get; set; } [JsonProperty("Allow", NullValueHandling = NullValueHandling.Ignore)] public string[] Allow { get; set; } } [Serializable] public sealed class RegistryFix { [JsonProperty("TaskManager", NullValueHandling = NullValueHandling.Ignore)] public bool? TaskManager { get; set; } [JsonProperty("CommandPrompt", NullValueHandling = NullValueHandling.Ignore)] public bool? CommandPrompt { get; set; } [JsonProperty("ControlPanel", NullValueHandling = NullValueHandling.Ignore)] public bool? ControlPanel { get; set; } [JsonProperty("FolderOptions", NullValueHandling = NullValueHandling.Ignore)] public bool? FolderOptions { get; set; } [JsonProperty("RunDialog", NullValueHandling = NullValueHandling.Ignore)] public bool? RunDialog { get; set; } [JsonProperty("RightClickMenu", NullValueHandling = NullValueHandling.Ignore)] public bool? RightClickMenu { get; set; } [JsonProperty("WindowsFirewall", NullValueHandling = NullValueHandling.Ignore)] public bool? WindowsFirewall { get; set; } [JsonProperty("RegistryEditor", NullValueHandling = NullValueHandling.Ignore)] public bool? RegistryEditor { get; set; } } [Serializable] public sealed class SvchostProcessSplitting { [JsonProperty("Disable", NullValueHandling = NullValueHandling.Ignore)] public bool? Disable { get; set; } [JsonProperty("RAM", NullValueHandling = NullValueHandling.Ignore)] public int? Ram { get; set; } } [Serializable] public sealed class Tweaks { public bool? EnablePerformanceTweaks { get; set; } public bool? DisableNetworkThrottling { get; set; } public bool? DisableWindowsDefender { get; set; } public bool? DisableSystemRestore { get; set; } public bool? DisablePrintService { get; set; } public bool? DisableMediaPlayerSharing { get; set; } public bool? DisableErrorReporting { get; set; } public bool? DisableHomeGroup { get; set; } public bool? DisableSuperfetch { get; set; } public bool? DisableTelemetryTasks { get; set; } public bool? DisableCompatibilityAssistant { get; set; } public bool? DisableFaxService { get; set; } public bool? DisableSmartScreen { get; set; } public bool? DisableCloudClipboard { get; set; } public bool? DisableStickyKeys { get; set; } public bool? DisableHibernation { get; set; } public bool? DisableSMB1 { get; set; } public bool? DisableSMB2 { get; set; } public bool? DisableNTFSTimeStamp { get; set; } public bool? DisableSearch { get; set; } public bool? EnableUtcTime { get; set; } public bool? ShowAllTrayIcons { get; set; } public bool? RemoveMenusDelay { get; set; } public bool? DisableOffice2016Telemetry { get; set; } public bool? DisableVisualStudioTelemetry { get; set; } public bool? DisableFirefoxTemeletry { get; set; } public bool? DisableChromeTelemetry { get; set; } public bool? DisableNVIDIATelemetry { get; set; } public bool? DisableEdgeDiscoverBar { get; set; } public bool? DisableEdgeTelemetry { get; set; } public bool? EnableLegacyVolumeSlider { get; set; } public bool? DisableQuickAccessHistory { get; set; } public bool? DisableStartMenuAds { get; set; } public bool? UninstallOneDrive { get; set; } public bool? DisableMyPeople { get; set; } public bool? DisableAutomaticUpdates { get; set; } public bool? ExcludeDrivers { get; set; } public bool? DisableTelemetryServices { get; set; } public bool? DisablePrivacyOptions { get; set; } public bool? DisableCortana { get; set; } public bool? DisableSensorServices { get; set; } public bool? DisableWindowsInk { get; set; } public bool? DisableSpellingTyping { get; set; } public bool? DisableXboxLive { get; set; } public bool? DisableGameBar { get; set; } public bool? DisableInsiderService { get; set; } public bool? DisableStoreUpdates { get; set; } public bool? EnableLongPaths { get; set; } public bool? RemoveCastToDevice { get; set; } public bool? EnableGamingMode { get; set; } public bool? RestoreClassicPhotoViewer { get; set; } public bool? DisableModernStandby { get; set; } public bool? HideTaskbarWeather { get; set; } public bool? HideTaskbarSearch { get; set; } public bool? DisableNewsInterests { get; set; } public bool? DisableOneDrive { get; set; } public bool? TaskbarToLeft { get; set; } public bool? DisableSnapAssist { get; set; } public bool? DisableWidgets { get; set; } public bool? DisableChat { get; set; } public bool? ClassicMenu { get; set; } public bool? DisableTPMCheck { get; set; } public bool? CompactMode { get; set; } public bool? DisableStickers { get; set; } public bool? DisableVirtualizationBasedTechnology { get; set; } public bool? DisableCoPilotAI { get; set; } } } ================================================ FILE: Optimizer/Models/StartupBackupItem.cs ================================================ using System; namespace Optimizer { /// /// Represents a backup of a Windows base startup item /// [Serializable] public sealed class BackupStartupItem { public string Name { get; set; } public string FileLocation { get; set; } public string RegistryLocation { get; set; } public string StartupType { get; set; } public BackupStartupItem(string name, string fileLocation, string registryLocation, string startupType) { Name = name; FileLocation = fileLocation; RegistryLocation = registryLocation; StartupType = startupType; } } } ================================================ FILE: Optimizer/Models/StartupItem.cs ================================================ using Microsoft.Win32; using System; using System.IO; namespace Optimizer { /// /// Represents a base Windows startup item /// internal class StartupItem { internal string Name { get; set; } internal string FileLocation { get; set; } internal StartupItemLocation RegistryLocation { get; set; } internal StartupItemType StartupType { get; set; } internal virtual void Remove() { } internal virtual void LocateFile() { } internal virtual void LocateKey() { } public override string ToString() { if (RegistryLocation == StartupItemLocation.LMStartupFolder) return RegistryLocation.ToString(); return string.Format("{0}:{1}", RegistryLocation, StartupType); } } internal sealed class FolderStartupItem : StartupItem { internal string Shortcut { get; set; } internal override void Remove() { try { if (File.Exists(Shortcut)) { File.Delete(Shortcut); } } catch (Exception ex) { Logger.LogError("FolderStartupItem.Remove", ex.Message, ex.StackTrace); } } internal override void LocateFile() { try { Utilities.FindFile(FileLocation); } catch (Exception ex) { Logger.LogError("FolderStartupItem.LocateFile", ex.Message, ex.StackTrace); } } } internal sealed class RegistryStartupItem : StartupItem { internal RegistryKey Key { get; set; } internal override void LocateKey() { try { Utilities.FindKeyInRegistry(Key.ToString()); } catch (Exception ex) { Logger.LogError("RegistryStartupItem.LocateKey", ex.Message, ex.StackTrace); } } internal override void Remove() { try { Key.DeleteValue(Name, false); } catch (Exception ex) { Logger.LogError("RegistryStartupItem.Remove", ex.Message, ex.StackTrace); } } internal override void LocateFile() { try { Utilities.FindFile(SanitizePath(FileLocation)); } catch (Exception ex) { Logger.LogError("RegistryStartupItem.LocateFile", ex.Message, ex.StackTrace); } } internal string SanitizePath(string s) { s = s.Replace("\"", string.Empty); int i; while (s.Contains("/")) { i = s.LastIndexOf("/"); s = s.Substring(0, i); } i = s.IndexOf(".exe"); s = s.Substring(0, i + 4); return s.Trim(); } } } ================================================ FILE: Optimizer/Models/TelemetryData.cs ================================================ //using System; //namespace Optimizer //{ // [Serializable] // public sealed class TelemetryData // { // // General data // public string Timestamp { get; set; } // public string Country { get; set; } // // Windows environment info // public string WindowsVersion { get; set; } // public string DotNetVersion { get; set; } // // Optimizer-specific details // public string OptimizerVersion { get; set; } // public string LanguageCode { get; set; } // public string TelemetryID { get; set; } // public string UnsafeMode { get; set; } // public string ExperimentalBuild { get; set; } // public string SavedOptions { get; set; } // // Exception details // public string FunctionName { get; set; } // public string ErrorMessage { get; set; } // public string StackTrace { get; set; } // } // [Serializable] // public sealed class GeoLookupResult // { // public string status { get; set; } // public string country { get; set; } // } //} ================================================ FILE: Optimizer/Models/WorkEvent.cs ================================================ //using System; //using System.Collections.Generic; //using System.Linq; //using System.Text; //using System.Threading.Tasks; //namespace Optimizer.Models { // public sealed class WorkEvent : List { // static object _lockObject = new object(); // static object _syncRoot = new object(); // static volatile WorkEvent _instance; // private WorkEvent() { } // public static WorkEvent Instance { // get { // if (_instance == null) { // lock (_syncRoot) { // if (_instance == null) { // _instance = new WorkEvent(); // } // } // } // return _instance; // } // } // public new void Add(WorkEventArgs wea) { // lock (_lockObject) { // base.Add(wea); // } // } // public new void Remove(WorkEventArgs wea) { // lock (_lockObject) { // base.Remove(wea); // } // } // public WorkEventArgs GetEventObject() { // if (this.Count > 0) { // if (this[0] != null) { // WorkEventArgs dwoTemp = this[0]; // Remove(this[0]); // return dwoTemp; // } // else { // return null; // } // } // else { // return null; // } // } // } //} ================================================ FILE: Optimizer/Models/WorkEventArgs.cs ================================================ //using System; //using System.Collections.Generic; //using System.Linq; //using System.Text; //using System.Threading.Tasks; //using System.Windows.Forms; //namespace Optimizer.Models { // public sealed class WorkEventArgs { // string _fileName; // string _eventType; // ListViewItem _currentItem; // public WorkEventArgs(string fileName, string eventType, ListViewItem currentItem) { // _fileName = fileName; // _eventType = eventType; // if (currentItem != null) { // _currentItem = currentItem; // } // } // public string FileName { // get { // return _fileName; // } // } // public string EventType { // get { // return _eventType; // } // } // public ListViewItem CurrentItem { // get { // if (_currentItem != null) { // return _currentItem; // } // else { // return null; // } // } // } // } //} ================================================ FILE: Optimizer/NetworkAdapter.cs ================================================ //using System.Diagnostics; //namespace Optimizer //{ // public class NetworkAdapter // { // long _downloadSpeed, _uploadSpeed; // long _downloadValue, _uploadValue; // long _downloadValueOld, _uploadValueOld; // string _name; // internal PerformanceCounter DownloadCounter, UploadCounter; // internal NetworkAdapter(string name) // { // _name = name; // } // internal void Initialize() // { // _downloadValueOld = DownloadCounter.NextSample().RawValue; // _uploadValueOld = UploadCounter.NextSample().RawValue; // } // internal void Refresh() // { // _downloadValue = DownloadCounter.NextSample().RawValue; // _uploadValue = UploadCounter.NextSample().RawValue; // _downloadSpeed = _downloadValue - _downloadValueOld; // _uploadSpeed = _uploadValue - _uploadValueOld; // _downloadValueOld = _downloadValue; // _uploadValueOld = _uploadValue; // } // public override string ToString() // { // return _name; // } // public string Name // { // get { return _name; } // } // public long DownloadSpeed // { // get { return _downloadSpeed; } // } // public long UploadSpeed // { // get { return _uploadSpeed; } // } // public double DownloadSpeedKbps // { // get { return this._downloadSpeed / 1024.0; } // } // public double UploadSpeedKbps // { // get { return this._uploadSpeed / 1024.0; } // } // public double DownloadSpeedMbps // { // get { return this._downloadSpeed / 1024.0 / 1024.0; } // } // public double UploadSpeedMbps // { // get { return this._uploadSpeed / 1024.0 / 1024.0; } // } // } //} ================================================ FILE: Optimizer/NetworkMonitor.cs ================================================ //using System.Collections; //using System.Diagnostics; //using System.Timers; //namespace Optimizer //{ // public class NetworkMonitor // { // Timer _timer; // ArrayList _adapters; // ArrayList _monitoredAdapters; // public NetworkMonitor() // { // _adapters = new ArrayList(); // _monitoredAdapters = new ArrayList(); // EnumerateNetworkAdapters(); // _timer = new Timer(1000); // _timer.Elapsed += new ElapsedEventHandler(timer_Elapsed); // } // private void EnumerateNetworkAdapters() // { // PerformanceCounterCategory category = new PerformanceCounterCategory("Network Interface"); // foreach (string name in category.GetInstanceNames()) // { // if (name == "MS TCP Loopback interface") continue; // if (name.ToLowerInvariant().Contains("virtual")) continue; // if (name.ToLowerInvariant().Contains("hyper-v")) continue; // NetworkAdapter adapter = new NetworkAdapter(name); // adapter.DownloadCounter = new PerformanceCounter("Network Interface", "Bytes Received/sec", name); // adapter.UploadCounter = new PerformanceCounter("Network Interface", "Bytes Sent/sec", name); // _adapters.Add(adapter); // } // } // private void timer_Elapsed(object sender, ElapsedEventArgs e) // { // foreach (NetworkAdapter adapter in this._monitoredAdapters) // { // adapter.Refresh(); // } // } // public NetworkAdapter[] Adapters // { // get { return (NetworkAdapter[])_adapters.ToArray(typeof(NetworkAdapter)); } // } // public void StartMonitoring() // { // if (_adapters.Count > 0) // { // foreach (NetworkAdapter adapter in _adapters) // { // if (!_monitoredAdapters.Contains(adapter)) // { // _monitoredAdapters.Add(adapter); // adapter.Initialize(); // } // } // _timer.Enabled = true; // } // } // public void StartMonitoring(NetworkAdapter adapter) // { // if (!_monitoredAdapters.Contains(adapter)) // { // _monitoredAdapters.Add(adapter); // adapter.Initialize(); // } // _timer.Enabled = true; // } // public void StopMonitoring() // { // _monitoredAdapters.Clear(); // _timer.Enabled = false; // } // public void StopMonitoring(NetworkAdapter adapter) // { // if (_monitoredAdapters.Contains(adapter)) // { // _monitoredAdapters.Remove(adapter); // } // if (_monitoredAdapters.Count == 0) // { // _timer.Enabled = false; // } // } // } //} ================================================ FILE: Optimizer/OptimizeHelper.cs ================================================ using Microsoft.Win32; using System; using System.Diagnostics; using System.IO; namespace Optimizer { public static class OptimizeHelper { readonly static string DiagnosisAutoLoggerFolder = Path.Combine(CleanHelper.ProgramData, @"Microsoft\Diagnosis\ETLLogs\AutoLogger"); internal static void DisableTelemetryRunner() { Utilities.PreventProcessFromRunning("CompatTelRunner.exe"); Utilities.PreventProcessFromRunning("DeviceCensus.exe"); } internal static void EnablePeriodicRegistryBackup() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Configuration Manager", "EnablePeriodicBackup", 1); } internal static void DisablePeriodicRegistryBackup() { Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\Session Manager\Configuration Manager", "EnablePeriodicBackup"); } internal static void EnablePerformanceTweaks() { // enable auto-complete in Run Dialog Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete", "Append Completion", "yes", RegistryValueKind.String); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete", "AutoSuggest", "yes", RegistryValueKind.String); // reduce dump file size Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl", "CrashDumpEnabled", 3, RegistryValueKind.DWord); // disable Remote Assistance Registry.SetValue(@"HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Remote Assistance", "fAllowToGetHelp", "0", RegistryValueKind.DWord); // disable shaking to minimize Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "DisallowShaking", "1", RegistryValueKind.DWord); Registry.SetValue("HKEY_CLASSES_ROOT\\AllFilesystemObjects\\shellex\\ContextMenuHandlers\\Copy To", "", "{C2FBB630-2971-11D1-A18C-00C04FD75D13}"); Registry.SetValue("HKEY_CLASSES_ROOT\\AllFilesystemObjects\\shellex\\ContextMenuHandlers\\Move To", "", "{C2FBB631-2971-11D1-A18C-00C04FD75D13}"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "AutoEndTasks", "1"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "HungAppTimeout", "1000"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "WaitToKillAppTimeout", "2000"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "LowLevelHooksTimeout", "1000"); Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "NoLowDiskSpaceChecks", "00000001", RegistryValueKind.DWord); Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "LinkResolveIgnoreLinkInfo", "00000001", RegistryValueKind.DWord); Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "NoResolveSearch", "00000001", RegistryValueKind.DWord); Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "NoResolveTrack", "00000001", RegistryValueKind.DWord); Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "NoInternetOpenWith", "00000001", RegistryValueKind.DWord); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control", "WaitToKillServiceTimeout", "2000"); Utilities.StopService("DiagTrack"); Utilities.StopService("diagsvc"); Utilities.StopService("diagnosticshub.standardcollector.service"); Utilities.StopService("dmwappushservice"); Utilities.RunCommand("sc config \"RemoteRegistry\" start= disabled"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagsvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagnosticshub.standardcollector.service", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushservice", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "HideFileExt", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Hidden", "1", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowSuperHidden", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "SystemResponsiveness", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "NoLazyMode", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "AlwaysOn", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", "GPU Priority", 8, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", "Priority", 6, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", "Scheduling Category", "High", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", "SFIO Priority", "High", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows Media Foundation", "EnableFrameServerMode", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", "GPU Priority", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", "Priority", 8, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", "Scheduling Category", "Medium", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", "SFIO Priority", "High", RegistryValueKind.String); } internal static void DisablePerformanceTweaks() { try { // disable auto-complete in Run Dialog Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete", true).DeleteValue("Append Completion", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete", true).DeleteValue("AutoSuggest", false); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\WOW6432Node\Microsoft\Windows Media Foundation", "EnableFrameServerMode"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl", "CrashDumpEnabled", 7, RegistryValueKind.DWord); // enable Remote Assistance Registry.SetValue(@"HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Remote Assistance", "fAllowToGetHelp", "1", RegistryValueKind.DWord); // enable shaking to minimize Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "DisallowShaking", "0", RegistryValueKind.DWord); Registry.ClassesRoot.DeleteSubKeyTree(@"AllFilesystemObjects\\shellex\\ContextMenuHandlers\\Copy To", false); Registry.ClassesRoot.DeleteSubKeyTree(@"AllFilesystemObjects\\shellex\\ContextMenuHandlers\\Move To", false); Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true).DeleteValue("AutoEndTasks", false); Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true).DeleteValue("HungAppTimeout", false); Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true).DeleteValue("WaitToKillAppTimeout", false); Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true).DeleteValue("LowLevelHooksTimeout", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", true).DeleteValue("NoLowDiskSpaceChecks", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", true).DeleteValue("LinkResolveIgnoreLinkInfo", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", true).DeleteValue("NoResolveSearch", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", true).DeleteValue("NoResolveTrack", false); Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", true).DeleteValue("NoInternetOpenWith", false); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control", "WaitToKillServiceTimeout", "5000"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagnosticshub.standardcollector.service", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushservice", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("DiagTrack"); Utilities.StartService("diagnosticshub.standardcollector.service"); Utilities.StartService("dmwappushservice"); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "HideFileExt", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Hidden", "0", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowSuperHidden", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "SystemResponsiveness", 14, RegistryValueKind.DWord); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "NoLazyMode"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile", "AlwaysOn"); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", true).DeleteValue("GPU Priority", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", true).DeleteValue("Priority", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", true).DeleteValue("Scheduling Category", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games", true).DeleteValue("SFIO Priority", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", true).DeleteValue("GPU Priority", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", true).DeleteValue("Priority", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", true).DeleteValue("Scheduling Category", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Low Latency", true).DeleteValue("SFIO Priority", false); } catch (Exception ex) { Logger.LogError("Optimize.DisablePerformanceTweaks", ex.Message, ex.StackTrace); } } internal static void DisableTelemetryServices() { Utilities.StopService("DiagTrack"); Utilities.StopService("diagnosticshub.standardcollector.service"); Utilities.StopService("dmwappushservice"); Utilities.StopService("DcpSvc"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagnosticshub.standardcollector.service", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushservice", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DcpSvc", "Start", "4", RegistryValueKind.DWord); Utilities.RunCommand("reg add \"HKLM\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowAutoConnectToWiFiSenseHotspots\" /v value /t REG_DWORD /d 0 /f"); Utilities.RunCommand("reg add \"HKLM\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowWiFiHotSpotReporting\" /v value /t REG_DWORD /d 0 /f"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "DisableEngine", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "SbEnable", 0, RegistryValueKind.DWord); if (Environment.Is64BitOperatingSystem) { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\AppCompat", "DisableEngine", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\AppCompat", "SbEnable", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\AppCompat", "DisablePCA", 1, RegistryValueKind.DWord); } Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "PublishUserActivities", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\SQMClient\Windows", "CEIPEnable", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "AITEnable", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "DisableInventory", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "DisablePCA", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat", "DisableUAR", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata", "PreventDeviceMetadataFromNetwork", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\AutoLogger\SQMLogger", "Start", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\System", "AllowExperimentation", 0); // Responsible for battery usage functionality in Windows 10/11 //Utilities.DisableProtectedService("WdiSystemHost"); Utilities.DisableProtectedService("WdiServiceHost"); } internal static void EnableTelemetryServices() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagnosticshub.standardcollector.service", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmwappushservice", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DcpSvc", "Start", "2", RegistryValueKind.DWord); Utilities.EnableProtectedService("WdiSystemHost"); Utilities.EnableProtectedService("WdiServiceHost"); Utilities.StartService("DiagTrack"); Utilities.StartService("diagnosticshub.standardcollector.service"); Utilities.StartService("dmwappushservice"); Utilities.StartService("DcpSvc"); } internal static void DisableMediaPlayerSharing() { Utilities.StopService("WMPNetworkSvc"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WMPNetworkSvc", "Start", "4", RegistryValueKind.DWord); } internal static void EnableMediaPlayerSharing() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WMPNetworkSvc", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("WMPNetworkSvc"); } internal static void DisableNetworkThrottling() { Int32 tempInt = Convert.ToInt32("ffffffff", 16); Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile", "NetworkThrottlingIndex", tempInt, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched", "NonBestEffortLimit", 0, RegistryValueKind.DWord); } internal static void EnableNetworkThrottling() { try { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched", "NonBestEffortLimit", 80, RegistryValueKind.DWord); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile", true).DeleteValue("NetworkThrottlingIndex", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\Dnscache\Parameters", true).DeleteValue("MaxCacheTtl", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Services\Dnscache\Parameters", true).DeleteValue("MaxNegativeCacheTtl", false); } catch (Exception ex) { Logger.LogError("Optimize.EnableNetworkThrottling", ex.Message, ex.StackTrace); } } //internal static void DisableSkypeAds() //{ // Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\skype.com\\apps", "https", "00000004", RegistryValueKind.DWord); // Registry.SetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\skype.com\\apps", "http", "00000004", RegistryValueKind.DWord); //} //internal static void EnableSkypeAds() //{ // try // { // Registry.CurrentUser.OpenSubKey(@"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\skype.com\\apps", true).DeleteValue("http", false); // Registry.CurrentUser.OpenSubKey(@"Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\skype.com\\apps", true).DeleteValue("https", false); // } // catch (Exception ex) // { // ErrorLogger.LogError("Optimize.EnableSkypeAds", ex.Message, ex.StackTrace); // } //} internal static void DisableHomeGroup() { Utilities.StopService("HomeGroupListener"); Utilities.StopService("HomeGroupProvider"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\HomeGroup", "DisableHomeGroup", "1", RegistryValueKind.DWord); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\HomeGroupListener", "Start", "4", RegistryValueKind.DWord); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\HomeGroupProvider", "Start", "4", RegistryValueKind.DWord); } internal static void EnableHomeGroup() { Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\HomeGroupListener", "Start", "2", RegistryValueKind.DWord); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\HomeGroupProvider", "Start", "2", RegistryValueKind.DWord); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\HomeGroup", "DisableHomeGroup"); Utilities.StartService("HomeGroupListener"); Utilities.StartService("HomeGroupProvider"); } internal static void DisablePrintService() { Utilities.StopService("Spooler"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Spooler", "Start", "3", RegistryValueKind.DWord); } internal static void EnablePrintService() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Spooler", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("Spooler"); } internal static void DisableSuperfetch() { Utilities.StopService("SysMain"); //Utilities.StopService("Schedule"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysMain", "Start", "4", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnableSuperfetch", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnablePrefetcher", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "SfTracingState", "1", RegistryValueKind.DWord); } internal static void EnableSuperfetch() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysMain", "Start", "2", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnableSuperfetch", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "EnablePrefetcher", "1", RegistryValueKind.DWord); Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters", "SfTracingState"); Utilities.StartService("SysMain"); //Utilities.StartService("Schedule"); } internal static void EnableCompatibilityAssistant() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PcaSvc", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("PcaSvc"); } internal static void DisableCompatibilityAssistant() { Utilities.StopService("PcaSvc"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PcaSvc", "Start", "4", RegistryValueKind.DWord); } internal static void DisableSystemRestore() { try { using (Process p = new Process()) { p.StartInfo.CreateNoWindow = true; p.StartInfo.FileName = "vssadmin"; p.StartInfo.Arguments = "delete shadows /for=c: /all /quiet"; p.StartInfo.UseShellExecute = false; p.Start(); p.WaitForExit(); p.Close(); } } catch (Exception ex) { Logger.LogError("Optimize.DisableSystemRestore", ex.Message, ex.StackTrace); } Utilities.StopService("VSS"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore", "DisableSR", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore", "DisableConfig", "1", RegistryValueKind.DWord); } internal static void EnableSystemRestore() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore", "DisableSR"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore", "DisableConfig"); Utilities.StartService("VSS"); } internal static void DisableDefender() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "DisableAntiVirus", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "DisableSpecialRunningModes", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "DisableRoutinelyTakingAction", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "ServiceKeepAlive", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableRealtimeMonitoring", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates", "ForceUpdateFromMU", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet", "DisableBlockAtFirstSeen", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine", "MpEnablePus", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "PUAProtection", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Policy Manager", "DisableScanningNetworkFiles", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "DisableAntiSpyware", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "DisableRealtimeMonitoring", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows Defender\Spynet", "SpyNetReporting", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows Defender\Spynet", "SubmitSamplesConsent", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\MRT", "DontReportInfectionInformation", "1", RegistryValueKind.DWord); Registry.ClassesRoot.DeleteSubKeyTree(@"\CLSID\{09A47860-11B0-4DA5-AFA5-26D86198A780}", false); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableBehaviorMonitoring", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableOnAccessProtection", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableScanOnRealtimeEnable", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableIOAVProtection", "1", RegistryValueKind.DWord); RegistryKey k = RegistryKey.OpenBaseKey(Microsoft.Win32.RegistryHive.LocalMachine, RegistryView.Registry64); using (RegistryKey tmp = k.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true)) { tmp.DeleteValue("WindowsDefender", false); tmp.DeleteValue("SecurityHealth", false); } string rootPath; if (Environment.Is64BitOperatingSystem) { rootPath = Environment.ExpandEnvironmentVariables("%ProgramW6432%"); } else { rootPath = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles); } //Utilities.RunCommand(@"regsvr32 /u /s """ + rootPath + "\""); //Utilities.RunCommand("Gpupdate /Force"); } internal static void EnableDefender() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\MpEngine", "MpEnablePus", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender", "PUAProtection", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Policy Manager", "DisableScanningNetworkFiles", "0", RegistryValueKind.DWord); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender", true).DeleteValue("DisableRealtimeMonitoring", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender", true).DeleteValue("DisableAntiSpyware", false); Registry.LocalMachine.OpenSubKey(@"Software\Policies\Microsoft\Windows Defender\Spynet", true).DeleteValue("SpyNetReporting", false); Registry.LocalMachine.OpenSubKey(@"Software\Policies\Microsoft\Windows Defender\Spynet", true).DeleteValue("SubmitSamplesConsent", false); Registry.LocalMachine.OpenSubKey(@"Software\Policies\Microsoft\MRT", true).DeleteValue("DontReportInfectionInformation", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", true).DeleteValue("DisableBehaviorMonitoring", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", true).DeleteValue("DisableOnAccessProtection", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", true).DeleteValue("DisableScanOnRealtimeEnable", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", true).DeleteValue("DisableIOAVProtection", false); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender", "DisableAntiVirus"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender", "DisableSpecialRunningModes"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender", "DisableRoutinelyTakingAction"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender", "ServiceKeepAlive"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection", "DisableRealtimeMonitoring"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates", "ForceUpdateFromMU"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows Defender\Spynet", "DisableBlockAtFirstSeen"); //Utilities.RunCommand("Gpupdate /Force"); } internal static void DisableSearch() { Utilities.StopService("WSearch"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSearch", "Start", "4", RegistryValueKind.DWord); } internal static void EnableSearch() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSearch", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("WSearch"); } internal static void DisableSMB(string v) { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters", $"SMB{v}", 0, RegistryValueKind.DWord); } internal static void EnableSMB(string v) { Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters", $"SMB{v}"); } internal static void DisableNTFSTimeStamp() { Utilities.RunCommand("fsutil behavior set disablelastaccess 1"); } internal static void EnableNTFSTimeStamp() { Utilities.RunCommand("fsutil behavior set disablelastaccess 2"); } internal static void DisableErrorReporting() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting", "Disabled", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting", "DoReport", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting", "Disabled", 1); Utilities.StopService("WerSvc"); Utilities.StopService("wercplsupport"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WerSvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wercplsupport", "Start", "4", RegistryValueKind.DWord); } internal static void EnableErrorReporting() { Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting", true).DeleteValue("Disabled", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\PCHealth\ErrorReporting", true).DeleteValue("DoReport", false); Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\Windows Error Reporting", true).DeleteValue("Disabled", false); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wercplsupport", "Start", "3", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WerSvc", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("WerSvc"); Utilities.StartService("wercplsupport"); } // not used //internal static void DisableTransparency() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "EnableTransparency", "00000000", RegistryValueKind.DWord); //} //internal static void EnableTransparency() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "EnableTransparency", "00000001", RegistryValueKind.DWord); //} //internal static void EnableDarkTheme() //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes", "AppsUseLightTheme", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes", "SystemUsesLightTheme", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "SystemUsesLightTheme", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "AppsUseLightTheme", "0", RegistryValueKind.DWord); //} //internal static void EnableLightTheme() //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes", "AppsUseLightTheme", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes", "SystemUsesLightTheme", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "SystemUsesLightTheme", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "AppsUseLightTheme", "1", RegistryValueKind.DWord); //} internal static void EnableLegacyVolumeSlider() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MTCUVC", "EnableMtcUvc", "0", RegistryValueKind.DWord); } internal static void DisableLegacyVolumeSlider() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MTCUVC", "EnableMtcUvc", "1", RegistryValueKind.DWord); } internal static void EnableTaskbarColor() { // disable transparency Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "EnableTransparency", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM", "ColorPrevalence", "00000001", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "ColorPrevalence", "00000000", RegistryValueKind.DWord); } internal static void DisableTaskbarColor() { // enable transparency Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "EnableTransparency", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM", "ColorPrevalence", "00000000", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize", "ColorPrevalence", "00000001", RegistryValueKind.DWord); } internal static void UninstallOneDrive() { Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "OneDrive_Uninstaller.cmd"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive", "DisableFileSyncNGSC", "1", RegistryValueKind.DWord); using (RegistryKey localMachine = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64)) { using (RegistryKey key = localMachine.CreateSubKey(@"SOFTWARE\Microsoft\OneDrive")) { key.SetValue("PreventNetworkTrafficPreUserSignIn", 1); } } // delete OneDrive folders string[] oneDriveFolders = { Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "\\OneDrive", Path.GetPathRoot(Environment.GetFolderPath(Environment.SpecialFolder.System)) + "OneDriveTemp", Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\Microsoft\\OneDrive", Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\Microsoft OneDrive" }; foreach (string x in oneDriveFolders) { if (Directory.Exists(x)) { try { Directory.Delete(x, true); } catch (Exception ex) { Logger.LogError("Optimize.UninstallOneDrive", ex.Message, ex.StackTrace); } } } // delete scheduled tasks Utilities.RunCommand(@"SCHTASKS /Delete /TN ""OneDrive Standalone Update Task"" /F"); Utilities.RunCommand(@"SCHTASKS /Delete /TN ""OneDrive Standalone Update Task v2"" /F"); // remove OneDrive from Windows Explorer string rootKey = @"CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}"; Registry.ClassesRoot.CreateSubKey(rootKey); int byteArray = BitConverter.ToInt32(BitConverter.GetBytes(0xb090010d), 0); var reg = RegistryKey.OpenBaseKey(RegistryHive.ClassesRoot, RegistryView.Registry64); try { using (var key = Registry.ClassesRoot.OpenSubKey(rootKey, true)) { key.SetValue("System.IsPinnedToNameSpaceTree", 0, RegistryValueKind.DWord); } using (var key = Registry.ClassesRoot.OpenSubKey(rootKey + "\\ShellFolder", true)) { if (key != null) { key.SetValue("Attributes", byteArray, RegistryValueKind.DWord); } } var reg2 = RegistryKey.OpenBaseKey(RegistryHive.CurrentUser, RegistryView.Registry64); using (var key = reg2.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true)) { key.DeleteValue("OneDriveSetup", false); } // 64-bit Windows modifications if (Environment.Is64BitOperatingSystem) { using (var key = reg.OpenSubKey(rootKey, true)) { if (key != null) { key.SetValue("System.IsPinnedToNameSpaceTree", 0, RegistryValueKind.DWord); } } using (var key = reg.OpenSubKey(rootKey + "\\ShellFolder", true)) { if (key != null) { key.SetValue("Attributes", byteArray, RegistryValueKind.DWord); } } } } catch (Exception ex) { Logger.LogError("Optimize.UninstallOneDrive", ex.Message, ex.StackTrace); } } internal static void InstallOneDrive() { try { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive", "DisableFileSyncNGSC", "0", RegistryValueKind.DWord); using (RegistryKey localMachine = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64)) { using (RegistryKey key = localMachine.CreateSubKey(@"SOFTWARE\Microsoft\OneDrive")) { key.DeleteValue("PreventNetworkTrafficPreUserSignIn", false); } } string oneDriveInstaller; if (Environment.Is64BitOperatingSystem) { oneDriveInstaller = Path.Combine(Path.GetPathRoot(Environment.SystemDirectory), "Windows\\SysWOW64\\OneDriveSetup.exe"); } else { oneDriveInstaller = Path.Combine(Path.GetPathRoot(Environment.SystemDirectory), "Windows\\System32\\OneDriveSetup.exe"); } Process.Start(oneDriveInstaller); } catch (Exception ex) { Logger.LogError("Optimize.InstallOneDrive", ex.Message, ex.StackTrace); } } internal static void DisableCortana() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SearchSettings", "IsDeviceSearchHistoryEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search", "AllowCortana", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search", "DisableWebSearch", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search", "ConnectedSearchUseWeb", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search", "ConnectedSearchUseWebOverMeteredConnections", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search", "HistoryViewEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search", "DeviceHistoryEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search", "AllowSearchToUseLocation", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search", "BingSearchEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search", "CortanaConsent", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search", "AllowCloudSearch", "0", RegistryValueKind.DWord); } internal static void EnableCortana() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\SearchSettings", @"IsDeviceSearchHistoryEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Search", @"AllowCortana"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Search", @"DisableWebSearch"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Search", @"ConnectedSearchUseWeb"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Search", @"ConnectedSearchUseWebOverMeteredConnections"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search", @"HistoryViewEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search", @"DeviceHistoryEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search", @"AllowSearchToUseLocation"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search", @"BingSearchEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search", @"CortanaConsent"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Search", @"AllowCloudSearch"); } internal static void EnableGamingMode() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers", "HwSchMode", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "AllowAutoGameMode", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "AutoGameModeEnabled", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\System\GameConfigStore", "GameDVR_FSEBehaviorMode", 2, RegistryValueKind.DWord); } internal static void DisableGamingMode() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers", "HwSchMode", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "AllowAutoGameMode", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "AutoGameModeEnabled", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\System\GameConfigStore", "GameDVR_FSEBehaviorMode", 0, RegistryValueKind.DWord); } internal static void DisableXboxLive() { Utilities.StopService("XboxNetApiSvc"); Utilities.StopService("XblAuthManager"); Utilities.StopService("XblGameSave"); Utilities.StopService("XboxGipSvc"); Utilities.StopService("xbgm"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XboxNetApiSvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XblAuthManager", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XblGameSave", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XboxGipSvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\xbgm", "Start", "4", RegistryValueKind.DWord); Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "DisableXboxTasks.bat"); } internal static void EnableXboxLive() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XboxNetApiSvc", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XblAuthManager", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XblGameSave", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\XboxGipSvc", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\xbgm", "Start", "2", RegistryValueKind.DWord); try { if (!File.Exists(CoreHelper.ScriptsFolder + "EnableXboxTasks.bat")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableXboxTasks.bat", Properties.Resources.EnableXboxTasks); } } catch (Exception ex) { Logger.LogError("Optimize.EnableXboxLive", ex.Message, ex.StackTrace); } Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "EnableXboxTasks.bat"); } internal static void DisableAutomaticUpdates() { //Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\DeliveryOptimization", "SystemSettingsDownloadMode", "3", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_USERS\S-1-5-20\Software\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Settings", "DownloadMode", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings", "UxOption", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoUpdate", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "AUOptions", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoRebootWithLoggedOnUsers", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config", "DODownloadMode", "0", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DoSvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Speech", "AllowSpeechModelUpdate", 0); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Maintenance", "MaintenanceDisabled", "1", RegistryValueKind.DWord); //Utilities.StopService("DoSvc"); } internal static void EnableAutomaticUpdates() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\DeliveryOptimization", "SystemSettingsDownloadMode"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\WindowsUpdate\UX\Settings", "UxOption"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "AUOptions"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoUpdate"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU", "NoAutoRebootWithLoggedOnUsers"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config", "DODownloadMode"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Speech", "AllowSpeechModelUpdate"); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DoSvc", "Start", "3", RegistryValueKind.DWord); //Utilities.StartService("DoSvc"); // enable silent app install (Store app install/update is broken otherwise) Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Maintenance", "MaintenanceDisabled"); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Maintenance", "MaintenanceDisabled", "0", RegistryValueKind.DWord); } internal static void DisableStoreUpdates() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SilentInstalledAppsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableSoftLanding", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "PreInstalledAppsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableWindowsConsumerFeatures", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "OemPreInstalledAppsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore", "AutoDownload", "2", RegistryValueKind.DWord); } internal static void EnableStoreUpdates() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SilentInstalledAppsEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableSoftLanding"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "PreInstalledAppsEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableWindowsConsumerFeatures"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "OemPreInstalledAppsEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\WindowsStore", "AutoDownload"); } // no longer useful //internal static void RemoveWindows10Icon() //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\GWX", "DisableGWX", "00000001", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "DisableOSUpgrade", "00000001", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "AllowOSUpgrade", "00000000", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "ReservationsAllowed", "00000000", RegistryValueKind.DWord); //} internal static void DisableOneDrive() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive", "DisableFileSyncNGSC", "1", RegistryValueKind.DWord); } internal static void EnableOneDrive() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive", "DisableFileSyncNGSC", "0", RegistryValueKind.DWord); } internal static void EnableSensorServices() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SensrSvc", "Start", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SensorService", "Start", "2", RegistryValueKind.DWord); Utilities.StartService("SensrSvc"); Utilities.StartService("SensorService"); } internal static void DisableSensorServices() { Utilities.StopService("SensrSvc"); Utilities.StopService("SensorService"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SensrSvc", "Start", "4", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SensorService", "Start", "4", RegistryValueKind.DWord); } internal static void DisableTelemetryTasks() { // Deny System access to DiagnosisAutoLogger folder Utilities.RunCommand(string.Format("icacls {0} /deny SYSTEM:`(OI`)`(CI`)F", DiagnosisAutoLoggerFolder)); DisableTelemetryRunner(); Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "DisableTelemetryTasks.bat"); } internal static void EnableTelemetryTasks() { try { if (!File.Exists(CoreHelper.ScriptsFolder + "EnableTelemetryTasks.bat")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableTelemetryTasks.bat", Properties.Resources.EnableTelemetryTasks); } } catch (Exception ex) { Logger.LogError("Optimize.EnableTelemetryTasks", ex.Message, ex.StackTrace); } Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "EnableTelemetryTasks.bat"); } internal static void DisableOffice2016Telemetry() { try { if (!File.Exists(CoreHelper.ScriptsFolder + "DisableOfficeTelemetryTasks.reg")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.reg", Properties.Resources.EnableOfficeTelemetry); } if (!File.Exists(CoreHelper.ScriptsFolder + "DisableOfficeTelemetryTasks.bat")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.bat", Properties.Resources.EnableOfficeTelemetryTasks); } } catch (Exception ex) { Logger.LogError("Optimize.DisableOffice2016Telemetry", ex.Message, ex.StackTrace); } Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "DisableOfficeTelemetryTasks.bat"); Utilities.ImportRegistryScript(CoreHelper.ScriptsFolder + "DisableOfficeTelemetryTasks.reg"); } internal static void EnableOffice2016Telemetry() { try { if (!File.Exists(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.reg")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.reg", Properties.Resources.EnableOfficeTelemetry); } if (!File.Exists(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.bat")) { File.WriteAllText(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.bat", Properties.Resources.EnableOfficeTelemetryTasks); } } catch (Exception ex) { Logger.LogError("Optimize.EnableOffice2016Telemetry", ex.Message, ex.StackTrace); } Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.bat"); Utilities.ImportRegistryScript(CoreHelper.ScriptsFolder + "EnableOfficeTelemetryTasks.reg"); } internal static void HideTaskbarSearch() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search", "SearchboxTaskbarMode", "0", RegistryValueKind.DWord); } internal static void ShowTaskbarSearch() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Search", "SearchboxTaskbarMode"); } internal static void HideTaskbarWeather() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds", "ShellFeedsTaskbarViewMode", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds", "IsFeedsAvailable", 0, RegistryValueKind.DWord); } internal static void ShowTaskbarWeather() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Feeds", "ShellFeedsTaskbarViewMode"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Feeds", "IsFeedsAvailable"); } internal static void DisableNewsInterests() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh", "AllowNewsAndInterests", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds", "EnableFeeds", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\NewsAndInterests\AllowNewsAndInterests", "value", "0", RegistryValueKind.DWord); } internal static void EnableNewsInterests() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Dsh", "AllowNewsAndInterests"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Windows Feeds", "EnableFeeds"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\PolicyManager\default\NewsAndInterests\AllowNewsAndInterests", "value"); } internal static void EnhancePrivacy() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "RotatingLockScreenOverlayEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "RotatingLockScreenEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "DisableWindowsSpotlightFeatures", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "DisableTailoredExperiencesWithDiagnosticData", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableCloudOptimizedContent", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection", "DoNotShowFeedbackNotifications", 1); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo", "Enabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Bluetooth", "AllowAdvertising", 0); // Account -> Sign-in options -> Privacy Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "DisableAutomaticRestartSignOn", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo", "DisabledByGroupPolicy", 1); //Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Start_TrackProgs", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\TabletPC", "PreventHandwritingDataSharing", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\TextInput", "AllowLinguisticDataCollection", 0); // Privacy -> Speech Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\InputPersonalization", "AllowInputPersonalization", 0); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\SearchSettings", "SafeSearchMode", 0, RegistryValueKind.DWord); // Privacy -> Activity history -> Send my activity history to Microsoft Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "UploadUserActivities", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "AllowCrossDeviceClipboard", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Messaging", "AllowMessageSync", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\SettingSync", "DisableCredentialsSettingSync", 2); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\SettingSync", "DisableCredentialsSettingSyncUserOverride", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\SettingSync", "DisableApplicationSettingSync", 2); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\SettingSync", "DisableApplicationSettingSyncUserOverride", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy", "LetAppsActivateWithVoice", 2); // Find my device Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\FindMyDevice", "AllowFindMyDevice", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Settings\FindMyDevice", "LocationSyncEnabled", "0", RegistryValueKind.DWord); // Timeline Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "EnableActivityFeed", "0", RegistryValueKind.DWord); // Shared Experiences Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "EnableCdp", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Privacy", "TailoredExperiencesWithDiagnosticDataEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Privacy", "TailoredExperiencesWithDiagnosticDataEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack", "ShowedToastAtLevel", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_USERS\.DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack", "ShowedToastAtLevel", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy", "HasAccepted", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location", "Value", "Deny", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Settings\FindMyDevice", "LocationSyncEnabled", "0", RegistryValueKind.DWord); // Disable location tracking Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableLocation", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableLocationScripting", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableWindowsLocationProvider", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}", "SensorPermissionState", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\lfsvc\Service\Configuration", "Status", "0", RegistryValueKind.DWord); // Disable biometrics (Windows Hello) Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Biometrics", "Enabled", "0", RegistryValueKind.DWord); // News feeding Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds", "ShellFeedsTaskbarOpenOnHover", "0", RegistryValueKind.DWord); // Turn off share apps across devices Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CDP", "CdpSessionUserAuthzPolicy", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CDP", "NearShareChannelUserAuthzPolicy", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\CDP", "RomeSdkChannelUserAuthzPolicy", "0", RegistryValueKind.DWord); // Turn off KMS Client Online AVS Validation Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform", "NoGenTicket", "1", RegistryValueKind.DWord); // General Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo", "Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost", "EnableWebContentEvaluation", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost\EnableWebContentEvaluation", "Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\International\User Profile", "HttpAcceptLanguageOptOut", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SmartGlass", "UserAuthPolicy", "0", RegistryValueKind.DWord); // Speech, inking & typing Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Personalization\Settings", "AcceptedPrivacyPolicy", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\SettingSync\Groups\Language", "Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\InputPersonalization", "RestrictImplicitTextCollection", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\InputPersonalization", "RestrictImplicitInkCollection", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore", "HarvestContacts", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input\TIPC", "Enabled", "0", RegistryValueKind.DWord); // Other devices Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy", "LetAppsSyncWithDevices", "2", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\LooselyCoupled", "Value", "Deny", RegistryValueKind.String); // Feedback & diagnostics Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "MaxTelemetryAllowed", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "UploadUserActivities", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules", "PeriodInNanoSeconds", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules", "NumberOfSIUFInPeriod", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "AllowTelemetry", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection", "AllowTelemetry", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener", "Start", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener", "Start", "0", RegistryValueKind.DWord); // Wi-Fi Sense Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\config", "AutoConnectAllowedOEM", "0", RegistryValueKind.DWord); // Hotspot 2.0 Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WcmSvc\Tethering", "Hotspot2SignUp", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WlanSvc\AnqpCache", "OsuRegistrationStatus", "0", RegistryValueKind.DWord); // Mobile Hotspot remote startup Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WcmSvc\Tethering", "RemoteStartupDisabled", "1", RegistryValueKind.DWord); // Projecting to this PC Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Connect", "AllowProjectionToPC", "0", RegistryValueKind.DWord); // Phone Link Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\System", "EnableMmx", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\System", "RSoPLogging", 0, RegistryValueKind.DWord); // attempt to enable Local Group Policy Editor on Windows 10 Home editions if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows10 && Utilities.GetOS().ToLowerInvariant().Contains("home")) { Utilities.EnableGPEDitor(); } } internal static void CompromisePrivacy() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "RotatingLockScreenOverlayEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "RotatingLockScreenEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "DisableWindowsSpotlightFeatures"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "DisableTailoredExperiencesWithDiagnosticData"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\CloudContent", "DisableCloudOptimizedContent"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\DataCollection", "DoNotShowFeedbackNotifications"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo", "Enabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\PolicyManager\current\device\Bluetooth", "AllowAdvertising"); // Account -> Sign-in options -> Privacy Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "DisableAutomaticRestartSignOn"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo", "DisabledByGroupPolicy"); //Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Start_TrackProgs"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\TabletPC", "PreventHandwritingDataSharing"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\TextInput", "AllowLinguisticDataCollection"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\InputPersonalization", "AllowInputPersonalization"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "UploadUserActivities"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "AllowCrossDeviceClipboard"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\Messaging", "AllowMessageSync"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\SettingSync", "DisableCredentialsSettingSync"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\SettingSync", "DisableCredentialsSettingSyncUserOverride"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\SettingSync", "DisableApplicationSettingSync"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\SettingSync", "DisableApplicationSettingSyncUserOverride"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\AppPrivacy", "LetAppsActivateWithVoice"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\SearchSettings", "SafeSearchMode"); // Find my device Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\FindMyDevice", "AllowFindMyDevice"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Settings\FindMyDevice", "LocationSyncEnabled"); // Timeline Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "EnableActivityFeed"); // Shared Experiences Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "EnableCdp"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Privacy", "TailoredExperiencesWithDiagnosticDataEnabled"); Utilities.TryDeleteRegistryValueDefaultUsers(@".DEFAULT\Software\Microsoft\Windows\CurrentVersion\Privacy", "TailoredExperiencesWithDiagnosticDataEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack", "ShowedToastAtLevel"); Utilities.TryDeleteRegistryValueDefaultUsers(@".DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack", "ShowedToastAtLevel"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy", "HasAccepted"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location", "Value"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Settings\FindMyDevice", "LocationSyncEnabled"); // Enable location tracking Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableLocation"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableLocationScripting"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors", "DisableWindowsLocationProvider"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}", "SensorPermissionState"); Utilities.TryDeleteRegistryValue(true, @"System\CurrentControlSet\Services\lfsvc\Service\Configuration", "Status"); // Enable biometrics (Windows Hello) Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Biometrics", "Enabled"); // Turn off KMS Client Online AVS Validation Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform", "NoGenTicket"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Feeds", "ShellFeedsTaskbarOpenOnHover"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\CDP", "CdpSessionUserAuthzPolicy"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\CDP", "NearShareChannelUserAuthzPolicy"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\CDP", "RomeSdkChannelUserAuthzPolicy"); // General Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo", "Enabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost", "EnableWebContentEvaluation"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost\EnableWebContentEvaluation", "Enabled"); Utilities.TryDeleteRegistryValue(false, @"Control Panel\International\User Profile", "HttpAcceptLanguageOptOut"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\SmartGlass", "UserAuthPolicy"); // Speech, inking & typing Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Personalization\Settings", "AcceptedPrivacyPolicy"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\SettingSync\Groups\Language", "Enabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\InputPersonalization", "RestrictImplicitTextCollection"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\InputPersonalization", "RestrictImplicitInkCollection"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore", "HarvestContacts"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Input\TIPC", "Enabled"); // Other devices Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\AppPrivacy", "LetAppsSyncWithDevices"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global\LooselyCoupled", "Value"); // Feedback & diagnostics Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Siuf\Rules", "PeriodInNanoSeconds"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Siuf\Rules", "NumberOfSIUFInPeriod"); // Feedback & diagnostics Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "MaxTelemetryAllowed"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "UploadUserActivities"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Siuf\Rules", "PeriodInNanoSeconds"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Siuf\Rules", "NumberOfSIUFInPeriod"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection", "AllowTelemetry"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\DataCollection", "AllowTelemetry"); Utilities.TryDeleteRegistryValue(true, @"SYSTEM\ControlSet001\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener", "Start"); Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\WMI\AutoLogger\AutoLogger-Diagtrack-Listener", "Start"); // Wi-Fi Sense Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\config", "AutoConnectAllowedOEM"); // Hotspot 2.0 Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\WcmSvc\Tethering", "Hotspot2SignUp"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\WlanSvc\AnqpCache", "OsuRegistrationStatus"); // Mobile Hotspot remote startup Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\WcmSvc\Tethering", "RemoteStartupDisabled"); // Projecting to this PC Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Connect", "AllowProjectionToPC"); // Phone Link Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows", "EnableMmx"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\System", "EnableMmx"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\System", "RSoPLogging"); } internal static void DisableGameBar() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "AppCaptureEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "AudioCaptureEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "CursorCaptureEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "UseNexusForGameBarEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "ShowStartupPanel", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\System\GameConfigStore", "GameDVR_Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\GameDVR", "AllowGameDVR", "0", RegistryValueKind.DWord); } internal static void EnableGameBar() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "AppCaptureEnabled", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "AudioCaptureEnabled", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR", "CursorCaptureEnabled", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "UseNexusForGameBarEnabled", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\GameBar", "ShowStartupPanel", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\System\GameConfigStore", "GameDVR_Enabled", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\GameDVR", "AllowGameDVR", "1", RegistryValueKind.DWord); } // restores classic files explorer internal static void DisableQuickAccessHistory(bool disableTasksIcon = true) { if (disableTasksIcon) { // Hide task view button from taskbar Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowTaskViewButton", "0", RegistryValueKind.DWord); } Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager", "EnthusiastMode", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowSyncProviderNotifications", "0", RegistryValueKind.DWord); using (RegistryKey k = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer", true)) { k.SetValue("ShowFrequent", 0, RegistryValueKind.DWord); k.SetValue("ShowRecent", 0, RegistryValueKind.DWord); } using (RegistryKey k = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", true)) { k.SetValue("LaunchTo", 1, RegistryValueKind.DWord); } // Disable File History //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\FileHistory", "Disabled", "1", RegistryValueKind.DWord); //Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\File History", "Disabled", "1", RegistryValueKind.DWord); } internal static void EnableQuickAccessHistory() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager", "EnthusiastMode", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowSyncProviderNotifications", "1", RegistryValueKind.DWord); using (RegistryKey k = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer", true)) { k.SetValue("ShowFrequent", 1, RegistryValueKind.DWord); k.SetValue("ShowRecent", 1, RegistryValueKind.DWord); } using (RegistryKey k = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", true)) { k.SetValue("LaunchTo", 2, RegistryValueKind.DWord); k.DeleteValue("ShowTaskViewButton", false); } //Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\FileHistory", true).DeleteValue("Disabled", false); //Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\File History", true).DeleteValue("Disabled", false); } internal static void DisableStartMenuAds() { // Disable Phone Link suggestions Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Mobility", "OptedIn", "0", RegistryValueKind.DWord); // Disable "Suggested" app notifications (Ads for MS services) Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.Suggested", "Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-88000326Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\UserProfileEngagement", "ScoobeSystemSettingEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "ContentDeliveryAllowed", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "PreInstalledAppsEverEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SilentInstalledAppsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-314559Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338387Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338389Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SystemPaneSuggestionsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338393Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-353694Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-353696Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-310093Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338388Enabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContentEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SoftLandingEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "FeatureManagementEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer", "DisableSearchBoxSuggestions", 1, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "AllowOnlineTips", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer", "DisableSearchBoxSuggestions", 1, RegistryValueKind.DWord); } internal static void EnableStartMenuAds() { Utilities.TryDeleteRegistryValue(false, @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.Suggested", "Enabled"); Utilities.TryDeleteRegistryValue(false, @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Mobility", "OptedIn"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-88000326Enabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\UserProfileEngagement", "ScoobeSystemSettingEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "ContentDeliveryAllowed"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "PreInstalledAppsEverEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SilentInstalledAppsEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-314559Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338387Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338389Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SystemPaneSuggestionsEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338393Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-353694Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-353696Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-310093Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContentEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SubscribedContent-338388Enabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "SoftLandingEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager", "FeatureManagementEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Policies\Microsoft\Windows\Explorer", "DisableSearchBoxSuggestions"); Utilities.TryDeleteRegistryValue(true, @"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "AllowOnlineTips"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\Explorer", "DisableSearchBoxSuggestions"); } internal static void DisableMyPeople() { Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People", "PeopleBand", "0", RegistryValueKind.DWord); } internal static void EnableMyPeople() { Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People", "PeopleBand", "1", RegistryValueKind.DWord); } internal static void ExcludeDrivers() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "ExcludeWUDriversInQualityUpdate", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings", "ExcludeWUDriversInQualityUpdate", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update\ExcludeWUDriversInQualityUpdate", "value", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update", "ExcludeWUDriversInQualityUpdate", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Update", "ExcludeWUDriversInQualityUpdate", "1", RegistryValueKind.DWord); } internal static void IncludeDrivers() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "ExcludeWUDriversInQualityUpdate", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings", "ExcludeWUDriversInQualityUpdate", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update\ExcludeWUDriversInQualityUpdate", "value", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\Update", "ExcludeWUDriversInQualityUpdate", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Update", "ExcludeWUDriversInQualityUpdate", "0", RegistryValueKind.DWord); } internal static void DisableWindowsInk() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowWindowsInkWorkspace", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowSuggestedAppsInWindowsInkWorkspace", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "0", RegistryValueKind.DWord); } internal static void EnableWindowsInk() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowWindowsInkWorkspace", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace", "AllowSuggestedAppsInWindowsInkWorkspace", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableInkingWithTouch", "1", RegistryValueKind.DWord); } internal static void DisableSpellingAndTypingFeatures() { // Spelling Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableAutocorrection", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableSpellchecking", "0", RegistryValueKind.DWord); // Typing Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Input\Settings", "InsightsEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableDoubleTapSpace", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnablePredictionSpaceInsertion", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Microsoft\TabletTip\1.7", "EnableTextPrediction", "0", RegistryValueKind.DWord); } internal static void EnableSpellingAndTypingFeatures() { Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\TabletTip\1.7", "EnableAutocorrection"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\TabletTip\1.7", "EnableSpellchecking"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\TabletTip\1.7", "EnableDoubleTapSpace"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\TabletTip\1.7", "EnablePredictionSpaceInsertion"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\TabletTip\1.7", "EnableTextPrediction"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Input\Settings", "InsightsEnabled"); } internal static void EnableFaxService() { Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Fax", "Start", "3", RegistryValueKind.DWord); } internal static void DisableFaxService() { Utilities.StopService("Fax"); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Fax", "Start", "4", RegistryValueKind.DWord); } internal static void EnableInsiderService() { Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\wisvc", "Start", "3", RegistryValueKind.DWord); Utilities.StartService("wisvc"); } internal static void DisableInsiderService() { Utilities.StopService("wisvc"); Registry.SetValue("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\wisvc", "Start", "4", RegistryValueKind.DWord); } //internal static void DisableForcedFeatureUpdates() //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "DisableOSUpgrade", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "AllowOSUpgrade", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "ReservationsAllowed", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore", "DisableOSUpgrade", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\UpgradeNotification", "UpgradeAvailable", "0", RegistryValueKind.DWord); // try // { // string buildNumber = (string)Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion", "ReleaseId", string.Empty); // if (!string.IsNullOrEmpty(buildNumber)) Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "TargetReleaseVersionInfo", buildNumber, RegistryValueKind.String); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "TargetReleaseVersion", "1", RegistryValueKind.DWord); // } // catch (Exception ex) // { // ErrorLogger.LogError("Optimize.DisableForcedFeatureUpdates", ex.Message, ex.StackTrace); // } //} //internal static void EnableForcedFeatureUpdates() //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", "DisableOSUpgrade", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "AllowOSUpgrade", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade", "ReservationsAllowed", "1", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore", "DisableOSUpgrade", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\UpgradeNotification", "UpgradeAvailable", "1", RegistryValueKind.DWord); // try // { // Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", true).DeleteValue("TargetReleaseVersionInfo", false); // Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate", true).DeleteValue("TargetReleaseVersion", false); // } // catch (Exception ex) // { // ErrorLogger.LogError("Optimize.EnableForcedFeatureUpdates", ex.Message, ex.StackTrace); // } //} internal static void DisableSmartScreen() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments", "SaveZoneInformation", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments", "ScanWithAntiVirus", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "ShellSmartScreenLevel", "Warn", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "EnableSmartScreen", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer", "SmartScreenEnabled", "Off", RegistryValueKind.String); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\PhishingFilter", "EnabledV9", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\AppHost", "PreventOverride", 0, RegistryValueKind.DWord); using (RegistryKey key = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64)) { key.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance").SetValue("Enabled", 0); } } internal static void EnableSmartScreen() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Policies\Attachments", "SaveZoneInformation"); Utilities.TryDeleteRegistryValue(true, @"Software\Microsoft\Windows\CurrentVersion\Policies\Attachments", "ScanWithAntiVirus"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "ShellSmartScreenLevel"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "EnableSmartScreen"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer", "SmartScreenEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Internet Explorer\PhishingFilter", "EnabledV9"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\AppHost", "PreventOverride"); try { using (RegistryKey key = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry64)) { key.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance", true).DeleteValue("Enabled", false); } } catch { } } internal static void DisableCloudClipboard() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "AllowClipboardHistory", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System", "AllowCrossDeviceClipboard", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Clipboard", "EnableClipboardHistory", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Clipboard", "EnableClipboardHistory", "0", RegistryValueKind.DWord); } internal static void EnableCloudClipboard() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "AllowClipboardHistory"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\System", "AllowCrossDeviceClipboard"); Utilities.TryDeleteRegistryValue(true, @"Software\Microsoft\Clipboard", "EnableClipboardHistory"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Clipboard", "EnableClipboardHistory"); } // Working only on Windows 10 // Removes 260 character path limit internal static void EnableLongPaths() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem", "LongPathsEnabled", "1", RegistryValueKind.DWord); } internal static void DisableLongPaths() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem", "LongPathsEnabled", "0", RegistryValueKind.DWord); } internal static void DisableStickyKeys() { Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys", "Flags", "506", RegistryValueKind.String); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response", "Flags", "122", RegistryValueKind.String); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys", "Flags", "58", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\StickyKeys", "Flags", "506", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\Keyboard Response", "Flags", "122", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\ToggleKeys", "Flags", "58", RegistryValueKind.String); } internal static void EnableStickyKeys() { Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys", "Flags", "510", RegistryValueKind.String); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response", "Flags", "126", RegistryValueKind.String); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Accessibility\ToggleKeys", "Flags", "62", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\StickyKeys", "Flags", "510", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\Keyboard Response", "Flags", "126", RegistryValueKind.String); Registry.SetValue(@"HKEY_USERS\.DEFAULT\Control Panel\Accessibility\ToggleKeys", "Flags", "62", RegistryValueKind.String); } internal static void RemoveCastToDevice() { try { Utilities.RunCommand("REG ADD \"HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked\" /V {7AD84985-87B4-4a16-BE58-8B72A5B390F7} /T REG_SZ /D \"Play to Menu\" /F"); //Utilities.RestartExplorer(); } catch (Exception ex) { Logger.LogError("Optimize.RemoveCastToDevice", ex.Message, ex.StackTrace); } } internal static void AddCastToDevice() { try { Utilities.RunCommand("REG Delete \"HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked\" /V {7AD84985-87B4-4a16-BE58-8B72A5B390F7} /F"); //Utilities.RestartExplorer(); } catch (Exception ex) { Logger.LogError("Optimize.AddCastToDevice", ex.Message, ex.StackTrace); } } // ACTION CENTER = NOTIFICATION CENTER //internal static void DisableActionCenter() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications", "ToastEnabled", "0", RegistryValueKind.DWord); // Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer", "DisableNotificationCenter", "1", RegistryValueKind.DWord); //} //internal static void EnableActionCenter() //{ // Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Policies\Microsoft\Windows\Explorer", true).DeleteValue("DisableNotificationCenter", false); // Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\PushNotifications", true).DeleteValue("ToastEnabled", false); //} /* Windows 11 tweaks */ // DEPRECATED //internal static void EnableWindows10Start() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Start_ShowClassicMode", "1", RegistryValueKind.DWord); //} //internal static void DisableWindows10Start() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Start_ShowClassicMode", "0", RegistryValueKind.DWord); //} internal static void RestoreClassicPhotoViewer() { Utilities.ImportRegistryScript(CoreHelper.ScriptsFolder + "RestoreClassicPhotoViewer.reg"); } internal static void DisableClassicPhotoViewer() { Utilities.ImportRegistryScript(CoreHelper.ScriptsFolder + "DisableClassicPhotoViewer.reg"); } internal static void DisableVirtualizationBasedSecurity() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard", "EnableVirtualizationBasedSecurity", 0, RegistryValueKind.DWord); } internal static void EnableVirtualizationBasedSecurity() { Utilities.TryDeleteRegistryValue(true, @"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard", "EnableVirtualizationBasedSecurity"); } internal static void AlignTaskbarToLeft() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarAl", "0", RegistryValueKind.DWord); } internal static void AlignTaskbarToCenter() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarAl", "1", RegistryValueKind.DWord); } internal static void DisableSnapAssist() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "EnableSnapAssistFlyout", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", "0", RegistryValueKind.String); } internal static void EnableSnapAssist() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "EnableSnapAssistFlyout", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", "1", RegistryValueKind.String); } internal static void DisableWidgets() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarDa", "0", RegistryValueKind.DWord); } internal static void EnableWidgets() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarDa"); } internal static void DisableChat() { // Disable Meet Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "HideSCAMeetNow", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer", "HideSCAMeetNow", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarMn", "0", RegistryValueKind.DWord); } internal static void EnableChat() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer", "HideSCAMeetNow"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer", "HideSCAMeetNow"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarMn"); } // DEPRECATED //internal static void SmallerTaskbar() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSi", "0", RegistryValueKind.DWord); //} //internal static void DefaultTaskbarSize() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "TaskbarSi", "1", RegistryValueKind.DWord); //} internal static void DisableShowMoreOptions() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32", "", ""); } internal static void EnableShowMoreOptions() { Registry.CurrentUser.DeleteSubKeyTree(@"Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}", false); } internal static void DisableTPMCheck() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup", "AllowUpgradesWithUnsupportedTPMOrCPU", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig", "BypassCPUCheck", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig", "BypassStorageCheck", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig", "BypassTPMCheck", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig", "BypassRAMCheck", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig", "BypassSecureBootCheck", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\UnsupportedHardwareNotificationCache", "SV2", 0, RegistryValueKind.DWord); } internal static void EnableTPMCheck() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup", "AllowUpgradesWithUnsupportedTPMOrCPU", "0", RegistryValueKind.DWord); Registry.LocalMachine.OpenSubKey(@"SYSTEM\Setup\LabConfig", true).DeleteValue("BypassTPMCheck", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\Setup\LabConfig", true).DeleteValue("BypassRAMCheck", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\Setup\LabConfig", true).DeleteValue("BypassSecureBootCheck", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\Setup\LabConfig", true).DeleteValue("BypassStorageCheck", false); Registry.LocalMachine.OpenSubKey(@"SYSTEM\Setup\LabConfig", true).DeleteValue("BypassCPUCheck", false); } // DEPRECATED //internal static void EnableFileExplorerClassicRibbon() //{ // Registry.SetValue(@"HKEY_CURRENT_USER\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}\InprocServer32", "", ""); //} //internal static void DisableFileExplorerClassicRibbon() //{ // Registry.CurrentUser.DeleteSubKeyTree(@"Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}", false); // Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages", "UndockingDisable"); //} internal static void EnableFilesCompactMode() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "UseCompactMode", 1, RegistryValueKind.DWord); } internal static void DisableFilesCompactMode() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "UseCompactMode", 0, RegistryValueKind.DWord); } internal static void DisableStickers() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\PolicyManager\current\device\Stickers", "EnableStickers"); } internal static void EnableStickers() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Stickers", "EnableStickers", 1, RegistryValueKind.DWord); } /* Microsoft Edge-related tweaks */ internal static void DisableEdgeDiscoverBar() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "HubsSidebarEnabled", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge", "HubsSidebarEnabled", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "WebWidgetAllowed", 0, RegistryValueKind.DWord); } internal static void EnableEdgeDiscoverBar() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "HubsSidebarEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Policies\Microsoft\Edge", "HubsSidebarEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "WebWidgetAllowed"); } internal static void DisableEdgeTelemetry() { // Microsoft Edge settings -> Privacy, search and services -> Personalize your web experience Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "PersonalizationReportingEnabled", 0); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge", "PersonalizationReportingEnabled", 0); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge", "UserFeedbackAllowed", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "UserFeedbackAllowed", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "MetricsReportingEnabled", 0); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge", "MetricsReportingEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\BooksLibrary", "EnableExtendedBooksTelemetry", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\MicrosoftEdge\BooksLibrary", "EnableExtendedBooksTelemetry", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Edge\SmartScreenEnabled", "", 0); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Edge\SmartScreenPuaEnabled", "", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "ExtensionManifestV2Availability", 2); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "Edge3PSerpTelemetryEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "SpotlightExperiencesAndRecommendationsEnabled", 0); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge", "SpotlightExperiencesAndRecommendationsEnabled", 0); } internal static void EnableEdgeTelemetry() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "ExtensionManifestV2Availability"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "Edge3PSerpTelemetryEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Edge\SmartScreenEnabled", ""); Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Edge\SmartScreenPuaEnabled", ""); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "MetricsReportingEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Policies\Microsoft\Edge", "MetricsReportingEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\MicrosoftEdge\BooksLibrary", "EnableExtendedBooksTelemetry"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Policies\Microsoft\MicrosoftEdge\BooksLibrary", "EnableExtendedBooksTelemetry"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "PersonalizationReportingEnabled"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Edge", "UserFeedbackAllowed"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Policies\Microsoft\Edge", "PersonalizationReportingEnabled"); Utilities.TryDeleteRegistryValue(false, @"Software\Policies\Microsoft\Edge", "UserFeedbackAllowed"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "SpotlightExperiencesAndRecommendationsEnabled"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Policies\Microsoft\Edge", "SpotlightExperiencesAndRecommendationsEnabled"); } internal static void DisableCoPilotAI() { // Disable Copilot+ Recall Registry.SetValue(@"HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsAI", "DisableAIDataAnalysis", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsAI", "DisableAIDataAnalysis", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowCopilotButton", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "DefaultBrowserSettingsCampaignEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "ComposeInlineEnabled", "0", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot", "TurnOffWindowsCopilot", "1", RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot", "TurnOffWindowsCopilot", "1", RegistryValueKind.DWord); } internal static void EnableCoPilotAI() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowCopilotButton"); Utilities.TryDeleteRegistryValue(false, @"Software\Policies\Microsoft\Windows\WindowsAI", "DisableAIDataAnalysis"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Windows\WindowsAI", "DisableAIDataAnalysis"); Utilities.TryDeleteRegistryValue(false, @"Software\Policies\Microsoft\Windows\WindowsCopilot", "TurnOffWindowsCopilot"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\Windows\WindowsCopilot", "TurnOffWindowsCopilot"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "DefaultBrowserSettingsCampaignEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\Edge", "ComposeInlineEnabled"); } /* Apps-specific tweaks */ // VISUAL STUDIO TELEMETRY internal static void DisableVisualStudioTelemetry() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\Telemetry", "TurnOffSwitch", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableFeedbackDialog", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableEmailInput", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableScreenshotCapture", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\VisualStudio\SQM", "OptIn", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\VisualStudio\Setup", "ConcurrentDownloads", 2, RegistryValueKind.DWord); if (Environment.Is64BitOperatingSystem) { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VSCommon\14.0\SQM", "OptIn", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VSCommon\15.0\SQM", "OptIn", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VSCommon\16.0\SQM", "OptIn", 0); } else { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VSCommon\14.0\SQM", "OptIn", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VSCommon\15.0\SQM", "OptIn", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VSCommon\16.0\SQM", "OptIn", 0); } try { Utilities.DisableProtectedService("VSStandardCollectorService150"); } catch (Exception ex) { Logger.LogError("Optimize.DisableVisualStudioTelemetry", ex.Message, ex.StackTrace); } } internal static void EnableVisualStudioTelemetry() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\VisualStudio\Telemetry", "TurnOffSwitch"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableFeedbackDialog"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableEmailInput"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\VisualStudio\Feedback", "DisableScreenshotCapture"); Utilities.TryDeleteRegistryValue(true, @"Software\Policies\Microsoft\VisualStudio\SQM", "OptIn"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Microsoft\VisualStudio\Setup", "ConcurrentDownloads"); if (Environment.Is64BitOperatingSystem) { Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\VSCommon\14.0\SQM", "OptIn"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\VSCommon\15.0\SQM", "OptIn"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Microsoft\VSCommon\16.0\SQM", "OptIn"); } else { Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Wow6432Node\Microsoft\VSCommon\14.0\SQM", "OptIn"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Wow6432Node\Microsoft\VSCommon\15.0\SQM", "OptIn"); Utilities.TryDeleteRegistryValue(false, @"SOFTWARE\Wow6432Node\Microsoft\VSCommon\16.0\SQM", "OptIn"); } try { Utilities.EnableProtectedService("VSStandardCollectorService150"); } catch (Exception ex) { Logger.LogError("Optimize.EnableVisualStudioTelemetry", ex.Message, ex.StackTrace); } } // NVIDIA TELEMETRY internal static void DisableNvidiaTelemetry() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NvTelemetryContainer", "Start", 4); Utilities.RunCommand("schtasks.exe /change /tn NvTmRepOnLogon_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /disable"); Utilities.RunCommand("schtasks.exe /change /tn NvTmRep_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /disable"); Utilities.RunCommand("schtasks.exe /change /tn NvTmMon_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /disable"); Utilities.RunCommand("net.exe stop NvTelemetryContainer"); Utilities.RunCommand("sc.exe config NvTelemetryContainer start= disabled"); Utilities.RunCommand("sc.exe stop NvTelemetryContainer"); } internal static void EnableNvidiaTelemetry() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NvTelemetryContainer", "Start", 2); Utilities.RunCommand("schtasks.exe /change /tn NvTmRepOnLogon_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /enable"); Utilities.RunCommand("schtasks.exe /change /tn NvTmRep_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /enable"); Utilities.RunCommand("schtasks.exe /change /tn NvTmMon_{B2FE1952-0186-46C3-BAEC-A80AA35AC5B8} /enable"); Utilities.RunCommand("net.exe start NvTelemetryContainer"); Utilities.RunCommand("sc.exe config NvTelemetryContainer start= enabled"); Utilities.RunCommand("sc.exe start NvTelemetryContainer"); } // CHROME TELEMETRY + SOFTWARE REPORTER TOOL internal static void DisableChromeTelemetry() { Utilities.PreventProcessFromRunning("software_reporter_tool.exe"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "MetricsReportingEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "ChromeCleanupReportingEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "ChromeCleanupEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "UserFeedbackAllowed", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "DeviceMetricsReportingEnabled", 0); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome", "ExtensionManifestV2Availability", 2); } internal static void EnableChromeTelemetry() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "MetricsReportingEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "ChromeCleanupReportingEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "ChromeCleanupEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "UserFeedbackAllowed"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "DeviceMetricsReportingEnabled"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Google\Chrome", "ExtensionManifestV2Availability"); } // FIREFOX TELEMETRY internal static void DisableFirefoxTelemetry() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox", "DisableTelemetry", 1); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox", "DisableDefaultBrowserAgent", 1); Utilities.RunCommand("schtasks.exe /change /disable /tn \"\\Mozilla\\Firefox Default Browser Agent 308046B0AF4A39CB\""); Utilities.RunCommand("schtasks.exe /change /disable /tn \"\\Mozilla\\Firefox Default Browser Agent D2CEEC440E2074BD\""); } internal static void EnableFirefoxTelemetry() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Mozilla\Firefox", "DisableTelemetry"); Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Policies\Mozilla\Firefox", "DisableDefaultBrowserAgent"); Utilities.RunCommand("schtasks.exe /change /enable /tn \"\\Mozilla\\Firefox Default Browser Agent 308046B0AF4A39CB\""); Utilities.RunCommand("schtasks.exe /change /enable /tn \"\\Mozilla\\Firefox Default Browser Agent D2CEEC440E2074BD\""); } // Actually useful for dual-booting machines internal static void EnableUTCTime() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation", "RealTimeIsUniversal", "1", RegistryValueKind.DWord); } internal static void DisableUTCTime() { Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\TimeZoneInformation", "RealTimeIsUniversal"); } // Applicable only on Windows 10 and 11 internal static void DisableModernStandby() { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power", "PlatformAoAcOverride", "0", RegistryValueKind.DWord); } internal static void EnableModernStandby() { Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\Power", "PlatformAoAcOverride"); } internal static void ShowAllTrayIcons() { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray", "0", RegistryValueKind.DWord); } internal static void HideTrayIcons() { Utilities.TryDeleteRegistryValue(false, @"Software\Microsoft\Windows\CurrentVersion\Explorer", "EnableAutoTray"); } internal static void RemoveMenusDelay() { Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "MenuShowDelay", "0"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Mouse", "MouseHoverTime", "0"); } internal static void RestoreMenusDelay() { Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Desktop", "MenuShowDelay", "400"); Registry.SetValue("HKEY_CURRENT_USER\\Control Panel\\Mouse", "MouseHoverTime", "400"); } } } ================================================ FILE: Optimizer/Optimizer.csproj ================================================  Debug AnyCPU {96563750-9265-4ACC-8E9E-61930A208A4D} WinExe Properties Optimizer Optimizer v4.8.1 512 true false publish\ true Disk false Foreground 7 Days false false true 0 1.0.0.%2a false true AnyCPU true full false ..\bin\debug\ DEBUG;TRACE prompt 4 false true AnyCPU pdbonly true ..\bin\release\ prompt 4 false true optimizer.ico false ..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll False C:\Windows\assembly\GAC_MSIL\System.Management.Automation\1.0.0.0__31bf3856ad364e35\System.Management.Automation.dll False Component Component Component Component Component Component UserControl ToggleCard.cs Form AboutForm.cs UserControl AppCard.cs Component Component Component Component Form FileUnlockForm.cs Form FirstRunForm.cs Form HelperForm.cs Form SubForm.cs Form UpdateForm.cs Form HostsEditorForm.cs Form InfoForm.cs Form MainForm.cs True True Resources.resx Form SplashForm.cs Form StartupPreviewForm.cs Form StartupRestoreForm.cs ToggleCard.cs AboutForm.cs Designer AppCard.cs FileUnlockForm.cs FirstRunForm.cs HelperForm.cs HostsEditorForm.cs InfoForm.cs MainForm.cs Designer SubForm.cs UpdateForm.cs ResXFileCodeGenerator Designer Resources.Designer.cs SplashForm.cs StartupPreviewForm.cs StartupRestoreForm.cs SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings True False Microsoft .NET Framework 4.5.2 %28x86 and x64%29 true False .NET Framework 3.5 SP1 false {50A7E9B0-70EF-11D1-B75A-00A0C90564FE} 1 0 0 tlbimp False True ================================================ FILE: Optimizer/OptionsHelper.cs ================================================ using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Drawing; using System.IO; using System.Linq; using System.Windows.Forms; namespace Optimizer { internal static class OptionsHelper { internal static Color ForegroundColor = Color.FromArgb(153, 102, 204); internal static Color ForegroundAccentColor = Color.FromArgb(134, 89, 179); internal static Color BackgroundColor = Color.FromArgb(10, 10, 10); internal static Color BackAccentColor = Color.FromArgb(40, 40, 40); internal static Color TextColor; internal readonly static string SettingsFile = CoreHelper.CoreFolder + "\\Optimizer.json"; internal static Options CurrentOptions = new Options(); internal static dynamic TranslationList; internal static Color GetContrastColor(Color c) { double brightness = c.R * 0.299 + c.G * 0.587 + c.B * 0.114; return brightness > Constants.CONTRAST_THRESHOLD ? Color.Black : Color.White; } internal static void ApplyTheme(Form f) { SetTheme(f, CurrentOptions.Theme, ColorHelper.ChangeColorBrightness(CurrentOptions.Theme, 0.7)); } private static void SetTheme(Form f, Color c1, Color c2) { dynamic c; ForegroundColor = c1; ForegroundAccentColor = c2; TextColor = GetContrastColor(CurrentOptions.Theme); Utilities.GetSelfAndChildrenRecursive(f).ToList().ForEach(x => { c = x; if (x is Button) { c.ForeColor = TextColor; c.BackColor = c1; c.FlatAppearance.BorderColor = c1; c.FlatAppearance.MouseDownBackColor = c2; c.FlatAppearance.MouseOverBackColor = c2; c.FlatAppearance.BorderSize = 0; } if (x is LinkLabel) { if ((string)c.Tag == Constants.THEME_FLAG) { c.LinkColor = c1; c.VisitedLinkColor = c1; c.ActiveLinkColor = c2; } } if (x is CheckBox || x is RadioButton || x is Label) { if ((string)c.Tag == Constants.THEME_FLAG) { c.ForeColor = c1; } } c.Invalidate(); }); } internal static void LegacyCheck() { if (File.Exists(SettingsFile)) { if (File.ReadAllText(SettingsFile).Contains("FirstRun")) { File.Delete(SettingsFile); } } } internal static void SaveSettings() { if (File.Exists(SettingsFile)) { string jsonFile = File.ReadAllText(SettingsFile); string jsonMemory = JsonConvert.SerializeObject(CurrentOptions); // check to see if no changes have been made if (JToken.DeepEquals(JObject.Parse(jsonFile), JObject.Parse(jsonMemory))) return; File.Delete(SettingsFile); using (FileStream fs = File.Open(SettingsFile, FileMode.OpenOrCreate)) using (StreamWriter sw = new StreamWriter(fs)) using (JsonWriter jw = new JsonTextWriter(sw)) { jw.Formatting = Formatting.Indented; JsonSerializer serializer = new JsonSerializer(); serializer.Serialize(jw, CurrentOptions); } } } internal static void LoadSettings() { if (!File.Exists(SettingsFile) || File.ReadAllText(SettingsFile).Contains("\"Color\":")) { // settings migration for new color picker if (File.Exists(SettingsFile) && File.ReadAllText(SettingsFile).Contains("\"Color\":")) { Options tmpJson = JsonConvert.DeserializeObject(File.ReadAllText(SettingsFile)); tmpJson.Theme = Color.FromArgb(153, 102, 204); CurrentOptions = tmpJson; } else { // DEFAULT OPTIONS CurrentOptions.Theme = Color.FromArgb(153, 102, 204); CurrentOptions.AppsFolder = string.Empty; CurrentOptions.EnableTray = false; CurrentOptions.AutoStart = false; CurrentOptions.InternalDNS = Constants.INTERNAL_DNS; CurrentOptions.UpdateOnLaunch = true; CurrentOptions.DisableIndicium = false; CurrentOptions.DisableAppsTool = false; CurrentOptions.DisableHostsEditor = false; CurrentOptions.DisableUWPApps = false; CurrentOptions.DisableStartupTool = false; CurrentOptions.DisableCleaner = false; CurrentOptions.DisableIntegrator = false; CurrentOptions.DisablePinger = false; //CurrentOptions.TelemetryClientID = Guid.NewGuid().ToString().ToUpperInvariant(); //CurrentOptions.DisableOptimizerTelemetry = false; CurrentOptions.LanguageCode = LanguageCode.EN; CurrentOptions.EnablePerformanceTweaks = false; CurrentOptions.DisableNetworkThrottling = false; CurrentOptions.DisableWindowsDefender = false; CurrentOptions.DisableSystemRestore = false; CurrentOptions.DisablePrintService = false; CurrentOptions.DisableMediaPlayerSharing = false; CurrentOptions.DisableErrorReporting = false; CurrentOptions.DisableHomeGroup = false; CurrentOptions.DisableSuperfetch = false; CurrentOptions.DisableTelemetryTasks = false; CurrentOptions.DisableOffice2016Telemetry = false; CurrentOptions.DisableCompatibilityAssistant = false; CurrentOptions.DisableFaxService = false; CurrentOptions.DisableSmartScreen = false; CurrentOptions.DisableStickyKeys = false; CurrentOptions.EnableGamingMode = false; CurrentOptions.EnableLegacyVolumeSlider = false; CurrentOptions.DisableQuickAccessHistory = false; CurrentOptions.DisableStartMenuAds = false; CurrentOptions.UninstallOneDrive = false; CurrentOptions.DisableMyPeople = false; CurrentOptions.DisableAutomaticUpdates = false; CurrentOptions.ExcludeDrivers = false; CurrentOptions.DisableTelemetryServices = false; CurrentOptions.DisablePrivacyOptions = false; CurrentOptions.DisableCortana = false; CurrentOptions.DisableSensorServices = false; CurrentOptions.DisableWindowsInk = false; CurrentOptions.DisableSpellingTyping = false; CurrentOptions.DisableXboxLive = false; CurrentOptions.DisableGameBar = false; CurrentOptions.DisableInsiderService = false; CurrentOptions.DisableStoreUpdates = false; CurrentOptions.DisableCloudClipboard = false; CurrentOptions.EnableLongPaths = false; CurrentOptions.RemoveCastToDevice = false; CurrentOptions.DisableHibernation = false; CurrentOptions.DisableSMB1 = false; CurrentOptions.DisableSMB2 = false; CurrentOptions.DisableNTFSTimeStamp = false; CurrentOptions.DisableSearch = false; CurrentOptions.RestoreClassicPhotoViewer = false; CurrentOptions.DisableVisualStudioTelemetry = false; CurrentOptions.DisableFirefoxTemeletry = false; CurrentOptions.DisableChromeTelemetry = false; CurrentOptions.DisableNVIDIATelemetry = false; CurrentOptions.DisableEdgeDiscoverBar = false; CurrentOptions.DisableEdgeTelemetry = false; CurrentOptions.DisableOneDrive = false; CurrentOptions.TaskbarToLeft = false; CurrentOptions.DisableSnapAssist = false; CurrentOptions.DisableWidgets = false; CurrentOptions.DisableChat = false; CurrentOptions.ClassicMenu = false; CurrentOptions.DisableTPMCheck = false; CurrentOptions.CompactMode = false; CurrentOptions.DisableStickers = false; CurrentOptions.DisableVBS = false; CurrentOptions.DisableCoPilotAI = false; CurrentOptions.DisableHPET = false; CurrentOptions.EnableRegistryBackups = false; CurrentOptions.EnableLoginVerbose = false; CurrentOptions.RemoveMenusDelay = false; CurrentOptions.ShowAllTrayIcons = false; CurrentOptions.DisableModernStandby = false; CurrentOptions.EnableUtcTime = false; CurrentOptions.DisableNewsInterests = false; CurrentOptions.HideTaskbarSearch = false; CurrentOptions.HideTaskbarWeather = false; using (FileStream fs = File.Open(SettingsFile, FileMode.CreateNew)) using (StreamWriter sw = new StreamWriter(fs)) using (JsonWriter jw = new JsonTextWriter(sw)) { jw.Formatting = Formatting.Indented; JsonSerializer serializer = new JsonSerializer(); serializer.Serialize(jw, CurrentOptions); } } } else { CurrentOptions = JsonConvert.DeserializeObject(File.ReadAllText(SettingsFile)); } // prevent options from corruption if (CurrentOptions.Theme == Color.Empty || CurrentOptions.Theme == Color.FromArgb(0, 0, 0, 0)) { CurrentOptions.Theme = Color.FromArgb(153, 102, 204); } // generate random telemetry ID if not present //if (string.IsNullOrEmpty(CurrentOptions.TelemetryClientID)) //{ // CurrentOptions.TelemetryClientID = Guid.NewGuid().ToString().ToUpperInvariant(); // SaveSettings(); //} LoadTranslation(); } internal static void LoadTranslation() { // load proper translation list try { if (CurrentOptions.LanguageCode == LanguageCode.EN) TranslationList = JObject.Parse(Properties.Resources.EN); if (CurrentOptions.LanguageCode == LanguageCode.RU) TranslationList = JObject.Parse(Properties.Resources.RU); if (CurrentOptions.LanguageCode == LanguageCode.EL) TranslationList = JObject.Parse(Properties.Resources.EL); if (CurrentOptions.LanguageCode == LanguageCode.TR) TranslationList = JObject.Parse(Properties.Resources.TR); if (CurrentOptions.LanguageCode == LanguageCode.DE) TranslationList = JObject.Parse(Properties.Resources.DE); if (CurrentOptions.LanguageCode == LanguageCode.ES) TranslationList = JObject.Parse(Properties.Resources.ES); if (CurrentOptions.LanguageCode == LanguageCode.PT) TranslationList = JObject.Parse(Properties.Resources.PT); if (CurrentOptions.LanguageCode == LanguageCode.FR) TranslationList = JObject.Parse(Properties.Resources.FR); if (CurrentOptions.LanguageCode == LanguageCode.IT) TranslationList = JObject.Parse(Properties.Resources.IT); if (CurrentOptions.LanguageCode == LanguageCode.CN) TranslationList = JObject.Parse(Properties.Resources.CN); if (CurrentOptions.LanguageCode == LanguageCode.CZ) TranslationList = JObject.Parse(Properties.Resources.CZ); if (CurrentOptions.LanguageCode == LanguageCode.TW) TranslationList = JObject.Parse(Properties.Resources.TW); if (CurrentOptions.LanguageCode == LanguageCode.KO) TranslationList = JObject.Parse(Properties.Resources.KO); if (CurrentOptions.LanguageCode == LanguageCode.PL) TranslationList = JObject.Parse(Properties.Resources.PL); if (CurrentOptions.LanguageCode == LanguageCode.AR) TranslationList = JObject.Parse(Properties.Resources.AR); if (CurrentOptions.LanguageCode == LanguageCode.KU) TranslationList = JObject.Parse(Properties.Resources.KU); if (CurrentOptions.LanguageCode == LanguageCode.HU) TranslationList = JObject.Parse(Properties.Resources.HU); if (CurrentOptions.LanguageCode == LanguageCode.RO) TranslationList = JObject.Parse(Properties.Resources.RO); if (CurrentOptions.LanguageCode == LanguageCode.NL) TranslationList = JObject.Parse(Properties.Resources.NL); if (CurrentOptions.LanguageCode == LanguageCode.UA) TranslationList = JObject.Parse(Properties.Resources.UA); if (CurrentOptions.LanguageCode == LanguageCode.JA) TranslationList = JObject.Parse(Properties.Resources.JA); if (CurrentOptions.LanguageCode == LanguageCode.FA) TranslationList = JObject.Parse(Properties.Resources.FA); if (CurrentOptions.LanguageCode == LanguageCode.NE) TranslationList = JObject.Parse(Properties.Resources.NE); if (CurrentOptions.LanguageCode == LanguageCode.BG) TranslationList = JObject.Parse(Properties.Resources.BG); if (CurrentOptions.LanguageCode == LanguageCode.VN) TranslationList = JObject.Parse(Properties.Resources.VN); if (CurrentOptions.LanguageCode == LanguageCode.UR) TranslationList = JObject.Parse(Properties.Resources.UR); if (CurrentOptions.LanguageCode == LanguageCode.ID) TranslationList = JObject.Parse(Properties.Resources.ID); if (CurrentOptions.LanguageCode == LanguageCode.HR) TranslationList = JObject.Parse(Properties.Resources.HR); } catch (Exception ex) { Logger.LogError("Options.LoadTranslation", ex.Message, ex.StackTrace); TranslationList = JObject.Parse(Properties.Resources.EN); } } } } ================================================ FILE: Optimizer/PingerHelper.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System.Net.Sockets; namespace Optimizer { internal static class PingerHelper { internal static string[] DNSOptions = { "Automatic", "Cloudflare", "OpenDNS", "Quad9", "Google", "AlternateDNS", "Adguard", "CleanBrowsing", "CleanBrowsing (adult filter)" }; internal static string[] GoogleDNSv4 = { "8.8.8.8", "8.8.4.4" }; internal static string[] GoogleDNSv6 = { "2001:4860:4860::8888", "2001:4860:4860::8844" }; internal static string[] OpenDNSv4 = { "208.67.222.222", "208.67.220.220" }; internal static string[] OpenDNSv6 = { "2620:0:ccc::2", "2620:0:ccd::2" }; internal static string[] CloudflareDNSv4 = { "1.1.1.1", "1.0.0.1" }; internal static string[] CloudflareDNSv6 = { "2606:4700:4700::1111", "2606:4700:4700::1001" }; internal static string[] Quad9DNSv4 = { "9.9.9.9", "149.112.112.112" }; internal static string[] Quad9DNSv6 = { "2620:fe::fe", string.Empty }; internal static string[] CleanBrowsingDNSv4 = { "185.228.168.168", "185.228.168.169" }; internal static string[] CleanBrowsingDNSv6 = { "2a0d:2a00:1::", "2a0d:2a00:2::" }; internal static string[] CleanBrowsingAdultDNSv4 = { "185.228.168.10", "185.228.168.11" }; internal static string[] CleanBrowsingAdultDNSv6 = { "2a0d:2a00:1::1", "2a0d:2a00:2::1" }; internal static string[] AlternateDNSv4 = { "76.76.19.19", "76.223.122.150" }; internal static string[] AlternateDNSv6 = { "2602:fcbc::ad", "2602:fcbc:2::ad" }; internal static string[] AdguardDNSv4 = { "94.140.14.14", "94.140.15.15" }; internal static string[] AdguardDNSv6 = { "2a10:50c0::ad1:ff", "2a10:50c0::ad2:ff" }; internal static Ping pinger = new Ping(); internal static bool ShowHiddenAdapters = false; internal static NetworkInterface[] NetworkAdapters = GetActiveNetworkAdapters(); static IPAddress addressToPing; internal static NetworkInterface[] GetActiveNetworkAdapters() { try { if (ShowHiddenAdapters) NetworkAdapters = NetworkInterface.GetAllNetworkInterfaces(); if (!ShowHiddenAdapters) NetworkAdapters = NetworkInterface.GetAllNetworkInterfaces().Where( a => a.OperationalStatus == OperationalStatus.Up && (a.NetworkInterfaceType == NetworkInterfaceType.Wireless80211 || a.NetworkInterfaceType == NetworkInterfaceType.Ethernet) && a.GetIPProperties().GatewayAddresses.Any(g => g.Address.AddressFamily.ToString() == "InterNetwork")).ToArray(); } catch (Exception ex) { Logger.LogError("PingerHelper.GetActiveNetworkAdapters", ex.Message, ex.StackTrace); return null; } return NetworkAdapters; } internal static IEnumerable GetDNSFromNetworkAdapter(NetworkInterface nic) { try { return nic.GetIPProperties().DnsAddresses.Select(z => z.ToString()); } catch (Exception ex) { Logger.LogError("PingerHelper.GetDNSFromNetworkAdapter", ex.Message, ex.StackTrace); return null; } } internal static void SetDNS(string nic, string[] dnsv4, string[] dnsv6) { string cmdv4Alternate = string.Empty; string cmdv6Alternate = string.Empty; string cmdv4Primary = $"netsh interface ipv4 set dnsservers {nic} static {dnsv4[0]} primary"; if (dnsv4.Length == 2) { cmdv4Alternate = $"netsh interface ipv4 add dnsservers {nic} {dnsv4[1]} index=2"; } string cmdv6Primary = $"netsh interface ipv6 set dnsservers {nic} static {dnsv6[0]} primary"; if (dnsv6.Length == 2) { cmdv6Alternate = $"netsh interface ipv6 add dnsservers {nic} {dnsv6[1]} index=2"; } Utilities.RunCommand(cmdv4Primary); Utilities.RunCommand(cmdv4Alternate); Utilities.RunCommand(cmdv6Primary); Utilities.RunCommand(cmdv6Alternate); } internal static void ResetDefaultDNS(string nic) { string cmdv4 = $"netsh interface ipv4 set dnsservers {nic} dhcp"; string cmdv6 = $"netsh interface ipv6 set dnsservers {nic} dhcp"; Utilities.RunCommand(cmdv4); Utilities.RunCommand(cmdv6); } internal static void ResetDefaultDNSForAllNICs() { foreach (string nic in NetworkAdapters.Select(x => x.Name)) { ResetDefaultDNS(nic); } } internal static void SetDNSForAllNICs(string[] dnsv4, string[] dnsv6) { foreach (string nic in NetworkAdapters.Select(x => x.Name)) { SetDNS(nic, dnsv4, dnsv6); } } internal static PingReply PingHost(string nameOrAddress) { PingReply reply; try { addressToPing = Dns.GetHostAddresses(nameOrAddress).First(address => address.AddressFamily == AddressFamily.InterNetwork); reply = pinger.Send(addressToPing); return reply; } catch { return null; } } // It uses the InternalDNS setting for this internal static bool IsInternetAvailable() { const int timeout = 1000; string host = OptionsHelper.CurrentOptions.InternalDNS ?? Constants.INTERNAL_DNS; var ping = new Ping(); var buffer = new byte[32]; var pingOptions = new PingOptions(); try { var reply = ping.Send(host, timeout, buffer, pingOptions); return (reply != null && reply.Status == IPStatus.Success); } catch (Exception) { return false; } } internal static void FlushDNSCache() { Utilities.RunCommand("ipconfig /flushdns"); } //internal static string PortScan(string IP, int port) //{ // IPAddress ipAddress = IPAddress.Parse(IP); // IPEndPoint endPoint = new IPEndPoint(ipAddress, port); // Socket sock = null; // try // { // sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); // IAsyncResult result = sock.BeginConnect(endPoint, null, null); // bool success = result.AsyncWaitHandle.WaitOne(100, true); // if (sock.Connected) // { // sock.EndConnect(result); // return $"{port} - [✓]"; // } // else // { // return $"{port} - [×]"; // } // } // catch // { // return $"{port} - [×]"; // } // finally // { // if (sock != null) sock.Close(); // } //} } } ================================================ FILE: Optimizer/Program.cs ================================================ using System; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Threading; using System.Windows.Forms; namespace Optimizer { static class Program { /// /// Version properties. Do NOT leave them empty /// internal readonly static float Major = 16; internal readonly static float Minor = 7; internal readonly static bool EXPERIMENTAL_BUILD = false; internal static string GetCurrentVersionTostring() { return $"{Major.ToString()}.{Minor.ToString()}"; } internal static float GetCurrentVersionToFloat() { return float.Parse(GetCurrentVersionTostring()); } internal static bool SILENT_MODE = false; internal static int DPI_PREFERENCE; // Enables the corresponding Windows tab for Windows Server machines, // as well as the Advanced tweaks tab internal static bool UNSAFE_MODE = false; const string _jsonAssembly = @"Optimizer.Newtonsoft.Json.dll"; internal static MainForm _MainForm; internal static SplashForm _SplashForm; static string _adminMissingMessage = "Optimizer needs to be run as administrator!\nApp will now close..."; static string _unsupportedMessage = "Optimizer works with Windows 7 and higher!\nApp will now close..."; static string _confInvalidVersionMsg = "Windows version does not match!"; static string _confInvalidFormatMsg = "Config file is in invalid format!"; static string _confNotFoundMsg = "Config file does not exist!"; static string _argInvalidMsg = "Invalid argument! Example: Optimizer.exe /config=win10.json"; static string _alreadyRunningMsg = "Optimizer is already running in the background!"; const string MUTEX_GUID = @"{DEADMOON-0EFC7B8A-D1FC-467F-B4B1-0117C643FE19-OPTIMIZER}"; internal static Mutex MUTEX; static bool _notRunning; [System.Runtime.InteropServices.DllImport("user32.dll")] private static extern bool SetProcessDPIAware(); [STAThread] static void Main(string[] switches) { AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve; EmbeddedAssembly.Load(_jsonAssembly, _jsonAssembly.Replace("Optimizer.", string.Empty)); DPI_PREFERENCE = Convert.ToInt32(Microsoft.Win32.Registry.GetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager", "LastLoadedDPI", "96")); if (DPI_PREFERENCE <= 0) { DPI_PREFERENCE = 96; } if (Environment.OSVersion.Version.Major >= 6) SetProcessDPIAware(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); // single-instance mechanism MUTEX = new Mutex(true, MUTEX_GUID, out _notRunning); if (!_notRunning) { MessageBox.Show(_alreadyRunningMsg, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } if (!Utilities.IsAdmin()) { string file = Process.GetCurrentProcess().MainModule.FileName; ProcessStartInfo p = new ProcessStartInfo(file); p.Verb = "runas"; p.Arguments = string.Join(" ", switches); Process.Start(p); Environment.Exit(0); return; } if (!Utilities.IsCompatible()) { HelperForm f = new HelperForm(null, MessageType.Error, _unsupportedMessage); f.ShowDialog(); Environment.Exit(0); return; } CoreHelper.Deploy(); FontHelper.LoadFont(); if (switches.Length == 1) { string arg = switches[0].Trim().ToLowerInvariant(); // UNSAFE mode switch (allows running on Windows Server 2008+) if (arg == "/unsafe") { UNSAFE_MODE = true; StartMainForm(); return; } if (arg == "/repair") { Utilities.Repair(true); return; } if (arg == "/disablehpet") { Utilities.DisableHPET(); Environment.Exit(0); return; } if (arg == "/enablehpet") { Utilities.EnableHPET(); Environment.Exit(0); return; } // [!!!] unlock all cores instruction if (arg == "/unlockcores") { Utilities.UnlockAllCores(); Environment.Exit(0); return; } if (arg.StartsWith("/svchostsplit=")) { string x = arg.Replace("/svchostsplit=", string.Empty); bool isValid = !x.Any(c => !char.IsDigit(c)); if (isValid && int.TryParse(x, out int result)) Utilities.DisableSvcHostProcessSplitting(result); Environment.Exit(0); return; } if (arg == "/resetsvchostsplit") { Utilities.EnableSvcHostProcessSplitting(); Environment.Exit(0); return; } if (arg == "/version") { if (!EXPERIMENTAL_BUILD) MessageBox.Show($"Optimizer: {GetCurrentVersionTostring()}\n\nCoded by: deadmoon © ∞\n\nhttps://github.com/hellzerg/optimizer", "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show("Optimizer: EXPERIMENTAL BUILD. PLEASE DELETE AFTER TESTING.\n\nCoded by: deadmoon © ∞\n\nhttps://github.com/hellzerg/optimizer", "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } // instruct to restart in safe-mode if (arg == "/restart=safemode") { RestartInSafeMode(); } // instruct to restart normally if (arg == "/restart=normal") { RestartInNormalMode(); } // disable defender automatically if (arg == "/restart=disabledefender") { SetRunOnceDisableDefender(); } // enable defender automatically if (arg == "/restart=enabledefender") { SetRunOnceEnableDefender(); } // return from safe-mode automatically if (arg == "/silentdisabledefender") { DisableDefenderInSafeMode(); RestartInNormalMode(); } if (arg == "/silentenabledefender") { EnableDefenderInSafeMode(); RestartInNormalMode(); } // disables Defender in SAFE MODE (for Windows 10 1903+ / works in Windows 11 as well) if (arg == "/disabledefender") { DisableDefenderInSafeMode(); MessageBox.Show("Windows Defender has been completely disabled successfully.", "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } // other options for disabling specific tools if (arg.StartsWith("/disable=")) { string x = arg.Replace("/disable=", string.Empty); string[] opts = x.Split(','); bool? o1, o2, o3, o4, o5, o6, o7, o8; if (opts.Contains(Constants.INDICIUM_TOOL)) o1 = true; else o1 = null; if (opts.Contains(Constants.UWP_TOOL)) o2 = true; else o2 = null; if (opts.Contains(Constants.APPS_TOOL)) o3 = true; else o3 = null; if (opts.Contains(Constants.HOSTS_EDITOR)) o4 = true; else o4 = null; if (opts.Contains(Constants.STARTUP_TOOL)) o5 = true; else o5 = null; if (opts.Contains(Constants.CLEANER_TOOL)) o6 = true; else o6 = null; if (opts.Contains(Constants.INTEGRATOR_TOOL)) o7 = true; else o7 = null; if (opts.Contains(Constants.PINGER_TOOL)) o8 = true; else o8 = null; StartMainForm(new bool?[] { o1, o2, o3, o4, o5, o6, o7, o8 }); return; } if (arg.StartsWith("/config=")) { UNSAFE_MODE = true; string fileName = arg.Replace("/config=", string.Empty); if (!File.Exists(fileName)) { MessageBox.Show(_confNotFoundMsg, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } SilentOps.GetSilentConfig(fileName); if (SilentOps.CurrentSilentConfig == null) { MessageBox.Show(_confInvalidFormatMsg, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } if (!SilentOps.ProcessWindowsVersionCompatibility()) { MessageBox.Show(_confInvalidVersionMsg, "Optimizer", MessageBoxButtons.OK, MessageBoxIcon.Information); Environment.Exit(0); return; } SILENT_MODE = true; LoadSettings(); SilentOps.ProcessAllActions(); OptionsHelper.SaveSettings(); } } else { StartMainForm(); } } private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { Exception error = (Exception)e.ExceptionObject; Logger.LogError("Program.Main-UnhandledException", error.Message, error.StackTrace); } private static void LoadSettings() { // for backward compatibility OptionsHelper.LegacyCheck(); // load settings, if there is no settings, load defaults try { // show FirstRunForm/Language Selector if app is running first time if (!File.Exists(OptionsHelper.SettingsFile)) { OptionsHelper.LoadSettings(); if (!SILENT_MODE) { FirstRunForm frf = new FirstRunForm(); frf.ShowDialog(); } } else { OptionsHelper.LoadSettings(); } //if (!Options.CurrentOptions.DisableOptimizerTelemetry) //{ // TelemetryHelper.EnableTelemetryService(); //} // ideal place to replace internal messages from translation list _adminMissingMessage = OptionsHelper.TranslationList["adminMissingMsg"]; _unsupportedMessage = OptionsHelper.TranslationList["unsupportedMsg"]; _confInvalidFormatMsg = OptionsHelper.TranslationList["confInvalidFormatMsg"]; _confInvalidVersionMsg = OptionsHelper.TranslationList["confInvalidVersionMsg"]; _confNotFoundMsg = OptionsHelper.TranslationList["confNotFoundMsg"]; _argInvalidMsg = OptionsHelper.TranslationList["argInvalidMsg"]; _alreadyRunningMsg = OptionsHelper.TranslationList["alreadyRunningMsg"]; } catch (Exception ex) { Logger.LogError("Program.Main-LoadSettings", ex.Message, ex.StackTrace); Environment.Exit(0); } } internal static void RestartInSafeMode() { Utilities.RunCommand("bcdedit /set {current} safeboot Minimal"); Thread.Sleep(500); Utilities.Reboot(); Environment.Exit(0); } internal static void RestartInNormalMode() { Utilities.RunCommand("bcdedit /deletevalue {current} safeboot"); Thread.Sleep(500); Utilities.Reboot(); Environment.Exit(0); } private static void DisableDefenderInSafeMode() { File.WriteAllText("DisableDefenderSafeMode.bat", Properties.Resources.DisableDefenderSafeMode1903Plus); Utilities.RunBatchFile("DisableDefenderSafeMode.bat"); Thread.Sleep(1000); Utilities.RunBatchFile("DisableDefenderSafeMode.bat"); Thread.Sleep(1000); File.Delete("DisableDefenderSafeMode.bat"); } private static void EnableDefenderInSafeMode() { File.WriteAllText("EnableDefenderSafeMode.bat", Properties.Resources.EnableDefenderSafeMode1903Plus); Utilities.RunBatchFile("EnableDefenderSafeMode.bat"); Thread.Sleep(1000); Utilities.RunBatchFile("EnableDefenderSafeMode.bat"); Thread.Sleep(1000); File.Delete("EnableDefenderSafeMode.bat"); } internal static void SetRunOnceDisableDefender() { // set RunOnce instruction Microsoft.Win32.Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce", "*OptimizerDisableDefender", Assembly.GetExecutingAssembly().Location + " /silentdisabledefender", Microsoft.Win32.RegistryValueKind.String); RestartInSafeMode(); } internal static void SetRunOnceEnableDefender() { // set RunOnce instruction Microsoft.Win32.Registry.SetValue(@"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce", "*OptimizerEnableDefender", Assembly.GetExecutingAssembly().Location + " /silentenabledefender", Microsoft.Win32.RegistryValueKind.String); RestartInSafeMode(); } private static void StartMainForm() { LoadSettings(); StartSplashForm(); _MainForm = new MainForm(_SplashForm); _MainForm.Load += MainForm_Load; Application.Run(_MainForm); } private static void StartMainForm(bool?[] codes) { LoadSettings(); StartSplashForm(); _MainForm = new MainForm(_SplashForm, codes[0], codes[3], codes[2], codes[1], codes[4], codes[5], codes[6], codes[7]); _MainForm.Load += MainForm_Load; Application.Run(_MainForm); } private static void StartSplashForm() { _SplashForm = new SplashForm(); var splashThread = new Thread(new ThreadStart( () => Application.Run(_SplashForm))); splashThread.SetApartmentState(ApartmentState.STA); splashThread.Start(); } private static void MainForm_Load(object sender, EventArgs e) { if (_SplashForm != null && !_SplashForm.Disposing && !_SplashForm.IsDisposed) _SplashForm.Invoke(new Action(() => _SplashForm.Close())); _MainForm.TopMost = true; _MainForm.Activate(); _MainForm.TopMost = false; } private static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args) { return EmbeddedAssembly.Get(args.Name); } } } ================================================ FILE: Optimizer/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Optimizer")] [assembly: AssemblyDescription("The Finest Windows Optimizer")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("deadmoon © ∞")] [assembly: AssemblyProduct("Optimizer")] [assembly: AssemblyCopyright("deadmoon © ∞")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // ∞ // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("96563750-9265-4acc-8e9e-61930a208a4d")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] [assembly: AssemblyFileVersion("0.0.0.0")] ================================================ FILE: Optimizer/Properties/Resources.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Optimizer.Properties { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Optimizer.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\Directory\shell\OpenWithCMD] ///@="Open Command Prompt here" ///"Icon"="cmd.exe" ///"NoWorkingDirectory"="" /// ///[HKEY_CLASSES_ROOT\Directory\shell\OpenWithCMD\command] ///@="cmd.exe /s /k pushd \"%V\"" /// ///[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenWithCMD] ///@="Open Command Prompt here" ///"Icon"="cmd.exe" ///"NoWorkingDirectory"="" /// ///[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenWithCMD\command] ///@="cmd.exe /s /k pushd \"%V\"" /// ///[HKEY_CLASSES_ROOT\Drive\shell\OpenWit [rest of string was truncated]";. /// internal static string AddOpenWithCMD { get { return ResourceManager.GetString("AddOpenWithCMD", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "النظام", /// "subPrivacy": "الخصوصية", /// "subGaming": "الألعاب", /// "subTouch": "اللمس", /// "subTaskbar": "شريط المهام", /// "subExtras": "الإضافات", /// "btnAbout": "حسنا", /// "restartButton": "إعادة التشغيل الآن", /// "restartButton8": "إعادة التشغيل الآن", /// "restartButton10": "إعادة التشغيل الآن", /// "btnFind": "البحث", /// "btnKill": "إنهاء", /// "trayUnlocker": "مفاتيح الملفات", /// "restartAndApply": "لتطبيق الإعدادات يجب إعادة التشغيل", /// "txtVersion": "الإصدار: {VN}", /// "txtBitness": "أنت تعمل مع { [rest of string was truncated]";. /// internal static string AR { get { return ResourceManager.GetString("AR", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap banner { get { object obj = ResourceManager.GetObject("banner", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Система", /// "subPrivacy": "Анонимност", /// "subGaming": "Гейминг", /// "subTouch": "Пипане", /// "subTaskbar": "Лента за задачи", /// "subExtras": "Екстри", /// "btnAbout": "ОК", /// "restartButton": "Рестартирай Сега", /// "restartButton8": "Рестартирай Сега", /// "restartButton10": "Рестартирай Сега", /// "btnFind": "Намери", /// "btnKill": "Убий", /// "trayUnlocker": "Файлови Управители", /// "restartAndApply": "Рестартирай, за да приложиш промените", /// "txtVersion": "Версия: {VN}", /// "txtBitness": "Работиш с [rest of string was truncated]";. /// internal static string BG { get { return ResourceManager.GetString("BG", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap brazil { get { object obj = ResourceManager.GetObject("brazil", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap bulgaria { get { object obj = ResourceManager.GetObject("bulgaria", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap china { get { object obj = ResourceManager.GetObject("china", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "系统", /// "subPrivacy": "隐私", /// "subGaming": "游戏", /// "subTouch": "触碰", /// "subTaskbar": "任务栏", /// "subExtras": "附加功能", /// "btnAbout": "确定", /// "restartButton": "现在重启", /// "restartButton8": "现在重启", /// "restartButton10": "现在重启", /// "restartAndApply": "重新启动以应用更改", /// "btnFind": "查找进程", /// "btnKill": "结束进程", /// "trayUnlocker": "查找文件句柄", /// "txtVersion": "版本: {VN}", /// "txtBitness": "您使用的是{BITS}", /// "onedriveM": "确定要卸载 OneDrive 吗? 这将删除您的桌面和文档文件! 仅在本地帐户上使用此选项!", /// "systemRestoreM": "您确定要禁用系统还原吗? 这将删除您当前的备份图像!" [rest of string was truncated]";. /// internal static string CN { get { return ResourceManager.GetString("CN", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap croatia { get { object obj = ResourceManager.GetObject("croatia", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Systém", /// "subPrivacy": "Soukromí", /// "subGaming": "Hraní", /// "subTouch": "Dotek", /// "subTaskbar": "Hlavní panel", /// "subExtras": "Extra", /// "btnAbout": "OK", /// "restartButton": "Restartovat nyní", /// "restartButton8": "Restartovat nyní", /// "restartButton10": "Restartovat nyní", /// "restartAndApply": "Restartovat a použít změny", /// "btnFind": "Nalézt", /// "btnKill": "Zabít", /// "trayUnlocker": "Držadla souborů (File Handles)", /// "txtVersion": "Verze: {VN}", /// "onedriveM": "Opravdu chcete odin [rest of string was truncated]";. /// internal static string CZ { get { return ResourceManager.GetString("CZ", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap czech { get { object obj = ResourceManager.GetObject("czech", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "System", /// "subPrivacy": "Datenschutz", /// "subGaming": "Gaming", /// "subTouch": "Touch", /// "subTaskbar": "Taskleiste", /// "subExtras": "Zusatzfunktionen", /// "btnAbout": "OK", /// "restartButton": "Jetzt neu starten", /// "restartButton8": "Jetzt neu starten", /// "restartButton10": "Jetzt neu starten", /// "btnFind": "Suchen", /// "btnKill": "Beenden", /// "trayUnlocker": "Dateigriffe", /// "restartAndApply": "Neustart zur Anwendung der Änderungen", /// "txtVersion": "Version: {VN}", /// "txtBitness": "Sie ar [rest of string was truncated]";. /// internal static string DE { get { return ResourceManager.GetString("DE", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\DesktopBackground\Shell\DesktopShortcuts] ///"MUIVerb"="Desktop Shortcuts" ///"SubCommands"="theme;wallpaper;scrnsavr;desktopicons;sound;cursor;DPI;color" ///"icon"="desk.cpl" ///"Position"=- /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\theme] ///@="Change Theme" ///"icon"="imageres.dll,145" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\theme\command] ///@="control desk [rest of string was truncated]";. /// internal static string DesktopShortcuts { get { return ResourceManager.GetString("DesktopShortcuts", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///; MajorGeeks.Com ///; How to Restore the Windows Photo Viewer on Windows 10 ///; https://www.majorgeeks.com/content/page/restore_the_windows_photo_viewer_on_windows_10.html /// ///[HKEY_CLASSES_ROOT\jpegfile\shell\open\DropTarget] ///"Clsid"=- /// ///[HKEY_CLASSES_ROOT\pngfile\shell\open\DropTarget] ///"Clsid"=- /// ///[-HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open] /// ///[-HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.Bitmap] /// ///[-HKEY_CLASSES_ROOT\PhotoViewer.FileAssoc.JFIF] /// ///[-H [rest of string was truncated]";. /// internal static string DisableClassicPhotoViewer { get { return ResourceManager.GetString("DisableClassicPhotoViewer", resourceCulture); } } /// /// Looks up a localized string similar to rem USE AT OWN RISK AS IS WITHOUT WARRANTY OF ANY KIND !!!!! /// ///rem https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/security-malware-windows-defender-disableantispyware ///rem "DisableAntiSpyware" is discontinued and will be ignored on client devices, as of the August 2020 (version 4.18.2007.8) update to Microsoft Defender Antivirus. /// ///rem Disable Tamper Protection First !!!!! ///rem https://www.tenforums.com/tutorials/123792-turn-off-tamper-protection-windows-defender-antivirus.html ///reg [rest of string was truncated]";. /// internal static string DisableDefenderSafeMode1903Plus { get { return ResourceManager.GetString("DisableDefenderSafeMode1903Plus", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedapplications] ///"accesssolution"=dword:00000001 ///"olksolution"=dword:00000001 ///"onenotesolution"=dword:00000001 ///"pptsolution"=dword:00000001 ///"projectsolution"=dword:00000001 ///"publishersolution"=dword:00000001 ///"visiosolution"=dword:00000001 ///"wdsolution"=dword:00000001 ///"xlsolution"=dword:00000001 /// ///[HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedsolutiontypes] ///"agave"= [rest of string was truncated]";. /// internal static string DisableOfficeTelemetry { get { return ResourceManager.GetString("DisableOfficeTelemetry", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" /disable ///schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" /disable /// ///schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" /disable ///schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn" [rest of string was truncated]";. /// internal static string DisableOfficeTelemetryTasks { get { return ResourceManager.GetString("DisableOfficeTelemetryTasks", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable ///schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable ///schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" ///schtasks /change /tn "\Microsoft\Windo [rest of string was truncated]";. /// internal static string DisableTelemetryTasks { get { return ResourceManager.GetString("DisableTelemetryTasks", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /end /tn "\Microsoft\XblGameSave\XblGameSaveTask" ///schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTask" /disable ///schtasks /end /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" ///schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" /disable ///. /// internal static string DisableXboxTasks { get { return ResourceManager.GetString("DisableXboxTasks", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap dutch { get { object obj = ResourceManager.GetObject("dutch", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap egypt { get { object obj = ResourceManager.GetObject("egypt", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Σύστημα", /// "subPrivacy": "Ιδιωτικότητα", /// "subGaming": "Gaming", /// "subTouch": "Αφή", /// "subTaskbar": "Γραμμή Εργασιών", /// "subExtras": "Πρόσθετα", /// "btnAbout": "Εντάξει", /// "restartButton": "Επανεκκίνηση τώρα", /// "restartButton8": "Επανεκκίνηση τώρα", /// "restartButton10": "Επανεκκίνηση τώρα", /// "btnFind": "Εύρεση", /// "btnKill": "Τερματισμός", /// "trayUnlocker": "File Handles", /// "restartAndApply": "Επανεκκίνηση για την εφαρμογή των αλλαγών", /// "txtVersion": "Έκδοση: {VN}", /// "txtBitness [rest of string was truncated]";. /// internal static string EL { get { return ResourceManager.GetString("EL", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "System", /// "subPrivacy": "Privacy", /// "subGaming": "Gaming", /// "subTouch": "Touch", /// "subTaskbar": "Taskbar", /// "subExtras": "Extras", /// "btnAbout": "OK", /// "restartButton": "Restart now", /// "restartButton8": "Restart now", /// "restartButton10": "Restart now", /// "btnFind": "Find", /// "btnKill": "Kill", /// "trayUnlocker": "File Handles", /// "restartAndApply": "Restart to apply changes", /// "txtVersion": "Version: {VN}", /// "txtBitness": "You are working with {BITS}", /// "linkUpdate": "Update avai [rest of string was truncated]";. /// internal static string EN { get { return ResourceManager.GetString("EN", resourceCulture); } } /// /// Looks up a localized string similar to reg add "HKLM\Software\Microsoft\Windows Defender\Features" /v "TamperProtection" /t REG_DWORD /d "1" /f /// ///reg add "HKLM\System\CurrentControlSet\Services\SgrmBroker" /v "Start" /t REG_DWORD /d "2" /f /// ///reg add "HKLM\System\CurrentControlSet\Services\SecurityHealthService" /v "Start" /t REG_DWORD /d "2" /f /// ///rem 1 - Disable Real-time protection ///reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f ///reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWO [rest of string was truncated]";. /// internal static string EnableDefenderSafeMode1903Plus { get { return ResourceManager.GetString("EnableDefenderSafeMode1903Plus", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedapplications] ///"accesssolution"=- ///"olksolution"=- ///"onenotesolution"=- ///"pptsolution"=- ///"projectsolution"=- ///"publishersolution"=- ///"visiosolution"=- ///"wdsolution"=- ///"xlsolution"=- /// ///[HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedsolutiontypes] ///"agave"=- ///"appaddins"=- ///"comaddins"=- ///"documentfiles"=- ///"templatefiles"=- ///. /// internal static string EnableOfficeTelemetry { get { return ResourceManager.GetString("EnableOfficeTelemetry", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" /enable ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" /enable /// ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" /enable ///schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn" /enable /// ///reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Outlook\Options\Mail" /v "EnableLogging" /t REG_DWORD /d 1 /f ///reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\Mail" /v "EnableLogging" /t [rest of string was truncated]";. /// internal static string EnableOfficeTelemetryTasks { get { return ResourceManager.GetString("EnableOfficeTelemetryTasks", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /enable ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /enable ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /enable ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /enable ///schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Uploader" /enable ///schtasks / [rest of string was truncated]";. /// internal static string EnableTelemetryTasks { get { return ResourceManager.GetString("EnableTelemetryTasks", resourceCulture); } } /// /// Looks up a localized string similar to schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTask" /enable ///schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" /enable ///. /// internal static string EnableXboxTasks { get { return ResourceManager.GetString("EnableXboxTasks", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistema", /// "subPrivacy": "Privacidad", /// "subGaming": "Juego de azar", /// "subTouch": "Tocar", /// "subTaskbar": "Barra de tareas", /// "subExtras": "Extras", /// "btnAbout": "OK", /// "restartButton": "Reiniciar ahora", /// "restartButton8": "Reiniciar ahora", /// "restartButton10": "Reiniciar ahora", /// "btnFind": "Encontrar", /// "btnKill": "Matar", /// "trayUnlocker": "Asas de archivo", /// "restartAndApply": "Reiniciar para aplicar cambios", /// "onedriveM": "¿Seguro que quieres desinstalar OneDrive? ¡Est [rest of string was truncated]";. /// internal static string ES { get { return ResourceManager.GetString("ES", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "سیستم", /// "subPrivacy": "حریم خصوصی", /// "subGaming": "بازی", /// "subTouch": "لمس کردن", /// "subTaskbar": "نوار وظیفه", /// "subExtras": "موارد اضافی", /// "btnAbout": "تایید", /// "restartButton": "راه اندازی مجدد", /// "restartButton8": "راه اندازی مجدد", /// "restartButton10": "راه اندازی مجدد", /// "btnFind": "پیدا کردن", /// "btnKill": "کشتن", /// "trayUnlocker": "دسته های فایل", /// "restartAndApply": "ریست برای اعمال تغییرات", /// "txtVersion": "نسخه: {VN}", /// "txtBitness": "شما کار میکنید با {BITS}", /// " [rest of string was truncated]";. /// internal static string FA { get { return ResourceManager.GetString("FA", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Système", /// "subPrivacy": "Intimité", /// "subGaming": "Jeux", /// "subTouch": "Toucher", /// "subTaskbar": "Barre des tâches", /// "subExtras": "Suppléments", /// "btnAbout": "OK", /// "restartButton": "redemarrer maintenant", /// "restartButton8": "redemarrer maintenant", /// "restartButton10": "redemarrer maintenant", /// "btnFind": "Trouver", /// "btnKill": "Tuer", /// "trayUnlocker": "Poignées de fichier", /// "restartAndApply": "Redemarrer pour appliquer les changements", /// "onedriveM": "Voulez-vous vraimen [rest of string was truncated]";. /// internal static string FR { get { return ResourceManager.GetString("FR", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap france { get { object obj = ResourceManager.GetObject("france", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap germany { get { object obj = ResourceManager.GetObject("germany", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to @echo off ///pushd "%~dp0" ///dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt ///dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt ///for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" ///. /// internal static string GPEditEnablerInHome { get { return ResourceManager.GetString("GPEditEnablerInHome", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap greece { get { object obj = ResourceManager.GetObject("greece", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Byte[]. /// internal static byte[] hosts { get { object obj = ResourceManager.GetObject("hosts", resourceCulture); return ((byte[])(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistem", /// "subPrivacy": "Privatnost", /// "subGaming": "Igre", /// "subTouch": "Dodir", /// "subTaskbar": "Taskbar", /// "subExtras": "Dodaci", /// "btnAbout": "OK", /// "restartButton": "Ponovno pokreni sad", /// "restartButton8": "Ponovno pokreni sad", /// "restartButton10": "Ponovno pokreni sad", /// "btnFind": "Pronađi", /// "btnKill": "Ubi", /// "trayUnlocker": "Držači datoteka", /// "restartAndApply": "Ponovno pokrenite za primjenu promjena", /// "txtVersion": "Verzija: {VN}", /// "txtBitness": "Radite s {BITS [rest of string was truncated]";. /// internal static string HR { get { return ResourceManager.GetString("HR", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Rendszer", /// "subPrivacy": "Adatvédelem", /// "subGaming": "Játék", /// "subTouch": "Érintés", /// "subTaskbar": "Tálca", /// "subExtras": "Extrák", /// "btnAbout": "Rendben", /// "restartButton": "Újraindítás most", /// "restartButton8": "Újraindítás most", /// "restartButton10": "Újraindítás most", /// "restartAndApply": "Eszköz újraindítása most, hogy a változások érvénybe kerüljenek", /// "txtVersion": "Verzió: {VN}", /// "txtBitness": "Te {BITS}-el dolgozol", /// "linkUpdate": "Frissítés elérhető", /// "lblLab [rest of string was truncated]";. /// internal static string HU { get { return ResourceManager.GetString("HU", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap hungary { get { object obj = ResourceManager.GetObject("hungary", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistem", /// "subPrivacy": "Privasi", /// "subGaming": "Gaming", /// "subTouch": "Sentuh", /// "subTaskbar": "Bilah Tugas", /// "subExtras": "Extra", /// "btnAbout": "OKE", /// "restartButton": "Mulai ulang sekarang", /// "restartButton8": "Mulai ulang sekarang", /// "restartButton10": "Mulai ulang sekarang", /// "btnFind": "Cari", /// "btnKill": "Hentikan", /// "trayUnlocker": "Menangani FIle", /// "restartAndApply": "Mulai ulang untuk menerapkan perubahan", /// "txtVersion": "Versi: {VN}", /// "txtBitness": "Kamu Bek [rest of string was truncated]";. /// internal static string ID { get { return ResourceManager.GetString("ID", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap indonesia { get { object obj = ResourceManager.GetObject("indonesia", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\*\shell\runas] ///@="Take Ownership" ///"NoWorkingDirectory"="" /// ///[HKEY_CLASSES_ROOT\*\shell\runas\command] ///@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" ///"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" /// ///[HKEY_CLASSES_ROOT\Directory\shell\runas] ///@="Take Ownership" ///"NoWorkingDirectory"="" /// ///[HKEY_CLASSES_ROOT\Directory\shell\runas\command] ///@="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"% [rest of string was truncated]";. /// internal static string InstallTakeOwnership { get { return ResourceManager.GetString("InstallTakeOwnership", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap iran { get { object obj = ResourceManager.GetObject("iran", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistema", /// "subPrivacy": "Privacy", /// "subGaming": "Gioco", /// "subTouch": "Tocco", /// "subTaskbar": "Barra delle applicazioni", /// "subExtras": "Extra", /// "btnAbout": "OK", /// "restartButton": "riavvia ora", /// "restartButton8": "riavvia ora", /// "restartButton10": "riavvia ora", /// "restartAndApply": "Riavviare per applicare le modifiche", /// "txtVersion": "Versione: {VN}", /// "btnFind": "Trova", /// "btnKill": "Uccisione", /// "trayUnlocker": "Manici di file", /// "txtBitness": "Architettura: {BITS}" [rest of string was truncated]";. /// internal static string IT { get { return ResourceManager.GetString("IT", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap italy { get { object obj = ResourceManager.GetObject("italy", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "システム", /// "subPrivacy": "プライバシー", /// "subGaming": "ゲーム", /// "subTouch": "タッチ", /// "subTaskbar": "タスクバー", /// "subExtras": "その他", /// "btnAbout": "OK", /// "restartButton": "今すぐ再起動", /// "restartButton8": "今すぐ再起動", /// "restartButton10": "今すぐ再起動", /// "btnFind": "検索", /// "btnKill": "強制終了", /// "trayUnlocker": "ファイル ハンドル", /// "restartAndApply": "再起動して変更を適用", /// "txtVersion": "バージョン: {VN}", /// "txtBitness": "{BITS}で動作しています。", /// "linkUpdate": "アップデートが利用可能です", /// "lblLab": "実験的ビルド\n(テスト後に削除されます)", /// "performanceSw": [rest of string was truncated]";. /// internal static string JA { get { return ResourceManager.GetString("JA", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap japan { get { object obj = ResourceManager.GetObject("japan", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "시스템", /// "subPrivacy": "개인 정보", /// "subGaming": "게이밍", /// "subTouch": "터치", /// "subTaskbar": "작업 표시줄", /// "subExtras": "추가", /// "btnAbout": "확인", /// "restartButton": "지금 다시 시작", /// "restartButton8": "지금 다시 시작", /// "restartButton10": "지금 다시 시작", /// "btnFind": "찾기", /// "btnKill": "죽이기", /// "trayUnlocker": "파일 핸들", /// "restartAndApply": "다시 시작하여 변경 사항 적용", /// "txtVersion": "버전: {VN}", /// "txtBitness": "{BITS}로 작업중 - 한국어: 비너스걸", /// "linkUpdate": "업데이트 가능", /// "lblLab": "실험 빌드\n(테스트 후 삭제)", /// "performanceSw": " [rest of string was truncated]";. /// internal static string KO { get { return ResourceManager.GetString("KO", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap korea { get { object obj = ResourceManager.GetObject("korea", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "سیستەم", /// "subPrivacy": "تایبەتمەندیەتی", /// "subGaming": "یاریکردن", /// "subTouch": "دەست لێدان", /// "subTaskbar": "تاسکبار", /// "subExtras": "زیادە", /// "btnAbout": "باشە", /// "restartButton": "ئێستا ڕیستارتی بکەوە", /// "restartButton8": "ئێستا ڕیستارتی بکەوە", /// "restartButton10": "ئێستا ڕیستارتی بکەوە", /// "btnFind": "بیدۆزەوە", /// "btnKill": "بیکوژە (دایبخە)", /// "trayUnlocker": "دەسکەکانی فایل", /// "restartAndApply": "ڕیستارتی ئەکەیتەوە بۆ بینینی گۆڕانکاریەکان", /// "txtVersion": "وەشان :", /// "t [rest of string was truncated]";. /// internal static string KU { get { return ResourceManager.GetString("KU", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap kurdish { get { object obj = ResourceManager.GetObject("kurdish", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap logo { get { object obj = ResourceManager.GetObject("logo", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "सिस्टम", /// "subPrivacy": "गोपनीयता", /// "subGaming": "गेमिङ", /// "subTouch": "स्पर्श", /// "subTaskbar": "टास्कबार", /// "subExtras": "अतिरिक्त", /// "btnAbout": "ठिक छ", /// "restartButton": "अहिले पुन: प्रारंभ गर्नुहोस्", /// "restartButton8": "अहिले पुन: प्रारंभ गर्नुहोस्", /// "restartButton10": "अहिले पुन: प्रारंभ गर्नुहोस्", /// "btnFind": "फेला पर्ख्नुहोस्", /// "btnKill": "मार्नुहोस्", /// "trayUnlocker": "फाइल ह्यान्डलहरू", /// "restartAndApply": "परिवर्तन लागू गर्नका लागि पुन: प्रारंभ गर्नुहोस्", /// "t [rest of string was truncated]";. /// internal static string NE { get { return ResourceManager.GetString("NE", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap nepal { get { object obj = ResourceManager.GetObject("nepal", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Systeem", /// "subPrivacy": "Privacy", /// "subGaming": "Gamen", /// "subTouch": "Aanraken", /// "subTaskbar": "Taakbalk", /// "subExtras": "Extra's", /// "btnAbout":"OK", /// "restartButton":"Nu opnieuw opstarten", /// "restartButton8":"Nu opnieuw opstarten", /// "restartButton10":"Nu opnieuw opstarten", /// "restartAndApply":"Herstart om wijzigingen toe te passen", /// "txtVersion":"Versie: {VN}", /// "btnFind":"Vind", /// "btnKill":"Dood", /// "trayUnlocker":"Bestandshandvatten", /// [rest of string was truncated]";. /// internal static string NL { get { return ResourceManager.GetString("NL", resourceCulture); } } /// /// Looks up a localized resource of type System.Byte[]. /// internal static byte[] OneDrive_Uninstaller { get { object obj = ResourceManager.GetObject("OneDrive_Uninstaller", resourceCulture); return ((byte[])(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap pakistan { get { object obj = ResourceManager.GetObject("pakistan", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "System", /// "subPrivacy": "Prywatność", /// "subGaming": "Gra", /// "subTouch": "Dotyk", /// "subTaskbar": "Pasek zadań", /// "subExtras": "Dodatki", /// "btnAbout": "OK", /// "restartButton": "Uruchom ponownie teraz", /// "restartButton8": "Uruchom ponownie teraz", /// "restartButton10": "Uruchom ponownie teraz", /// "btnFind": "Znajdź", /// "btnKill": "Zakończ", /// "trayUnlocker": "Deskryptory plików", /// "restartAndApply": "Uruchom ponownie, aby zastosować zmiany", /// "onedriveM": "Czy na pewno chcesz usunąć u [rest of string was truncated]";. /// internal static string PL { get { return ResourceManager.GetString("PL", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap poland { get { object obj = ResourceManager.GetObject("poland", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Byte[]. /// internal static byte[] Poppins_Regular { get { object obj = ResourceManager.GetObject("Poppins_Regular", resourceCulture); return ((byte[])(obj)); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\DesktopBackground\Shell\Power Menu] ///"MUIVerb"="Power Menu" ///"SubCommands"="lock;logoff;switch;sleep;hibernate;restart;safemode;shutdown;hybridshutdown" ///"Icon"="shell32.dll,215" ///"Position"="bottom" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\lock] ///@="Lock" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\lock\command] ///@="Rundll32 User32.dll,LockWorkStati [rest of string was truncated]";. /// internal static string PowerMenu { get { return ResourceManager.GetString("PowerMenu", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistema", /// "subPrivacy": "Privacidade", /// "subGaming": "Jogos", /// "subTouch": "Toque", /// "subTaskbar": "Barra de tarefas", /// "subExtras": "Extras", /// "btnAbout": "Feito", /// "restartButton": "Reinicie agora", /// "restartButton8": "Reinicie agora", /// "restartButton10": "Reinicie agora", /// "btnFind": "Encontrar", /// "btnKill": "Finalizar", /// "trayUnlocker": "Alças de arquivo", /// "restartAndApply": "Reinicie para aplicar as alterações", /// "onedriveM": "Tem certeza de que deseja desinstalar o On [rest of string was truncated]";. /// internal static string PT { get { return ResourceManager.GetString("PT", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// /// ///[-HKEY_CLASSES_ROOT\*\shell\runas] /// ///[-HKEY_CLASSES_ROOT\Directory\shell\runas] ///. /// internal static string RemoveTakeOwnership { get { return ResourceManager.GetString("RemoveTakeOwnership", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///; MajorGeeks.Com ///; How to Restore the Windows Photo Viewer on Windows 10 ///; https://www.majorgeeks.com/content/page/restore_the_windows_photo_viewer_on_windows_10.html /// ///[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open] ///"MuiVerb"="@photoviewer.dll,-3043" /// ///[HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\command] ///@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\ /// 00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,0 [rest of string was truncated]";. /// internal static string RestoreClassicPhotoViewer { get { return ResourceManager.GetString("RestoreClassicPhotoViewer", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistem", /// "subPrivacy": "Confidențialitate", /// "subGaming": "Jocuri", /// "subTouch": "Atingere", /// "subTaskbar": "Bara de activități", /// "subExtras": "In plus", /// "btnAbout": "Bine", /// "restartButton": "Reporniți acum", /// "restartButton8": "Reporniți acum", /// "restartButton10": "Reporniți acum", /// "btnFind": "Găsește", /// "btnKill": "Terminati", /// "trayUnlocker": "Mânere de fișiere", /// "restartAndApply": "Reporniți pentru a aplica modificările", /// "txtVersion": "Versiunea: {VN}", /// "txtBitn [rest of string was truncated]";. /// internal static string RO { get { return ResourceManager.GetString("RO", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap romania { get { object obj = ResourceManager.GetObject("romania", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Система", /// "subPrivacy": "Конфиденциальность", /// "subGaming": "Игры", /// "subTouch": "Сенсорный экран", /// "subTaskbar": "Панель задач", /// "subExtras": "Дополнительно", /// "btnAbout": "OK", /// "restartButton": "Перезапустить сейчас", /// "restartButton8": "Перезапустить сейчас", /// "restartButton10": "Перезапустить сейчас", /// "restartAndApply": "Перезапустить, чтобы применить изменения", /// "txtVersion": "Версия: {VN}", /// "btnFind": "Находить", /// "btnKill": "Убийство", /// "trayUnlocker": "Дескрипт [rest of string was truncated]";. /// internal static string RU { get { return ResourceManager.GetString("RU", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap russia { get { object obj = ResourceManager.GetObject("russia", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap spain { get { object obj = ResourceManager.GetObject("spain", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\DesktopBackground\Shell\SystemShortcuts] ///"MUIVerb"="System Shortcuts" ///"SubCommands"="admintools;datetime;regional;folderoptions;gmode;internetoptions;network;power;appwiz;rbin;run;search;services;sysdm;user;user2;flip3d" ///"icon"="sysdm.cpl" ///"Position"=- /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\admintools] ///@="Administrative Tools" ///"icon"="imageres.dll,109" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Micros [rest of string was truncated]";. /// internal static string SystemShortcuts { get { return ResourceManager.GetString("SystemShortcuts", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\DesktopBackground\Shell\SystemTools] ///"MUIVerb"="System Tools" ///"SubCommands"="control;cleanmgr;devmgr;event;regedit;secctr;msconfig;taskmgr;taskschd;wu" ///"icon"="imageres.dll,104" ///"Position"=- /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\control] ///@="Control Panel" ///"icon"="control.exe" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\control\command] ///@="c [rest of string was truncated]";. /// internal static string SystemTools { get { return ResourceManager.GetString("SystemTools", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap taiwan { get { object obj = ResourceManager.GetObject("taiwan", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Sistem", /// "subPrivacy": "Mahremiyet", /// "subGaming": "Oyun", /// "subTouch": "Dokunmak", /// "subTaskbar": "Görev çubuğu", /// "subExtras": "Ekstralar", /// "btnAbout": "OK", /// "restartButton": "şimdi yeniden başlat", /// "restartButton8": "şimdi yeniden başlat", /// "restartButton10": "şimdi yeniden başlat", /// "restartAndApply": "Değişiklikleri uygulamak için yeniden başlatılsın mı", /// "onedriveM": "OneDrive'ı kaldırmak istediğinizden emin misiniz? Bu, Masaüstü ve Belge dosyalarınızı siler! Bu seçen [rest of string was truncated]";. /// internal static string TR { get { return ResourceManager.GetString("TR", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap turkey { get { object obj = ResourceManager.GetObject("turkey", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "系統", /// "subPrivacy": "隱私", /// "subGaming": "遊戲", /// "subTouch": "觸控", /// "subTaskbar": "工作列", /// "subExtras": "額外功能", /// "btnAbout": "確定", /// "restartButton": "立即重新啟動", /// "restartButton8": "立即重新啟動", /// "restartButton10": "立即重新啟動", /// "restartAndApply": "重新啟動以套用變更", /// "onedriveM": "您確定要移除 OneDrive 嗎?這將刪除您的桌面和文件檔案!僅在本機帳戶上使用此選項!", /// "txtVersion": "版本:{VN}", /// "systemRestoreM": "您確定要停用系統還原嗎?這將刪除您目前的備份映像!", /// "txtBitness": "您正在使用 {BITS}", /// "btnFind": "尋找", /// "btnKill": "結束", /// "trayUnlocker": "檔案控制", /// [rest of string was truncated]";. /// internal static string TW { get { return ResourceManager.GetString("TW", resourceCulture); } } /// /// Looks up a localized string similar to { /// "subSystem": "Система", /// "subPrivacy": "Конфіденційність", /// "subGaming": "Ігри", /// "subTouch": "Дотик", /// "subTaskbar": "Панель задач", /// "subExtras": "Доповнення", /// "btnAbout": "OK", /// "restartButton": "Перезапустити зараз", /// "restartButton8": "Перезапустити зараз", /// "restartButton10": "Перезапустити зараз", /// "btnFind": "Знайти", /// "btnKill": "Вимкнути примусово", /// "trayUnlocker": "Дескриптор файлів", /// "restartAndApply": "Перезапустити для застосування змін", /// "txtVersion": "Версія: {VN}", /// " [rest of string was truncated]";. /// internal static string UA { get { return ResourceManager.GetString("UA", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap ukraine { get { object obj = ResourceManager.GetObject("ukraine", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap united_kingdom { get { object obj = ResourceManager.GetObject("united_kingdom", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { ///"subSystem": "سسٹم", ///"subPrivacy": "رازداری", ///"subGaming": "گیمنگ", ///"subTouch": "ٹچ", ///"subTaskbar": "ٹاسک بار", ///"subExtras": "اضافی", ///"btnAbout": "ٹھیک ہے", ///"restartButton": "ابھی دوبارہ شروع کریں", ///"restartButton8": "ابھی دوبارہ شروع کریں", ///"restartButton10": "ابھی دوبارہ شروع کریں", ///"btnFind": "تلاش کریں", ///"btnKill": "مار ڈالو", ///"trayUnlocker": "فائل ہینڈلز", ///"restartAndApply": "تبدیلیاں لاگو کرنے کے لیے دوبارہ شروع کریں", ///"txtVersion": "ورژن: {VN}", ///"txtBitness": "آپ {BITS} کے ساتھ کام [rest of string was truncated]";. /// internal static string UR { get { return ResourceManager.GetString("UR", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap vietnam { get { object obj = ResourceManager.GetObject("vietnam", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to { /// "subSystem": "Hệ thống", /// "subPrivacy": "Quyền riêng tư", /// "subGaming": "Gaming", /// "subTouch": "Cảm ứng", /// "subTaskbar": "Taskbar", /// "subExtras": "Extras", /// "btnAbout": "OK", /// "restartButton": "Khởi động lại ngay", /// "restartButton8": "Khởi động lại ngay", /// "restartButton10": "Khởi động lại ngay", /// "btnFind": "Tìm", /// "btnKill": "Dừng", /// "trayUnlocker": "Xử lý tệp", /// "restartAndApply": "Khởi động lại để áp dụng thay đổi", /// "txtVersion": "Phiên bản: {VN}", /// "txtBitness": "Bạn [rest of string was truncated]";. /// internal static string VN { get { return ResourceManager.GetString("VN", resourceCulture); } } /// /// Looks up a localized string similar to Windows Registry Editor Version 5.00 /// ///[HKEY_CLASSES_ROOT\DesktopBackground\Shell\WindowsApps] ///"MUIVerb"="Windows Apps" ///"SubCommands"="calc;chmap;cmd;dfrg;ie;notepad;paint;psr;snip;srd;srt;tsch;wmp;wordpad" ///"icon"="imageres.dll,152" ///"Position"=- /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\calc] ///@="Calculator" ///"icon"="calc.exe" /// ///[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\calc\command] ///@="calc.exe" /// ///[HK [rest of string was truncated]";. /// internal static string WindowsApps { get { return ResourceManager.GetString("WindowsApps", resourceCulture); } } } } ================================================ FILE: Optimizer/Properties/Resources.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Scripts\DisableOfficeTelemetryTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\DisableTelemetryTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\DisableXboxTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\OneDrive_Uninstaller.bin;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Scripts\hosts;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Scripts\DesktopShortcuts.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\PowerMenu.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\SystemShortcuts.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\SystemTools.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\WindowsApps.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\DisableOfficeTelemetry.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\InstallTakeOwnership.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\RemoveTakeOwnership.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\EnableTelemetryTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\EnableOfficeTelemetry.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\EnableOfficeTelemetryTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\EnableXboxTasks.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\EN.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\RU.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\EL.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\TR.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\DE.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\GPEditEnablerInHome.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\ES.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\PT.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\DisableDefenderSafeMode1903Plus.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\FR.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\AddOpenWithCMD.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\IT.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\CN.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\CZ.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\brazil.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\china.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\czech.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\france.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\germany.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\greece.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\italy.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\russia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\spain.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\turkey.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\united-kingdom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\TW.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\KO.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\korea.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\PL.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\poland.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\AR.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\egypt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Scripts\EnableDefenderSafeMode1903Plus.bat;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\kurdish.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\taiwan.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\KU.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\HU.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\hungary.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\RO.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\romania.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Fonts\Poppins-Regular.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Flags\dutch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\NL.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Assets\logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\UA.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\ukraine.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\JA.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\japan.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Scripts\DisableClassicPhotoViewer.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Scripts\RestoreClassicPhotoViewer.reg;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\iran.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\i18n\fa.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\i18n\NE.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\nepal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\BG.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\bulgaria.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Assets\banner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Flags\vietnam.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\VN.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\pakistan.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\UR.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\indonesia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\ID.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Flags\croatia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\i18n\HR.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ================================================ FILE: Optimizer/Properties/Settings.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Optimizer.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } } ================================================ FILE: Optimizer/Properties/Settings.settings ================================================  ================================================ FILE: Optimizer/Resources/Scripts/AddOpenWithCMD.reg ================================================ Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\shell\OpenWithCMD] @="Open Command Prompt here" "Icon"="cmd.exe" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Directory\shell\OpenWithCMD\command] @="cmd.exe /s /k pushd \"%V\"" [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenWithCMD] @="Open Command Prompt here" "Icon"="cmd.exe" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenWithCMD\command] @="cmd.exe /s /k pushd \"%V\"" [HKEY_CLASSES_ROOT\Drive\shell\OpenWithCMD] @="Open Command Prompt here" "Icon"="cmd.exe" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Drive\shell\OpenWithCMD\command] @="cmd.exe /s /k pushd \"%V\"" ================================================ FILE: Optimizer/Resources/Scripts/DisableDefenderSafeMode1903Plus.bat ================================================ rem USE AT OWN RISK AS IS WITHOUT WARRANTY OF ANY KIND !!!!! rem https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/security-malware-windows-defender-disableantispyware rem "DisableAntiSpyware" is discontinued and will be ignored on client devices, as of the August 2020 (version 4.18.2007.8) update to Microsoft Defender Antivirus. rem Disable Tamper Protection First !!!!! rem https://www.tenforums.com/tutorials/123792-turn-off-tamper-protection-windows-defender-antivirus.html reg add "HKLM\Software\Microsoft\Windows Defender\Features" /v "TamperProtection" /t REG_DWORD /d "0" /f rem https://technet.microsoft.com/en-us/itpro/powershell/windows/defender/set-mppreference rem https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-0290 rem Exclusion in WD can be easily set with an elevated cmd, so that makes it super easy to damage any pc. rem WMIC /NAMESPACE:\\root\Microsoft\Windows\Defender PATH MSFT_MpPreference call Add ExclusionPath="xxxxxx rem To disable System Guard Runtime Monitor Broker reg add "HKLM\System\CurrentControlSet\Services\SgrmBroker" /v "Start" /t REG_DWORD /d "4" /f rem To disable Windows Defender Security Center include this reg add "HKLM\System\CurrentControlSet\Services\SecurityHealthService" /v "Start" /t REG_DWORD /d "4" /f rem 1 - Disable Real-time protection reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiVirus" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\MpEngine" /v "MpEnablePus" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableBehaviorMonitoring" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableIOAVProtection" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableOnAccessProtection" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableRealtimeMonitoring" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableRoutinelyTakingAction" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableScanOnRealtimeEnable" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Reporting" /v "DisableEnhancedNotifications" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "DisableBlockAtFirstSeen" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "SpynetReporting" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "SubmitSamplesConsent" /t REG_DWORD /d "2" /f rem 0 - Disable Logging reg add "HKLM\System\CurrentControlSet\Control\WMI\Autologger\DefenderApiLogger" /v "Start" /t REG_DWORD /d "0" /f reg add "HKLM\System\CurrentControlSet\Control\WMI\Autologger\DefenderAuditLogger" /v "Start" /t REG_DWORD /d "0" /f rem Disable WD Tasks schtasks /Change /TN "Microsoft\Windows\ExploitGuard\ExploitGuard MDM policy Refresh" /Disable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cache Maintenance" /Disable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cleanup" /Disable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Scheduled Scan" /Disable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Verification" /Disable rem Disable WD systray icon reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "SecurityHealth" /f reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\Run" /v "SecurityHealth" /f rem Remove WD context menu reg delete "HKCR\*\shellex\ContextMenuHandlers\EPP" /f reg delete "HKCR\Directory\shellex\ContextMenuHandlers\EPP" /f reg delete "HKCR\Drive\shellex\ContextMenuHandlers\EPP" /f rem Disable WD services rem reg add "HKLM\System\CurrentControlSet\Services\WdBoot" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\System\CurrentControlSet\Services\WdFilter" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\System\CurrentControlSet\Services\WdNisDrv" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\System\CurrentControlSet\Services\WdNisSvc" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\System\CurrentControlSet\Services\WinDefend" /v "Start" /t REG_DWORD /d "4" /f rem Run twice to disable WD services !!!!! ================================================ FILE: Optimizer/Resources/Scripts/DisableOfficeTelemetry.reg ================================================ Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedapplications] "accesssolution"=dword:00000001 "olksolution"=dword:00000001 "onenotesolution"=dword:00000001 "pptsolution"=dword:00000001 "projectsolution"=dword:00000001 "publishersolution"=dword:00000001 "visiosolution"=dword:00000001 "wdsolution"=dword:00000001 "xlsolution"=dword:00000001 [HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedsolutiontypes] "agave"=dword:00000001 "appaddins"=dword:00000001 "comaddins"=dword:00000001 "documentfiles"=dword:00000001 "templatefiles"=dword:00000001 ================================================ FILE: Optimizer/Resources/Scripts/DisableOfficeTelemetryTasks.bat ================================================ schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" /disable schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" /disable schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" /disable schtasks /end /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn" schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn" /disable reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Outlook\Options\Mail" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\Mail" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Outlook\Options\Calendar" /v "EnableCalendarLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\Calendar" /v "EnableCalendarLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Word\Options" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Word\Options" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\15.0\OSM" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\16.0\OSM" /v "EnableLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\15.0\OSM" /v "EnableUpload" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\16.0\OSM" /v "EnableUpload" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\Common\ClientTelemetry" /v "DisableTelemetry" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\ClientTelemetry" /v "DisableTelemetry" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\Common\ClientTelemetry" /v "VerboseLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\ClientTelemetry" /v "VerboseLogging" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Common" /v "QMEnable" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common" /v "QMEnable" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Common\Feedback" /v "Enabled" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\Feedback" /v "Enabled" /t REG_DWORD /d 0 /f ================================================ FILE: Optimizer/Resources/Scripts/DisableTelemetryTasks.bat ================================================ schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /disable schtasks /end /tn "\Microsoft\Windows\Customer Experience Improvement Program\Uploader" schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Uploader" /disable schtasks /end /tn "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" schtasks /change /tn "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /disable schtasks /end /tn "\Microsoft\Windows\Application Experience\ProgramDataUpdater" schtasks /change /tn "\Microsoft\Windows\Application Experience\ProgramDataUpdater" /disable schtasks /end /tn "\Microsoft\Windows\Application Experience\StartupAppTask" schtasks /change /tn "\Microsoft\Windows\Application Experience\StartupAppTask" /disable" schtasks /end /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" schtasks /change /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /disable schtasks /end /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver" schtasks /change /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver" /disable schtasks /end /tn "\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" schtasks /change /tn "\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /disable schtasks /end /tn "\Microsoft\Windows\Shell\FamilySafetyMonitor" schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyMonitor" /disable schtasks /end /tn "\Microsoft\Windows\Shell\FamilySafetyRefresh" schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyRefresh" /disable schtasks /end /tn "\Microsoft\Windows\Shell\FamilySafetyUpload" schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyUpload" /disable schtasks /end /tn "\Microsoft\Windows\Autochk\Proxy" schtasks /change /tn "\Microsoft\Windows\Autochk\Proxy" /disable schtasks /end /tn "\Microsoft\Windows\Maintenance\WinSAT" schtasks /change /tn "\Microsoft\Windows\Maintenance\WinSAT" /disable schtasks /end /tn "\Microsoft\Windows\Application Experience\AitAgent" schtasks /change /tn "\Microsoft\Windows\Application Experience\AitAgent" /disable schtasks /end /tn "\Microsoft\Windows\Windows Error Reporting\QueueReporting" schtasks /change /tn "\Microsoft\Windows\Windows Error Reporting\QueueReporting" /disable schtasks /end /tn "\Microsoft\Windows\CloudExperienceHost\CreateObjectTask" schtasks /change /tn "\Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /disable schtasks /end /tn "\Microsoft\Windows\DiskFootprint\Diagnostics" schtasks /change /tn "\Microsoft\Windows\DiskFootprint\Diagnostics" /disable schtasks /end /tn "\Microsoft\Windows\FileHistory\File History (maintenance mode)" schtasks /change /tn "\Microsoft\Windows\FileHistory\File History (maintenance mode)" /disable schtasks /end /tn "\Microsoft\Windows\PI\Sqm-Tasks" schtasks /change /tn "\Microsoft\Windows\PI\Sqm-Tasks" /disable schtasks /end /tn "\Microsoft\Windows\NetTrace\GatherNetworkInfo" schtasks /change /tn "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /disable schtasks /end /tn "\Microsoft\Windows\AppID\SmartScreenSpecific" schtasks /change /tn "\Microsoft\Windows\AppID\SmartScreenSpecific" /disable schtasks /Change /TN "\Microsoft\Windows\WindowsUpdate\Automatic App Update" /Disable schtasks /Change /TN "\Microsoft\Windows\Time Synchronization\ForceSynchronizeTime" /Disable schtasks /Change /TN "\Microsoft\Windows\Time Synchronization\SynchronizeTime" /Disable schtasks /end /tn "\Microsoft\Windows\HelloFace\FODCleanupTask" schtasks /change /tn "\Microsoft\Windows\HelloFace\FODCleanupTask" /disable schtasks /end /tn "\Microsoft\Windows\Feedback\Siuf\DmClient" schtasks /change /tn "\Microsoft\Windows\Feedback\Siuf\DmClient" /disable schtasks /end /tn "\Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload" schtasks /change /tn "\Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload" /disable schtasks /end /tn "\Microsoft\Windows\Application Experience\PcaPatchDbTask" schtasks /change /tn "\Microsoft\Windows\Application Experience\PcaPatchDbTask" /disable schtasks /end /tn "\Microsoft\Windows\Device Information\Device" schtasks /change /tn "\Microsoft\Windows\Device Information\Device" /disable schtasks /end /tn "\Microsoft\Windows\Device Information\Device User" schtasks /change /tn "\Microsoft\Windows\Device Information\Device User" /disable ================================================ FILE: Optimizer/Resources/Scripts/DisableXboxTasks.bat ================================================ schtasks /end /tn "\Microsoft\XblGameSave\XblGameSaveTask" schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTask" /disable schtasks /end /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" /disable ================================================ FILE: Optimizer/Resources/Scripts/EnableDefenderSafeMode1903Plus.bat ================================================ reg add "HKLM\Software\Microsoft\Windows Defender\Features" /v "TamperProtection" /t REG_DWORD /d "1" /f reg add "HKLM\System\CurrentControlSet\Services\SgrmBroker" /v "Start" /t REG_DWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\SecurityHealthService" /v "Start" /t REG_DWORD /d "2" /f rem 1 - Disable Real-time protection reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiVirus" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\MpEngine" /v "MpEnablePus" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableBehaviorMonitoring" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableIOAVProtection" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableOnAccessProtection" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableRealtimeMonitoring" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableRoutinelyTakingAction" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableScanOnRealtimeEnable" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Reporting" /v "DisableEnhancedNotifications" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "DisableBlockAtFirstSeen" /t REG_DWORD /d "0" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "SpynetReporting" /t REG_DWORD /d "1" /f reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SpyNet" /v "SubmitSamplesConsent" /t REG_DWORD /d "1" /f rem 0 - Disable Logging reg add "HKLM\System\CurrentControlSet\Control\WMI\Autologger\DefenderApiLogger" /v "Start" /t REG_DWORD /d "1" /f reg add "HKLM\System\CurrentControlSet\Control\WMI\Autologger\DefenderAuditLogger" /v "Start" /t REG_DWORD /d "1" /f rem Disable WD Tasks schtasks /Change /TN "Microsoft\Windows\ExploitGuard\ExploitGuard MDM policy Refresh" /Enable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cache Maintenance" /Enable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Cleanup" /Enable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Scheduled Scan" /Enable schtasks /Change /TN "Microsoft\Windows\Windows Defender\Windows Defender Verification" /Enable rem Disable WD services rem reg add "HKLM\System\CurrentControlSet\Services\WdBoot" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\System\CurrentControlSet\Services\WdFilter" /v "Start" /t REG_DWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\WdNisDrv" /v "Start" /t REG_DWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\WdNisSvc" /v "Start" /t REG_DWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\WinDefend" /v "Start" /t REG_DWORD /d "2" /f rem Run twice to disable WD services !!!!! ================================================ FILE: Optimizer/Resources/Scripts/EnableOfficeTelemetry.reg ================================================ Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedapplications] "accesssolution"=- "olksolution"=- "onenotesolution"=- "pptsolution"=- "projectsolution"=- "publishersolution"=- "visiosolution"=- "wdsolution"=- "xlsolution"=- [HKEY_CURRENT_USER\Software\Policies\microsoft\office\16.0\osm\preventedsolutiontypes] "agave"=- "appaddins"=- "comaddins"=- "documentfiles"=- "templatefiles"=- ================================================ FILE: Optimizer/Resources/Scripts/EnableOfficeTelemetryTasks.bat ================================================ schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack2016" /enable schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn2016" /enable schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentFallBack" /enable schtasks /change /tn "\Microsoft\Office\OfficeTelemetryAgentLogOn" /enable reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Outlook\Options\Mail" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\Mail" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Word\Options" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Word\Options" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Outlook\Options\Calendar" /v "EnableCalendarLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\Calendar" /v "EnableCalendarLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\15.0\OSM" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\16.0\OSM" /v "EnableLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\15.0\OSM" /v "EnableUpload" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Policies\Microsoft\Office\16.0\OSM" /v "EnableUpload" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\Common\ClientTelemetry" /v "DisableTelemetry" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\ClientTelemetry" /v "DisableTelemetry" /t REG_DWORD /d 0 /f reg add "HKCU\SOFTWARE\Microsoft\Office\Common\ClientTelemetry" /v "VerboseLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\ClientTelemetry" /v "VerboseLogging" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Common" /v "QMEnable" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common" /v "QMEnable" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\15.0\Common\Feedback" /v "Enabled" /t REG_DWORD /d 1 /f reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\Feedback" /v "Enabled" /t REG_DWORD /d 1 /f ================================================ FILE: Optimizer/Resources/Scripts/EnableTelemetryTasks.bat ================================================ schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /enable schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /enable schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /enable schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /enable schtasks /change /tn "\Microsoft\Windows\Customer Experience Improvement Program\Uploader" /enable schtasks /change /tn "\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /enable schtasks /change /tn "\Microsoft\Windows\Application Experience\ProgramDataUpdater" /enable schtasks /change /tn "\Microsoft\Windows\Application Experience\StartupAppTask" /enable" schtasks /change /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /enable schtasks /change /tn "\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver" /enable schtasks /change /tn "\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem" /enable schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyMonitor" /enable schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyRefresh" /enable schtasks /change /tn "\Microsoft\Windows\Shell\FamilySafetyUpload" /enable schtasks /change /tn "\Microsoft\Windows\Autochk\Proxy" /enable schtasks /change /tn "\Microsoft\Windows\Maintenance\WinSAT" /enable schtasks /change /tn "\Microsoft\Windows\Application Experience\AitAgent" /enable schtasks /change /tn "\Microsoft\Windows\Windows Error Reporting\QueueReporting" /enable schtasks /change /tn "\Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /enable schtasks /change /tn "\Microsoft\Windows\DiskFootprint\Diagnostics" /enable schtasks /change /tn "\Microsoft\Windows\FileHistory\File History (maintenance mode)" /enable schtasks /change /tn "\Microsoft\Windows\PI\Sqm-Tasks" /enable schtasks /change /tn "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /enable schtasks /change /tn "\Microsoft\Windows\AppID\SmartScreenSpecific" /enable schtasks /change /tn "\Microsoft\Windows\HelloFace\FODCleanupTask" /enable schtasks /change /tn "\Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload" /enable schtasks /change /tn "\Microsoft\Windows\Feedback\Siuf\DmClient" /enable schtasks /change /tn "\Microsoft\Windows\Application Experience\PcaPatchDbTask" /enable schtasks /change /tn "\Microsoft\Windows\Device Information\Device" /enable schtasks /change /tn "\Microsoft\Windows\Device Information\Device User" /enable ================================================ FILE: Optimizer/Resources/Scripts/EnableXboxTasks.bat ================================================ schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTask" /enable schtasks /change /tn "\Microsoft\XblGameSave\XblGameSaveTaskLogon" /enable ================================================ FILE: Optimizer/Resources/Scripts/GPEditEnablerInHome.bat ================================================ @echo off pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" ================================================ FILE: Optimizer/Resources/Scripts/InstallTakeOwnership.reg ================================================ Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\runas] @="Take Ownership" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\*\shell\runas\command] @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" [HKEY_CLASSES_ROOT\Directory\shell\runas] @="Take Ownership" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Directory\shell\runas\command] @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" ================================================ FILE: Optimizer/Resources/Scripts/hosts ================================================ # Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP address and the host name should be separated by at least one # space. # # Additionally, comments (such as these) may be inserted on individual # lines or following the machine name denoted by a '#' symbol. # # For example: # # 102.54.94.97 rhino.acme.com # source server # 38.25.63.10 x.acme.com # x client host # localhost name resolution is handled within DNS itself. 127.0.0.1 localhost ::1 localhost ================================================ FILE: Optimizer/Resources/i18n/AR.json ================================================ { "subSystem": "النظام", "subPrivacy": "الخصوصية", "subGaming": "الألعاب", "subTouch": "اللمس", "subTaskbar": "شريط المهام", "subExtras": "الإضافات", "btnAbout": "حسنا", "restartButton": "إعادة التشغيل الآن", "restartButton8": "إعادة التشغيل الآن", "restartButton10": "إعادة التشغيل الآن", "btnFind": "البحث", "btnKill": "إنهاء", "trayUnlocker": "مفاتيح الملفات", "restartAndApply": "لتطبيق الإعدادات يجب إعادة التشغيل", "txtVersion": "الإصدار: {VN}", "txtBitness": "أنت تعمل مع {BITS}", "linkUpdate": "تحديث متاح", "lblLab": "بناء تجريبي\n(الحذف بعد التجربة)", "performanceSw": "تحسين الأداء", "networkSw": "تحسين الشبكة", "defenderSw": "تعطيل Windows Defender", "systemRestoreSw": "تعطيل استعادة النظام", "printSw": "تعطيل خدمة الطباعة", "mediaSharingSw": "تعطيل مشاركة مشغل الوسائط", "faxSw": "تعطيل خدمة الفاكس", "reportingSw": "تعطيل الإبلاغ عن الأخطاء", "homegroupSw": "تعطيل مجموعة HomeGroup", "superfetchSw": "تعطيل Superfetch", "telemetryTasksSw": "تعطيل مهام إرسال البيانات", "officeTelemetrySw": "تعطيل إرسال البيانات في Office", "vsSW": "تعطيل إرسال البيانات في Visual Studio", "ffTelemetrySw": "تعطيل إرسال البيانات في Mozilla Firefox ", "chromeTelemetrySw": "تعطيل إرسال البيانات في Google Chrome", "compatSw": "تعطيل مساعد التوافق مع الأنظمة", "smartScreenSw": "تعطيل الشاشة الذكية SmartScreen", "stickySw": "تعطيل تثبيت المفاتيح", "universalTab": "عام", "modernAppsTab": "تطبيقات UWP", "startupTab": "بدء التشغيل", "appsTab": "التطبيقات", "cleanerTab": "المنظف", "pingerTab": "الشبكة", "registryFixerTab": "الريجستري", "integratorTab": "التضمين والتكامل", "CleanPreviewForm": "Clean Preview", "optionsTab": "الخيارات", "oldMixerSw": "تفعيل خالط الصوت الكلاسيكي", "oldExplorerSw": "استعادة مستكشف الملفات الكلاسيكي", "adsSw": "تعطيل إعلانات قائمة ابدأ", "uODSw": "إزالة OneDrive", "peopleSw": "تعطيل My People", "longPathsSw": "تفعيل المسارات الطويلة", "autoUpdatesSw": "تعطيل التحديثات التلقائية", "driversSw": "إستثناء التعريفات من التحديثات", "telemetryServicesSw": "تعطيل خدمات إرسال البيانات", "privacySw": "تحسين الخصوصية", "ccSw": "تعطيل الحافظة السحابية", "cortanaSw": "تعطيل Cortana", "sensorSw": "تعطيل خدمات الاستشعار", "castSw": "إزالة البث إلى الأجهزة", "inkSw": "تعطيل Windows Ink", "spellSw": "تعطيل التدقيق الإملائي", "xboxSw": "تعطيل Xbox Live", "gameBarSw": "تعطيل شريط الألعاب", "insiderSw": "تعطيل برنامج windowsInsider", "actionSw": "تعطيل مركز الإشعارات", "disableOneDriveSw": "تعطيل OneDrive", "tpmSw": "تعطيل التحقق من TPM", "leftTaskbarSw": "نقل شريط المهام إلى اليسار", "snapAssistSw": "تعطيل Snap Assist", "widgetsSw": "تعطيل الWidgets", "chatSw": "تعطيل الدردشة", "smallerTaskbarSw": "جعل شريط المهام أصغر", "classicRibbonSw": "تفعيل شريط الأدوات الكلاسيكي في Explorer", "classicContextSw": "تفعيل قائمة النقر بزر الماوس الأيمن الكلاسيكية", "refreshModernAppsButton": "تحديث", "uninstallModernAppsButton": "إزالة التثبيت", "txtModernAppsTitle": "إزالة تطبيقات UWP غير المرغوب فيها", "chkSelectAllModernApps": "تحديد الكل", "chkOnlyRemovable": "أزل التطبيقات التي يمكن إزالتها", "onedriveM": "هل أنت متأكد أنك تريد إلغاء تثبيت OneDrive؟ سيؤدي هذا إلى حذف ملفات سطح المكتب والمستندات الخاصة بك! استخدم هذا الخيار فقط على حساب محلي!", "startupTitle": "اختر تطبيقات بدء التشغيل", "removeStartupItemB": "حذف", "locateFileB": "حدد الملف", "findInRegB": "البحث في الريجستري", "analyzeDriveB": "تحليل", "refreshStartupB": "تحديث", "restoreStartupB": "إستعادة", "backupStartupB": "نسخ إحتياطي", "lblBackupTitle": "عنوان النسخة الإحتياطية:", "doBackup": "موافق", "cancelBackup": "إلغاء", "startupItemName": "الإسم", "startupItemLocation": "الموقع", "startupItemType": "النوع", "txtFeedError": "لا يوجد اتصال بالإنترنت، حاول تحديث الروابط مرة أخرى", "appsTitle": "قم بتنزيل وتثبيت التطبيقات المفيدة بسرعة", "btnGetFeed": "تحديث الروابط", "bitPref": "تحديد تفضيلات bit", "linkWarnings": "عرض التحذيرات", "txtDownloadStatus": "غير نشط", "goToDownloadsB": "انتقل إلى التنزيلات", "btnDownloadApps": "تنزيل", "cAutoInstall": "تثبيت بعد التحميل", "setDownDirLbl": "اختيار مجلد التنزيل", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "تحديد الكل", "checkTemp": "ملفات مؤقتة", "checkLogs": "سجل Windows", "checkMiniDumps": "BSOD minidumps", "checkBin": "إفراغ سلة المحذوفات", "checkMediaCache": "ذاكرة التخزين المؤقت لمشغل الوسائط", "checkErrorReports": "تقارير الأخطاء", "cleanDriveB": "تنظيف", "lblPretext": "الحد الأقصى للحجم المراد تحريره:", "cleanerTitle": "تنظيف محرك النظام الخاص بك", "pingerTitle": "Ping عناوين IP وتقييم وقت الإستجابة الخاص بك", "lblPinger": "عنوان IP / اسم النطاق", "btnOpenNetwork": "فتح اتصالات الشبكة", "copyIPB": "نسخ", "copyB": "نسخ IP", "btnShodan": "التحقق على SHODAN.io", "btnPing": "Ping", "lblResults": "النتائج", "flushCacheB": "مسح ذاكرة التخزين المؤقت لDNS", "btnExport": "تصدير", "hostsTitle": "تحرير ملف hosts الخاص بك", "linkLocate": "حدد", "linkAdvancedEdit": "المحرر المتقدم", "linkRestoreDefault": "استعادة الافتراضي", "lblIP": "عنوان IP", "lblDomain": "النطاق", "chkBlock": "حظر", "addHostB": "إضافة", "lblLock": "قم بحماية ملف hosts الخاص بك عن طريق قفله", "chkReadOnly": "للقراءة فقط", "lblAdblock": "موانع الإعلانات الجاهزة", "lblAdblockSub": "(سيتم حذف الإعداد الحالي الخاص بك)", "adblockS": "منع الإعلانات ومواقع السوشيال", "adblockP": "منع الإعلانات والمواقع الإباحية", "removeHostB": "حذف", "refreshHostsB": "تحديث", "removeAllHostsB": "حذف الكل", "regFixB": "إصلاح", "regLbl": "(بعض التغييرات قد تحتاج إلى ذلك)", "checkRestartExplorer": "قم أيضًا بإعادة تشغيل Explorer لتطبيق التغييرات", "checkRegistryEditor": "محرر الريجستري", "checkFirewall": "جدار حماية ويندوز", "checkContextMenu": "قائمة النقرة اليمنا للماوس", "checkRunDialog": "نافذة RUN", "checkFolderOptions": "خيارات المجلدات", "checkControlPanel": "لوحة التحكم", "checkCommandPrompt": "موجه الأوامر", "checkTaskManager": "مدير المهام", "checkEnableAll": "تفعيل الكل", "registryTitle": "إصلاح مشكلات الريجستري الشائعة", "quickAccessToggle": "عرض قائمة الوصول السريع", "helpTipsToggle": "عرض رسائل المساعدة", "lblTheming": "اختر المظهر الخاص بك", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "التحقق && من التحديثات", "btnUpdate": "البحث عن التحديثات", "btnChangelog": "عرض التغييرات", "lblUpdateDisabled": "معطل في البناآت التجريبية", "lblTroubleshoot": "استكشاف الأخطاء وإصلاحها", "btnViewLog": "عرض الأخطاء", "btnOpenConf": "فتح مجلد الإعدادات", "btnResetConfig": "إصلاح", "integrator1": "يستطيع Integrator إضافة عناصر\n مخصصة بالكامل في قائمة النقر بزر الماوس الأيمن على سطح المكتب:", "integrator2": "• أي برنامج", "integrator3": "• اختصارات إلى مجلدات", "integrator4": "• روابط مواقع", "integrator5": "• أي نوع من الملفات", "integrator6": "• الأوامر", "integrator7": "يمكن أن تحتوي العناصر على أيقونات ومواضع مخصصة.\nيمكن أيضًا إخفاؤها، ولا يمكن الوصول إليها إلا\nبالضغط على المفتاح SHIFT.\nيمكنه أيضًا إنشاء أوامر مخصصة\nلـ مربع تشغيل Run، مما يسهل تشغيل\nأي تطبيق فقط عن طريق كتابة الكلمة الأساسية المطلوبة.", "integratorInfoTab": "المعلومات", "tabPage8": "إضافة/تعديل", "tabPage9": "حذف", "tabPage10": "القوائم الجاهزة", "tabPage11": "مربع تشغيل Run", "addItemL": "إضافة أو تعديل عنصر", "itemtype": "نوع العنصر", "radioProgram": "برنامج", "radioFolder": "مجلد", "radioLink": "رابط", "radioFile": "ملف", "radioCommand": "أمر", "itemtoaddgroup": "البرنامج الذي تريد إضافته", "folderToAdd": "المجلد الذي تريد إضافته", "linkToAdd": "الرابط الذي تريد إضافته", "fileToAdd": "الملف الذي تريد إضافته", "commandToAdd": "الأمر الذي تريد إضافته", "icontoaddgroup": "الأيقونة التي تريد إضافتها", "checkDefaultIcon": "استخدم أيقونة البرنامج الافتراضية", "checkDefaultFolderIcon": "استخدم أيقونة المجلد الافتراضية", "checkFavicon": "تنزيل أيقونة الموقع (favicon)", "checkNoIcon": "بدون أيقونة", "dnsCacheM": "يتم الآن إنشاء ذاكرة التخزين المؤقت لنظام أسماء النطاقات DNS، حاول مرة أخرى لاحقًا!", "itemposition": "موضع العنصر", "radioTop": "في الأعلى", "radioMiddle": "في الوسط", "radioBottom": "في الأسفل", "security": "الأمان", "checkShift": "تظهر فقط عند الضغط على SHIFT", "itemnamegroup": "اسم العنصر في القائمة", "btnAddItem": "إضافة/تعديل", "removeIntegratorItemsL": "حذف عناصر سطح المكتب الموجودة مسبقا", "removeDIB": "حذف", "refreshIIB": "تحديث", "removeAllIIB": "حذف الكل", "PMB": "إضافة قائمة الطاقة", "STB": "إضافة أدوات النظام", "WAB": "إضافة تطبيقات ويندوز", "SSB": "إضافة اختصارات النظام", "DSB": "إضافة اختصارات سطح المكتب", "AddOwnerB": "إضافة 'Take Ownership'", "RemoveOwnerB": "حذف 'Take Ownership'", "AddCMDB": "إضافة فتح بستخدام CMD'", "DeleteCMDB": "حذف فتح بستخدام CMD'", "readyMenusL": "إضافة قوائم مفيدة معدة مسبقًا", "refreshCCB": "تحديث", "removeCCB": "حذف", "removeCCL": "حذف الأوامر الموجودة", "btnCreateCustomCommand": "إنشاء", "ccKeywordL": "الكلمة المفتاحية", "ccFileL": "موقع الملف", "ccL": "حدد أوامر نافذة RUN المخصصة الخاصة بك", "btnYes": "نعم", "btnNo": "لا", "btnOk": "موافق", "HostsEditorForm": "محرر Hosts", "savebtn": "حفظ", "closebtn": "إغلاق", "adminMissingMsg": "يجب تشغيل أداة Optimizer كمسؤول!\nسيتم إغلاق الأداة الآن...", "unsupportedMsg": "تعمل أداة Optimizer مع Windows 7 والإصدارات الأحدث!\nسيتم إغلاق الأداة الآن...", "confInvalidVersionMsg": "نسخة ويندوز غير متطابقة!", "confInvalidFormatMsg": "ملف إعداد بتنسيق غير صالح!", "confNotFoundMsg": "ملف الإعداد غير موجود!", "argInvalidMsg": "معلمة غير صحيحة! مثال: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer تعمل بالفعل في الخلفية!", "StartupPreviewForm": "معاينة عناصر بدء التشغيل", "StartupRestoreForm": "استعادة عناصر بدء التشغيل", "backupL": "استرداد عناصر بدء التشغيل الخاصة بك", "txtNoBackups": "لم يتم العثور على نسخ احتياطية", "previewBackupB": "عرض", "restoreBackupB": "إستعادة", "deleteBackupB": "حذف", "noNewVersion": "لديك بالفعل أحدث إصدار!", "betaVersion": "أنت تستخدم نسخة تجريبية!", "removeAllStartup": "هل أنت متأكد أنك تريد حذف كافة عناصر بدء التشغيل؟", "removeAllHosts": "هل أنت متأكد أنك تريد حذف كافة إدخالات hosts?", "removeAllItems": "هل أنت متأكد أنك تريد حذف كافة عناصر سطح المكتب؟", "removeModernApps": "هل أنت متأكد أنك تريد إلغاء تثبيت التطبيق (التطبيقات) التالية؟", "errorModernApps": "تعذر إلغاء تثبيت التطبيق (التطبيقات) التالية:\n", "latestVersionM": "أحدث إصدار: {LATEST}", "currentVersionM": "الإصدار الحالي: {CURRENT}", "resetMessage": "سيتم إغلاق الأداة وستحاول إصلاح نفسها.", "newVersion": "هناك نسخة جديدة متاحة! هل تريد تنزيلها الآن؟\nستتم إعادة تشغيل الأداة خلال بضع ثوانٍ.", "flushDNSMessage": "هل أنت متأكد من رغبتك في مسح ذاكرة التخزين المؤقت لنظام أسماء النطاقات DNS لنظام Windows؟\n\nسيؤدي هذا إلى انقطاع الاتصال بالإنترنت للحظة وقد يلزم إعادة تشغيل الكمبيوتر ليعمل بشكل صحيح.", "downloadsFinished": "إنتهى التنزيل", "downloadDirInvalid": "مجلد التنزيل المحدد غير صالح", "no64Download": "لا يتوفر 64 بت، تنزيل 32 بت", "no32Download": "لا يتوفر 32 بت، تخطي", "installing": "جاري التثبيت", "linkInvalid": "هذا الرابط لم يعد متوفر", "noErrorsM": "لا توجد أخطاء لعرضها!", "hostNotFound": "لم يتم العثور على host", "pinging": "تنفيذ الأمر ping مع 32 بايت - 9 مرات...", "latency": "وقت الإستجابة", "lblSystemTools": "النظام && الأدوات", "lblInternet": "الأنترنت", "lblCoding": "الترميز", "lblVideoSound": "الفيديو && الصوت", "min": "الحد الأدنا", "max": "الحد الأقصى", "avg": "المتوسط", "timeout": "انتهت مدة الطلب", "languagesL": "اختر اللغة", "trayStartup": "مدير بدء التشغيل", "trayCleaner": "منظف القرص", "trayPinger": "الشبكة", "trayHosts": "محرر HOSTS", "trayAD": "برنامج تنزيل التطبيقات", "trayOptions": "الخيارات", "trayRegistry": "إصلاح الريجستري", "trayRestartExplorer": "إعادة تشغيل Explorer", "trayExit": "إغلاق", "tipWhatsThis": "ما هذا؟", "hwDetailed": "عرض تفصيلي", "btnCopyHW": "نسخ", "btnSaveHW": "حفظ", "indiciumTab": "هاردوير", "toolHWCopy": "نسخ", "toolHWGoogle": "البحث على Google", "toolHWDuck": "البحث في DuckDuckGo", "trayHW": "معلومات الهاردوير ", "os": "نظام التشغيل", "cpu": "المعالج Processors", "ram": "الرام Memory", "gpu": "كرت الشاشة Graphics", "mobo": "اللوحة الأم Motherboards", "disk": "المساحة Storage", "inet": "محولات الشبكة Network Adapters", "audio": "الصوت Audio", "dev": "الأجهزة الطرفية Peripherals", "vm": "الذاكرة الافتراضية Virtual Memory", "drives": "الأقراص الصلبة Disk Drives", "volumes": "الأقسام Partitions", "opticals": "محركات الأقراص الضوئية Optical Drives", "removables": "محركات الأقراص القابلة للإزالة", "physicalAdapters": "المحولات الفعلية Physical Adapters", "virtualAdapters": "المحولات الافتراضية Virtual Adapters", "keyboards": "لوحات المفاتيح", "pointings": "أجهزة التأشير", "performanceTip": "مجموعة من إعدادات Windows الداخلية لتحسين الأداء. أامنة تماما. - يقلل من وقت الانتظار قبل إنهاء العمليات غير المستجيبة. - يقلل من وقت إنتظار عرض القوائم. - تعطيل إشعار التحقق من مساحة القرص المنخفضة - تعطيل ميزة shake-to-minimize - يعرض امتدادات الملفات دائماً - يظهر الملفات المخفية", "networkTip": "يطبق Windows آلية تقييد الأنترنت التي من شأنها تقييد حركة مرور الأنترنت عند تشغيل تطبيقات الوسائط المتعددة. الأداء عند لعب الألعاب عبر الإنترنت.", "defenderTip": "Windows Defender هو برنامج مكافحة الفيروسات المدمج في أنظمة Windows.", "smartScreenTip": "يقوم SmartScreen تلقائيًا بفحص الملفات والتنزيلات ومواقع الويب وحظر أي محتوى خطير معروف بالفعل ويحذرك قبل تشغيله.", "systemRestoreTip": "استعادة النظام هي ميزة تسمح بإرجاع حالة Windows إلى الحالة السابقة لحل الأعطال أو المشاكل الأخرى.", "reportingTip": "تقوم ميزة تقارير الأخطاء بجمع أعطال التطبيق والأخطاء وإرسالها إلى Microsoft.", "telemetryTasksTip": "تقوم خدمات إرسال البيانات بإرسال بيانات الاستخدام والأداء بشكل دوري إلى Microsoft، للتحسين في المستقبل.", "officeTelemetryTip": "تقوم خدمة إرسال البيانات في Office بإرسال الاستخدام و بيانات الأداء إلى Microsoft، للتحسين في المستقبل.", "ffTelemetryTip": "تعطيل خدمات إرسال البيانات والإبلاغ عن الأخطاء من Mozilla Firefox.", "vsTip": "تعطيل خدمات إرسال البيانات لـ Visual Studio وميزات الملاحظات، بما في ذلك عميل SQM.", "chromeTelemetryTip": "تعطيل إرسال البيانات في Google Chrome وأداة إعداد التقارير عن البرامج (المعروفة بأنها تسبب استخدامًا عاليًا لوحدة المعالجة المركزية).", "printTip": "خدمة الطباعة هي المسؤولة عن اكتشاف الطابعات وتركيبها واستخدامها.", "faxTip": "خدمة الفاكس هي المسؤولة عن إرسال واستقبال الفاكسات.", "mediaSharingTip": "توفر مشاركة Media Player مشاركة الوسائط المنزلية لـ Windows Media Player.", "stickyTip": "تعد تثبيت المفاتيح Sticky Keys إحدى ميزات إمكانية الوصول لمساعدة مستخدمي Windows مع الإعاقات الجسدية، تقلل من الحركة المطلوبة من أصحاب إصابات الإجهاد المتكررة.", "homegroupTip": "HomeGroup هي ميزة تسمح بمشاركة الملفات على شبكة منزلية باستخدام Windows Explorer.", "superfetchTip": "يقوم Superfetch بتحميل التطبيقات الشائعة الاستخدام مسبقًا إلى ذاكرة الوصول العشوائي (RAM)، مما يتسبب في زيادة استخدام القرص، وخاصة على محركات الأقراص من نوع HDD.", "compatTip": "تكتشف خدمة مساعد التوافق مشكلات التوافق المعروفة في البرامج القديمة.", "disableOneDriveTip": "تعطيل تكامل التخزين السحابي في OneDrive.", "oldMixerTip": "يستعيد لوحة التحكم الكلاسيكية لخالط الصوت.", "oldExplorerTip": "- تعطيل سجل الوصول السريع - يضبط العرض الافتراضي لـ File Explorer على This PC - يعطل ميزى عرض الملفات الأخيرة - يزيل البحث والمهام والطقس من شريط المهام - يعطل سجل الملفات", "adsTip": "يمنع ظهور الإعلانات في قائمة ابدأ.", "uODTip": "يزيل تكامل التخزين السحابي في OneDrive تمامًا.", "peopleTip": "My People هي ميزة جديدة تعرض جهات الاتصال الحديثة في شريط المهام.", "longPathsTip": "يزيل الحد الأقصى لطول المسار وهو 256 حرفًا.", "inkTip": "يوفر Windows Ink الدعم للأقلام الرقمية للرسم على الشاشة.", "spellTip": "ميزات لوحة المفاتيح التي تعمل باللمس فقط مثل: - التصحيح التلقائي - الإقتراحات النصية - التدقيق الإملائي", "xboxTip": "توفر خدمات Xbox Live ميزات البث والتسجيل والتواصل الاجتماعي لألعاب Xbox.", "actionTip": "يعد مركز الإشعارات مكانًا مركزيًا للإشعارات ومربعات الإجراءات السريعة، مثل الواي فاي والبلوتوث وغيرها", "autoUpdatesTip": "تعطيل التنزيل والتثبيت التلقائي لتحديثات Windows. وبدلاً من ذلك، يوجد إشعار عند توفر تحديثات جديدة. كما أنه يقوم بتعطيل خدمة تحسين التسليم Delivery Optimization.", "driversTip": "يكون ذلك مفيدًا عندما يقوم Windows Update باستبدال ملف تعريفات بشكل صحيح باستمرار العمل مع ملف تالف.", "telemetryServicesTip": "تقوم خدمات إرسال البيانات بتتبع وتسجيل بيانات الاستخدام وإرسال التعليقات للتحليل لدا Microsoft.", "privacyTip": "تعديلات الخصوصية الإضافية تعمل على تعطيل ما يلي: - البيانات الحيوية - تحديد الموقع الجغرافي - مشاركة التطبيقات عبر الأجهزة - سجل النصوص - التشخيص", "ccTip": "تقوم الحافظة السحابية Cloud Clipboard بمشاركة بيانات الحافظة عبر أجهزتك. تسمح بالنسخ من جهاز واحد واللصق على جهاز آخر. تتطلب تسجيل الدخول إلى حساب Microsoft.", "cortanaTip": "Cortana هو مساعد افتراضي يعتمد على الذكاء الاصطناعي. - تعطيل Cortana. - تعطيل البحث في الويب من قائمة ابدأ - يمنع حفظ سجل البحث", "sensorTip": "الخدمات التي تدير وظائف أجهزة الاستشعار، مثل التدوير التلقائي والسطوع التلقائي وما إلى ذلك. مفيد فقط للأجهزة اللوحية أو الأجهزة التي تعمل باللمس.", "castTip": "يزيل النقر بزر الماوس الأيمن لمشاركة محتوى الوسائط على أجهزة Miracast.", "gameBarTip": "Game Bar عبارة عن قائمة وصول سريعة لخدمات ألعاب Xbox.", "insiderTip": "يتيح لك برنامج Windows Insider اختبار أحدث الميزات قبل أن يتم إطلاقها للعامة. تعتبر خدمة غير ضرورية للمستخدمين الذين لا يرغبون في المشاركة.", "storeUpdatesSw": "تعطيل تحديثات متجر مايكروسوفت", "storeUpdatesTip": "تعطيل وظيفة التحديثات التلقائية لـ Microsoft Store.", "tpmTip": "يتجاوز متطلبات التمهيد الآمن Secure Boot وTPM 2.0، مما يسمح بالترقية إلى Windows 11.", "leftTaskbarTip": "محاذاة أيقونات شريط المهام إلى اليسار.", "snapAssistTip": "قم بتعطيل Snap Assist Flyout عند تحريك أزرار التكبير.", "widgetsTip": "تعطيل ميزة Widgets وإزالة أيقونة Widgets من شريط المهام.", "chatTip": "إزالة أيقونة الدردشة من شريط المهام.", "smallerTaskbarTip": "يجعل حجم شريط المهام والأيقونات أصغر.", "classicRibbonTip": "يستعيد شريط الأدوات الكلاسيكي من نظام التشغيل Windows 10 في File Explorer.", "classicContextTip": "استعادة قائمة النقر بزر الماوس الأيمن الكلاسيكية، وإزالة إظهار المزيد من الخيارات.", "gameModeSw": "تفعيل وضع الألعاب", "gameModeTip": "تمكين وضع الألعاب بالاشتراك مع جدولة GPU المسرَّعة للأجهزة.", "systemRestoreM": "هل أنت متأكد أنك تريد تعطيل استعادة النظام؟ سيؤدي هذا إلى حذف الصور الاحتياطية الحالية الخاصة بك!", "compactModeSw": "تفعيل الوضع المضغوط في Explorer", "compactModeTip": "يقلل المساحة الإضافية والمساحة المتروكة بين الملفات في Files Explorer.", "stickersTip": "الملصقات عبارة عن رموز تعبيرية كبيرة الحجم تظهر على خلفيات الشاشة، وتُستخدم في برامج المراسلة الاجتماعية.", "hibernateSw": "تعطيل السبات", "hibernateTip": "تعطيل ميزة السبات في نظام التشغيل Windows.", "smb1Sw": "تعطيل بروتوكول SMBv1", "smb2Sw": "تعطيل بروتوكول SMBv2", "smbTip": "يعد بروتوكول SMB{v} مسؤولاً عن مشاركة الملفات بين أجهزة الكمبيوتر التي تعمل بنظام Windows. وقد تم استبداله بـ SMBv3، وهو أكثر أمانًا.", "ntfsStampSw": "تعطيل الطابع الزمني NTFS", "ntfsStampTip": "يشير إلى وقت آخر مرة تم الوصول إلى الملف فيها. يمكن أن يؤدي تعطيله إلى تقليل عمليات الإدخال/الإخراج على الأقراص.", "autoStartToggle": "البدء مع ويندوز", "nvidiaTelemetrySw": "تعطيل إرسال البيانات ل NVIDIA", "dnsTitle": "تغيير خادم DNS بسرعة", "vbsSw": "تعطيل الأمن القائم على المحاكاة الافتراضية vbs", "vbsTip": "ميزة Kernel التي تمنع إدخال برامج التشغيل الضارة في العمليات. له تأثير سلبي على الأداء.", "winSearchSw": "تعطيل البحث", "winSearchTip": "تعطيل خدمة البحث في ويندوز.", "btnRestoreUwp": "استعادة كل تطبيقات UWP", "restoreUwpMessage": "هل انت متأكد من أنك تريد أن تفعل هذا؟", "telemetrySvcToggle": "تعطيل Optimizer Insights", "edgeAiSw": "تعطيل ميزة الإكتشاف في Edge", "edgeTelemetrySw": "تعطيل إرسال البيانات في Edge", "edgeAiTip": "قم بإزالة شريط Discover في Edge.", "edgeTelemetryTip": "تعطيل خدمات SmartScreen وSpotlight وإرسال البيانات في Edge.", "hpetSw": "تعطيل HPET", "loginVerboseSw": "تمكين شاشة تسجيل الدخول التفصيلية", "advancedTab": "متقدم", "btnRestartSafe": "إعادة التشغيل في الوضع الآمن", "btnRestart": "إعادة التشغيل في الوضع العادي", "btnRestartDisableDefender": "إعادة التشغيل && تعطيل ويندوز ديفندر", "classicPhotoViewerSw": "استعادة عارض الصور الكلاسيكي", "tabPage3": "الخطوط", "fontSetTitle": "قم بتعيين الخط المفضل لديك كخط افتراضي لنظام التشغيل Windows", "label11": "الخط الحالي:", "btnSetGlobalFont": "تعيين كافتراضي", "lblFontsCount": "الخطوط المتاحة:", "btnRestoreFont": "استعادة الافتراضي", "btnRefreshFonts": "تحديث", "chkAllNics": "تعيين لجميع محولات الشبكة", "chkCustomDns": "تحديد DNS مخصص", "btnSetDns": "تعيين DNS", "copilotSw": "تعطيل مساعد الذكاء الإصطناعي CoPilot", "copilotTip": "تعطيل جميع ميزات مساعد الذكاء الأصطناعي windows CoPilot.", "btnReinforce": "تحسين السياسات", "msgReinforce": "هل أنت متأكد أنك تريد إعادة تطبيق سياساتك النشطة الحالية؟", "newsInterestsSw": "تعطيل الأخبار && الاهتمامات", "allTrayIconsSw": "إظهار جميع رموز الإشعارات", "noMenuDelaySw": "إزالة تأخير القوائم", "hideSearchSw": "إخفاء بحث شريط المهام", "hideWeatherSw": "إخفاء الطقس في شريط المهام", "autoUpdateToggle": "التحديث تلقائيًا عند التشغيل", "enableUtcSw": "تمکين الوقت العالمي المنسق", "modernStandbySw": "تعطيل Modern Standby", "label24": "محرر متغيرات النظام", "label23": "مسار متغير النظام الجديد:", "button3": "إضافة", "label21": "متغيرات النظام", "button1": "حذف", "button2": "تحديث", "regBackupSw": "تمكين النسخ الاحتياطي للسجل" } ================================================ FILE: Optimizer/Resources/i18n/BG.json ================================================ { "subSystem": "Система", "subPrivacy": "Анонимност", "subGaming": "Гейминг", "subTouch": "Пипане", "subTaskbar": "Лента за задачи", "subExtras": "Екстри", "btnAbout": "ОК", "restartButton": "Рестартирай Сега", "restartButton8": "Рестартирай Сега", "restartButton10": "Рестартирай Сега", "btnFind": "Намери", "btnKill": "Убий", "trayUnlocker": "Файлови Управители", "restartAndApply": "Рестартирай, за да приложиш промените", "txtVersion": "Версия: {VN}", "txtBitness": "Работиш с {BITS}", "linkUpdate": "Налична актуализация", "lblLab": "Експериментална версия\n(изтрий след тестване)", "performanceSw": "Оптимизирай Продуктивността", "networkSw": "Оптимизатор На Интернета", "defenderSw": "Изключи Windows Defender", "systemRestoreSw": "Изключи Системно Възтановяване", "printSw": "Изключи Принт Услугата", "mediaSharingSw": "Изключи Споделянето с Media Player", "faxSw": "Изключи Факс Услугата", "reportingSw": "Изключи Отчитането На Грешки", "homegroupSw": "Изключи HomeGroup", "superfetchSw": "Изключи Superfetch", "telemetryTasksSw": "Изключи Телеметричните Услуги", "officeTelemetrySw": "Изключи Офис Телеметрични Услуги", "vsSW": "Изключи Visual Studio Телеметрия", "ffTelemetrySw": "Изключи Firefox Телеметрия", "chromeTelemetrySw": "Изключи Google Телеметрия", "compatSw": "Изключи Асистент За Съвместимост", "smartScreenSw": "Изключи SmartScreen", "stickySw": "Изключи Лепкави Клавиши", "universalTab": "Основно", "modernAppsTab": "UWP програми", "startupTab": "Стартиране", "appsTab": "Програми", "cleanerTab": "Чистач", "pingerTab": "Интернет", "registryFixerTab": "Регистър", "integratorTab": "Интегратор", "CleanPreviewForm": "Чист Предварителен Преглед", "optionsTab": "Опций", "oldMixerSw": "Mixer Включи Класически Миксер На Звука", "oldExplorerSw": "Завърни Класически Файлов Експлорер", "adsSw": "Изключи Рекламите В Старт Менюто", "uODSw": "Деинсталирай OneDrive", "peopleSw": "Изключи My People", "longPathsSw": "Включи Дълги Директории", "autoUpdatesSw": "Изключи Автоматични Актуализаций", "driversSw": "Изключи Драйверите От Актуализацийте", "telemetryServicesSw": "Изключи Телеметричните Услуги", "privacySw": "Подобри Анонимността", "ccSw": "Изключи Облачния Клипборд", "cortanaSw": "Изключи Кортана", "regBackupSw": "Активиране на архивиране на регистъра", "sensorSw": "Изключи Сензорните Услуги", "castSw": "Премахни Предаване Към Устройството", "inkSw": "Изключи Windows Ink", "spellSw": "Изключи Проверяването За Правопис", "xboxSw": "Изключи Xbox Live", "gameBarSw": "Изключи Бара За Игри", "insiderSw": "Изключи Инсайдър Услугата", "actionSw": "Изключи Центъра За Нотификаций", "disableOneDriveSw": "Изключи OneDrive", "tpmSw": "Изключи TPM Чекирането", "leftTaskbarSw": "Присвой Лентата За Задачи В Ляво", "snapAssistSw": "Изключи Асистент За Прилепване На Прозорци", "widgetsSw": "Изключи Уиджетите", "chatSw": "Изключи Чата", "smallerTaskbarSw": "Направи Лентата За Задачите По-малка", "classicRibbonSw": "Включи Класическа Панделка В Експлорера", "classicContextSw": "Включи Класическо Меню С Десен Бутон", "refreshModernAppsButton": "Обнови", "uninstallModernAppsButton": "Деинсталирай", "txtModernAppsTitle": "Деинсталирай нежелани UWP програми", "chkSelectAllModernApps": "Избери Всичко", "chkOnlyRemovable": "Само Деинсталиращи Програми", "onedriveM": "Сигурен ли си, че искаш да деинсталираш OneDrive? Това ще изтрие троя Десктоп и твойте Документни файлове! Използвай тази опция само на локален профил!", "startupTitle": "Избери твойте елементи за стартиране", "removeStartupItemB": "Истрий", "locateFileB": "Намери файл", "findInRegB": "Намери в Регистър", "analyzeDriveB": "Анализирай", "refreshStartupB": "Обнови", "restoreStartupB": "Възтанови", "backupStartupB": "Резерва", "lblBackupTitle": "Име На Резервата:", "doBackup": "ОК", "cancelBackup": "Откажи", "startupItemName": "Име", "startupItemLocation": "Местоположение", "startupItemType": "Тип", "txtFeedError": "Няма връзка с интернет, опитай да обновиш линковете пак", "appsTitle": "Бързо инсталирай && инсталирай полезни програми", "btnGetFeed": "Обнови линковете", "bitPref": "Настрой предпочитанията за битовете", "linkWarnings": "Виж предупрежденията", "txtDownloadStatus": "Неактивно", "goToDownloadsB": "Отиди към изтеглянията", "btnDownloadApps": "Изтегли", "cAutoInstall": "Инсталирай след изтеглянето", "setDownDirLbl": "Настрой папка за изтеглянията", "c64": "64-бита", "c32": "32-бита", "checkSelectAll": "Избери всичко", "checkTemp": "Временни файлове", "checkLogs": "Windows отчети", "checkMiniDumps": "BSOD мини остатъци", "checkBin": "Изчисти кошчето", "checkMediaCache": "Media Player кеш", "checkErrorReports": "Отчетени грешки", "cleanDriveB": "Почисти", "lblPretext": "Максимално пространство за освобождаване:", "cleanerTitle": "Изчисти си системния диск", "pingerTitle": "Пинг на IP адреси и отчети своята латентност", "lblPinger": "IP / Име на домейн", "btnOpenNetwork": "Отвори Мрежови връзки", "copyIPB": "Копирай", "copyB": "Копирай IP", "btnShodan": "Провери на SHODAN.io", "btnPing": "Пинг", "lblResults": "Резултати", "flushCacheB": "Изчисти DNS кеш", "btnExport": "Експортирай", "hostsTitle": "Редактирай свойте хост файлове ефективно", "linkLocate": "Локализирай", "linkAdvancedEdit": "Разширен редактор", "linkRestoreDefault": "Възтанови по подразбиране", "lblIP": "IP адреси", "lblDomain": "Домейн", "chkBlock": "Блокирай", "addHostB": "Добави", "lblLock": "Защити своя HOSTS файл като го заключиш", "chkReadOnly": "Само за четене", "lblAdblock": "Предварително направени рекламни блокери", "lblAdblockSub": "(ще изтрие сегащната конфигурация)", "adblockS": "Рекламен блокер + Социален", "adblockP": "Рекламен блокер + Порно", "removeHostB": "Истрий", "refreshHostsB": "Обнови", "removeAllHostsB": "Истрий всички", "regFixB": "Оправи", "regLbl": "(някой промяни може да се нуждаят от това)", "checkRestartExplorer": "Също рестартирай Експлорера, за да приложиш промените", "checkRegistryEditor": "Редактор на регистрите", "checkFirewall": "Windows Защитна Стена", "checkContextMenu": "Меню с десен бутон", "checkRunDialog": "Run диалог", "checkFolderOptions": "Опций за папката", "checkControlPanel": "Контролен Панел", "checkCommandPrompt": "Команден ред", "checkTaskManager": "Диспечер На Задачите", "checkEnableAll": "Включи всичко", "registryTitle": "Оправи чести проблеми с регистъра", "quickAccessToggle": "Покажи Менюто За Бърз Достъп", "helpTipsToggle": "Покажи Помощни Съобщения", "lblTheming": "Избери своята тема", "radioOcean": "Океан", "radioMagma": "Магма", "radioZerg": "Зерг", "radioCaramel": "Карамел", "radioLime": "Лайм", "radioMinimal": "Минимална", "lblUpdating": "Провери && актуализирай", "btnUpdate": "Провери за актуализаций", "btnChangelog": "Вищ промените", "lblUpdateDisabled": "Изключено в експерименталните версии", "lblTroubleshoot": "Отстраняване на неизправности", "btnViewLog": "Вищ грешките", "btnOpenConf": "Виш папката с конфигураций", "btnResetConfig": "Поправи", "integrator1": "Интегратора може да добави напълно обработени\nелементи в Десктопното меню с десен бутон", "integrator2": "• Всякаква Програма", "integrator3": "• Кратки връзки към папки", "integrator4": "• Уеб връзки", "integrator5": "• Всякакъв тип файл", "integrator6": "• Команди", "integrator7": "Елементите могат да имат пресонализирани икони и местоположения.\nСъщо могат да са скрити, достъпни само\nпри натискането на SHIFT клавиша.\nМоже също да направи пресонализирани команди\nза Run диалога, правейки го лесен за отваряне\nна всякаква програма при писането на ключова дума.", "integratorInfoTab": "Информация", "tabPage8": "Добави/Редактирай", "tabPage9": "Истрий", "tabPage10": "Готови Менюта", "tabPage11": "Run диалог", "addItemL": "Добави или модифицирай елемент", "itemtype": "Тип на елемента", "radioProgram": "Програма", "radioFolder": "Папка", "radioLink": "Линк", "radioFile": "Файл", "radioCommand": "Команда", "itemtoaddgroup": "Програма за добавяне", "folderToAdd": "Папка за добавяне", "linkToAdd": "Линк за добавяне", "fileToAdd": "Файл за добавяне", "commandToAdd": "Команда за добавяне", "icontoaddgroup": "Икона за добавяне", "checkDefaultIcon": "Използвай иконата на програмата", "checkDefaultFolderIcon": "Използвай иконата по подразбиране за папките", "checkFavicon": "Инсталирай уебсайт икона (favicon)", "checkNoIcon": "Никаква икона", "dnsCacheM": "DNS Кеша се генерира, моля опитай по-късно!", "itemposition": "Местоположение на елемента", "radioTop": "Отгоре", "radioMiddle": "По средата", "radioBottom": "Отдолу", "security": "Защита", "checkShift": "Покажи само когато SHIFT е натиснат", "itemnamegroup": "Име на елемент в меню", "btnAddItem": "Добави/Модифицирай", "removeIntegratorItemsL": "Изтрий съществуващи Десктоп елементи", "removeDIB": "Истрий", "refreshIIB": "Обнови", "removeAllIIB": "Истрий всичко", "PMB": "Добави меню за захранване", "STB": "Добави системни инструменти", "WAB": "Добави Windows Програми", "SSB": "Добави Системни Кратки Пътища", "DSB": "Добави Десктоп Кратки Пътища", "AddOwnerB": "Добави 'Вземи Собственост'", "RemoveOwnerB": "Истрий 'Вземи Собственост'", "AddCMDB": "Добави 'Отвори с Команден Ред'", "DeleteCMDB": "Истрий 'Отвори с Команден Ред'", "readyMenusL": "Добави полезни, предварително създадени менюта", "refreshCCB": "Обнови", "removeCCB": "Истрий", "removeCCL": "Истрий съществуващи команди", "btnCreateCustomCommand": "Създай", "ccKeywordL": "ключова дума", "ccFileL": "Локация на файл", "ccL": "Дефинирай свойте Run команди", "btnYes": "Да", "btnNo": "Не", "btnOk": "ОК", "HostsEditorForm": "Hosts Редактор", "savebtn": "Запази", "closebtn": "Затвори", "adminMissingMsg": "Оптимизатора трябва да върви с администраторски права!\nПрограмата сега ще се затвори...", "unsupportedMsg": "Оптимизатора работи с Windows 7 и нагоре!\nПрограмата сега ще се затвори...", "confInvalidVersionMsg": "Windows версията не съвпада!", "confInvalidFormatMsg": "Конфиг файла е в невалиден формат!", "confNotFoundMsg": "Конфиг файла не съществува!", "argInvalidMsg": "Невалиден аргумент! Пример: Optimizer.exe /template.json", "alreadyRunningMsg": "Оптимизатора върви в заден фон!", "StartupPreviewForm": "Педварителен преглед на Стартъп елементите", "StartupRestoreForm": "Възтанови Стартъп елементите", "backupL": "Възтанови свойте Стартъп елементи", "txtNoBackups": "Никакви резервни копия не бяха намерени", "previewBackupB": "Преглед", "restoreBackupB": "Възтанови", "deleteBackupB": "Истрий", "noNewVersion": "Вече вървищ с най-новата версия!", "betaVersion": "Използваш експериментална версия!", "removeAllStartup": "Сигурен ли си, че искаш да изтриеш всички Стартъп елементи?", "removeAllHosts": "Сигурен ли си, че искаш да истриеш всички hosts записи?", "removeAllItems": "Сигурен ли си, че искаш да истриеш всички Десктоп елементи?", "removeModernApps": "Сигурен ли си, че искаш да истриеш всички следната(ите) програма(и)?", "errorModernApps": "Следната(ите) програма(и) не можаха да бъдат изтрити:\n", "latestVersionM": "Най-нова версия: {LATEST}", "currentVersionM": "Сегашна версия: {CURRENT}", "resetMessage": "Програмата ще се затвори и ще се опита да се възтанови.", "newVersion": "Има нова версия! Искаш ли да я истеглиш сега?\nПрограмата ще се рестартира след няколко секунди.", "flushDNSMessage": "Желаеш ли да изчистищ DNS кеша на Windows?\n\nЩе изгубиш интернет връзка за момент и може да се наложи рестартиране на системата, за да работи правилно.", "downloadsFinished": "Завършено", "downloadDirInvalid": "Специфираната папка за изтегляния е невалидна", "no64Download": "Няма наличен 64-bit, инсталира се 32-bit", "no32Download": "Няма наличен 32-bit, пропуска се", "installing": "Инсталира се", "linkInvalid": "Линка не е валиден вече", "noErrorsM": "Няма никакви грешки!", "hostNotFound": "Не можеше да се намери хост", "pinging": "Пингване с 32 байта - 9 пъти...", "latency": "ЛАТЕНТНОСТ", "lblSystemTools": "Система && Инструменти", "lblInternet": "Интернет", "lblCoding": "Кодиране", "lblVideoSound": "Видео && Звук", "min": "Минимум", "max": "Макс", "avg": "Средно", "timeout": "Таймаут на заявката", "languagesL": "Избери език", "trayStartup": "Стартъп упвавител", "trayCleaner": "Чистач на дискове", "trayPinger": "Мрежа", "trayHosts": "HOSTS Редактор", "trayAD": "Програма за изтегляне на програми", "trayOptions": "Опции", "trayRegistry": "Оправи Регистъра", "trayRestartExplorer": "Рестартирай Експлорера", "trayExit": "Изход", "tipWhatsThis": "Какво е това?", "hwDetailed": "Гледане в детайли", "btnCopyHW": "Копирай", "btnSaveHW": "Запази", "indiciumTab": "Хардуер", "toolHWCopy": "Копирай", "toolHWGoogle": "Търси с Гугъл", "toolHWDuck": "Търси с DuckDuckGo", "trayHW": "Хардуерна информация", "os": "Операционна системата", "cpu": "Процесори", "ram": "Памет", "gpu": "Графики", "mobo": "Дънни платки", "disk": "Пространство", "inet": "Мрежови адаптери", "audio": "Аудио", "dev": "Периферий", "vm": "Виртуална памет", "drives": "Дискови драйвове", "volumes": "Сектори", "opticals": "Оптични дискове", "removables": "Сменяеми устройства", "physicalAdapters": "Физически адаптери", "virtualAdapters": "Виртуални адаптери", "keyboards": "Клавиатури", "pointings": "Посочващи устройства", "performanceTip": "Колекция на вътрешни Windows настройки за оптимизиранто на продуктивността. Напълно запази, за да приложиш. - Намалява времето за чакане преди да убие неотговарящи процеси. - Намалява отлаганото време при показване на менюто. - Изкючва известията за малко дисково пространство - Изключва свойството намали-за-да-минимизиращ - Винаги показвай файлови типове - Показва скрити файлове", "networkTip": "Windows имплементира механизъм за забавяне, който да ограничи мрежовият трафик, когато се използват мултимедийни приложения. Може да ограничи продуктивността на мрежите при онлайн игрите.", "defenderTip": "Windows Defender е вградената анти-вирусна на Windows системте.", "smartScreenTip": "SmartScreen автоматично сканира файлове, изтегляния и уебсайтове, блокирайки вече познати опасни съдържания преди да бъдат отворени.", "systemRestoreTip": "System Restore е функция на Windows, която се използва за възстановяване на предишно състояние на системата с цел оправяне на неизправности и други проблеми.", "reportingTip": "Отчитането на грешки събира информация за крашове и я изпраща на Microsoft.", "telemetryTasksTip": "Телеметричните услуги периодично изпращат данни за употреба на програми итяхната продуктивност на Microsoft, с цел бъдещи подобрения.", "officeTelemetryTip": "Офис телеметрията периодично изпраща данни за употреба и производителност към Microsoft, с цел бъдещи подобрения.", "ffTelemetryTip": "Изключва Mozilla Firefox телеметрия и услуги за отчитане на данни.", "vsTip": "Изключва Visual Studio телеметрия и услуги за отчитане, включително и SQM клиент.", "chromeTelemetryTip": "Изключва Google Chrome телеметрия и инструментите за софтуерно отчитане (популярни за употреба на големи процесорни ресурси).", "printTip": "Принт услугата е отговорна за детекцията, инсталирането и използването на принтери.", "faxTip": "Факс услугата е отговорна за изпращане и получаване на факсове.", "mediaSharingTip": "Media Player Споделяне предоставя домашно споделяне на медия за Windows Media Player.", "stickyTip": "Лепкави клавиши са свойство за достъпност на Windows, които намаляват количеството физически движения с цел предотвратяване на наранявания.", "homegroupTip": "HomeGroup е услуга, която позволява споделянето на файлове в домашна мрежа използвайки файловия Експлорър на Windows.", "superfetchTip": "Superfetch предварително зарежда често използвани програми в РАМ пространството, довеждайки до висока употреба на диска, особено на хард дискове.", "compatTip": "Асистент За Съвместимост е услуга, която открива знаени проблеми с съвместимостта в по-стари програми.", "disableOneDriveTip": "Изключва интеграцията на облачното пространството OneDrive.", "oldMixerTip": "Възстановява класическия миксер за звука в контролния панел.", "oldExplorerTip": "- Изключва историята за бърз достъп - Настройва местоположението по подразбиране за изглед към Този Компютър - Изключва скорошни файлове - Премахва търсенето, задачи и времето от лентата за задачи - Изключва историята на файловете", "adsTip": "Предотвратява показването на реклами в Старт Менюто.", "uODTip": "Напълно премахва интеграцията на OneDrive облака.", "peopleTip": "My People е нова особеност, която показва скорошните контакти в лентата за задачи.", "longPathsTip": "Премахва ограничението за максималната дължина на пътя от 256 знака.", "inkTip": "Windows Ink предоставя поддръжка за дигитални химикалки, за да може да се рисува на екрана.", "spellTip": "Touch-keyboard само поддържа: - Автоматично поправяне - Текстови предложения - Проверка за правопис", "xboxTip": "Xbox Live услугите предоставят предаване на живо, заснемане и социални услуги за Xbox игрите.", "actionTip": "Център за известия е централно място за известия и плочки за бърз достъп, като Wi-Fi, Bluetooth и др.", "autoUpdatesTip": "Изключва автоматично изтегляне и инсталиране на Windows актуализации. Вместо това получаваш известие, когато има нова актуализация, също така спира услугата за оптимизиране на доставките.", "driversTip": "Полезно, когато Windows актуализациите постоянно заменят работещи драйвери с драйвери с проблеми.", "telemetryServicesTip": "Телеметричните услуги следят и отчитат данните, които са изпратени за анализи към Microsoft.", "privacyTip": "Допълнителни настройки за анонимност изключвайки следните неща: - Биометрични данни - Геолокация - Споделяне на програми към други устройства - Отчитане на текст - Диагностика", "ccTip": "Облачния клипборд споделя данни между всички твои устройства. Позволява да копираш от едно устройство и да поставяш в другото. Нужен е Microsoft акаунт.", "cortanaTip": "Кортана е виртуален асистент базиран на изкуствен интелект. - Изключва Кортана. - Изключва уеб търсенето в Старт Менюто - Спира запазването на историята на търсения", "sensorTip": "Услуги, които управляват функционалността на сензорите, като автоматично завъртване, автоматична светлина и др. Добро само за таблети или устройства с тъчскрийн.", "castTip": "Премахва десен бутон за споделяне на медия към Miracast устройства.", "gameBarTip": "Game Bar е меню за бърз достъп към Xbox гейминг услугите.", "insiderTip": "Windows Insider програмата ти позволява да тестваш най-новите особености преди да станат публични. Счетено е за ненужна услуга за хората, които не искат да участват.", "storeUpdatesSw": "Изключи актуализациите на Microsoft магазина", "storeUpdatesTip": "Изключва функционалността за автоматични актуализации на Microsoft магазина.", "tpmTip": "Преминава TPM 2.0 изискванията, позволявайки актуализация към Windows 11.", "leftTaskbarTip": "Подрежда иконите в лентата за задачи в ляво.", "snapAssistTip": "Изключва асистента за прилепване когато задържаш на бутоните за оголемяване.", "widgetsTip": "Изключва уиджетите и премахва иконата за уиджети от лентата за задачи.", "chatTip": "Премахва Чат иконата от лентата за задачи.", "smallerTaskbarTip": "Прави размера на лентата за задачи и на иконите по-малък.", "classicRibbonTip": "Възвръща класическата лента с панделка от Windows 10 от Файловия Експлорър.", "classicContextTip": "Възвръща Класическото меню с десен бутон, премахвайки 'Покажи повече опции'.", "gameModeSw": "Включи Гейминг Режим", "gameModeTip": "Включва Гейминг Режим в комбинация с хардуерно акселерирано GPU планиране.", "systemRestoreM": "Сигурен ли си, че искаш да изключиш Системно Възтановяване? Това ще изтрие сегашните ти точки за възстановяване!", "compactModeSw": "Включи Компактен Режим във Файловия Експлорер", "compactModeTip": "Намалява мястото между файлове във Файловия Експлорер.", "stickersTip": "Стикерите са големи емоджита, които се появяват на тапети, изполсзвани в социални месинджъри.", "hibernateSw": "Изключи хибернирането", "hibernateTip": "Изключва свойството Windows хибернация.", "smb1Sw": "Изключи SMBv1 Протокол", "smb2Sw": "Изключи SMBv2 Протокол", "smbTip": "SMB{v} протокола е отговорен за споделяне на файлове между Windows Компютри. Заменен е със SMBv3, който е по-защитен.", "ntfsStampSw": "Изкючи NTFS времева марка", "ntfsStampTip": "Индикира кога за последно е достъпен файл. Неговото изключване може да намали I/O операциите на диска.", "autoStartToggle": "Стартирай с Windows", "nvidiaTelemetrySw": "Изключи NVIDIA телеметрията", "dnsTitle": "Бързо промени DNS сървър", "vbsSw": "Изключи защита, базирана на виртуализация", "vbsTip": "Функция на ядрото, която спира злонамерени дискове от инжекции в процесите. Има негативни ефекти на производителността на компютъра.", "winSearchSw": "Изкючва Търсенето", "winSearchTip": "Изключва услугата Windows search.", "btnRestoreUwp": "Възтанови целия UWP", "restoreUwpMessage": "Сигурен ли си, че искаш да направиш това?", "telemetrySvcToggle": "Изключи Optimizer Insights", "edgeAiSw": "Изключи Edge Discover", "edgeTelemetrySw": "Изключи Edge телеметрия", "edgeAiTip": "Премахва Discover Bar в Edge.", "edgeTelemetryTip": "Изключва SmartScreen, Spotlight и телеметрични услуги в Edge.", "hpetSw": "Изключи HPET", "loginVerboseSw": "Включи Детайлен Входен Екран", "advancedTab": "Разширено", "btnRestartSafe": "Рестартирай в Безопасен Режим", "btnRestart": "Рестартирай в Нормален Режим", "btnRestartDisableDefender": "Рестартирай && Изключи Defender", "classicPhotoViewerSw": "Възвърни класическия преглед на снимки", "tabPage3": "Шрифтове", "fontSetTitle": "Сложи любимия си шрифт по подразбиране в Windows", "label11": "Сегашен шрифт:", "btnSetGlobalFont": "Сложи по подразбиране", "lblFontsCount": "Достъпни шрифтове:", "btnRestoreFont": "Възтанови по подразбиране", "btnRefreshFonts": "Обнови", "chkAllNics": "Приложи за всички мрежови адаптери", "chkCustomDns": "Сложи персонализиран DNS", "btnSetDns": "Сложи DNS", "copilotSw": "Изключете CoPilot AI", "copilotTip": "Изцяло изключва функцията CoPilot AI", "btnReinforce": "Укрепете политиките", "msgReinforce": "Сигурни ли сте, че искате да приложите отново текущите си политики?", "newsInterestsSw": "Деактивиране на новините и интересите", "allTrayIconsSw": "Показване на всички икони за известия", "noMenuDelaySw": "Премахване на забавянето на менютата", "hideSearchSw": "Скриване на търсенето в лентата със задачи", "hideWeatherSw": "Скриване на времето в лентата със задачи", "enableUtcSw": "Включи UTC Времето", "autoUpdateToggle": "Актуализация при стартиране", "modernStandbySw": "Деактивиране на съвременното готвене", "label24": "Редактор на системни променливи", "label23": "Нов път на системна променлива:", "button3": "Добавяне", "label21": "Системни променливи", "button1": "Изтриване", "button2": "Обновяване" } ================================================ FILE: Optimizer/Resources/i18n/CN.json ================================================ { "subSystem": "系统", "subPrivacy": "隐私", "subGaming": "游戏", "subTouch": "触碰", "regBackupSw": "啟用註冊表備份", "subTaskbar": "任务栏", "subExtras": "附加功能", "btnAbout": "确定", "restartButton": "现在重启", "restartButton8": "现在重启", "restartButton10": "现在重启", "restartAndApply": "重新启动以应用更改", "btnFind": "查找进程", "btnKill": "结束进程", "trayUnlocker": "查找文件句柄", "txtVersion": "版本: {VN}", "txtBitness": "您使用的是{BITS}", "onedriveM": "确定要卸载 OneDrive 吗? 这将删除您的桌面和文档文件! 仅在本地帐户上使用此选项!", "systemRestoreM": "您确定要禁用系统还原吗? 这将删除您当前的备份图像!", "linkUpdate": "更新可用", "lblLab": "实验构建\n(删除后测试)", "performanceSw": "启用性能调整", "networkSw": "禁用网络节流", "defenderSw": "禁用 Windows 安全中心", "systemRestoreSw": "禁用系统还原", "printSw": "禁用打印服务", "mediaSharingSw": "禁用媒体播放器共享", "faxSw": "禁用传真服务", "reportingSw": "禁用错误报告", "homegroupSw": "禁用家庭组", "superfetchSw": "禁用 Superfetch", "telemetryTasksSw": "禁用遥测任务", "officeTelemetrySw": "禁用 Office 遥测", "vsSW": "禁用 Visual Studio 遥测", "ffTelemetrySw": "禁用 Mozilla Firefox 遥测", "chromeTelemetrySw": "禁用 Google Chrome 遥测", "compatSw": "禁用兼容性助手", "smartScreenSw": "禁用 SmartScreen", "stickySw": "禁用粘滞键", "universalTab": "通用", "modernAppsTab": "UWP 应用", "startupTab": "启动项", "appsTab": "常规应用程序", "cleanerTab": "垃圾清理", "pingerTab": "Ping 工具", "registryFixerTab": "注册表", "integratorTab": "菜单集成", "CleanPreviewForm": "清除预览", "optionsTab": "偏好选项", "oldMixerSw": "启用经典音量混合器", "oldExplorerSw": "恢复经典文件资源管理器", "adsSw": "禁用开始菜单广告", "uODSw": "卸载 OneDrive", "peopleSw": "禁用 My People", "longPathsSw": "启用长路径支持", "autoUpdatesSw": "禁用自动更新", "driversSw": "禁用自动更新驱动程序", "telemetryServicesSw": "禁用遥测服务", "privacySw": "加强隐私", "ccSw": "禁用云剪贴板", "cortanaSw": "禁用小娜 Cortana", "sensorSw": "禁用传感器服务", "castSw": "移除 Cast to device", "inkSw": "禁用 Windows Ink", "spellSw": "禁用拼写检查", "xboxSw": "禁用 Xbox Live 服务", "gameBarSw": "禁用游戏栏功能", "insiderSw": "禁用参与内部计划", "actionSw": "禁用通知中心", "disableOneDriveSw": "禁用 OneDrive", "tpmSw": "禁用 TPM 2.0 检测", "leftTaskbarSw": "任务栏靠左对齐", "snapAssistSw": "禁用快速协助", "widgetsSw": "禁用小组件服务", "chatSw": "禁用聊天", "stickersSw": "禁用贴纸", "smallerTaskbarSw": "让任务栏图标变小", "classicRibbonSw": "在资源管理器中启用经典色带", "classicContextSw": "启用经典右键菜单", "refreshModernAppsButton": "刷新", "uninstallModernAppsButton": "卸载", "txtModernAppsTitle": "卸载不想要的UWP应用程序", "chkSelectAllModernApps": "全选", "chkOnlyRemovable": "只卸载可以卸载的程序", "flushDNSMessage": "您确定要刷新 Windows 的 DNS 缓存吗?\n\n这将导致互联网断开一会儿,可能需要重新启动才能正常运行.", "startupTitle": "选择启动项目", "removeStartupItemB": "删除", "locateFileB": "定位文件", "findInRegB": "在注册表中查找", "refreshStartupB": "刷新", "restoreStartupB": "恢复", "backupStartupB": "备份", "lblBackupTitle": "备份标题:", "doBackup": "确定", "cancelBackup": "取消", "startupItemName": "名称", "startupItemLocation": "位置", "startupItemType": "类型", "txtFeedError": "没有互联网连接,请重新刷新链接", "appsTitle": "快速下载 && 安装有用的软件", "btnGetFeed": "刷新链接", "bitPref": "系统架构", "linkWarnings": "查看警告", "txtDownloadStatus": "空闲状态", "goToDownloadsB": "转到下载", "btnDownloadApps": "下载", "cAutoInstall": "下载后安装", "setDownDirLbl": "设置下载文件夹", "c64": "64位", "c32": "32位", "checkSelectAll": "全选", "checkTemp": "临时文件", "checkLogs": "Windows 日志", "checkMiniDumps": "BSOD 最小转储", "checkBin": "清空回收站", "checkMediaCache": "Media Player 缓存", "checkErrorReports": "错误报告", "cleanDriveB": "清除", "lblPretext": "可释放的文件大小:", "cleanerTitle": "清理您的系统驱动器", "pingerTitle": "Ping IP地址和评估您的延迟", "lblPinger": "IP / 域名", "btnOpenNetwork": "打开网络连接设置", "copyIPB": "复制", "copyB": "复制 IP", "btnShodan": "在网站检测IP", "btnPing": "Ping", "lblResults": "结果", "flushCacheB": "刷新DNS缓存", "btnExport": "导出", "hostsTitle": "地编辑主机hosts文件", "linkLocate": "定位", "analyzeDriveB": "分析", "linkAdvancedEdit": "高级编辑", "linkRestoreDefault": "恢复为默认", "lblIP": "IP 地址", "lblDomain": "域名", "chkBlock": "域名阻止", "addHostB": "添加", "lblLock": "通过锁定来保护您的HOSTS文件", "chkReadOnly": "只读", "lblAdblock": "预置广告阻止", "lblAdblockSub": "(将删除您当前的配置)", "adblockS": "广告阻止 + 社交网站", "adblockP": "广告阻止 + 色情网站", "adblockBasic": "基本广告屏蔽", "adblockUlti": "全部广告屏蔽", "removeHostB": "删除", "refreshHostsB": "刷新", "removeAllHostsB": "删除所有", "regFixB": "修复", "regLbl": "(有些更改可能需要这样做)", "checkRestartExplorer": "同时重新启动资源管理器来应用更改", "checkRegistryEditor": "注册表编辑器", "checkFirewall": "Windows 防火墙", "checkContextMenu": "右键菜单", "checkRunDialog": "运行对话框", "checkFolderOptions": "文件夹选项", "checkControlPanel": "控制面板", "checkCommandPrompt": "命令提示符", "checkTaskManager": "任务管理器", "checkEnableAll": "全部启用", "registryTitle": "修复常见的注册表问题", "quickAccessToggle": "显示快速存取菜单", "helpTipsToggle": "显示帮助信息", "lblTheming": "选择主题", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "检测 && 更新", "btnUpdate": "检查更新", "btnChangelog": "查看更新日志", "lblUpdateDisabled": "在实验构建中禁用", "lblTroubleshoot": "故障排除", "btnViewLog": "查看错误", "btnOpenConf": "显示配置文件夹", "btnResetConfig": "修理", "integrator1": "集成器能够添加完全定制\n项目在桌面右键菜单:", "integrator2": "• 任何程序", "integrator3": "• 快捷方式到文件夹", "integrator4": "• 链接到 web", "integrator5": "• 任意类型文件", "integrator6": "• 命令", "integrator7": "项目可以有自定义的图标和位置。它们也可以被隐藏,只能通过按SHIFT键访问。它还可以创建自定义的\n命令运行对话框,使它很容易启动\n任意应用程序,只需输入你想要的关键字.", "integratorInfoTab": "信息", "tabPage8": "添加/修改", "tabPage9": "删除", "tabPage10": "右键菜单", "tabPage11": "运行对话框", "addItemL": "添加或修改项", "itemtype": "项类型", "radioProgram": "程序", "radioFolder": "文件夹", "radioLink": "链接", "radioFile": "文件", "radioCommand": "命令", "itemtoaddgroup": "项目添加", "folderToAdd": "文件夹添加", "linkToAdd": "链接添加", "fileToAdd": "文件添加", "commandToAdd": "命令添加", "icontoaddgroup": "图标添加", "checkDefaultIcon": "使用程序的图标", "checkDefaultFolderIcon": "使用默认文件夹图标", "checkFavicon": "下载网站图标", "checkNoIcon": "无图标", "dnsCacheM": "正在生成DNS缓存,请稍候再试!", "itemposition": "项目位置", "radioTop": "顶部", "radioMiddle": "中间", "radioBottom": "底部", "security": "安全", "checkShift": "仅当按下SHIFT时显示", "itemnamegroup": "菜单中的项目名称", "btnAddItem": "添加/修改", "removeIntegratorItemsL": "删除现有桌面项目", "removeDIB": "删除", "refreshIIB": "刷新", "removeAllIIB": "删除全部", "PMB": "添加 '电源菜单'", "STB": "添加 '系统工具'", "WAB": "添加 'Windows应用'", "SSB": "添加 '系统快捷方式'", "DSB": "添加 '桌面快捷方式'", "AddOwnerB": "添加 '获得所有权'", "RemoveOwnerB": "删除 '获得所有权'", "AddCMDB": "添加 '使用 CMD 打开'", "DeleteCMDB": "删除 '使用 CMD 打开'", "readyMenusL": "添加有用的右键菜单", "refreshCCB": "刷新", "removeCCB": "删除", "removeCCL": "删除现有命令", "btnCreateCustomCommand": "创建", "ccKeywordL": "关键字", "ccFileL": "文件位置", "ccL": "定义自定义的Run命令", "btnYes": "是", "btnNo": "否", "btnOk": "确定", "HostsEditorForm": "Hosts 编辑器", "savebtn": "保存", "closebtn": "关闭", "adminMissingMsg": "优化器需要作为管理员运行!\n程序现在将关闭...", "unsupportedMsg": "优化工作在Windows 7或更高!\n程序现在将关闭...", "confInvalidVersionMsg": "系统版本不匹配!", "confInvalidFormatMsg": "配置文件格式无效!", "confNotFoundMsg": "配置文件不存在!", "argInvalidMsg": "无效的参数! 例如: Optimizer.exe /template.json", "alreadyRunningMsg": "优化器已经在后台运行!", "StartupPreviewForm": "启动项目预览", "StartupRestoreForm": "恢复启动项目", "backupL": "恢复启动项", "txtNoBackups": "未找到备份", "previewBackupB": "预览", "restoreBackupB": "恢复", "deleteBackupB": "删除", "noNewVersion": "您已经是最新的版本!", "betaVersion": "你使用的是实验版本!", "removeAllStartup": "您确定要删除所有启动项吗?", "removeAllHosts": "确定要删除所有主机条目吗?", "removeAllItems": "您确定要删除所有桌面项目吗?", "removeModernApps": "您确定要卸载以下应用程序吗??", "errorModernApps": "以下应用程序无法卸载:\n", "latestVersionM": "最新版本: {LATEST}", "currentVersionM": "当前版本: {CURRENT}", "resetMessage": "应用程序将退出并尝试自行修复。", "newVersion": "有一个新的版本可用! 你想现在下载吗?\n应用程序将在几秒钟内重新启动.", "downloadsFinished": "完成", "downloadDirInvalid": "指定的下载文件夹无效", "no64Download": "没有64位可用,正在下载32位", "no32Download": "没有32位可用,跳过", "installing": "正在安装", "linkInvalid": "链接不再有效", "noErrorsM": "没有错误要显示!", "hostNotFound": "找不到主机", "pinging": "ping 32字节 - 9次...", "latency": "延迟", "lblSystemTools": "系统 && 工具", "lblInternet": "互联网", "lblCoding": "编程", "lblVideoSound": "视频 && 音频", "min": "最小", "max": "最大", "avg": "平均", "timeout": "请求超时", "languagesL": "选择语言", "trayStartup": "启动管理器", "trayCleaner": "磁盘清理", "trayPinger": "Ping 工具", "trayHosts": "HOSTS 编辑器", "trayAD": "应用下载器", "trayRestartExplorer": "重启资源管理器", "trayOptions": "偏好选项", "trayRegistry": "注册表修复", "trayExit": "退出", "tipWhatsThis": "这是什么?", "hwDetailed": "详细视图", "btnCopyHW": "复制", "btnSaveHW": "保存", "indiciumTab": "硬件", "toolHWCopy": "复制", "toolHWGoogle": "搜索 Google", "toolHWDuck": "搜索 DuckDuckGo", "trayHW": "硬件信息", "os": "操作系统", "cpu": "处理器", "ram": "存储", "gpu": "显卡", "mobo": "主板", "disk": "储存空间", "inet": "网络连接", "audio": "音频", "dev": "其它设备", "vm": "虚拟内存", "drives": "磁盘", "volumes": "分区", "opticals": "光驱", "removables": "可移动驱动器", "physicalAdapters": "物理适配器", "virtualAdapters": "虚拟适配器", "keyboards": "键盘", "pointings": "鼠标设备", "performanceTip": "收集内部Windows设置以优化性能. 完全安全使用. - 减少杀死无响应进程之前的等待时间. - 减少菜单显示延迟时间. - 禁用低磁盘空间检查通知 - 禁用shake-to-minimize特性 - 总是显示文件扩展名 - 显示隐藏文件", "networkTip": "Windows实现了一个网络节流机制,该机制将进行限制 运行多媒体应用程序时的网络流量。它还可以减少网络的占用 玩网络游戏时的表现.", "defenderTip": "Windows 安全中心是Windows系统内置的防病毒软件.", "smartScreenTip": "SmartScreen 是自动扫描文件,下载和网站,阻止 已知的危险内容,并在运行它们之前警告您的功能.", "systemRestoreTip": "系统还原是一个功能,允许还原 Windows 的状态 从故障或其他问题中恢复.", "reportingTip": "错误报告收集应用程序崩溃和错误并将它们发送给微软.", "telemetryTasksTip": "遥测服务定期向微软发送使用和性能数据, 以备将来改进.", "officeTelemetryTip": "Office 遥测系统定期发送使用情况和 性能数据到微软,以备将来改进.", "ffTelemetryTip": "禁用 Mozilla Firefox 遥测和数据报告服务.", "vsTip": "禁用 Visual Studio 遥测和反馈功能,包括 SQM 客户端.", "chromeTelemetryTip": "禁用 Google Chrome 遥测和软件报告工具 (可能会导致CPU使用率变高).", "printTip": "打印服务负责检测、安装和使用打印机.", "faxTip": "传真业务负责发送和接收传真.", "mediaSharingTip": "媒体播放器共享为Windows媒体播放器提供家庭媒体共享.", "stickyTip": "Sticky Keys是一个帮助Windows用户使用的辅助功能 对于身体残疾用户减少了与之相关的运动以避免重复性劳损.", "homegroupTip": "HomeGroup是一个允许共享文件的功能 在家庭网络中使用 Windows 资源管理器.", "superfetchTip": "Superfetch会将常用应用预加载到内存中,导致磁盘占用率高, 尤其是在机械硬盘上更为明显.", "compatTip": "兼容性助手服务检测旧程序中的已知兼容性问题.", "disableOneDriveTip": "禁用OneDrive云存储集成.", "oldMixerTip": "恢复经典的音量混合器控制面板.", "oldExplorerTip": "- 禁用快速访问历史记录 -将文件资源管理器默认视图设置为“此PC” -禁用最近文件 -从任务栏移除搜索,任务和天气 -禁用“文件历史记录”功能", "adsTip": "阻止广告显示在开始菜单.", "uODTip": "完全移除 OneDrive 云存储集成.", "peopleTip": "My pepole是一个在任务栏显示最近联系人的新功能.", "longPathsTip": "删除256个字符的最大路径长度限制.", "inkTip": "Windows Ink支持数字笔在屏幕上绘制.", "spellTip": "仅使用触摸键盘的功能包括: —自动校对功能 —文本建议 —拼写检查", "xboxTip": "Xbox Live服务为Xbox游戏提供流媒体、录音和社交功能.", "actionTip": "通知中心是一个通知和快速动作瓷贴的功能, 比如Wi-Fi、蓝牙等。", "autoUpdatesTip": "禁用自动下载和安装Windows更新。 相反,当有新的更新可用时,会有一个通知. 它还禁用了交付优化服务.", "driversTip": "当Windows更新不断替换一个适当的 有故障的工作磁盘.", "telemetryServicesTip": "遥测服务跟踪并记录使用数据,发送反馈 供微软分析.", "privacyTip": "额外的隐私调整禁用以下: - 生物识别技术 - 地理位置 - 跨设备共享应用程序 - 文本日志记录器 - 诊断", "ccTip": "云剪贴板在您的设备上共享剪贴板数据。 它允许在一个设备上复制并粘贴到另一个设备上。 需要微软帐户登录.", "cortanaTip": "Cortana是一个基于人工智能的虚拟助手。 - 禁用Cortana。 - 禁用开始菜单中的网络搜索 - 禁止保留搜索历史记录", "sensorTip": "管理传感器功能的服务, 如自动旋转,自动亮度等。 仅适用于平板电脑或带有触摸屏的设备.", "castTip": "删除右键以共享媒体内容到Miracast设备.", "gameBarTip": "游戏栏是Xbox游戏服务的快速访问菜单.", "insiderTip": "Windows Insider程序允许你测试测试版 Windows 的最新的功能。 对于不想参与的用户来说,它被认为是不必要的服务.", "tpmTip": "绕过安全启动和TPM 2.0要求,允许升级到 Windows 11.", "leftTaskbarTip": "将任务栏图标向左对齐.", "snapAssistTip": "当鼠标悬停最大化按钮时禁用Snap Assist Flyout.", "widgetsTip": "禁用小部件特性并从任务栏移除小部件图标.", "chatTip": "从任务栏移除聊天图标.", "smallerTaskbarTip": "使任务栏大小和图标更小.", "classicRibbonTip": "在文件资源管理器中恢复Windows 10的经典色带条.", "classicContextTip": "恢复经典的右键菜单,删除 “显示更多选项”.", "gameModeSw": "启用游戏模式", "gameModeTip": "结合硬件加速 GPU 调度启用游戏模式", "compactModeSw": "在资源管理器中启用紧凑模式", "compactModeTip": "减少文件资源管理器中文件之间的额外空间和填充。", "stickersTip": "贴纸是出现在壁纸上的大型表情符号,用于社交信使。", "hibernateSw": "禁用休眠", "hibernateTip": "禁用 Windows 休眠功能。", "smb1Sw": "禁用 SMBv1 协议", "smb2Sw": "禁用 SMBv2 协议", "smbTip": "SMB{v} 协议负责 Windows 计算机之间的文件共享。 它已被更安全的 SMBv3 取代。", "ntfsStampSw": "禁用 NTFS 时间戳", "ntfsStampTip": "指示文件的最后一次访问时间戳。 禁用它可以减少磁盘上的 I/O 操作。", "autoStartToggle": "从 Windows 开始", "nvidiaTelemetrySw": "禁用 NVIDIA 遥测", "dnsTitle": "快速更换DNS服务器", "vbsSw": "禁用基于虚拟化的安全性", "vbsTip": "防止恶意驱动程序注入进程的内核功能。 它对性能有负面影响。", "winSearchSw": "禁用搜索", "winSearchTip": "禁用 Windows 搜索服务。", "storeUpdatesSw": "禁用 Microsoft Store 更新", "storeUpdatesTip": "禁用 Microsoft Store 自动更新功能。", "btnRestoreUwp": "恢复所有 UWP", "restoreUwpMessage": "你确定要这么做吗?", "telemetrySvcToggle": "禁用优化器遥测", "edgeAiSw": "禁用 Edge 发现栏", "edgeTelemetrySw": "禁用 Edge 遥测", "edgeAiTip": "删除 Edge 中的发现栏。", "edgeTelemetryTip": "在 Edge 中禁用 SmartScreen、Spotlight 和遥测服务。", "hpetSw": "禁用 HPET", "loginVerboseSw": "启用详细登录屏幕", "advancedTab": "先进的", "btnRestartSafe": "以安全模式重启", "btnRestart": "以正常模式重启", "btnRestartDisableDefender": "重新启动 && 禁用 Defender", "classicPhotoViewerSw": "恢复经典照片查看器", "tabPage3": "字体", "fontSetTitle": "将您喜欢的字体设置为 Windows 默认字体", "label11": "当前字体:", "btnSetGlobalFont": "设置为默认", "lblFontsCount": "可用字体:", "btnRestoreFont": "恢复为默认", "btnRefreshFonts": "刷新", "chkAllNics": "为所有网络适配器设置", "chkCustomDns": "设置自定义 DNS", "btnSetDns": "设置DNS", "copilotSw": "禁用 CoPilot AI", "copilotTip": "完全关闭 CoPilot AI 功能。", "btnReinforce": "强化政策", "msgReinforce": "您确定要重新应用当前的政策吗?", "newsInterestsSw": "禁用新闻和兴趣", "allTrayIconsSw": "显示所有通知图标", "noMenuDelaySw": "删除菜单延迟", "hideSearchSw": "隐藏任务栏搜索", "hideWeatherSw": "隐藏任务栏天气", "autoUpdateToggle": "启动时更新", "enableUtcSw": "启用协调世界时", "modernStandbySw": "禁用现代待机", "label24": "系统变量编辑器", "label23": "新系统变量路径:", "button3": "添加", "label21": "系统变量", "button1": "删除", "button2": "刷新" } ================================================ FILE: Optimizer/Resources/i18n/CZ.json ================================================ { "subSystem": "Systém", "subPrivacy": "Soukromí", "subGaming": "Hraní", "subTouch": "Dotek", "subTaskbar": "Hlavní panel", "subExtras": "Extra", "btnAbout": "OK", "regBackupSw": "Povolit zálohování registru", "restartButton": "Restartovat nyní", "restartButton8": "Restartovat nyní", "restartButton10": "Restartovat nyní", "restartAndApply": "Restartovat a použít změny", "btnFind": "Nalézt", "btnKill": "Zabít", "trayUnlocker": "Držadla souborů (File Handles)", "txtVersion": "Verze: {VN}", "onedriveM": "Opravdu chcete odinstalovat OneDrive? Tím smažete soubory plochy a dokumentů! Tuto možnost používejte pouze na místním účtu!", "systemRestoreM": "Opravdu chcete zakázat Obnovení systému? Tím se odstraní vaše aktuální záložní obrazy!", "txtBitness": "Pracujete s {BITS}ovou verzí", "linkUpdate": "Dostupná aktualizace", "lblLab": "Experimentální sestavení\n(po testování smazat)", "performanceSw": "Povolit Vylepšení výkonu", "networkSw": "Zakázat Omezení sítě", "defenderSw": "Zakázat Windows Defender", "systemRestoreSw": "Zakázat Obnovení systému", "printSw": "Zakázat Tiskovou službu", "mediaSharingSw": "Zakázat sdílení Media Player", "faxSw": "Zakázat Faxovou službu", "reportingSw": "Zakázat Hlášení chyb", "homegroupSw": "Zakázat Domácí skupinu (HomeGroup)", "superfetchSw": "Zakázat Superfetch", "telemetryTasksSw": "Zakázat Telemetrii", "officeTelemetrySw": "Zakázat Telemetrii v aplikaci Office", "vsSW": "Zakázat Telemetrii v aplikaci Visual Studio", "ffTelemetrySw": "Zakázat Telemetrii v prohlížeči Mozilla Firefox", "chromeTelemetrySw": "Zakázat Telemetrii v prohlížeči Google Chrome", "compatSw": "Zakázat Asistenta kompatibility", "smartScreenSw": "Zakázat SmartScreen", "stickySw": "Zakázat Sticky Keys", "universalTab": "Univerzální", "modernAppsTab": "UWP Aplikace", "startupTab": "Po spuštění", "appsTab": "Časté Aplikace", "cleanerTab": "Čistič", "pingerTab": "Pinger", "registryFixerTab": "Registr", "integratorTab": "Integrátor", "analyzeDriveB": "Analyzovat", "CleanPreviewForm": "Náhled Čištění", "optionsTab": "Možnosti", "oldMixerSw": "Povolit Klasický směšovač hlasitosti", "oldExplorerSw": "Obnovit Klasický Průzkumník souborů", "adsSw": "Zakázat Reklamy v nabídce Start", "uODSw": "Odinstalovat OneDrive", "peopleSw": "Zakázat My People (Lidé)", "longPathsSw": "Povolit Dlouhé cesty", "autoUpdatesSw": "Zakázat Automatické aktualizace", "driversSw": "Vyloučit Ovladače z aktualizací", "telemetryServicesSw": "Zakázat Telemetrické služby", "privacySw": "Vylepšit Soukromí", "ccSw": "Zakázat Cloudovou schránku", "cortanaSw": "Zakázat Cortanu", "sensorSw": "Zakázat služby senzorů", "castSw": "Odstranit funkci Cast to Device", "inkSw": "Zakázat Windows Ink", "spellSw": "Zakázat Kontrolu pravopisu", "xboxSw": "Zakázat Xbox Live", "gameBarSw": "Zakázat Herní panel", "insiderSw": "Zakázat Insider Službu", "actionSw": "Zakázat Centrum oznámení", "disableOneDriveSw": "Zakázat OneDrive", "tpmSw": "Zakázat Kontrolu TPM 2.0", "leftTaskbarSw": "Zarovnat Hlavní panel doleva", "snapAssistSw": "Zakázat Snap Pomocníka", "widgetsSw": "Zakázat Widgety", "chatSw": "Zakázat Chat", "smallerTaskbarSw": "Zmenšit Hlavní panel", "classicRibbonSw": "Povolit Klasický pás karet v Průzkumníkovi souborů", "classicContextSw": "Povolit Klasickou nabídku pravého tlačítka myši", "refreshModernAppsButton": "Obnovit", "uninstallModernAppsButton": "Odinstalovat", "txtModernAppsTitle": "Odinstalovat nepotřebné UWP aplikace", "chkSelectAllModernApps": "Vybrat vše", "chkOnlyRemovable": "Pouze s možností odinstalace", "startupTitle": "Vyberte, jaké položky se mají spustit po spuštění systému", "flushDNSMessage": "Jste si jisti, že chcete propláchnout mezipaměť DNS systému Windows?\n\nTo na chvíli způsobí odpojení od internetu a pro správnou funkci může být nutný restart.", "removeStartupItemB": "Odstranit", "locateFileB": "Najít soubor", "findInRegB": "Najít v registrech", "refreshStartupB": "Občerstvit", "restoreStartupB": "Obnovit", "backupStartupB": "Zálohovat", "lblBackupTitle": "Název zálohy:", "doBackup": "OK", "cancelBackup": "Zrušit", "startupItemName": "Název", "startupItemLocation": "Umístění", "startupItemType": "Typ", "txtFeedError": "Žádné připojení k internetu, zkuste občerstvit odkazy znovu", "appsTitle": "Rychle stáhnout && nainstalovat užitečné aplikace", "btnGetFeed": "Občerstvit odkazy", "bitPref": "Preference architektury", "linkWarnings": "Zobrazit varování", "txtDownloadStatus": "Nečinný", "goToDownloadsB": "Přejít k Staženým souborům", "btnDownloadApps": "Stáhnout", "cAutoInstall": "Po stažení nainstalovat", "setDownDirLbl": "Nastavit složku pro stahování", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Vybrat vše", "checkTemp": "Dočasné soubory", "checkLogs": "Protokoly systému Windows", "checkMiniDumps": "BSOD minidumps", "checkBin": "Vyprázdnit Koš", "checkMediaCache": "Cache aplikace Media Player", "checkErrorReports": "Hlášení o chybách", "cleanDriveB": "vyčistit", "lblPretext": "Maximální velikost k uvolnění:", "cleanerTitle": "Vyčistit systémovou jednotku", "pingerTitle": "Ping IP adres a vyhodnocení latence", "lblPinger": "IP / Název domény", "btnOpenNetwork": "Otevřít síťová připojení", "copyIPB": "Kopírovat", "copyB": "Zkopírovat IP", "btnShodan": "Zkontrolovat na SHODAN.io", "btnPing": "Ping", "lblResults": "Výsledky", "flushCacheB": "Vyprázdnit mezipaměť DNS", "btnExport": "Exportovat", "hostsTitle": "Upravit efektivně soubor hosts", "linkLocate": "Nalézt", "linkAdvancedEdit": "Pokročilý editor", "linkRestoreDefault": "Obnovit výchozí", "lblIP": "IP adresa", "lblDomain": "Doména", "chkBlock": "Blokovat", "addHostB": "Přidat", "lblLock": "Chránit soubor HOSTS jeho uzamčením", "chkReadOnly": "Pouze pro čtení", "lblAdblock": "Předem připravené blokátory reklam", "lblAdblockSub": "(odstraní vaši aktuální konfiguraci)", "adblockS": "AdBlock + Sociální sítě", "adblockP": "AdBlock + Porno", "removeHostB": "Odstranit", "refreshHostsB": "Obnovit", "removeAllHostsB": "Odstranit vše", "regFixB": "Opravit", "regLbl": "(některé změny mohou potřebovat toto)", "checkRestartExplorer": "Pro použití změn restartovat také Průzkumníka souborů", "checkRegistryEditor": "Editor registru", "checkFirewall": "Windows Firewall", "checkContextMenu": "Nabídka pravého tlačítka myši", "checkRunDialog": "Dialog Spustit", "checkFolderOptions": "Možnosti složky", "checkControlPanel": "Ovládací panely", "checkCommandPrompt": "Příkazový řádek", "checkTaskManager": "Správce úloh", "checkEnableAll": "Povolit vše", "registryTitle": "Opravit běžné problémy s registrem", "quickAccessToggle": "Zobrazit nabídku rychlého přístupu", "helpTipsToggle": "Zobrazit zprávy nápovědy", "lblTheming": "Vyberte si motiv", "radioOcean": "Oceán", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Karamel", "radioLime": "Limetka", "radioMinimal": "Minimální", "lblUpdating": "Zkontrolovat && aktualizovat", "btnUpdate": "Zkontrolovat aktualizace", "btnChangelog": "Zobrazit změny", "lblUpdateDisabled": "Zakázáno v experimentálních sestaveních", "lblTroubleshoot": "Odstranit problémy", "btnViewLog": "Zobrazit chyby", "btnOpenConf": "Zobrazit konfigurační složku", "btnResetConfig": "Opravit", "integrator1": "Integrátor umožňuje přidat plně přizpůsobené\npoložky v nabídce pravého tlačítka myši na ploše:", "integrator2": "• Libovolný spustitelný program", "integrator3": "• Zástupci odkazující na složky", "integrator4": "• Odkazy odkazující na webové stránky", "integrator5": "• Jakýkoli typ souboru", "integrator6": "• Příkazy", "integrator7": "Položky mohou mít vlastní ikony a umístění,\nmohou být také skryté, přístupné pouze\nstisknutím klávesy SHIFT.\nMůžete také vytvářet vlastní příkazy\npro dialog Spustit, což usnadňuje spuštění\njakékoli aplikace pouze zadáním požadovaného klíčového slova.", "integratorInfoTab": "Informace", "tabPage8": "Přidat/Upravit", "tabPage9": "Smazat", "tabPage10": "Připravené nabídky", "tabPage11": "Dialog Spustit", "addItemL": "Přidat nebo upravit položku", "itemtype": "Typ položky", "radioProgram": "Program", "radioFolder": "Složka", "radioLink": "Odkaz", "radioFile": "Soubor", "radioCommand": "Příkaz", "itemtoaddgroup": "Program pro přidání", "folderToAdd": "Složka pro přidání", "linkToAdd": "Odkaz pro přidání", "fileToAdd": "Soubor pro přidání", "commandToAdd": "Příkaz pro přidání", "icontoaddgroup": "Ikona pro přidání", "checkDefaultIcon": "Použít ikonu programu", "checkDefaultFolderIcon": "Použít ikonu výchozí složky", "checkFavicon": "Stáhnout ikonu u webu (favicon)", "checkNoIcon": "Žádná ikona", "dnsCacheM": "Probíhá generování mezipaměti DNS, zkuste to znovu později!", "itemposition": "Pozice položky", "radioTop": "Nahoře", "radioMiddle": "Uprostřed", "radioBottom": "Dole", "security": "Bezpečnost", "checkShift": "Zobrazit pouze, když se stiskne SHIFT", "itemnamegroup": "Název položky v nabídce", "btnAddItem": "Přidat/Upravit", "removeIntegratorItemsL": "Odstranit existující položky na ploše", "removeDIB": "Smazat", "refreshIIB": "Občerstvit", "removeAllIIB": "Smazat vše", "PMB": "Přidat Nabídku napájení", "STB": "Přidat Systémové nástroje", "WAB": "Přidat Windows Aplikace", "SSB": "Přidat Systémové zkratky", "DSB": "Přidat Zástupce na ploše", "AddOwnerB": "Přidat 'Převzít vlastnictví'", "RemoveOwnerB": "Odstranit 'Převzít vlastnictví'", "AddCMDB": "Přidat 'Otevřít pomocí CMD'", "DeleteCMDB": "Odstranit 'Otevřít pomocí CMD'", "readyMenusL": "Přidat užitečná, předem připravená menu", "refreshCCB": "Občerstvit", "removeCCB": "Smazat", "removeCCL": "Smazat existující příkazy", "btnCreateCustomCommand": "Vytvořit", "ccKeywordL": "Klávesová zkratka", "ccFileL": "Umístění souboru", "ccL": "Definovat vlastní příkazy u dialogu Spustit", "btnYes": "Ano", "btnNo": "Ne", "btnOk": "OK", "HostsEditorForm": "Editor souboru Hosts", "savebtn": "Uložit", "closebtn": "Zavřít", "adminMissingMsg": "Optimizer musí být spuštěn jako správce!!\nAplikace se nyní zavře...", "unsupportedMsg": "Optimizer funguje ve Windows 7 nebo novějším sestavením Windows!\nAplikace se nyní zavře...", "confInvalidVersionMsg": "Verze Windows neodpovídá!", "confInvalidFormatMsg": "Konfigurační soubor je v neplatném formátu!", "confNotFoundMsg": "Konfigurační soubor neexistuje!", "argInvalidMsg": "Neplatný argument! Příklad: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimalizátor již běží na pozadí!", "StartupPreviewForm": "Náhled položek po spuštění", "StartupRestoreForm": "Obnovit položky po spuštění", "backupL": "Obnovit položky po spuštění", "txtNoBackups": "Žádné zalohy nenalezeny", "previewBackupB": "Náhled", "restoreBackupB": "Občerstvit", "deleteBackupB": "Smazat", "noNewVersion": "Už máte nejnovější verzi!", "betaVersion": "Používáte experimentální verzi!", "removeAllStartup": "Opravdu chcete smazat všechny položky po spuštění?", "removeAllHosts": "Opravdu chcete smazat všechny položky v souboru hosts?", "removeAllItems": "Opravdu chcete smazat všechny položky na ploše?", "removeModernApps": "Opravdu chcete odinstalovat následující aplikace?", "errorModernApps": "Následující aplikace se nepodařilo odinstalovat:\n", "latestVersionM": "Nejnovější verze: {LATEST}", "currentVersionM": "Současná verze: {CURRENT}", "resetMessage": "Aplikace se ukončí a pokusí se opravit.", "newVersion": "K dispozici je nová verze! Chcete si je nyní stáhnout?\nAplikace se za několik sekund restartuje.", "downloadsFinished": "Dokončeno", "downloadDirInvalid": "Zadaná složka pro stahování není platná", "no64Download": "Není k dispozici 64bitová verze, stahuje se 32bitová verze", "no32Download": "Není k dispozici 32bitová verze, přeskakování", "installing": "Instalace", "linkInvalid": "Odkaz již není platný", "noErrorsM": "Nejsou zde žádné chyby k zobrazení!", "hostNotFound": "Nebylo možné najít hostitele", "pinging": "Ping s 32 bajty - 9krát...", "latency": "LATENCE", "lblSystemTools": "Systém && Nástroje", "lblInternet": "Internet", "lblCoding": "Kódování", "lblVideoSound": "Video && Zvuk", "min": "Min", "max": "Max", "avg": "Průměr", "timeout": "Vypršel časový limit žádosti", "languagesL": "Vyberte jazyk", "trayStartup": "Správce spouštění", "trayCleaner": "Čistič disků", "trayPinger": "Nástroj Pinger", "trayHosts": "Editor souboru HOSTS", "trayAD": "Stahovač aplikací", "trayOptions": "Nastavení", "trayRegistry": "Oprava registru", "trayRestartExplorer": "Restartovat Průzkumníka souborů", "trayExit": "Exit", "tipWhatsThis": "Co to je?", "hwDetailed": "Detailní zobrazení", "btnCopyHW": "Kopírovat", "btnSaveHW": "Uložit", "indiciumTab": "Hardware", "toolHWCopy": "Kopírovat", "toolHWGoogle": "Hledat Googlem", "toolHWDuck": "Hledat vyhledávačem DuckDuckGo", "trayHW": "Informace o Hardwaru", "os": "Operační systém", "cpu": "Procesory", "ram": "Paměť", "gpu": "Grafiky", "mobo": "Základní desky", "disk": "Uložiště", "inet": "Síťové adaptéry", "audio": "Zvuk", "dev": "Periferní zařízení", "vm": "Virtuální paměť", "drives": "Disky", "volumes": "Oddíly", "opticals": "Optické mechaniky", "removables": "Vyjímatelné disky", "physicalAdapters": "Fyzické adaptéry", "virtualAdapters": "Virtuální adaptéry", "keyboards": "Klávesnice", "pointings": "Polohovací zařízení", "performanceTip": "Sbírka interních nastavení systému Windows pro optimalizaci výkonu. Lze zcela bezpečně aplikovat. - Zkracuje dobu čekání před ukončením nereagujících procesů. - Snižuje dobu zpoždění zobrazení nabídky. - Vypíná upozornění na kontrolu malého místa na disku - Zakáže funkci třesení pro minimalizaci - Vždy zobrazovat přípony souborů - Zobrazovat skryté soubory", "networkTip": "Systém Windows implementoval mechanismus síťového omezení, který omezuje síťový provoz při spouštění multimediálních aplikací. Může také snížit síťový výkon při hraní online her.", "defenderTip": "Windows Defender je integrovaný antivirový program v systémech Windows.", "smartScreenTip": "SmartScreen automaticky skenuje soubory, stahování a webové stránky, blokuje již známý nebezpečný obsah a varuje vás před jeho spuštěním.", "systemRestoreTip": "Obnovení systému je funkce, která umožňuje vrátit stav systému Windows do původního stavu aby bylo možné zotavit se z poruch nebo jiných problémů.", "reportingTip": "Služba Hlášení chyb shromažďuje pády a chyby aplikací a odesílá je společnosti Microsoft.", "telemetryTasksTip": "Telemetrické služby pravidelně odesílají údaje o používání a výkonu Microsoftu, pro budoucí zlepšení.", "officeTelemetryTip": "Office telemetrie pravidelně odesílá údaje o používání a výkonu Microsoftu, pro budoucí zlepšení.", "ffTelemetryTip": "Zakáže telemetrické služby a služby hlášení dat prohlížeče Mozilla Firefox.", "vsTip": "Zakáže funkce telemetrie a zpětné vazby aplikace Visual Studio, včetně klienta SQM.", "chromeTelemetryTip": "Zakáže nástroj pro telemetrii a hlášení chyb Google Chromu (je známý tím, že způsobuje vysoké využití procesoru).", "printTip": "Tisková služba je zodpovědná za detekci, instalaci a používání tiskáren.", "faxTip": "Faxová služba je zodpovědná za odesílání a příjem faxů.", "mediaSharingTip": "Sdílení přehrávače médií umožňuje sdílení domácích médií pro přehrávač Windows Media Player.", "stickyTip": "Sticky Keys je funkce pro usnadnění přístupu, která pomáhá uživatelům systému Windows s tělesným postižením omezit druh pohybu spojený s opakovaným namáháním.", "homegroupTip": "Domácí skupina je funkce, která umožňuje sdílet soubory v domácí síti pomocí Průzkumníka Windows.", "superfetchTip": "Superfetch přednačítá běžně používané aplikace do paměti RAM, což způsobuje vysoké využití disku, zejména na pevných discích..", "compatTip": "Služba Compatibility Assistant zjišťuje známé problémy s kompatibilitou starších programů.", "disableOneDriveTip": "Zakáže integraci cloudového úložiště OneDrive.", "oldMixerTip": "Obnoví klasický ovládací panel směšovače hlasitosti.", "oldExplorerTip": "- Zakáže historii Rychlého přístupu - Nastaví výchozí zobrazení Průzkumníka souborů na Tento počítač - Zakáže zobrazení posledních souborů - Odstraní z hlavního panelu položky Hledat, Úkoly a Počasí - Zakáže historii souborů", "adsTip": "Zabrání zobrazování reklam v nabídce Start.", "uODTip": "Úplně odstraní integraci cloudového úložiště OneDrive.", "peopleTip": "Lidé je nová funkce zobrazující poslední kontakty na hlavním panelu.", "longPathsTip": "Odstraní omezení maximální délky cesty na 256 znaků.", "inkTip": "Windows Ink (Inkoust systému Windows) podporuje digitální pera pro kreslení na obrazovku.", "spellTip": "Funkce pouze s dotykovou klávesnicí, jako jsou: - Automatická korekce - Návrhy textu - Kontrola pravopisu", "xboxTip": "Xbox Live nabízí streamování, nahrávání a sociální funkce pro hry Xbox.", "actionTip": "Centrum oznámení je centrálním místem pro oznámení a dlaždice pro rychlé akce, třaba Wi-Fi, Bluetooth, atd.", "autoUpdatesTip": "Zakáže automatické stahování a instalaci aktualizací systému Windows. Místo toho se zobrazí oznámení o dostupnosti nových aktualizací. Zakáže také službu Optimalizace doručení.", "driversTip": "Užitečné, když služba Windows Update neustále nahrazuje správně fungující ovladač vadným.", "telemetryServicesTip": "Telemetrické služby sledují a zaznamenávají údaje o používání a zasílají zpětnou vazbu Microsoftu k analýze.", "privacyTip": "Dodatečná vylepšení ochrany osobních údajů, která zakazují: - Biometrické údaje - Geolokaci - Sdílení aplikací napříč zařízeními - Textový záznamník - Diagnostiku", "ccTip": "Cloudová schránka sdílí data schránky ve všech vašich zařízeních. Umožňuje kopírovat na jednom zařízení a vkládat na jiném. Vyžaduje přihlášení k účtu Microsoft.", "cortanaTip": "Cortana je virtuální asistentka založená na umělé inteligenci. - Vypne Cortanu. - Zakáže webové vyhledávání v nabídce Start - Zabrání uchovávání historie vyhledávání", "sensorTip": "Služby, které spravují funkce senzorů, jako je automatické otáčení, automatický jas atd.. Užitečné pouze pro tablety nebo zařízení s dotykovou obrazovkou.", "castTip": "Odstraňuje možnost sdílení mediálního obsahu pravým tlačítkem myši do zařízení Miracast.", "gameBarTip": "Herní panel je nabídka rychlého přístupu k herním službám Xboxu.", "insiderTip": "Program Windows Insider umožňuje vyzkoušet nejnovější funkce ještě před jejich zveřejněním. Je považována za zbytečnou službu pro uživatele, kteří se jí nechtějí účastnit.", "tpmTip": "Obchází požadavky na Secure Boot a TPM 2.0 a umožňuje upgrade na Windows 11.", "leftTaskbarTip": "Zarovná ikony hlavního panelu doleva.", "snapAssistTip": "Zakáže funkci Snap Assist Flyout při najetí na tlačítka maximalizace.", "widgetsTip": "Zakáže widgety a odstraní ikonu Widgety z hlavního panelu.", "chatTip": "Odstraní ikonu Chatu z hlavního panelu.", "smallerTaskbarTip": "Zmenší velikost hlavního panelu a ikon.", "classicRibbonTip": "Obnoví klasický pás karet ze systému Windows 10 v Průzkumníkovi souborů.", "classicContextTip": "Obnoví klasickou nabídku kliknutí pravým tlačítkem myši a odstraní 'Zobrazit další možnosti'.", "gameModeSw": "Povolit herní režim", "gameModeTip": "Umožňuje herní režim v kombinaci s hardwarově akcelerovaným plánováním GPU.", "compactModeSw": "Povolit v Průzkumníkovi souborů kompaktní režim", "compactModeTip": "Snižuje prostor navíc a odsazení mezi soubory v Průzkumníkovi souborů.", "stickersTip": "Nálepky jsou velké emotikony, které se objevují na tapetách a používají se v sociálních zprávách.", "hibernateSw": "Zakázat Hibernaci", "hibernateTip": "Zakáže funkci hibernace systému Windows.", "smb1Sw": "Zakázat protokol SMBv1", "smb2Sw": "Zakázat protokol SMBv2", "smbTip": "Protokol SMB{v} je zodpovědný za sdílení souborů mezi počítači se systémem Windows. Byl nahrazen SMBv3, který je bezpečnější.", "ntfsStampSw": "Zakázat časové razítko NTFS", "ntfsStampTip": "Označuje razítko posledního přístupu k souboru. Jeho zakázáním můžete snížit I/O operace na discích.", "autoStartToggle": "Začněte s Windows", "nvidiaTelemetrySw": "Zakázat telemetrii NVIDIA", "dnsTitle": "Rychlá změna serveru DNS", "vbsSw": "Zakázat zabezpečení založené na virtualizaci", "vbsTip": "Funkce jádra, která zabraňuje vkládání škodlivých ovladačů do procesů. Má to negativní vliv na výkon.", "winSearchSw": "Zakázat vyhledávání", "winSearchTip": "Zakáže vyhledávací službu systému Windows.", "storeUpdatesSw": "Zakázat aktualizace Microsoft Store", "storeUpdatesTip": "Zakáže funkci automatických aktualizací Microsoft Store.", "btnRestoreUwp": "Obnovte všechny UWP", "restoreUwpMessage": "Opravdu to chcete udělat?", "telemetrySvcToggle": "Zakázat telemetrii optimalizátoru", "edgeAiSw": "Zakázat Edge Discover", "edgeTelemetrySw": "Zakázat telemetrii Edge", "edgeAiTip": "Odstraní lištu Discover v Edge.", "edgeTelemetryTip": "Deaktivuje služby SmartScreen, Spotlight a Telemetry v Edge.", "hpetSw": "Zakázat HPET", "loginVerboseSw": "Povolit obrazovku podrobného přihlášení", "advancedTab": "Pokročilý", "btnRestartSafe": "Restartujte v nouzovém režimu", "btnRestart": "Restartujte v normálním režimue", "btnRestartDisableDefender": "Restartujte && Deaktivujte Defender", "classicPhotoViewerSw": "Obnovte klasický prohlížeč fotografií", "tabPage3": "Písma", "fontSetTitle": "Nastavit své oblíbené písmo jako výchozí písmo systému Windows", "label11": "Aktuální písmo:", "btnSetGlobalFont": "Nastavit jako výchozí", "lblFontsCount": "Dostupné písma:", "btnRestoreFont": "Obnovit výchozí", "btnRefreshFonts": "Obnovit", "chkAllNics": "Nastavení pro všechny síťové adaptéry", "chkCustomDns": "Nastavte vlastní DNS", "btnSetDns": "Nastavte DNS", "copilotSw": "Vypnout funkci CoPilot AI", "copilotTip": "Úplně vypne funkci CoPilot AI.", "btnReinforce": "Posílit politiky", "msgReinforce": "Opravdu si přejete znovu použít své stávající politiky?", "newsInterestsSw": "Zakázat zprávy a zájmy", "allTrayIconsSw": "Zobrazit všechny ikony oznamování", "noMenuDelaySw": "Odstranit zpoždění nabídek", "hideSearchSw": "Skrýt vyhledávání v hlavní liště", "hideWeatherSw": "Skrýt počasí v hlavní liště", "autoUpdateToggle": "Aktualizovat při spuštění", "enableUtcSw": "Aktivovat UTC Čas", "modernStandbySw": "Zakázat moderní pohotovost", "label24": "Editor systémových proměnných", "label23": "Nová cesta systémové proměnné:", "button3": "Přidat", "label21": "Systémové proměnné", "button1": "Smazat", "button2": "Aktualizovat" } ================================================ FILE: Optimizer/Resources/i18n/DE.json ================================================ { "subSystem": "System", "subPrivacy": "Datenschutz", "subGaming": "Gaming", "subTouch": "Touch", "regBackupSw": "Registrierungs-Backups aktivieren", "subTaskbar": "Taskleiste", "subExtras": "Zusatzfunktionen", "btnAbout": "OK", "restartButton": "Jetzt neu starten", "restartButton8": "Jetzt neu starten", "restartButton10": "Jetzt neu starten", "btnFind": "Suchen", "btnKill": "Beenden", "trayUnlocker": "Dateigriffe", "restartAndApply": "Neustart zur Anwendung der Änderungen", "txtVersion": "Version: {VN}", "txtBitness": "Sie arbeiten mit {BITS}", "linkUpdate": "Update verfügbar", "lblLab": "Experimentelle Version\n(nach Test löschen)", "performanceSw": "Leistung optimieren", "networkSw": "Netzwerk optimieren", "defenderSw": "Windows Defender deaktivieren", "systemRestoreSw": "Systemwiederherstellung deaktivieren", "printSw": "Druckdienst deaktivieren", "mediaSharingSw": "Medienfreigabe deaktivieren", "faxSw": "Faxdienst deaktivieren", "reportingSw": "Fehlerberichterstattung deaktivieren", "homegroupSw": "Heimnetzgruppe deaktivieren", "superfetchSw": "Superfetch deaktivieren", "telemetryTasksSw": "Telemetrie-Aufgaben deaktivieren", "officeTelemetrySw": "Office-Telemetrie deaktivieren", "vsSW": "Visual Studio-Telemetrie deaktivieren", "ffTelemetrySw": "Mozilla Firefox-Telemetrie deaktivieren", "chromeTelemetrySw": "Google Chrome-Telemetrie deaktivieren", "compatSw": "Kompatibilitätsassistent deaktivieren", "smartScreenSw": "SmartScreen deaktivieren", "stickySw": "Sticky Keys deaktivieren", "universalTab": "Allgemein", "modernAppsTab": "UWP-Apps", "startupTab": "Start", "appsTab": "Apps", "cleanerTab": "Reiniger", "pingerTab": "Pinger", "registryFixerTab": "Registrierung", "integratorTab": "Integrator", "CleanPreviewForm": "Vorschau bereinigen", "optionsTab": "Optionen", "oldMixerSw": "Klassischen Lautstärkemixer aktivieren", "oldExplorerSw": "Klassischen Datei-Explorer wiederherstellen", "adsSw": "Startmenü-Werbung deaktivieren", "uODSw": "OneDrive deinstallieren", "peopleSw": "Meine Kontakte deaktivieren", "longPathsSw": "Lange Pfade aktivieren", "autoUpdatesSw": "Automatische Updates deaktivieren", "driversSw": "Treiber von Updates ausschließen", "telemetryServicesSw": "Telemetrie-Dienste deaktivieren", "privacySw": "Datenschutz verbessern", "ccSw": "Cloud-Zwischenablage deaktivieren", "cortanaSw": "Cortana deaktivieren", "sensorSw": "Sensor-Dienste deaktivieren", "castSw": "Cast-to-Gerät entfernen", "inkSw": "Windows Ink deaktivieren", "spellSw": "Rechtschreibprüfung deaktivieren", "xboxSw": "Xbox Live deaktivieren", "gameBarSw": "Game Bar deaktivieren", "insiderSw": "Insider-Dienst deaktivieren", "actionSw": "Aktionscenter deaktivieren", "disableOneDriveSw": "OneDrive deaktivieren", "tpmSw": "TPM-Überprüfung deaktivieren", "leftTaskbarSw": "Taskleiste links ausrichten", "snapAssistSw": "Snap Assist deaktivieren", "widgetsSw": "Widgets deaktivieren", "chatSw": "Chat deaktivieren", "smallerTaskbarSw": "Taskleiste verkleinern", "classicRibbonSw": "Klassische Multifunktionsleiste im Explorer aktivieren", "classicContextSw": "Klassisches Kontextmenü aktivieren", "refreshModernAppsButton": "Aktualisieren", "uninstallModernAppsButton": "Deinstallieren", "txtModernAppsTitle": "Unerwünschte UWP-Apps deinstallieren", "chkSelectAllModernApps": "Alle auswählen", "chkOnlyRemovable": "Nur Deinstallierbare", "onedriveM": "Sind Sie sicher, dass Sie OneDrive deinstallieren möchten? Dadurch werden Ihre Desktop- und Dokumentdateien gelöscht! Verwenden Sie diese Option nur bei einem lokalen Konto!", "startupTitle": "Startelemente auswählen", "removeStartupItemB": "Löschen", "locateFileB": "Datei suchen", "findInRegB": "In der Registrierung suchen", "analyzeDriveB": "Analysieren", "refreshStartupB": "Aktualisieren", "restoreStartupB": "Wiederherstellen", "backupStartupB": "Sichern", "lblBackupTitle": "Backup-Titel:", "doBackup": "OK", "cancelBackup": "Abbrechen", "startupItemName": "Name", "startupItemLocation": "Ort", "startupItemType": "Typ", "txtFeedError": "Keine Internetverbindung, versuchen Sie, die Links erneut zu aktualisieren", "appsTitle": "Nützliche Apps schnell herunterladen && installieren", "btnGetFeed": "Links aktualisieren", "bitPref": "Bit-Einstellung festlegen", "linkWarnings": "Warnungen anzeigen", "txtDownloadStatus": "Leerlauf", "goToDownloadsB": "Zu Downloads gehen", "btnDownloadApps": "Herunterladen", "cAutoInstall": "Nach dem Herunterladen installieren", "setDownDirLbl": "Download-Ordner festlegen", "c64": "64-Bit", "c32": "32-Bit", "checkSelectAll": "Alle auswählen", "checkTemp": "Temporäre Dateien", "checkLogs": "Windows-Protokolle", "checkMiniDumps": "BSOD-Minidumps", "checkBin": "Papierkorb leeren", "checkMediaCache": "Media Player-Zwischenspeicher", "checkErrorReports": "Fehlerberichte", "cleanDriveB": "Reinigen", "lblPretext": "Maximale Größe zur Freigabe:", "cleanerTitle": "Systemlaufwerk aufräumen", "pingerTitle": "IP-Adressen pingen und Latenz bewerten", "lblPinger": "IP / Domain Name", "btnOpenNetwork": "Netzwerkverbindungen öffnen", "copyIPB": "Kopieren", "copyB": "IP kopieren", "btnShodan": "Auf SHODAN.io prüfen", "btnPing": "Ping", "lblResults": "Ergebnisse", "flushCacheB": "DNS-Cache leeren", "btnExport": "Exportieren", "hostsTitle": "Effizientes Bearbeiten Ihrer Hosts-Datei", "linkLocate": "Suchen", "linkAdvancedEdit": "Erweiterter Editor", "linkRestoreDefault": "Standard wiederherstellen", "lblIP": "IP-Adresse", "lblDomain": "Domain", "chkBlock": "Blockieren", "addHostB": "Hinzufügen", "lblLock": "Schützen Sie Ihre HOSTS-Datei durch Sperren", "chkReadOnly": "Nur lesen", "lblAdblock": "Vordefinierte Adblocks", "lblAdblockSub": "(löscht Ihre aktuelle Konfiguration)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Löschen", "refreshHostsB": "Aktualisieren", "removeAllHostsB": "Alle löschen", "regFixB": "Reparieren", "regLbl": "(einige Änderungen könnten dies benötigen)", "checkRestartExplorer": "Explorer ebenfalls neu starten, um Änderungen anzuwenden", "checkRegistryEditor": "Registrierungs-Editor", "checkFirewall": "Windows-Firewall", "checkContextMenu": "Kontextmenü mit Rechtsklick", "checkRunDialog": "Ausführen-Dialog", "checkFolderOptions": "Ordneroptionen", "checkControlPanel": "Systemsteuerung", "checkCommandPrompt": "Eingabeaufforderung", "checkTaskManager": "Task-Manager", "checkEnableAll": "Alle aktivieren", "registryTitle": "Gemeinsame Registrierungsprobleme beheben", "quickAccessToggle": "Schnellzugriff-Menü anzeigen", "helpTipsToggle": "Hilfenachrichten anzeigen", "lblTheming": "Wählen Sie Ihr Theme", "radioOcean": "Ozean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Karamell", "radioLime": "Limette", "radioMinimal": "Minimal", "lblUpdating": "Überprüfen && aktualisieren", "btnUpdate": "Auf Updates prüfen", "btnChangelog": "Änderungen anzeigen", "lblUpdateDisabled": "In experimentellen Versionen deaktiviert", "lblTroubleshoot": "Problembehandlung", "btnViewLog": "Fehler anzeigen", "btnOpenConf": "Konfigurationsordner anzeigen", "btnResetConfig": "Reparieren", "integrator1": "Der Integrator kann vollständig angepasste\nElemente im Desktop-Kontextmenü hinzufügen:", "integrator2": "• Jedes Programm", "integrator3": "• Verknüpfungen zu Ordnern", "integrator4": "• Links zu Websites", "integrator5": "• Jede Art von Datei", "integrator6": "• Befehle", "integrator7": "Elemente können individuelle Symbole und Positionen haben.\nSie können auch versteckt werden und nur\nmit der SHIFT-Taste zugänglich sein.\nEs kann auch benutzerdefinierte Befehle erstellen\nfür den Ausführen-Dialog, um jede Anwendung nur durch Eingabe Ihres gewünschten Schlüsselworts zu starten.", "integratorInfoTab": "Info", "tabPage8": "Hinzufügen/Bearbeiten", "tabPage9": "Löschen", "tabPage10": "Fertige Menüs", "tabPage11": "Ausführen-Dialog", "addItemL": "Element hinzufügen oder bearbeiten", "itemtype": "Elementtyp", "radioProgram": "Programm", "radioFolder": "Ordner", "radioLink": "Link", "radioFile": "Datei", "radioCommand": "Befehl", "itemtoaddgroup": "Hinzuzufügendes Programm", "folderToAdd": "Hinzuzufügender Ordner", "linkToAdd": "Hinzuzufügender Link", "fileToAdd": "Hinzuzufügende Datei", "commandToAdd": "Hinzuzufügender Befehl", "icontoaddgroup": "Hinzuzufügendes Symbol", "checkDefaultIcon": "Symbol des Programms verwenden", "checkDefaultFolderIcon": "Standardordnersymbol verwenden", "checkFavicon": "Website-Symbol (Favicon) herunterladen", "checkNoIcon": "Kein Symbol", "dnsCacheM": "Der DNS-Cache wird erstellt. Bitte versuchen Sie es später erneut!", "itemposition": "Elementposition", "radioTop": "Oben", "radioMiddle": "Mitte", "radioBottom": "Unten", "security": "Sicherheit", "checkShift": "Nur anzeigen, wenn die UMSCHALT-Taste gedrückt wird", "itemnamegroup": "Elementname im Menü", "btnAddItem": "Hinzufügen/Bearbeiten", "removeIntegratorItemsL": "Bestehende Desktop-Elemente löschen", "removeDIB": "Löschen", "refreshIIB": "Aktualisieren", "removeAllIIB": "Alles entfernen", "PMB": "Power-Menü hinzufügen", "STB": "Systemwerkzeuge hinzufügen", "WAB": "Windows-Anwendungen hinzufügen", "SSB": "System-Verknüpfungen hinzufügen", "DSB": "Desktop-Verknüpfungen hinzufügen", "AddOwnerB": "Eigentümer hinzufügen", "RemoveOwnerB": "Eigentum entfernen", "AddCMDB": "Öffnen mit CMD hinzufügen", "DeleteCMDB": "Öffnen mit CMD entfernen", "readyMenusL": "Nützliche vorgefertigte Menüs hinzufügen", "refreshCCB": "Aktualisieren", "removeCCB": "Entfernen", "removeCCL": "Vorhandene Befehle entfernen", "btnCreateCustomCommand": "Erstellen", "ccKeywordL": "Schlüsselwort", "ccFileL": "Dateispeicherort", "ccL": "Definieren Sie Ihre eigenen Ausführungsbefehle", "btnYes": "Ja", "btnNo": "Nein", "btnOk": "OK", "HostsEditorForm": "Hosts Editor", "savebtn": "Speichern", "closebtn": "Schließen", "alreadyRunningMsg": "Optimizer läuft bereits im Hintergrund!", "adminMissingMsg": "Optimizer muss als Administrator ausgeführt werden!\nApp wird jetzt geschlossen...", "unsupportedMsg": "Optimizer funktioniert nur unter Windows 7 oder aktueller!\nApp wird jetzt geschlossen...", "confInvalidVersionMsg": "Windows-Version stimmt nicht überein!", "confInvalidFormatMsg": "Config-Datei hat ein ungültiges Format!", "confNotFoundMsg": "Config-Datei existiert nicht!", "argInvalidMsg": "Ungültiges Argument! Beispiel: Optimizer.exe /template.json", "StartupPreviewForm": "Startup Elemente Vorschau", "StartupRestoreForm": "Startup-Elemente wiederherstellen", "backupL": "Startobjekte wiederherstellen", "txtNoBackups": "Keine Backups gefunden", "previewBackupB": "Vorschau", "restoreBackupB": "Wiederherstellen", "deleteBackupB": "Löschen", "noNewVersion": "Sie haben bereits die aktuellste Version!", "betaVersion": "Sie verwenden eine experimentelle Version!", "removeAllStartup": "Sind Sie sicher, dass Sie alle Startobjekte löschen möchten?", "removeAllHosts": "Sind Sie sicher, dass Sie alle Hosts-Einträge löschen wollen?", "removeAllItems": "Sind Sie sicher, dass Sie alle Desktopelemente löschen möchten?", "removeModernApps": "Sind Sie sicher, dass Sie die folgende(n) App(s) deinstallieren möchten?", "errorModernApps": "Die folgende(n) App(s) konnte(n) nicht deinstalliert werden:\n", "latestVersionM": "NLetzte Version: {LATEST}", "currentVersionM": "Aktuelle Version: {CURRENT}", "resetMessage": "Die App wird beendet und versucht, sich selbst zu reparieren.", "newVersion": "Es ist eine neue Version verfügbar! Möchten Sie jetzt herunterladen?\nDie App wird in ein paar Sekunden neu gestartet.", "downloadsFinished": "Abgeschlossen", "downloadDirInvalid": "Der angegebene Download-Ordner ist nicht gültig", "no64Download": "Keine 64-Bit verfügbar, 32-Bit herunterladen", "no32Download": "Kein 32-Bit verfügbar, Überspringen", "installing": "Installieren", "linkInvalid": "Link ist nicht mehr gültig", "noErrorsM": "Kein Fehler zum anzeigen!", "hostNotFound": "Kein Host gefunden", "pinging": "Pinging mit 32 Bytes - 9 mal...", "latency": "LATENZ", "lblSystemTools": "System && Werkzeuge", "lblInternet": "Internet", "lblCoding": "Programmierung", "lblVideoSound": "Video && Audio", "min": "Min", "max": "Max", "avg": "Durchschnitt", "timeout": "Anfrage ist zeitlich abgelaufen.", "languagesL": "Sprache wählen", "trayStartup": "Startup Manager", "trayCleaner": "Laufwerksreiniger", "trayPinger": "Pinger Werkzeug", "trayHosts": "HOSTS Editor", "trayAD": "Apps Downloader", "trayOptions": "Optionen", "trayRegistry": "Registrierung reparieren", "trayRestartExplorer": "Explorer neu starten", "trayExit": "Beenden", "tipWhatsThis": "Was ist das?", "hwDetailed": "Ausführliche Ansicht", "btnCopyHW": "Kopieren", "btnSaveHW": "Speichern", "indiciumTab": "Hardware", "toolHWCopy": "Kopieren", "toolHWGoogle": "Mit Google suchen", "toolHWDuck": "Mit DuckDuckGo suchen", "trayHW": "Hardware-Informationen", "os": "Betriebssystem", "cpu": "Prozessoren", "ram": "Speicher", "gpu": "Grafik", "mobo": "Hauptplatinen", "disk": "Lager", "inet": "Netzwerkadapter", "audio": "Audio", "dev": "Peripherie", "vm": "Virtueller Speicher", "drives": "Festplatten", "volumes": "Partitionen", "opticals": "Optische Laufwerke", "removables": "Wechsellaufwerke", "physicalAdapters": "Physische Adapter", "virtualAdapters": "Virtuelle Adapter", "keyboards": "Tastaturen", "pointings": "Zeigegeräte", "performanceTip": "Sammlung von internen Windows-Einstellungen zur Leistungsoptimierung. Völlig sicher in der Anwendung. - Verringert Wartezeit vor dem Beenden von nicht reagierenden Prozessen. - Verringert die Verzögerung der Menüanzeige. - Deaktiviert die Benachrichtigung bei geringem Speicherplatz. - Deaktiviert die Funktion Schütteln zum Minimieren. - Zeigt immer Dateierweiterungen an - Zeigt versteckte Dateien", "networkTip": "Windows implementiert einen Mechanismus zur Netzwerkdrosselung, der den Netzwerkverkehr einschränkt, wenn Multimedia-Anwendungen ausgeführt werden. Dies kann auch die Netzwerkleistung verringern, wenn Sie Online-Spiele spielen.", "defenderTip": "Windows Defender ist der integrierte Virenschutz in Windows - Systemen.", "smartScreenTip": "SmartScreen scannt automatisch Dateien, Downloads und Websites, blockiert bereits bekannte gefährliche Inhalte und warnt Sie, bevor Sie diese ausführen.", "systemRestoreTip": "Die Systemwiederherstellung ist eine Funktion, mit der der jetzige Zustand von Windows auf einen früheren Zustand zurückgesetzt werden kann, um Fehlfunktionen oder anderen Problemen zu lösen.", "reportingTip": "Die Fehlerberichterstattung sammelt Anwendungsabstürze und -fehler und sendet sie an Microsoft.", "telemetryTasksTip": "Telemetrie-Dienste senden in regelmäßigen Abständen Nutzungs- und Leistungsdaten an Microsoft, um zukünftige Verbesserungen zu ermöglichen.", "officeTelemetryTip": "Office-Telemetrie-Dienste senden regelmäßig Nutzungs- und Leistungsdaten an Microsoft, für künftige Verbesserungen.", "ffTelemetryTip": "Deaktiviert Mozilla Firefox Telemetrie- und Datenberichtsdienste.", "vsTip": "Deaktiviert Telemetrie- und Feedback-Funktionen von Visual Studio, einschließlich des SQM-Clients.", "chromeTelemetryTip": "Deaktiviert das Telemetrie- und Software-Berichtstool von Google Chrome. (bekannt dafür, dass es eine hohe CPU - Auslastung verursacht). ", "printTip": "Der Druckdienst ist für das Erkennen, Installieren und Verwenden von Druckern zuständig.", "faxTip": "Der Faxdienst ist für das Senden und Empfangen von Faxnachrichten zuständig.", "mediaSharingTip": "Die Media Player-Freigabe ist für die Freigabe von Heim-Medien für den Windows Media Player zuständig.", "stickyTip": "Sticky Keys ist eine Zugänglichkeitsfunktion, die Windows-Benutzern mit körperlichen Behinderungen helfen soll, die Art von Bewegungen zu reduzieren, die mit Verletzungen durch wiederholte Belastung verbunden sind.", "homegroupTip": "Heimnetzgruppe ist eine Funktion, die die gemeinsame Nutzung von Dateien in einem Heimnetzwerk mit Windows Explorer ermöglicht.", "superfetchTip": "Superfetch lädt häufig verwendete Anwendungen in den Arbeitsspeicher vor, was zu einer hohen Festplattenauslastung führt, insbesondere auf Festplatten.", "compatTip": "Der Kompatibilitätsassistent erkennt bekannte Kompatibilitätsprobleme in älteren Programmen.", "disableOneDriveTip": "Deaktiviert die OneDrive-Cloud-Speicher-Integration.", "oldMixerTip": "Stellt das klassische Lautstärkemixer-Bedienfeld wieder her.", "oldExplorerTip": "Deaktiviert den Zugriff und entfernt das häufig verwendete Bedienfeld Dateien im Windows Explorer.", "adsTip": "Verhindert die Anzeige von Werbung im Startmenü", "uODTip": "Entfernt die OneDrive-Cloudspeicher-Integration vollständig.", "peopleTip": "My People ist eine neue Funktion, die aktuelle Kontakte in der Taskleiste anzeigt.", "longPathsTip": "Entfernt die maximale Pfadlängenbegrenzung von 256 Zeichen.", "inkTip": "Windows Ink fügt Unterstützung für digitale Stifte zum Zeichnen auf dem Bildschirm hinzu.", "spellTip": "Nur Touch-Tastatur-Funktionen wie: - Auto-Korrektur -Textvorschläge -Rechtschreibprüfung", "xboxTip": "Xbox Live-Dienste bieten Streaming-, Aufnahme- und soziale Funktionen für Xbox-Spiele.", "actionTip": "Das Benachrichtigungscenter ist ein zentraler Ort für Benachrichtigungen und Schnellaktionskacheln, wie Wi-Fi, Bluetooth, etc.", "autoUpdatesTip": "Deaktiviert das automatische Herunterladen und Installieren von Windows-Updates. Stattdessen erfolgt eine Benachrichtigung, wenn neue Updates verfügbar sind. Außerdem wird der Dienst Bereitstellungsoptimierung deaktiviert.", "driversTip": "Nützlich, wenn Windows Update ständig einen ordnungsgemäß funktionierenden Treiber durch einen fehlerhaften ersetzt.", "telemetryServicesTip": "Telemetrie-Dienste verfolgen und protokollieren Nutzungsdaten und senden Feedback and Microsoft zur Analyse.", "privacyTip": "Zusätzliche Datenschutz-Tweaks, die Folgendes deaktivieren: - Biometrie - Geolokalisierung - Geräteübergreifende Freigabe von Apps - Text-Logger - Diagnose", "ccTip": "Die Cloud-Zwischenablage gibt die Daten der Zwischenablage für alle Geräte frei. So können Sie auf einem Gerät kopieren und auf einem anderen einfügen. Erfordert die Anmeldung bei einem Microsoft-Konto.", "cortanaTip": "Cortana ist eine virtuelle KI-basierte Assistentin. - Deaktiviert Cortana. - Deaktiviert die Websuche im Startmenü - Verhindert, dass der Suchverlauf gespeichert wird", "sensorTip": "Dienste, die die Funktionalität von Sensoren verwalten, wie z.B automatische Drehung, automatische Helligkeit, etc. Nützlich nur für Tablets oder Geräte mit Touchscreen.", "castTip": "Entfernt den Rechtsklick, um Medieninhalte an Miracast-Geräte zu übertragen.", "gameBarTip": "Game Bar ist ein Zugriffsmenü für Xbox Spieldienste.", "insiderTip": "Das Windows Insider-Programm ermöglicht es Ihnen, die neuesten Funktionen zu testen, bevor sie für die Öffentlichkeit freigegeben werden. Es wird als unnötiger Service für Benutzer angesehen, die nicht daran teilnehmen möchten.", "tpmTip": "Umgeht die Anforderungen für Secure Boot und TPM 2.0 und ermöglicht ein Upgrade auf Windows 11.", "leftTaskbarTip": "Richtet die Taskleistensymbole nach links aus.", "snapAssistTip": "Deaktiviert Snap-Assist-Flyout, wenn der Mauszeiger über der Maximierungsschaltflächen bewegt wird.", "widgetsTip": "Deaktiviert die Widgets-Funktion und entfernt das Widgets-Symbol aus der Taskleiste.", "chatTip": "Entfernt das Chat-Symbol aus der Taskleiste.", "smallerTaskbarTip": "Verringert die Größe der Taskleiste und der Symbole.", "classicRibbonTip": "Stellt das klassische Windows 10-Menüband im Datei-Explorer wieder her.", "classicContextTip": "Stellt das klassische Rechtsklickmenü wieder her und entfernt die Option 'Weitere Optionen anzeigen'.", "gameModeSw": "Spielemodus aktivieren", "gameModeTip": "Aktiviert den Gaming-Modus in Kombination mit hardwarebeschleunigter GPU-Planung.", "compactModeSw": "Aktivieren Sie den Kompaktmodus im Explorer", "compactModeTip": "Reduziert zusätzlichen Platz und Auffüllung zwischen den Dateien im Datei-Explorer.", "stickersTip": "Sticker sind große Emojis, die auf Hintergrundbildern erscheinen und in sozialen Messengern verwendet werden.", "hibernateSw": "Ruhezustand deaktivieren", "hibernateTip": "Deaktiviert die Windows-Ruhezustandsfunktion.", "smb1Sw": "Deaktiviere das SMBv1-Protokoll", "smb2Sw": "Deaktiviere das SMBv2-Protokoll", "smbTip": "Das SMB{v}-Protokoll ist für die Dateifreigabe zwischen Windows-Computern verantwortlich. Es wurde durch SMBv3 ersetzt, das sicherer ist.", "ntfsStampSw": "Deaktiviere den NTFS-Zeitstempel", "ntfsStampTip": "Gibt den Zeitpunkt des letzten Zugriffs auf die Datei an. Durch Deaktivieren können die E/A-Vorgänge auf den Festplatten reduziert werden.", "autoStartToggle": "Starte mit Windows", "nvidiaTelemetrySw": "Deaktivieren Sie die NVIDIA-Telemetrie", "dnsTitle": "Ändern Sie schnell den DNS-Server", "vbsSw": "Deaktivieren Sie die virtualisierungsbasierte Sicherheit", "vbsTip": "Kernel-Funktion, die das Einschleusen bösartiger Treiber in Prozesse verhindert. Es wirkt sich negativ auf die Leistung aus.", "winSearchSw": "Suche deaktivieren", "winSearchTip": "Deaktiviert den Windows-Suchdienst.", "storeUpdatesSw": "Deaktivieren Sie Microsoft Store-Updates", "storeUpdatesTip": "Deaktiviert die Funktion für automatische Updates im Microsoft Store.", "btnRestoreUwp": "Stellen Sie alle UWP wieder her", "restoreUwpMessage": "Sind Sie sicher, dass Sie dies tun möchten?", "telemetrySvcToggle": "Deaktivieren Sie die Optimizer-Telemetrie", "edgeAiSw": "Deaktivieren Sie Edge Discover", "edgeTelemetrySw": "Edge-Telemetrie deaktivieren", "edgeAiTip": "Entfernt die Erkennungsleiste in Edge.", "edgeTelemetryTip": "Deaktiviert SmartScreen-, Spotlight- und Telemetriedienste in Edge.", "hpetSw": "HPET deaktivieren", "loginVerboseSw": "Aktivieren Sie den detaillierten Anmeldebildschirm", "advancedTab": "Fortschrittlich", "btnRestartSafe": "Neustart im abgesicherten Modus", "btnRestart": "Neustart im Normalmodus", "btnRestartDisableDefender": "Neustart && Defender deaktivieren", "classicPhotoViewerSw": "Stellen Sie den klassischen Fotobetrachter wieder her", "tabPage3": "Schriftarten", "fontSetTitle": "Legen Sie Ihre Lieblingsschrift als Windows-Standard fest", "label11": "Aktuelle Schrift:", "btnSetGlobalFont": "Als Standard festlegen", "lblFontsCount": "Verfügbare Schriftarten:", "btnRestoreFont": "Standard wiederherstellen", "btnRefreshFonts": "Aktualisieren", "chkAllNics": "Für alle Netzwerkadapter festgelegt", "chkCustomDns": "Legen Sie benutzerdefiniertes DNS fest", "btnSetDns": "DNS einstellen", "copilotSw": "CoPilot AI deaktivieren", "copilotTip": "Deaktiviert die CoPilot AI-Funktion vollständig.", "btnReinforce": "Richtlinien verstärken", "msgReinforce": "Sind Sie sicher, dass Sie Ihre aktuellen Richtlinien erneut anwenden möchten?", "newsInterestsSw": "Nachrichten und Interessen deaktivieren", "allTrayIconsSw": "Alle Benachrichtigungssymbole anzeigen", "noMenuDelaySw": "Menüverzögerung entfernen", "hideSearchSw": "Suche in der Taskleiste ausblenden", "hideWeatherSw": "Wetter in der Taskleiste ausblenden", "autoUpdateToggle": "Aktualisierung beim Start", "enableUtcSw": "UTC-Zeit aktivieren", "modernStandbySw": "Modernen Standby deaktivieren", "label24": "Systemvariablen-Editor", "label23": "Neuer Systemvariablenpfad:", "button3": "Hinzufügen", "label21": "Systemvariablen", "button1": "Löschen", "button2": "Aktualisieren" } ================================================ FILE: Optimizer/Resources/i18n/EL.json ================================================ { "subSystem": "Σύστημα", "subPrivacy": "Ιδιωτικότητα", "subGaming": "Gaming", "subTouch": "Αφή", "subTaskbar": "Γραμμή Εργασιών", "subExtras": "Πρόσθετα", "regBackupSw": "Ενεργοποίηση αντιγράφων ασφαλείας μητρώου", "btnAbout": "Εντάξει", "restartButton": "Επανεκκίνηση τώρα", "restartButton8": "Επανεκκίνηση τώρα", "restartButton10": "Επανεκκίνηση τώρα", "btnFind": "Εύρεση", "btnKill": "Τερματισμός", "trayUnlocker": "File Handles", "restartAndApply": "Επανεκκίνηση για την εφαρμογή των αλλαγών", "txtVersion": "Έκδοση: {VN}", "txtBitness": "Αρχιτεκτονική {BITS}", "linkUpdate": "Διαθέσιμη ενημέρωση", "lblLab": "Πειραματική έκδοση", "systemRestoreM": "Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε τα αντίγραφα ασφαλείας; Αυτό θα διαγράψει τα υπάρχοντα αντίγραφα!", "onedriveM": "Είστε σίγουροι ότι θέλετε να απεγκαταστήσετε το OneDrive; Αυτό θα διαγράψει αρχεία της επιφάνειας εργασίας! Χρησιμοποιήστε το μόνο σε τοπικό λογαριασμό!", "performanceSw": "Βελτιστοποίηση Απόδοσης Συστήματος", "networkSw": "Βελτιστοποίηση Δικτύου", "defenderSw": "Απενεργοποίηση Windows Defender", "systemRestoreSw": "Απενεργοποίηση Επαναφοράς Συστήματος", "printSw": "Απενεργοποίηση Υπηρεσίας Εκτύπωσης", "mediaSharingSw": "Απενεργοποιήση Κοινής Χρήσης Media Player", "faxSw": "Απενεργοποίηση Λειτουργίας Φαξ", "reportingSw": "Απενεργοποίηση Αναφοράς Σφαλμάτων", "homegroupSw": "Απενεργοποίηση HomeGroup", "superfetchSw": "Απενεργοποίηση Superfetch", "telemetryTasksSw": "Απενεργοποίηση Τηλεμετρίας", "officeTelemetrySw": "Απενεργοποίηση Τηλεμετρίας Office", "vsSW": "Απενεργοποίηση Τηλεμετρίας Visual Studio", "ffTelemetrySw": "Απενεργοποίηση Τηλεμετρίας Mozilla Firefox", "chromeTelemetrySw": "Απενεργοποίηση Τηλεμετρίας Google Chrome", "compatSw": "Απενεργοποίηση Βοηθού Συμβατότητας", "smartScreenSw": "Απενεργοποίηση SmartScreen", "stickySw": "Απενεργοποίηση Ασύγχρονων Πλήκτρων", "universalTab": "Γενικά", "modernAppsTab": "Εφαρμογές UWP", "startupTab": "Εκκίνηση", "appsTab": "Εφαρμογές", "cleanerTab": "Εκκαθάριση", "pingerTab": "Δίκτυο", "analyzeDriveB": "Ανάλυση", "registryFixerTab": "Μητρώο", "integratorTab": "Integrator", "optionsTab": "Επιλογές", "oldMixerSw": "Επαναφορά Κλασσικού Μείκτη Ήχου", "oldExplorerSw": "Απενεργοποίηση Γρήγορης Πρόσβασης", "adsSw": "Απενεργοποίηση Διαφημίσεων στην Έναρξη", "uODSw": "Απεγκατάσταση OneDrive", "peopleSw": "Απενεργοποίηση My People", "longPathsSw": "Ενεργοποίηση Long Paths", "autoUpdatesSw": "Απενεργοποίηση Αυτόματων Ενημερώσεων", "driversSw": "Εξαίρεση drivers από τις ενημερώσεις", "telemetryServicesSw": "Απενεργοποίηση Λειτουργιών Τηλεμετρίας", "privacySw": "Βελτίωση Ιδιωτικότητας", "ccSw": "Απενεργοποίηση Cloud Clipboard", "cortanaSw": "Απενεργοποίηση της Cortana", "sensorSw": "Απενεργοποίηση Υπηρεσίας Αισθητήρων", "castSw": "Κατάργηση Μετάδοσης στη Συσκευή", "inkSw": "Απενεργοποίηση του Windows Ink", "spellSw": "Απενεργοποίηση Ορθογραφικού Ελέγχου", "xboxSw": "Απενεργοποίηση του Xbox Live", "gameBarSw": "Απενεργοποίηση Γραμμής Παιχνιδιών", "insiderSw": "Απενεργοποίηση Υπηρεσίας Insider", "actionSw": "Απενεργοποίηση Κέντρου Ενημερώσεων", "disableOneDriveSw": "Απενεργοποίηση OneDrive", "tpmSw": "Απενεργοποίηση Ελέγχου TPM", "leftTaskbarSw": "Ευθυγράμμιση Γραμμης Εργασιών Αριστερά", "snapAssistSw": "Απενεργοποίηση του Snap Assist", "widgetsSw": "Απενεργοποίηση των Widgets", "chatSw": "Απενεργοποίηση του Chat", "smallerTaskbarSw": "Σμίκρυνση της Γραμμής Εργασιών", "classicRibbonSw": "Επαναφορά Κλασσικης Κορδέλας στα Αρχεία", "classicContextSw": "Επαναφορά Κλασσικού Μενού στο Δεξί Κλικ", "refreshModernAppsButton": "Ανανέωση", "uninstallModernAppsButton": "Διαγραφή", "txtModernAppsTitle": "Απεγκατάσταση ανεπιθύμητων εφαρμογών UWP", "chkSelectAllModernApps": "Επιλογή όλων", "chkOnlyRemovable": "Μόνο διαθέσιμα προς απεγκατάσταση", "startupTitle": "Επιλογή Στοιχείων Εκκίνησης", "removeStartupItemB": "Διαγραφή", "locateFileB": "Εντοπισμός αρχείου", "findInRegB": "Εντοπισμός στο Registry", "refreshStartupB": "Ανανέωση", "restoreStartupB": "Επαναφορά", "backupStartupB": "Αντίγραφο Ασφαλείας", "lblBackupTitle": "Τίτλος Αντιγράφου Ασφαλείας:", "doBackup": "Εντάξει", "cancelBackup": "Ακύρωση", "CleanPreviewForm": "Προεπισκόπηση Εκκαθάρισης", "startupItemName": "Όνομα", "startupItemLocation": "Τοποθεσία", "startupItemType": "Τύπος", "txtFeedError": "Έλλειψη σύνδεσης δικτύου, ανανεώστε ξανά", "appsTitle": "Γρήγορη λήψη && εγκατάσταση χρήσιμων εφαρμογών", "btnGetFeed": "Ανανέωση", "bitPref": "Επιλογή Αρχιτεκτονικής", "linkWarnings": "Προβολή λεπτομερειών", "txtDownloadStatus": "Αναμονή", "goToDownloadsB": "Εμφάνιση λήψεων", "btnDownloadApps": "Λήψη", "cAutoInstall": "Εγκατάσταση μετά τη λήψη", "setDownDirLbl": "Καθορισμός φακέλου λήψεων", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Επιλογή όλων", "checkTemp": "Προσωρινά αρχεία", "checkLogs": "Windows logs", "checkMiniDumps": "BSOD minidumps", "checkBin": "Κάδος Ανακύκλωσης", "checkMediaCache": "Media Player cache", "checkErrorReports": "Αναφορές Σφάλματος", "cleanDriveB": "Εκκαθάριση", "lblPretext": "Μέγιστος χώρος που θα απελευθερωθεί:", "cleanerTitle": "Καθαρισμός του δίσκου συστήματος", "pingerTitle": "Διαγνωστικά ταχύτητας δικτύου", "lblPinger": "IP / Όνομα ιστοσελίδας", "btnOpenNetwork": "Συνδέσεις Δικτύου", "copyIPB": "Αντιγραφή", "copyB": "Αντιγραφή IP", "btnShodan": "Έλεγχος SHODAN.io", "btnPing": "Ping", "lblResults": "Αποτελέσματα", "flushCacheB": "Εκκαθάριση DNS cache", "btnExport": "Εξαγωγή", "hostsTitle": "Εύκολη επεξεργασία του αρχείου Hosts", "linkLocate": "Εντοπισμός", "linkAdvancedEdit": "Επεξεργασία για προχωρημένους", "linkRestoreDefault": "Επαναφορά προεπιλογής", "lblIP": "Διεύθυνση IP", "lblDomain": "Ιστοσελίδα", "chkBlock": "Αποκλεισμός", "addHostB": "Προσθήκη", "lblLock": "Προστατεύστε το αρχείο hosts με κλείδωμα", "chkReadOnly": "Κλείδωμα", "lblAdblock": "Έτοιμα adblocks", "lblAdblockSub": "(θα διαγράψει τις τρέχουσες ρυθμίσεις)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Διαγραφή", "refreshHostsB": "Ανανέωση", "removeAllHostsB": "Διαγραφή όλων", "regFixB": "Επιδιόρθωση", "regLbl": "(Κάποιες αλλαγές ίσως το χρειάζονται αυτό)", "checkRestartExplorer": "Επανεκκίνηση Explorer για εφαρμογή των αλλαγών", "checkRegistryEditor": "Registry Editor", "checkFirewall": "Τείχος Προστασίας Windows", "checkContextMenu": "Μενού δεξιού κλικ", "checkRunDialog": "Εκτέλεση", "checkFolderOptions": "Επιλογές Φακέλου", "checkControlPanel": "Πίνακας Ελέγχου", "checkCommandPrompt": "Γραμμή Εντολών", "checkTaskManager": "Διαχείριση Εργασιών", "checkEnableAll": "Ενεργοποίηση όλων", "registryTitle": "Επιδιόρθωση κοινών προβλημάτων του Registry", "quickAccessToggle": "Προβολή μενού στη Γραμμή Εργασιών", "helpTipsToggle": "Προβολή μηνυμάτων βοήθειας", "lblTheming": "Επιλογή θέματος", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Έλεγχος && Ενημέρωση", "btnUpdate": "Έλεγχος για ενημερώσεις", "btnChangelog": "Προβολή αλλαγών", "lblUpdateDisabled": "Απενεργοποιημένο σε πειραματικές εκδόσεις", "lblTroubleshoot": "Επίλυση Προβλημάτων", "btnViewLog": "Προβολή Σφαλμάτων", "btnOpenConf": "Εμφάνιση Φακέλου Ρυθμίσεων", "btnResetConfig": "Επιδιόρθωση", "integrator1": "Το Integrator μπορεί να προσθέσει πλήρως προσαρμοσμένα\nστοιχεία στο μενού δεξιού κλικ στην επιφάνεια εργασίας:", "integrator2": "• Οποιοδήποτε πρόγραμμα", "integrator3": "• Συντομεύσεις για τους φακέλους", "integrator4": "• Σύνδεσμοι για τον ιστό", "integrator5": "• Οποιοσδήποτε τύπος αρχείου", "integrator6": "• Εντολές", "integrator7": "Τα στοιχεία μπορούν να έχουν προσαρμοσμένα εικονίδια και θέση.\nΜπορούν επίσης να είναι κρυφά, προσβάσιμα μόνο\nπατώντας το πλήκτρο SHIFT.\nΜπορεί επίσης να δημιουργήσει προσαρμοσμένες εντολές\nγια τον διάλογο εκτέλεσης, διευκολύνοντας την εκκίνηση\n οποιασδήποτε εφαρμογής μόνο με την εισαγωγή της επιθυμητής λέξης-κλειδιού", "integratorInfoTab": "Πληροφορίες", "tabPage8": "Προσθήκη/Τροποποίηση", "tabPage9": "Αφαίρεση", "tabPage10": "Έτοιμα Μενού", "tabPage11": "Εκτέλεση", "addItemL": "Προσθήκη ή τροποποίηση ενός στοιχείου", "itemtype": "Τύπος στοιχείου", "radioProgram": "Πρόγραμμα", "radioFolder": "Φάκελος", "radioLink": "Σύνδεσμος", "radioFile": "Αρχείο", "radioCommand": "Εντολή", "itemtoaddgroup": "Προσθήκη Προγράμματος", "folderToAdd": "Προσθήκη Φακέλου", "linkToAdd": "Προσθήκη Συνδέσμου", "fileToAdd": "Προσθήκη Αρχείου", "commandToAdd": "Προσθήκη Εντολής", "icontoaddgroup": "Προσθήκη Εικονιδίου", "checkDefaultIcon": "Χρήση εικονιδίου προγράμματος", "checkDefaultFolderIcon": "Χρήση προεπιλεγμένου εικονιδίου φακέλου", "checkFavicon": "Λήψη εικονιδίου ιστότοπου (favicon)", "checkNoIcon": "Χωρίς εικονίδιο", "dnsCacheM": "Δημιουργία προσωρινής μνήμης DNS, δοκιμάστε ξανά αργότερα!", "itemposition": "Θέση στοιχείου", "radioTop": "Πάνω", "radioMiddle": "Μέση", "radioBottom": "Κάτω", "security": "Ασφάλεια", "checkShift": "Προβολή μόνο όταν το SHIFT είναι πατημένο", "itemnamegroup": "Όνομα στοιχείου στο μενού", "btnAddItem": "Προσθήκη/Τροποποίηση", "removeIntegratorItemsL": "Διαγραφή υπαρχόντων στοιχείων επιφάνειας εργασίας", "removeDIB": "Διαγραφή", "refreshIIB": "Ανανέωση", "removeAllIIB": "Διαγραφή όλων", "PMB": "Προσθήκη Power Menu", "STB": "Προσθήκη εργαλείων συστήματος", "WAB": "Προσθήκη εφαρμογών Windows", "SSB": "Προσθήκη συντομεύσεων συστήματος", "DSB": "Προσθήκη συντομεύσεων επιφάνειας εργασίας", "AddOwnerB": "Προσθήκη Take Ownership", "RemoveOwnerB": "Διαγραφή Take Ownership", "AddCMDB": "Προσθήκη Open with CMD", "DeleteCMDB": "Διαγραφή Open with CMD", "readyMenusL": "Προσθήκη χρήσιμων, έτοιμων μενού", "refreshCCB": "Ανανέωση", "removeCCB": "Διαγραφή", "removeCCL": "Διαγραφή υπαρχουσών εντολών", "btnCreateCustomCommand": "Δημιουργία", "ccKeywordL": "Λέξη-κλειδί", "ccFileL": "Θέση αρχείου", "ccL": "Ορίστε τις προσαρμοσμένες εντολές Εκτέλεσης", "btnYes": "Ναι", "btnNo": "Όχι", "btnOk": "Εντάξει", "HostsEditorForm": "Επεξεργασία αρχείου Hosts", "savebtn": "Αποθήκευση", "closebtn": "Κλείσιμο", "flushDNSMessage": "Είστε σίγουροι ότι θέλετε να καθαρίσετε την μνήμη DNS;\n\nΑυτό ίσως σας αποσυνδέσει απο το διαδίκτυο στιγμιαία.", "adminMissingMsg": "Το Optimizer πρέπει να εκτελεστεί ως διαχειριστής!\nΗ εφαρμογή θα κλείσει τώρα ...", "unsupportedMsg": "Το Optimizer λειτουργεί σε Windows 7 ή νεότερη έκδοση!\nΗ εφαρμογή θα κλείσει τώρα ...", "confInvalidVersionMsg": "Λανθασμένη έκδοση Windows", "confInvalidFormatMsg": "Μη έγκυρη μορφή αρχείου", "confNotFoundMsg": "Το αρχείο διαμόρφωσης δεν υπάρχει", "argInvalidMsg": "Μη έγκυρος ορισμός! Παράδειγμα: Optimizer.exe /template.json", "alreadyRunningMsg": "Το Optimizer εκτελειται ηδη στο παρασκηνιο!", "StartupPreviewForm": "Προεπισκόπηση στοιχείων εκκίνησης", "StartupRestoreForm": "Επαναφορά στοιχείων εκκίνησης", "backupL": "Ανάκτηση στοιχείων εκκίνησης", "txtNoBackups": "Δεν βρέθηκαν αντίγραφα ασφαλείας", "previewBackupB": "Προεπισκόπηση", "restoreBackupB": "Επαναφορά", "deleteBackupB": "Διαγραφή", "noNewVersion": "Έχετε την τελευταία έκδοση!", "betaVersion": "Χρησιμοποιείτε μία πειραματική έκδοση!", "removeAllStartup": "Είστε βέβαιοι ότι θέλετε να διαγράψετε τα παρακάτω στοιχεία εκκίνησης;", "removeAllHosts": "Είστε σίγουροι ότι θέλετε να διαγράψετε όλες τις καταχωρήσεις hosts;", "removeAllItems": "Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα στοιχεία της επιφάνειας εργασίας;", "removeModernApps": "Είστε βέβαιοι ότι θέλετε να απεγκαταστήσετε τις ακόλουθες εφαρμογές;", "errorModernApps": "Δεν ήταν δυνατή η απεγκατάσταση των ακόλουθων εφαρμογών:\n", "latestVersionM": "Τελευταία έκδοση: {LATEST}", "currentVersionM": "Τρέχουσα έκδοση: {CURRENT}", "resetMessage": "Η εφαρμογή θα κλείσει και θα προσπαθήσει να επιδιορθωθεί μόνη της.", "newVersion": "Υπάρχει μια νέα έκδοση διαθέσιμη! Θέλετε να την κατεβάσετε τώρα;\nΗ εφαρμογή θα κάνει επανακκίνηση σε λίγα δευτερόλεπτα", "downloadsFinished": "Τέλος", "downloadDirInvalid": "Ο φάκελος λήψης δεν είναι έγκυρος", "no64Download": "Μη διαθέσιμα τα 64-bit, λήψη 32-bit", "no32Download": "Μη διαθέσιμα τα 32-bit, παράληψη", "installing": "Εγκατάσταση", "linkInvalid": "Ο σύνδεσμος δεν είναι πλέον έγκυρος", "noErrorsM": "Δεν υπάρχουν σφάλματα προς εμφάνιση!", "hostNotFound": "Αδυναμία εύρεσης host", "pinging": "Ping με 32 bytes - 9 φορές...", "latency": "Καθυστέρηση", "lblSystemTools": "Εργαλεία Συστήματος", "lblInternet": "Διαδίκτυο", "lblCoding": "Προγραμματισμός", "lblVideoSound": "Εικόνα και Ήχος", "min": "Ελάχιστο", "max": "Μέγιστο", "avg": "Μέσο", "timeout": "Το αίτημα έχει λήξει", "languagesL": "Επιλογή γλώσσας", "trayStartup": "Διαχείριση εκκίνησης", "trayCleaner": "Εκκαθάριση δίσκου", "trayPinger": "Εργαλείο Pinger", "trayHosts": "Επεξεργασία HOSTS", "trayAD": "Λήψη Εφαρμογών", "trayOptions": "Επιλογές", "trayRegistry": "Επιδιόρθωση μητρώου", "trayRestartExplorer": "Επανεκκίνηση Explorer", "trayExit": "Έξοδος", "tipWhatsThis": "Τι είναι αυτό;", "hwDetailed": "Λεπτομερής Προβολή", "btnCopyHW": "Αντιγραφή", "btnSaveHW": "Αποθήκευση", "indiciumTab": "Yλικολογισμικό", "toolHWCopy": "Αντιγραφή", "toolHWGoogle": "Αναζήτηση με Google", "toolHWDuck": "Αναζήτηση με DuckDuckGo", "trayHW": "Yλικολογισμικό", "os": "Λειτουργικό Σύστημα", "cpu": "Επεξεργαστές", "ram": "Μνήμη", "gpu": "Γραφικά", "mobo": "Μητρικές Κάρτες", "disk": "Αποθηκευτικός Χώρος", "inet": "Συσκευές Δικτύου", "audio": "Ήχος", "dev": "Περιφερειακά", "vm": "Εικονική Μνήμη", "drives": "Σκληροί Δίσκοι", "volumes": "Τόμοι", "opticals": "Οπτικοί Δίσκοι", "removables": "Αφαιρούμενοι Δίσκοι", "physicalAdapters": "Φυσικές Συσκευές Δικτύου", "virtualAdapters": "Εικονικές Συσκευές Δικτύου", "keyboards": "Πληκτρολόγια", "pointings": "Ποντίκια", "performanceTip": "Συλλογή εσωτερικών ρυθμίσεων των Windows για βελτιστοποίηση της απόδοσης. Πλήρως ασφαλής για εφαρμογή. - Μείωση αναμονής πριν τον τερματισμό διαδικασιών που δεν ανταποκρίνονται. - Ταχύτερη εμφάνιση μενού. - Απενεργοποίηση ειδοποίησης μειωμένου χώρου στο δίσκο - Πάντα εμφάνιση επέκτασης αρχείων - Εμφάνιση κρυφών αρχείων", "networkTip": "Τα Windows εφαρμόζουν έναν μηχανισμό δικτύου που θα περιορίσει κυκλοφορία δικτύου κατά την εκτέλεση εφαρμογών πολυμέσων. Μπορεί επίσης να μειώσει την απόδοση του δικτύου όταν παίζετε διαδικτυακά παιχνίδια.", "defenderTip": "Το Windows Defender είναι το ενσωματωμένο antivirus σε συστήματα Windows.", "smartScreenTip": "Το SmartScreen σαρώνει αυτόματα αρχεία, λήψεις και ιστότοπους, αποκλείοντας ήδη γνωστό επικίνδυνο περιεχόμενο και σας προειδοποιεί προτού το εκτελέσετε.", "systemRestoreTip": "Η Επαναφορά Συστήματος είναι μια δυνατότητα που επιτρέπει την επαναφορά της κατάστασης των Windows στην προηγούμενη για ανάκτηση από δυσλειτουργίες ή άλλα προβλήματα.", "reportingTip": "Η αναφορά σφαλμάτων συλλέγει σφάλματα εφαρμογών και τα στέλνει στη Microsoft.", "telemetryTasksTip": "Οι υπηρεσίες τηλεμετρίας στέλνουν δεδομένα χρήσης και απόδοσης στη Microsoft, για μελλοντική βελτίωση.", "officeTelemetryTip": "Η υπηρεσία Τηλεμετρίας του Office στέλνει δεδομένα χρήσης και απόδοσης στη Microsoft, για μελλοντική βελτίωση.", "ffTelemetryTip": "Απενεργοποίηση τηλεμετρίας και συλλογής δεδομένων του Mozilla Firefox.", "vsTip": "Απενεργοποίηση της τηλεμετρίας και της υπηρεσίας σχολίων του Visual Studio.", "chromeTelemetryTip": "Απενεργοποίηση της τηλεμετρίας και αναφοράς σφαλμάτων του Chrome. (μειώνει δραματικά την άσκοπη χρήση επεξεργαστή).", "printTip": "Η υπηρεσία εκτύπωσης είναι υπεύθυνη για τον εντοπισμό, την εγκατάσταση και τη χρήση εκτυπωτών.", "faxTip": "Η υπηρεσία φαξ είναι υπεύθυνη για την αποστολή και λήψη φαξ.", "mediaSharingTip": "Το Media Player Sharing παρέχει κοινή χρήση οικιακών πολυμέσων για το Windows Media Player.", "stickyTip": "Τα Ασύγχρονα Πλήκτρα είναι μια δυνατότητα προσβασιμότητας για να βοηθήσουν τους χρήστες των Windows με σωματικές αναπηρίες να μειώσουν το είδος της κίνησης που σχετίζεται με επαναλαμβανόμενο τραυματισμό καταπόνησης.", "homegroupTip": "Το HomeGroup είναι μια δυνατότητα που επιτρέπει την κοινή χρήση αρχείων σε οικιακό δίκτυο χρησιμοποιώντας την Εξερεύνηση των Windows.", "superfetchTip": "Το Superfetch προ-φορτώνει εφαρμογές που χρησιμοποιούνται συχνα στη μνήμη RAM, προκαλώντας υψηλή χρήση δίσκου, ειδικά σε δίσκους HDD.", "compatTip": "Η Λειτουργία Compatibility Assistant εντοπίζει γνωστά προβλήματα συμβατότητας σε παλαιότερα προγράμματα.", "disableOneDriveTip": "Απενεργοποίηση της ενοποίησης αποθήκευσης cloud του OneDrive.", "oldMixerTip": "Επαναφορά του κλασικού πίνακα ελέγχου μείκτη έντασης.", "oldExplorerTip": "Απενεργοποίηση της γρήγορης πρόσβασης και αφαίρεση των συχνών αρχείων στην Εξερεύνηση των Windows.", "adsTip": "Αποτροπή της εμφάνισης διαφημίσεων στο μενού Έναρξη.", "uODTip": "Πλήρης κατάργηση της αποθήκευσης cloud του OneDrive.", "peopleTip": "Το My People είναι μια νέα δυνατότητα που δείχνει τις πρόσφατες επαφές στη γραμμή εργασιών.", "longPathsTip": "Κατάργηση του μέγιστου περιορισμού μήκους διαδρομής 256 χαρακτήρων.", "inkTip": "Το Windows Ink παρέχει υποστήριξη για ψηφιακές πένες, για σχεδίαση στην οθόνη.", "spellTip": "Λειτουργίες πληκτρολογίου αφής, όπως: - Αυτόματη Διόρθωση - Προτάσεις Κειμένου - Ορθογραφικός Έλεγχος", "xboxTip": "Οι υπηρεσίες Xbox Live προσφέρουν τη δυνατότητα ροής, εγγραφής και κοινωνικής δικτύωσης για παιχνίδια Xbox.", "actionTip": "Το Κέντρο ειδοποιήσεων είναι ένα κεντρικό μέρος για ειδοποιήσεις και πλακίδια γρήγορης δράσης, όπως το Wi-Fi, Bluetooth, κτλ.", "autoUpdatesTip": "Απενεργοποίηση της αυτόματης λήψης και εγκατάσταση ενημερώσεων των Windows. Αντ 'αυτού, υπάρχει μια ειδοποίηση όταν υπάρχουν διαθέσιμες νέες ενημερώσεις. Απενεργοποιεί επίσης την υπηρεσία βελτιστοποίησης παράδοσης.", "driversTip": "Χρήσιμο όταν το Windows Update αντικαθιστά συνεχώς ένα πρόγραμμα οδήγησης που λειτουργεί σωστά με ένα ελαττωματικό.", "telemetryServicesTip": "Οι Υπηρεσίες τηλεμετρίας παρακολουθούν και καταγράφουν δεδομένα χρήσης αποστέλοντας σχόλια για ανάλυση στη Microsoft.", "privacyTip": "Επιπλέον προσαρμογές απορρήτου απενεργοποιώντας τα ακόλουθα: - Βιομετρικά στοιχεία - Γεωγραφική Τοποθεσία - Κοινή χρήση εφαρμογών σε όλες τις συσκευές - Καταγραφή Κειμένου - Διαφνωστικά", "ccTip": "Το Cloud Clipboard κοινοποιεί δεδομένα προχείρου στις συσκευές σας. Επιτρέπει την αντιγραφή σε μια συσκευή και την επικόλληση σε άλλη . Απαιτείται η σύνδεση λογαριασμού Microsoft.", "cortanaTip": "Η Cortana είναι ένας εικονικός βοηθός που βασίζεται στην Τεχνιτή Νοημοσύνη. - Απενεργοποιήση Cortana. - Απενεργοποίηση της αναζήτησης ιστού στο μενού Έναρξη - Αποτρέπει τη διατήρηση ιστορικού αναζήτησης", "sensorTip": "Οι υπηρεσίες που διαχειρίζονται τη λειτουργικότητα των αισθητήρων, όπως αυτόματη περιστροφή, αυτόματη φωτεινότητα, κτλ. χρήσιμο μόνο για tablet ή συσκευές με οθόνη αφής.", "castTip": "Καταργεί το δεξί κλικ για κοινή χρήση περιεχομένου πολυμέσων σε συσκευές Miracast.", "gameBarTip": "Το Game Bar είναι ένα μενού γρήγορης πρόσβασης για υπηρεσίες παιχνιδιών Xbox.", "insiderTip": "Το πρόγραμμα Windows Insider σάς επιτρέπει να δοκιμάσετε τις πιο πρόσφατες δυνατότητες πριν κυκλοφορήσουν στο κοινό. Θεωρείται περιττή υπηρεσία για χρήστες που δεν επιθυμούν να συμμετάσχουν.", "tpmTip": "Παρακάμπτει τις απαιτήσεις Secure Boot και TPM 2.0, επιτρέποντας την αναβάθμιση σε Windows 11.", "leftTaskbarTip": "Ευθυγραμμίζει τα εικονίδια της γραμμής εργασιών στα αριστερά.", "snapAssistTip": "Απενεργοποιεί το Snap Assist Flyout όταν τοποθετείτε το δείκτη του ποντικιού στη μεγιστοποίηση.", "widgetsTip": "Απενεργοποιεί τη λειτουργία Widgets και καταργεί το εικονίδιο Widgets από τη γραμμή εργασιών.", "chatTip": "Αφαιρεί το εικονίδιο Chat από τη γραμμή εργασιών.", "smallerTaskbarTip": "Κάνει το μέγεθος της γραμμής εργασιών και τα εικονίδιά της μικρότερα.", "classicRibbonTip": "Επαναφέρει την κλασική γραμμή κορδέλας από τα Windows 10 στην Εξερεύνηση Αρχείων.", "classicContextTip": "Επαναφέρει το κλασικό μενού με δεξί κλικ, καταργώντας την επιλογή 'Εμφάνιση περισσότερων επιλογών'.", "gameModeSw": "Ενεργοποίηση Gaming Λειτουργίας", "gameModeTip": "Ενεργοποιεί την λειτουργία Gaming των Windows", "compactModeSw": "Ενεργοποίηση Compact Λειτουργίας στα Αρχεία", "compactModeTip": "Μειώνει τον επιπλέον χώρο μεταξύ των αρχείων στην Εξερεύνηση αρχείων.", "stickersTip": "Τα Stickers είναι μεγάλα emojis που εμφανίζονται στην επιφάνεια εργασίας και χρησιμοποιούνται στα social media.", "hibernateSw": "Απενεργοποίηση Αδρανοποίησης", "hibernateTip": "Απενεργοποιεί την λειτουργία της αδρανοποίησης των Windows", "smb1Sw": "Απενεργοποίηση πρωτοκολλου SMBv1", "smb2Sw": "Απενεργοποίηση πρωτοκολλου SMBv1", "smbTip": "Το πρωτόκολλο SMB{v} είναι υπεύθυνο για την κοινή χρήση αρχείων μεταξύ υπολογιστών με Windows. Έχει αντικατασταθεί με SMBv3, το οποίο είναι πιο ασφαλές.", "ntfsStampSw": "Απενεργοποίηση NTFS Timestamp", "ntfsStampTip": "Το NTFS Timestamp δείχνει τον χρόνο της τελευταίας πρόσβασης του αρχειού. Η απενεργοποίηση του βελτιώνει την ταχύτητα των δίσκων.", "autoStartToggle": "Εκκίνηση με τα Windows", "nvidiaTelemetrySw": "Απενεργοποίηση Τηλεμετρίας NVIDIA", "dnsTitle": "Γρήγορη αλλαγή διακομιστή DNS", "vbsSw": "Απενεργοποίηση Virtualization Based Security", "vbsTip": "Λειτουργία πυρήνα που αποτρέπει την έγχυση κακόβουλων προγραμμάτων οδήγησης σε διεργασίες. Έχει αρνητική επίδραση στην απόδοση.", "winSearchSw": "Απενεργοποίηση Αναζήτησης", "winSearchTip": "Απενεργοποιεί την υπηρεσία αναζήτησης που είναι υπεύθυνη για την αναζήτηση αρχείων.", "storeUpdatesSw": "Απενεργοποίηση Ενημερώσεων Microsoft Store", "storeUpdatesTip": "Απενεργοποιεί τις ενημερώσεις του Microsoft Store.", "btnRestoreUwp": "Επαναφορά όλων των UWP", "restoreUwpMessage": "Είστε σίγουροι ότι θέλετε να επαναφέρετε όλες τις εφαρμογές UWP;", "telemetrySvcToggle": "Απενεργοποίηση τηλεμετρίας Optimizer", "edgeAiSw": "Απενεργοποιήστε το Edge Discover", "edgeTelemetrySw": "Απενεργοποίηση Edge Telemetry", "edgeAiTip": "Καταργεί τη γραμμή Discover στο Edge.", "edgeTelemetryTip": "Απενεργοποιεί τις υπηρεσίες SmartScreen, Spotlight και Telemetry στο Edge.", "hpetSw": "Απενεργοποιήστε το HPET", "loginVerboseSw": "Ενεργοποιήστε την οθόνη λεπτομερούς σύνδεσης", "advancedTab": "Προχωρημένα", "btnRestartSafe": "Κάντε επανεκκίνηση σε ασφαλή λειτουργία", "btnRestart": "Κάντε επανεκκίνηση σε κανονική λειτουργία", "btnRestartDisableDefender": "Επανεκκινήστε && Απενεργοποιήστε το Defender", "classicPhotoViewerSw": "Επαναφέρετε το κλασσικό Photo Viewer", "tabPage3": "Fonts", "fontSetTitle": "Ορίστε το αγαπημένο σας font ως default για τα Windows", "label11": "Τρέχον font:", "btnSetGlobalFont": "Αλλαγή font", "lblFontsCount": "Διαθέσιμα fonts:", "btnRestoreFont": "Επαναφορά", "btnRefreshFonts": "Ανανέωση", "chkAllNics": "Εφαρμογή για όλους τους προσαρμογείς δικτύου", "chkCustomDns": "Ορισμός προσαρμοσμένου DNS", "btnSetDns": "Εφαρμογή DNS", "copilotSw": "Απενεργοποίηση CoPilot AI", "copilotTip": "Απενεργοποιεί πλήρως το χαρακτηριστικό CoPilot AI.", "btnReinforce": "Ενίσχυση των πολιτικών", "msgReinforce": "Είστε σίγουροι ότι θέλετε να ξαναεφαρμόσετε τις τρέχουσες πολιτικές σας;", "newsInterestsSw": "Απενεργοποίηση ειδήσεων και ενδιαφερόντων", "allTrayIconsSw": "Εμφάνιση όλων των εικονιδίων ειδοποιήσεων", "noMenuDelaySw": "Αφαίρεση καθυστέρησης μενού", "hideSearchSw": "Απόκρυψη αναζήτησης", "enableUtcSw": "Ενεργοποίηση UTC Ωρας", "hideWeatherSw": "Απόκρυψη καιρού", "autoUpdateToggle": "Ενημέρωση κατά την εκκίνηση", "modernStandbySw": "Απενεργοποίηση Modern Standby", "label24": "Επεξεργαστής Μεταβλητών Συστήματος", "label23": "Νέα διαδρομή μεταβλητής συστήματος:", "button3": "Προσθήκη", "label21": "Μεταβλητές Συστήματος", "button1": "Διαγραφή", "button2": "Ανανέωση" } ================================================ FILE: Optimizer/Resources/i18n/EN.json ================================================ { "subSystem": "System", "subPrivacy": "Privacy", "subGaming": "Gaming", "subTouch": "Touch", "subTaskbar": "Taskbar", "subExtras": "Extras", "btnAbout": "OK", "restartButton": "Restart now", "restartButton8": "Restart now", "restartButton10": "Restart now", "btnFind": "Find", "btnKill": "Kill", "trayUnlocker": "File Handles", "restartAndApply": "Restart to apply changes", "txtVersion": "Version: {VN}", "txtBitness": "You are working with {BITS}", "linkUpdate": "Update available", "lblLab": "Experimental build\n(delete after testing)", "performanceSw": "Optimize Performance", "networkSw": "Optimizer Network", "defenderSw": "Disable Windows Defender", "systemRestoreSw": "Disable System Restore", "printSw": "Disable Print Service", "mediaSharingSw": "Disable Media Player Sharing", "faxSw": "Disable Fax Service", "reportingSw": "Disable Error Reporting", "homegroupSw": "Disable HomeGroup", "superfetchSw": "Disable Superfetch", "telemetryTasksSw": "Disable Telemetry Tasks", "officeTelemetrySw": "Disable Office Telemetry", "vsSW": "Disable Visual Studio Telemetry", "ffTelemetrySw": "Disable Mozilla Firefox Telemetry", "chromeTelemetrySw": "Disable Google Chrome Telemetry", "compatSw": "Disable Compatibility Assistant", "smartScreenSw": "Disable SmartScreen", "stickySw": "Disable Sticky Keys", "universalTab": "General", "modernAppsTab": "UWP Apps", "startupTab": "Startup", "appsTab": "Apps", "cleanerTab": "Cleaner", "pingerTab": "Network", "registryFixerTab": "Registry", "integratorTab": "Integrator", "CleanPreviewForm": "Clean Preview", "optionsTab": "Options", "oldMixerSw": "Enable Classic Volume Mixer", "oldExplorerSw": "Restore Classic File Explorer", "adsSw": "Disable Start Menu Ads", "uODSw": "Uninstall OneDrive", "peopleSw": "Disable My People", "longPathsSw": "Enable Long Paths", "autoUpdatesSw": "Disable Automatic Updates", "driversSw": "Exclude Drivers from Updates", "telemetryServicesSw": "Disable Telemetry Services", "privacySw": "Enhance Privacy", "ccSw": "Disable Cloud Clipboard", "cortanaSw": "Disable Cortana", "sensorSw": "Disable Sensor Services", "castSw": "Remove Cast to Device", "inkSw": "Disable Windows Ink", "spellSw": "Disable Spell Checking", "xboxSw": "Disable Xbox Live", "gameBarSw": "Disable Game Bar", "insiderSw": "Disable Insider Service", "actionSw": "Disable Notification Center", "disableOneDriveSw": "Disable OneDrive", "tpmSw": "Disable TPM Check", "leftTaskbarSw": "Align Taskbar to Left", "snapAssistSw": "Disable Snap Assist", "widgetsSw": "Disable Widgets", "chatSw": "Disable Chat", "smallerTaskbarSw": "Make Taskbar Smaller", "classicRibbonSw": "Enable Classic Ribbon in Explorer", "classicContextSw": "Enable Classic Right-Click Menu", "refreshModernAppsButton": "Refresh", "uninstallModernAppsButton": "Uninstall", "txtModernAppsTitle": "Uninstall unwanted UWP apps", "chkSelectAllModernApps": "Select all", "chkOnlyRemovable": "Only Uninstall-ables", "onedriveM": "Are you sure you want to uninstall OneDrive? This will delete your Desktop and Document files! Only use this option on a local account!", "startupTitle": "Choose your startup items", "removeStartupItemB": "Delete", "locateFileB": "Locate file", "findInRegB": "Find in Registry", "analyzeDriveB": "Analyze", "refreshStartupB": "Refresh", "restoreStartupB": "Restore", "backupStartupB": "Backup", "lblBackupTitle": "Backup title:", "doBackup": "OK", "cancelBackup": "Cancel", "startupItemName": "Name", "startupItemLocation": "Location", "startupItemType": "Type", "txtFeedError": "No internet connection, try refreshing links again", "appsTitle": "Quickly download && install useful apps", "btnGetFeed": "Refresh links", "bitPref": "Set bit preference", "linkWarnings": "See warnings", "txtDownloadStatus": "Idle", "goToDownloadsB": "Go to Downloads", "btnDownloadApps": "Download", "cAutoInstall": "Install after downloading", "setDownDirLbl": "Set download folder", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Select all", "checkTemp": "Temporary files", "checkLogs": "Windows logs", "checkMiniDumps": "BSOD minidumps", "checkBin": "Empty Recycle Bin", "checkMediaCache": "Media Player cache", "checkErrorReports": "Error reports", "cleanDriveB": "Clean", "lblPretext": "Maximum size to be freed:", "cleanerTitle": "Clean up your system drive", "pingerTitle": "Ping IP addresses and assess your latency", "lblPinger": "IP / Domain name", "btnOpenNetwork": "Open Network Connections", "copyIPB": "Copy", "copyB": "Copy IP", "btnShodan": "Check on SHODAN.io", "btnPing": "Ping", "lblResults": "Results", "flushCacheB": "Flush DNS cache", "btnExport": "Export", "hostsTitle": "Edit your hosts file efficiently", "linkLocate": "Locate", "linkAdvancedEdit": "Advanced editor", "linkRestoreDefault": "Restore default", "lblIP": "IP address", "lblDomain": "Domain", "chkBlock": "Block", "addHostB": "Add", "lblLock": "Protect your HOSTS file by locking it", "chkReadOnly": "Read-only", "lblAdblock": "Pre-made adblocks", "lblAdblockSub": "(will delete your current config)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Delete", "refreshHostsB": "Refresh", "removeAllHostsB": "Delete all", "regFixB": "Fix", "regLbl": "(some changes might need this)", "checkRestartExplorer": "Also restart Explorer to apply changes", "checkRegistryEditor": "Registry Editor", "checkFirewall": "Windows Firewall", "checkContextMenu": "Right Click menu", "checkRunDialog": "Run Dialog", "checkFolderOptions": "Folder Options", "checkControlPanel": "Control Panel", "checkCommandPrompt": "Command Prompt", "checkTaskManager": "Task Manager", "checkEnableAll": "Enable all", "registryTitle": "Fix common registry issues", "quickAccessToggle": "Show Quick Access Menu", "helpTipsToggle": "Show Help Messages", "lblTheming": "Choose your theme", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Check && update", "btnUpdate": "Check for update", "btnChangelog": "View changes", "lblUpdateDisabled": "Disabled in experimental builds", "lblTroubleshoot": "Troubleshooting", "btnViewLog": "View errors", "btnOpenConf": "Show configuration folder", "btnResetConfig": "Repair", "integrator1": "Integrator is able to add fully-customized\nitems in Desktop right-click menu:", "integrator2": "• Any program", "integrator3": "• Shortcuts to folders", "integrator4": "• Links to web", "integrator5": "• Any type of file", "integrator6": "• Commands", "integrator7": "Items can have custom icons and position.\nThey can also be hidden,accessible only\nby pressing the SHIFT key.\nIt can also create custom commands\nfor Run Dialog, making it easy to launch\nany application only by typing your desired keyword.", "integratorInfoTab": "Info", "tabPage8": "Add/Modify", "tabPage9": "Delete", "tabPage10": "Ready Menus", "tabPage11": "Run Dialog", "addItemL": "Add or modify an item", "itemtype": "Item Type", "radioProgram": "Program", "radioFolder": "Folder", "radioLink": "Link", "radioFile": "File", "radioCommand": "Command", "itemtoaddgroup": "Program to add", "folderToAdd": "Folder to add", "linkToAdd": "Link to add", "fileToAdd": "File to add", "commandToAdd": "Command to add", "icontoaddgroup": "Icon to add", "checkDefaultIcon": "Use program's icon", "checkDefaultFolderIcon": "Use default folder icon", "checkFavicon": "Download website icon (favicon)", "checkNoIcon": "No icon", "dnsCacheM": "DNS Cache is being generated, try again later!", "itemposition": "Item position", "radioTop": "Top", "radioMiddle": "Middle", "radioBottom": "Bottom", "security": "Security", "checkShift": "Show only when SHIFT is pressed", "itemnamegroup": "Item name in menu", "btnAddItem": "Add/Modify", "removeIntegratorItemsL": "Delete existing Desktop items", "removeDIB": "Delete", "refreshIIB": "Refresh", "removeAllIIB": "Delete all", "PMB": "Add Power Menu", "STB": "Add System Tools", "WAB": "Add Windows Apps", "SSB": "Add System Shortcuts", "DSB": "Add Desktop Shortcuts", "AddOwnerB": "Add 'Take Ownership'", "RemoveOwnerB": "Delete 'Take Ownership'", "AddCMDB": "Add 'Open with CMD'", "DeleteCMDB": "Delete 'Open with CMD'", "readyMenusL": "Add useful, pre-made menus", "refreshCCB": "Refresh", "removeCCB": "Delete", "removeCCL": "Delete existing commands", "btnCreateCustomCommand": "Create", "ccKeywordL": "keyword", "ccFileL": "File location", "ccL": "Define your custom Run commands", "btnYes": "Yes", "btnNo": "No", "btnOk": "OK", "HostsEditorForm": "Hosts Editor", "savebtn": "Save", "closebtn": "Close", "adminMissingMsg": "Optimizer needs to be run as administrator!\nApp will now close...", "unsupportedMsg": "Optimizer works with Windows 7 and higher!\nApp will now close...", "confInvalidVersionMsg": "Windows version does not match!", "confInvalidFormatMsg": "Config file is in invalid format!", "confNotFoundMsg": "Config file does not exist!", "argInvalidMsg": "Invalid argument! Example: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer is already running in the background!", "StartupPreviewForm": "Startup Items Preview", "StartupRestoreForm": "Restore Startup Items", "backupL": "Recover your startup items", "txtNoBackups": "No backups found", "previewBackupB": "Preview", "restoreBackupB": "Restore", "deleteBackupB": "Delete", "noNewVersion": "You already have the latest version!", "betaVersion": "You are using an experimental version!", "removeAllStartup": "Are you sure you want to delete all startup items?", "removeAllHosts": "Are you sure you want to delete all hosts entries?", "removeAllItems": "Are you sure you want to delete all desktop items?", "removeModernApps": "Are you sure you want to uninstall the following app(s)?", "errorModernApps": "The following app(s) couldn't be uninstalled:\n", "latestVersionM": "Latest version: {LATEST}", "currentVersionM": "Current version: {CURRENT}", "resetMessage": "App will exit and try to repair itself.", "newVersion": "There is a new version available! Do you want to download it now?\nApp will restart in a few seconds.", "flushDNSMessage": "Are you sure you wish to flush the DNS cache of Windows?\n\nThis will cause internet disconnection for a moment and it may be needed a restart to function properly.", "downloadsFinished": "Finished", "downloadDirInvalid": "Download folder specified is not valid", "no64Download": "No 64-bit available, downloading 32-bit", "no32Download": "No 32-bit available, skipping", "installing": "Installing", "linkInvalid": "Link is no longer valid", "noErrorsM": "There are no errors to show!", "hostNotFound": "Could not find host", "pinging": "Pinging with 32 bytes - 9 times...", "latency": "LATENCY", "lblSystemTools": "System && Tools", "lblInternet": "Internet", "lblCoding": "Coding", "lblVideoSound": "Video && Sound", "min": "Min", "max": "Max", "avg": "Average", "timeout": "Request timed out", "languagesL": "Choose language", "trayStartup": "Startup Manager", "trayCleaner": "Drive Cleaner", "trayPinger": "Network", "trayHosts": "HOSTS Editor", "trayAD": "Apps Downloader", "trayOptions": "Options", "trayRegistry": "Registry Repair", "trayRestartExplorer": "Restart Explorer", "trayExit": "Exit", "tipWhatsThis": "What's this?", "hwDetailed": "Detailed View", "btnCopyHW": "Copy", "btnSaveHW": "Save", "indiciumTab": "Hardware", "toolHWCopy": "Copy", "toolHWGoogle": "Search with Google", "toolHWDuck": "Search with DuckDuckGo", "trayHW": "Hardware Information", "os": "Operating System", "cpu": "Processors", "ram": "Memory", "gpu": "Graphics", "mobo": "Motherboards", "disk": "Storage", "inet": "Network Adapters", "audio": "Audio", "dev": "Peripherals", "vm": "Virtual Memory", "drives": "Disk Drives", "volumes": "Partitions", "opticals": "Optical Drives", "removables": "Removable Drives", "physicalAdapters": "Physical Adapters", "virtualAdapters": "Virtual Adapters", "keyboards": "Keyboards", "pointings": "Pointing Devices", "performanceTip": "Collection of internal Windows settings to optimize performance. Completely safe to apply. - Reduces waiting time before killing unresponsive processes. - Decreases menu show delay time. - Disables low disk space check notification - Disables shake-to-minimize feature - Always shows file extensions - Shows hidden files", "networkTip": "Windows implements a network throttling mechanism that will restrict network traffic when running multimedia apps. It can also reduce network's performance when playing online games.", "defenderTip": "Windows Defender is the built-in antivirus in Windows systems.", "smartScreenTip": "SmartScreen automatically scans files, downloads and websites, blocking already-known dangerous content and warns you before running them.", "systemRestoreTip": "System Restore is a feature that allows to revert Windows' state to a previous one to recover from malfunctions or other problems.", "reportingTip": "Error Reporting collects application crashes and errors and send them to Microsoft.", "telemetryTasksTip": "Telemetry services periodically sends usage and performance data to Microsoft, for future improvement.", "officeTelemetryTip": "Office telemetry periodically sends usage and performance data to Microsoft, for future improvement.", "ffTelemetryTip": "Disables Mozilla Firefox telemetry and data reporting services.", "vsTip": "Disables Visual Studio telemetry and feedback features, including SQM client.", "chromeTelemetryTip": "Disables Google Chrome telemetry and software reporting tool (famously known to cause high CPU usage).", "printTip": "Print service is responsible for detecting, installing and utilizing printers.", "faxTip": "Fax service is responsible for sending and receiving faxes.", "mediaSharingTip": "Media Player Sharing provides home media sharing for Windows Media Player.", "stickyTip": "Sticky Keys is an accessibility feature to help Windows users with physical disabilities reducing the sort of movement associated with repetitive strain injury.", "homegroupTip": "HomeGroup is a feature which allows to share files on a home network using Windows Explorer.", "superfetchTip": "Superfetch preloads commonly used apps to RAM, causing high disk usage, especially on HDDs.", "compatTip": "Compatibility Assistant service detects known compatibility issues in older programs.", "disableOneDriveTip": "Disables OneDrive cloud-storage integration.", "oldMixerTip": "Restores the classic volume mixer control panel.", "oldExplorerTip": "- Disables Quick Access history - Sets File Explorer default view to This PC - Disables recents files - Removes Search, Task and Weather from taskbar - Disables File History", "adsTip": "Prevents advertisements from showing up in Start Menu.", "uODTip": "Completely removes OneDrive cloud-storage integration.", "peopleTip": "My People is a new feature showing recent contacts in taskbar.", "longPathsTip": "Removes maximum path length limitation of 256 characters.", "inkTip": "Windows Ink provides support for digital pens, to draw on screen.", "spellTip": "Touch-keyboard only features like: - Auto-correction - Text suggestions - Spell-check", "xboxTip": "Xbox Live services offer streaming, recording and social features for Xbox games.", "actionTip": "Notification Center is a central place for notifications and quick action tiles, like Wi-Fi, Bluetooth, etc.", "autoUpdatesTip": "Disables automatic downloading and installation of Windows updates. Instead, there is a notification when new updates are available. It also disables Delivery Optimization service.", "driversTip": "Useful when Windows Update constantly replaces a properly working driver with a faulty one.", "telemetryServicesTip": "Telemetry services track and log usage data sending feedback for analysis to Microsoft.", "privacyTip": "Extra privacy tweaks disabling the following: - Biometrics - Geolocation - Share apps across devices - Text logger - Diagnostics", "ccTip": "Cloud Clipboard shares clipboard data across your devices. It allows to copy on one device and paste on another. Requires Microsoft account sign-in.", "cortanaTip": "Cortana is a virtual AI-based assistant. - Disables Cortana. - Disables web search in Start Menu - Prevents from keeping search history", "sensorTip": "Services that manage sensors' functionality, like auto-rotation, auto-brightness, etc. Useful only for tablets or devices with touch-screen.", "castTip": "Removes right-click to share media content to Miracast devices.", "gameBarTip": "Game Bar is a quick-access menu for Xbox gaming services.", "insiderTip": "Windows Insider program allows you to test out latest features before they are released to public. It's considered an unnecessary service for users who don't wish to participate.", "storeUpdatesSw": "Disable Microsoft Store Updates", "storeUpdatesTip": "Disables Microsoft Store automatic updates functionality.", "tpmTip": "Bypasses Secure Boot and TPM 2.0 requirements, allowing the upgrading to Windows 11.", "leftTaskbarTip": "Aligns taskbar icons to the left.", "snapAssistTip": "Disables Snap Assist Flyout when hovering maximize buttons.", "widgetsTip": "Disables Widgets feature and removes Widgets icon from taskbar.", "chatTip": "Removes Chat icon from taskbar.", "smallerTaskbarTip": "Makes taskbar size and icons smaller.", "classicRibbonTip": "Restores classic ribbon bar from Windows 10 in File Explorer.", "classicContextTip": "Restores classic right-click menu, removing 'Show more options'.", "gameModeSw": "Enable Gaming Mode", "gameModeTip": "Enables Gaming mode in combination with hardware accelerated GPU scheduling.", "systemRestoreM": "Are you sure you want to disable System Restore? This will delete your current backup images!", "compactModeSw": "Enable Compact Mode in Explorer", "compactModeTip": "Reduces extra space and padding between the files in Files Explorer.", "stickersTip": "Stickers are large emojis that appear on wallpapers, being used in social messengers.", "hibernateSw": "Disable Hibernation", "hibernateTip": "Disables Windows hibernate feature.", "smb1Sw": "Disable SMBv1 Protocol", "smb2Sw": "Disable SMBv2 Protocol", "smbTip": "SMB{v} protocol is responsible for file-sharing between Windows computers. It has been replaced with SMBv3, which is more secure.", "ntfsStampSw": "Disable NTFS Timestamp", "ntfsStampTip": "Indicates the file's last time accessed stamp. Disabling it can reduce I/O operations on the disks.", "autoStartToggle": "Start with Windows", "nvidiaTelemetrySw": "Disable NVIDIA Telemetry", "dnsTitle": "Rapidly change DNS server", "vbsSw": "Disable Virtualization Based Security", "vbsTip": "Kernel feature that prevents malicious drivers injection into processes. It has negative effect on performance.", "winSearchSw": "Disable Search Indexing", "winSearchTip": "Disables Windows search service.", "btnRestoreUwp": "Restore all UWP", "restoreUwpMessage": "Are you sure you want to do this?", "telemetrySvcToggle": "Disable Optimizer Insights", "edgeAiSw": "Disable Edge Discover", "edgeTelemetrySw": "Disable Edge Telemetry", "edgeAiTip": "Removes Discover Bar in Edge.", "edgeTelemetryTip": "Disables SmartScreen, Spotlight and Telemetry services in Edge.", "hpetSw": "Disable HPET", "loginVerboseSw": "Enable Detailed Login Screen", "advancedTab": "Advanced", "btnRestartSafe": "Restart in Safe Mode", "btnRestart": "Restart in Normal Mode", "btnRestartDisableDefender": "Restart && Disable Defender", "classicPhotoViewerSw": "Restore Classic Photo Viewer", "tabPage3": "Fonts", "fontSetTitle": "Set your favorite font as Windows default font", "label11": "Current font:", "btnSetGlobalFont": "Set as default", "lblFontsCount": "Available fonts:", "btnRestoreFont": "Restore default", "btnRefreshFonts": "Refresh", "chkAllNics": "Set for all network adapters", "chkCustomDns": "Set custom DNS", "btnSetDns": "Set DNS", "copilotSw": "Disable CoPilot AI", "copilotTip": "Completely turns off CoPilot AI feature.", "btnReinforce": "Reinforce policies", "msgReinforce": "Are you sure you want to re-apply your current active policies?", "newsInterestsSw": "Disable News && Interests", "allTrayIconsSw": "Show all notification icons", "noMenuDelaySw": "Remove menus delay", "hideSearchSw": "Hide Taskbar Search", "hideWeatherSw": "Hide Taskbar Weather", "autoUpdateToggle": "Update on launch", "modernStandbySw": "Disable Modern Standby", "enableUtcSw": "Enable UTC Time", "label24": "System Variables editor", "label23": "New system variable path:", "button3": "Add", "label21": "System Variables", "button1": "Delete", "button2": "Refresh", "regBackupSw": "Enable Registry Backups" } ================================================ FILE: Optimizer/Resources/i18n/ES.json ================================================ { "subSystem": "Sistema", "subPrivacy": "Privacidad", "subGaming": "Juego de azar", "subTouch": "Tocar", "subTaskbar": "Barra de tareas", "subExtras": "Extras", "btnAbout": "OK", "regBackupSw": "Habilitar copias de seguridad del registro", "restartButton": "Reiniciar ahora", "restartButton8": "Reiniciar ahora", "restartButton10": "Reiniciar ahora", "btnFind": "Encontrar", "btnKill": "Matar", "trayUnlocker": "Asas de archivo", "restartAndApply": "Reiniciar para aplicar cambios", "onedriveM": "¿Seguro que quieres desinstalar OneDrive? ¡Esto eliminará sus archivos de escritorio y documentos! ¡Use esta opción solo en una cuenta local!", "txtVersion": "Versión: {VN}", "systemRestoreM": "¿Está seguro de que desea deshabilitar Restaurar sistema? ¡Esto eliminará sus imágenes de respaldo actuales!", "txtBitness": "Sistema de {BITS}", "linkUpdate": "Actualización disponible", "lblLab": "Lanzamiento experimental\n(eliminar después de la prueba)", "CleanPreviewForm": "Vista Previa Limpia", "performanceSw": "Habilitar ajustes de rendimiento", "networkSw": "Deshabilitar la limitación de la red", "defenderSw": "Deshabilitar Windows Defender ⚠️", "systemRestoreSw": "Deshabilitar Restaurar sistema", "printSw": "Deshabilitar Servicio de impresión", "mediaSharingSw": "Desactivar Media Player Sharing", "faxSw": "Desactivar Servicio de Fax", "reportingSw": "Deshabilitar el informe de errores", "homegroupSw": "Desactivar grupo de hogar", "superfetchSw": "Desactivar Superfetch", "telemetryTasksSw": "Deshabilitar tareas de telemetría", "officeTelemetrySw": "Deshabilitar la telemetría de Office", "vsSW": "Deshabilitar la telemetría de Visual Studio", "ffTelemetrySw": "Deshabilitar la telemetría de Mozilla Firefox", "chromeTelemetrySw": "Deshabilitar la telemetría de Google Chrome", "compatSw": "Desactivar Asistente de compatibilidad", "smartScreenSw": "Desactivar SmartScreen", "analyzeDriveB": "Analizar", "stickySw": "Desactivar teclas adhesivas", "universalTab": "Universal", "modernAppsTab": "Apps UWP", "startupTab": "Inicio", "appsTab": "Apps Comunes", "cleanerTab": "Limpiador", "pingerTab": "Pinger", "registryFixerTab": "Registro", "integratorTab": "Integrador", "optionsTab": "Opciones", "oldMixerSw": "Habilitar el mezclador de volumen clásico", "oldExplorerSw": "Desactivar el historial de acceso rápido", "adsSw": "Deshabilitar los anuncios del menú de inicio", "uODSw": "Desinstalar OneDrive", "peopleSw": "Desactivar My People", "longPathsSw": "Habilitar rutas largas", "autoUpdatesSw": "Desactivar actualizaciones automáticas", "driversSw": "Excluir Drivers de actualizaciones", "telemetryServicesSw": "Deshabilitar los servicios de telemetría", "privacySw": "Mejorar la privacidad", "ccSw": "Deshabilitar el Portapapeles Cloud", "cortanaSw": "Deshabilitar Cortana", "sensorSw": "Deshabilitar los servicios de sensor", "castSw": "Quitar Transmitir al dispositivo", "inkSw": "Deshabilitar Windows Ink", "spellSw": "Desactivar la revisión ortográfica", "xboxSw": "Desactivar Xbox Live", "gameBarSw": "Desactivar Game Bar", "insiderSw": "Deshabilitar el servicio de información privilegiada", "actionSw": "Deshabilitar Notification Center", "disableOneDriveSw": "Deshabilitar OneDrive", "tpmSw": "Deshabilitar la verificación de TPM 2.0", "leftTaskbarSw": "Alinear la barra de tareas a la izquierda", "snapAssistSw": "Desactivar la función Snap Assist", "widgetsSw": "Desactivar widgets", "chatSw": "Desactivar chat", "smallerTaskbarSw": "Reducir el tamaño de la barra de tareas", "classicRibbonSw": "Habilitar la cinta clásica en el Explorador", "classicContextSw": "Habilitar el menú de clic derecho clásico", "refreshModernAppsButton": "Actualizar", "uninstallModernAppsButton": "Desinstalar", "txtModernAppsTitle": "Desinstalar UWP apps no deseadas", "chkSelectAllModernApps": "Seleccionar todo", "chkOnlyRemovable": "Solo desinstalables", "flushDNSMessage": "¿Está seguro de que desea vaciar la caché DNS de Windows?\n\nEsto causará la desconexión de Internet por un momento y puede ser necesario un reinicio para que funcione correctamente.", "startupTitle": "Elija sus elementos de inicio", "removeStartupItemB": "Borrar", "locateFileB": "Localizar el archivo", "findInRegB": "Buscar en el registro", "refreshStartupB": "Actualizar", "restoreStartupB": "Restaurar", "backupStartupB": "Backup", "lblBackupTitle": "Backup título:", "doBackup": "OK", "cancelBackup": "Cancelar", "startupItemName": "Nombre", "startupItemLocation": "Localización", "startupItemType": "Tipo", "txtFeedError": "No hay conexión a Internet, intente actualizar los enlaces nuevamente", "appsTitle": "Descargue e instale rápidamente aplicaciones útiles", "btnGetFeed": "Actualizar enlaces", "bitPref": "Preferencia de bits", "linkWarnings": "Ver advertencias", "txtDownloadStatus": "Idle", "goToDownloadsB": "Ir a Descargas", "btnDownloadApps": "Descargar", "cAutoInstall": "Instalar después de descargar", "setDownDirLbl": "Establecer carpeta de descarga", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Seleccionar todo", "checkTemp": "Archivos temporales", "checkLogs": "Windows logs", "checkMiniDumps": "BSOD minidumps", "checkBin": "Vaciar papelera de reciclaje", "checkMediaCache": "Media Player cache", "checkErrorReports": "Informes de error", "cleanDriveB": "Limpio", "lblPretext": "Tamaño para ser liberado:", "cleanerTitle": "Limpia la unidad de tu sistema", "pingerTitle": "Haga ping a las IPs y evalúe su latencia", "lblPinger": "IP / Domain name", "btnOpenNetwork": "Conexiones de red abiertas", "copyIPB": "Copiar", "copyB": "Copiar IP", "btnShodan": "Verificar en SHODAN.io", "btnPing": "Ping", "lblResults": "Resultados", "flushCacheB": "Flush DNS cache", "btnExport": "Exportar", "hostsTitle": "Edite su archivo de hosts de manera eficiente", "linkLocate": "Localizar", "linkAdvancedEdit": "Editor avanzado", "linkRestoreDefault": "Restaurar predeterminado", "lblIP": "IP", "lblDomain": "Dominio", "chkBlock": "Bloquear", "addHostB": "Agregar", "lblLock": "Proteja su archivo HOSTS bloqueándolo", "chkReadOnly": "Solo lectura", "lblAdblock": "Bloques de anuncios prediseñados", "lblAdblockSub": "(eliminará su configuración actual)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Eliminar", "refreshHostsB": "Actualizar", "removeAllHostsB": "Eliminar todos", "regFixB": "Fix", "regLbl": "(Algunos cambios pueden necesitar esto)", "checkRestartExplorer": "También reinicie Explorer para aplicar cambios", "checkRegistryEditor": "Editor de registro", "checkFirewall": "Windows Firewall", "checkContextMenu": "Menú de clic derecho", "checkRunDialog": "Ejecutar diálogo", "checkFolderOptions": "Opciones de carpeta", "checkControlPanel": "Panel de Control", "checkCommandPrompt": "Símbolo del sistema", "checkTaskManager": "Administrador de tareas", "checkEnableAll": "Permitirlos todos", "registryTitle": "Solucionar problemas de registro comunes", "quickAccessToggle": "Mostrar menú de acceso rápido", "helpTipsToggle": "Mostrar mensajes de ayuda", "lblTheming": "Elige tu tema", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Comprueba la actualización", "btnUpdate": "Buscar actualizaciones", "btnChangelog": "Ver cambios", "lblUpdateDisabled": "Discapacitado en construcciones experimentales", "lblTroubleshoot": "Solución de problemas", "btnViewLog": "Ver errores", "btnOpenConf": "Mostrar carpeta de configuración", "btnResetConfig": "Reparar", "integrator1": "El integrador puede agregar\nelementos en el menú contextual del escritorio:", "integrator2": "• Cualquier programa", "integrator3": "• Accesos directos a carpetas", "integrator4": "• Enlaces a la web", "integrator5": "• Cualquier tipo de archivo", "integrator6": "• Comandos", "integrator7": "Los elementos pueden tener iconos y posiciones personalizados.\nTambién pueden estar ocultos, solo accesibles\npresionando la tecla MAYÚS.\nTambién puede crear comandos personalizados\npara Run Dialog, lo que facilita el inicio\ncualquier aplicación solo escribiendo la palabra clave deseada.", "integratorInfoTab": "Info", "tabPage8": "Agregar/Modificar", "tabPage9": "Borrar", "tabPage10": "Menús listos", "tabPage11": "Ejecutar diálogo", "addItemL": "Agregar o modificar un artículo", "itemtype": "Tipo de artículo", "radioProgram": "Programa", "radioFolder": "Carpeta", "radioLink": "Enlace", "radioFile": "Archivo", "radioCommand": "Comando", "itemtoaddgroup": "Programa para agregar", "folderToAdd": "Carpeta para agregar", "linkToAdd": "Enlace para agregar", "fileToAdd": "Archivo para agregar", "commandToAdd": "Comando para agregar", "icontoaddgroup": "Icono para agregar", "checkDefaultIcon": "Usar el icono del programa", "checkDefaultFolderIcon": "Usar el icono de carpeta predeterminado", "checkFavicon": "Descargar el icono del sitio web (favicon)", "checkNoIcon": "Sin icono", "dnsCacheM": "Se está generando la caché de DNS. Vuelve a intentarlo más tarde.", "itemposition": "Posición del artículo", "radioTop": "Superior", "radioMiddle": "Medio", "radioBottom": "Inferior", "security": "Seguridad", "checkShift": "Mostrar solo cuando se presiona SHIFT", "itemnamegroup": "Nombre del elemento en el menú", "btnAddItem": "Agregar/Modificar", "removeIntegratorItemsL": "Eliminar elementos de escritorio existentes", "removeDIB": "Borrar", "refreshIIB": "Actualizar", "removeAllIIB": "Eliminar todos", "PMB": "Agregar menú de energía", "STB": "Agregar herramientas del sistema", "WAB": "Agregar aplicaciones de Windows", "SSB": "Agregar accesos directos al sistema", "DSB": "Agregar accesos directos al escritorio", "AddOwnerB": "Agregar Take Ownership", "RemoveOwnerB": "Eliminar Take Ownership", "AddCMDB": "Agregar Abrir con CMD", "DeleteCMDB": "Eliminar Abrir con CMD", "readyMenusL": "Agregue menús útiles y prefabricados", "refreshCCB": "Actualizar", "removeCCB": "Borrar", "removeCCL": "Eliminar comandos existentes", "btnCreateCustomCommand": "Crear", "ccKeywordL": "Palabra clave", "ccFileL": "Ubicación del archivo", "ccL": "Defina sus comandos de ejecución personalizados", "btnYes": "Si", "btnNo": "No", "btnOk": "OK", "HostsEditorForm": "Editor de hosts", "savebtn": "Guardar", "closebtn": "Cerrar", "alreadyRunningMsg": "¡Optimizer ya se está ejecutando en segundo plano!", "adminMissingMsg": "¡Optimizer debe ejecutarse como administrador!\nLa aplicación ahora se cerrará...", "unsupportedMsg": "¡Optimizador funciona en Windows 7 o superior!\nLa aplicación ahora se cerrará...", "confInvalidVersionMsg": "¡La versión de Windows no coincide!", "confInvalidFormatMsg": "El archivo de configuración tiene un formato no válido.", "confNotFoundMsg": "¡El archivo de configuración no existe!", "argInvalidMsg": "¡Argumento no válido! Ejemplo: Optimizer.exe /template.json", "StartupPreviewForm": "Vista previa de elementos de inicio", "StartupRestoreForm": "Restaurar elementos de inicio", "backupL": "Recupera tus elementos de inicio", "txtNoBackups": "No se encontraron copias de seguridad", "previewBackupB": "Vista Previa", "restoreBackupB": "Restaurar", "deleteBackupB": "Borrar", "noNewVersion": "¡Ya tienes la última versión!", "betaVersion": "¡Estás usando una versión experimental!", "removeAllStartup": "¿Está seguro de que quieres eliminar todos los elementos de inicio?", "removeAllHosts": "¿Está seguro de que desea eliminar todas las entradas de hosts?", "removeAllItems": "¿Está seguro de que desea eliminar todos los elementos del escritorio?", "removeModernApps": "¿Está seguro de que desea desinstalar las siguientes aplicaciones?", "errorModernApps": "No se pudieron desinstalar la(s) siguientes aplicaciones:\n", "resetMessage": "La aplicación se cerrará e intentará repararse sola.", "newVersion": "¡Hay una nueva versión disponible! ¿Quieres descargarlo ahora?\nLa aplicación se reiniciará en unos segundos.", "downloadsFinished": "Terminado", "latestVersionM": "Ultima versión: {LATEST}", "currentVersionM": "Versión actual: {CURRENT}", "downloadDirInvalid": "La carpeta de descarga especificada no es válida", "no64Download": "No hay 64 bits disponibles, descargando 32 bits", "no32Download": "No hay 32 bits disponibles, omitiendo", "installing": "Instalando", "linkInvalid": "El enlace ya no es válido", "noErrorsM": "¡No hay errores para mostrar!", "hostNotFound": "No se pudo encontrar el host", "pinging": "Haciendo ping con 32 bytes - 9 veces...", "latency": "LATENCIA", "lblSystemTools": "Herramientas de sistema", "lblInternet": "Internet", "lblCoding": "Codificación", "lblVideoSound": "Sonido && Video", "min": "Min", "max": "Max", "avg": "Promedio", "timeout": "Tiempo de espera agotado", "languagesL": "Cambiar idioma", "trayStartup": "Administrador de inicio", "trayCleaner": "Limpiador de impulsión", "trayPinger": "Herramienta Pinger", "trayHosts": "Anfitrión Editor", "trayAD": "Descargador de aplicaciones", "trayOptions": "Opción", "trayRegistry": "Reparar el registro", "trayRestartExplorer": "Reiniciar el explorador", "trayExit": "Salir", "tipWhatsThis": "¿Qué es esto?", "hwDetailed": "Vista detallada", "btnCopyHW": "Copiar", "btnSaveHW": "Guardar", "indiciumTab": "Hardware", "toolHWCopy": "Dupdo", "toolHWGoogle": "Búsqueda Google", "toolHWDuck": "Búsqueda DuckDuckGo", "trayHW": "Hardware", "os": "Sistema operativo", "cpu": "Procesadores", "ram": "Memoria", "gpu": "Gráficos", "mobo": "Placas Base", "disk": "Almacenamiento", "inet": "Adaptadores de red", "audio": "Audio", "dev": "Periféricos", "vm": "Memoria virtual", "drives": "Discos", "volumes": "Particiones", "opticals": "Unidades ópticas", "removables": "Discos extraíbles", "physicalAdapters": "Adaptadores físicos", "virtualAdapters": "Adaptadores virtuales", "keyboards": "Teclados", "pointings": "Dispositivos señaladores", "performanceTip": "Colección de configuraciones internas de Windows para optimizar el rendimiento. Completamente seguro de aplicar. - Reduce el tiempo de espera antes de matar los procesos que no responden. - Disminuye el tiempo de retardo de la presentación del menú. - Desactiva la notificación de verificación de espacio en disco bajo - Desactiva la función de agitar para minimizar - Siempre muestra extensiones de archivo - Muestra archivos ocultos", "networkTip": "Windows implementa un mecanismo de limitación de la red que restringirá tráfico de red al ejecutar aplicaciones multimedia. También puede reducir la red rendimiento al jugar juegos en línea.", "defenderTip": "Windows Defender es el antivirus integrado en los sistemas Windows.", "smartScreenTip": "SmartScreen analiza automáticamente archivos, descargas y sitios web, bloqueando contenido peligroso ya conocido y le advierte antes de ejecutarlos.", "systemRestoreTip": "Restaurar sistema es una función que permite revertir el estado de Windows a uno anterior para recuperarse de averías u otros problemas.", "reportingTip": "Error Reporting recopila fallos y errores de aplicaciones y los envía a Microsoft.", "telemetryTasksTip": "Los servicios de telemetría envían periódicamente datos de uso y rendimiento a Microsoft, para futuras mejoras.", "officeTelemetryTip": "La telemetría de Office envía periódicamente el uso y datos de rendimiento a Microsoft, para futuras mejoras.", "ffTelemetryTip": "Deshabilita los servicios de informes de datos y telemetría de Mozilla Firefox.", "vsTip": "Deshabilita las funciones de telemetría y comentarios de Visual Studio, incluido el cliente SQM.", "chromeTelemetryTip": "Deshabilita la herramienta de informes de software y telemetria de Google Chrome (famosamente conocido por causar un alto uso de la CPU).", "printTip": "El servicio de impresión es responsable de detectar, instalar y utilizar impresoras.", "faxTip": "El servicio de fax es responsable de enviar y recibir faxes.", "mediaSharingTip": "Media Player Sharing permite compartir medios domésticos para Windows Media Player.", "stickyTip": "Sticky Keys es una función de accesibilidad para ayudar a los usuarios de Windows con discapacidades físicas que reducen el tipo de movimiento asociado con Lesión por esfuerzo repetitivo.", "homegroupTip": "HomeGroup es una función que permite compartir archivos en una red doméstica usando el Explorador de Windows.", "superfetchTip": "Superfetch precarga las aplicaciones de uso común en la RAM, lo que provoca un alto uso del disco, especialmente en discos duros.", "compatTip": "El servicio Asistente de compatibilidad detecta problemas de compatibilidad conocidos en programas más antiguos.", "disableOneDriveTip": "Deshabilita la integración de almacenamiento en la nube de OneDrive.", "oldMixerTip": "Restaura el clásico panel de control del mezclador de volumen.", "oldExplorerTip": "Deshabilite el acceso rápido y elimine los archivos frecuentes en el Explorador de Windows.", "adsTip": "Evita que aparezcan anuncios en el menú Inicio.", "uODTip": "Elimina por completo la integración de almacenamiento en la nube de OneDrive.", "peopleTip": "Mi gente es una nueva función que muestra los contactos recientes en la barra de tareas.", "longPathsTip": "Elimina la limitación de la longitud máxima de la ruta de 256 caracteres.", "inkTip": "Windows Ink proporciona soporte para bolígrafos digitales para dibujar en la pantalla.", "spellTip": "Funciones exclusivas del teclado táctil como: - Autocorrección - Sugerencias de texto - Corrector ortográfico", "xboxTip": "Los servicios de Xbox Live ofrecen funciones de transmisión, grabación y redes sociales para los juegos de Xbox.", "actionTip": "El Centro de notificaciones es un lugar central para notificaciones y mosaicos de acción rápida, como Wi-Fi, Bluetooth, etc.", "autoUpdatesTip": "Desactive la descarga e instalación automáticas de actualizaciones de Windows. En cambio, hay una notificación cuando hay nuevas actualizaciones disponibles. También deshabilita el servicio Optimización de entrega.", "driversTip": "Útil cuando Windows Update reemplaza constantemente un conductor de trabajo con uno defectuoso.", "telemetryServicesTip": "Los servicios de telemetría rastrean y registran los datos de uso enviando comentarios para análisis a Microsoft.", "privacyTip": "Ajustes de privacidad adicionales que deshabilitan lo siguiente: - Biometría - Geolocalización - Comparte aplicaciones entre dispositivos - Registrador de texto - Diagnósticos", "ccTip": "Cloud Clipboard comparte los datos del portapapeles en todos sus dispositivos. Permite copiar en un dispositivo y pegar en otro. Requiere iniciar sesión con una cuenta de Microsoft.", "cortanaTip": "Cortana es un asistente virtual basado en IA. - Desactiva Cortana. - Desactiva la búsqueda web en el menú Inicio - Evita mantener el historial de búsqueda", "sensorTip": "Servicios que gestionan la funcionalidad de los sensores, como rotación automática, brillo automático, etc. Útil solo para tabletas o dispositivos con pantalla táctil.", "castTip": "Elimina el clic derecho para compartir contenido multimedia en dispositivos Miracast.", "gameBarTip": "Game Bar es un menú de acceso rápido para los servicios de juegos de Xbox.", "insiderTip": "El programa Windows Insider le permite probar las últimas funciones antes de que se publiquen. Se considera un servicio innecesario para los usuarios que no desean participar.", "tpmTip": "Omite los requisitos de arranque seguro y TPM 2.0, lo que permite la actualización a Windows 11.", "leftTaskbarTip": "Alinea los iconos de la barra de tareas a la izquierda.", "snapAssistTip": "Desactive el menú desplegable Asistente de ajuste al colocar el cursor sobre los botones de maximizar.", "widgetsTip": "Desactiva la función de widgets y elimina el icono de widgets de la barra de tareas.", "chatTip": "Elimina el icono de chat de la barra de tareas.", "smallerTaskbarTip": "Reduce el tamaño de la barra de tareas y los iconos.", "classicRibbonTip": "Restaura la barra de cinta clásica de Windows 10 en el Explorador de archivos.", "classicContextTip": "Restaura el menú clásico del botón derecho del ratón, eliminando 'Mostrar más opciones'.", "gameModeSw": "Habilitar modo de juego", "gameModeTip": "Habilita el modo de juego en combinación con la programación de GPU acelerada por hardware.", "compactModeSw": "Habilitar el modo compacto en Explorer", "compactModeTip": "Reduce el espacio adicional y el relleno entre los archivos en el Explorador de archivos.", "stickersTip": "Las pegatinas son emojis grandes que aparecen en los fondos de pantalla y se usan en los mensajeros sociales.", "hibernateSw": "Desactivar hibernación", "hibernateTip": "Desactiva la función de hibernación de Windows.", "smb1Sw": "Deshabilitar el protocolo SMBv1", "smb2Sw": "Deshabilitar el protocolo SMBv2", "smbTip": "El protocolo SMB{v} es responsable de compartir archivos entre computadoras con Windows. Ha sido reemplazado por SMBv3, que es más seguro.", "ntfsStampSw": "Deshabilitar marca de tiempo NTFS", "ntfsStampTip": "Indica la marca de la última vez que se accedió al archivo. Deshabilitarlo puede reducir las operaciones de E/S en los discos.", "autoStartToggle": "Comience con el Windows", "nvidiaTelemetrySw": "Deshabilitar la telemetría de NVIDIA", "dnsTitle": "Cambiar rápidamente el servidor DNS", "vbsSw": "Deshabilitar la seguridad basada en virtualización", "vbsTip": "Característica del kernel que evita la inyección de controladores maliciosos en los procesos. Tiene un efecto negativo en el rendimiento.", "winSearchSw": "Deshabilitar búsqueda", "winSearchTip": "Desactiva el servicio de búsqueda de Windows.", "storeUpdatesSw": "Deshabilitar las actualizaciones de la tienda de Microsoft", "storeUpdatesTip": "Deshabilita la funcionalidad de actualizaciones automáticas de Microsoft Store.", "btnRestoreUwp": "Restaurar todo UWP", "restoreUwpMessage": "¿Seguro que quieres hacer esto?", "telemetrySvcToggle": "Deshabilitar la telemetría del optimizador", "edgeAiSw": "Deshabilitar Edge Discover", "edgeTelemetrySw": "Desactivar telemetría perimetral", "edgeAiTip": "Elimina la barra Discover en Edge.", "edgeTelemetryTip": "Deshabilita los servicios SmartScreen, Spotlight y Telemetry en Edge.", "hpetSw": "Deshabilitar HPET", "loginVerboseSw": "Habilitar la pantalla de inicio de sesión detallada", "advancedTab": "Avanzado", "btnRestartSafe": "Reiniciar en modo seguro", "btnRestart": "Reiniciar en modo normal", "btnRestartDisableDefender": "Reiniciar && Desactivar Defender", "classicPhotoViewerSw": "Restaurar visor de fotos clásico", "tabPage3": "Fuentes", "fontSetTitle": "Establezca su fuente favorita como fuente predeterminada de Windows", "label11": "Fuente actual:", "btnSetGlobalFont": "Establecer como predeterminada", "lblFontsCount": "Fuentes disponibles:", "btnRestoreFont": "Restaurar predeterminado", "btnRefreshFonts": "Actualizar", "chkAllNics": "Configurado para todos los adaptadores de red.", "chkCustomDns": "Establecer DNS personalizado", "btnSetDns": "Establecer DNS", "copilotSw": "Desactivar CoPilot AI", "copilotTip": "Desactiva por completo la función de CoPilot AI.", "btnReinforce": "Reforzar Políticas", "msgReinforce": "¿Estás seguro de que deseas volver a aplicar tus políticas actuales?", "newsInterestsSw": "Desactivar noticias e intereses", "allTrayIconsSw": "Mostrar todos los iconos de notificación", "noMenuDelaySw": "Eliminar la demora de los menús", "hideSearchSw": "Ocultar búsqueda en la barra de tareas", "hideWeatherSw": "Ocultar el clima en la barra de tareas", "autoUpdateToggle": "Actualizar al inicio", "enableUtcSw": "Activar Hora UTC", "modernStandbySw": "Desactivar el modo de espera moderno", "label24": "Editor de variables del sistema", "label23": "Nueva ruta de variable del sistema:", "button3": "Añadir", "label21": "Variables del Sistema", "button1": "Eliminar", "button2": "Actualizar" } ================================================ FILE: Optimizer/Resources/i18n/FA.json ================================================ { "subSystem": "سیستم", "subPrivacy": "حریم خصوصی", "subGaming": "بازی", "subTouch": "لمس کردن", "subTaskbar": "نوار وظیفه", "subExtras": "موارد اضافی", "btnAbout": "تایید", "restartButton": "راه اندازی مجدد", "restartButton8": "راه اندازی مجدد", "restartButton10": "راه اندازی مجدد", "btnFind": "پیدا کردن", "btnKill": "کشتن", "regBackupSw": "فعال‌سازی پشتیبان‌گیری از رجیستری", "trayUnlocker": "دسته های فایل", "restartAndApply": "ریست برای اعمال تغییرات", "txtVersion": "نسخه: {VN}", "txtBitness": "شما کار میکنید با {BITS}", "linkUpdate": "بروزرسانی موجود است", "lblLab": "نسخه آزمایشی\n(بعد از تست حذف کنید)", "performanceSw": "بهینه سازی عملکرد", "networkSw": "بهینه سازی شبکه", "defenderSw": "غیرفعال کردن Windows Defender", "systemRestoreSw": "غیرفعال کردن System Restore", "printSw": "غیرفعال کردن Print Service", "mediaSharingSw": "غیرفعال کردن Media Player Sharing", "faxSw": "غیرفعال کردن Fax Service", "reportingSw": "غیرفعال کردن Error Reporting", "homegroupSw": "غیرفعال کردن HomeGroup", "superfetchSw": "غیرفعال کردن Superfetch", "telemetryTasksSw": "غیرفعال کردن Telemetry Tasks", "officeTelemetrySw": "غیرفعال کردن Office Telemetry", "vsSW": "غیرفعال کردن Visual Studio Telemetry", "ffTelemetrySw": "غیرفعال کردن Mozilla Firefox Telemetry", "chromeTelemetrySw": "غیرفعال کردن Google Chrome Telemetry", "compatSw": "غیرفعال کردن Compatibility Assistant", "smartScreenSw": "غیرفعال کردن SmartScreen", "stickySw": "غیرفعال کردن Sticky Keys", "universalTab": "عمومی", "modernAppsTab": "UWP نرم‌افزار های", "startupTab": "Startup", "appsTab": "نرم‌افزار ها", "cleanerTab": "پاک کننده", "pingerTab": "Pinger", "registryFixerTab": "Registry", "integratorTab": "یکپارچه ساز", "CleanPreviewForm": "پاک سازی پیش نمایش", "optionsTab": "تنظیمات", "oldMixerSw": "فعال کردن Volume Mixer قدیمی", "oldExplorerSw": "بازگرداندن File Explorer قدیمی", "adsSw": "غیرفعال کردن تبلیغات Start Menu", "uODSw": "حذف نصب OneDrive", "peopleSw": "غیرفعال کردن My People", "longPathsSw": "فعال کردن Long Paths", "autoUpdatesSw": "غیرفعال کردن بروزرسانی خودکار", "driversSw": "حذف بروزرسانی درایور ها", "telemetryServicesSw": "غیرفعال کردن Telemetry Services", "privacySw": "افزایش حریم خصوصی", "ccSw": "غیرفعال کردن Cloud Clipboard", "cortanaSw": "غیرفعال کردن Cortana", "sensorSw": "غیرفعال کردن Sensor Services", "castSw": "حذف Cast to Device", "inkSw": "غیرفعال کردن Windows Ink", "spellSw": "غیرفعال کردن بررسی املا", "xboxSw": "غیرفعال کردن Xbox Live", "gameBarSw": "غیرفعال کردن Game Bar", "insiderSw": "غیرفعال کردن سرویس های داخلی", "actionSw": "غیرفعال کردن Notification Center", "disableOneDriveSw": "غیرفعال کردن OneDrive", "tpmSw": "غیرفعال کردن TPM Check", "leftTaskbarSw": "تراز کردن نوار وظیفه به سمت چپ", "snapAssistSw": "غیرفعال کردن Snap Assist", "widgetsSw": "غیرفعال کردن Widgets", "chatSw": "غیرفعال کردن Chat", "smallerTaskbarSw": "کوچک کردن نوار وظیفه", "classicRibbonSw": "فعال کردن Ribbon قدیمی در Explorer", "classicContextSw": "فعال کردن منوی راست کلیک قدیمی", "refreshModernAppsButton": "بارگذاری مجدد", "uninstallModernAppsButton": "حذف نصب", "txtModernAppsTitle": "حذف نصب برنامه های ناخواسته UWP", "chkSelectAllModernApps": "انتخاب همه", "chkOnlyRemovable": "فقط قابل حذف ها", "onedriveM": "آیا مطمئن هستید که می خواهید OneDrive را حذف نصب کنید؟ با این کار فایل های Desktop و Document شما پاک می شوند! فقط از این گزینه در حساب محلی استفاده کنید!", "startupTitle": "آیتم های startup خود را انتخاب کنید", "removeStartupItemB": "حذف", "locateFileB": "پیدا کردن فایل", "findInRegB": "پیدا کردن در Registry", "analyzeDriveB": "آنالیز", "refreshStartupB": "بارگذاری مجدد", "restoreStartupB": "بازگرداندن", "backupStartupB": "پشتیبان گیری", "lblBackupTitle": "عنوان پشتیبان گیری:", "doBackup": "تایید", "cancelBackup": "انصراف", "startupItemName": "نام", "startupItemLocation": "مکان", "startupItemType": "نوع", "txtFeedError": "اتصال اینترنت وجود ندارد، دوباره لینک ها را بازخوانی کنید", "appsTitle": "دانلود سریع && نصب برنامه های مفید", "btnGetFeed": "بروز کردن لینک ها", "bitPref": "ترجیح بیت را تنظیم کنید", "linkWarnings": "دیدن اخطار ها", "txtDownloadStatus": "بیکار", "goToDownloadsB": "برو به دانلود ها", "btnDownloadApps": "دانلود", "cAutoInstall": "نصب بعد از دانلود", "setDownDirLbl": "انتخاب فولدر دانلود", "c64": "۶۴ بیتی", "c32": "۳۲ بیتی", "checkSelectAll": "انتخاب همه", "checkTemp": "فایل های موقت", "checkLogs": "گزارش های ویندوز", "checkMiniDumps": "BSOD minidumps", "checkBin": "خالی کردن سطل آشغال", "checkMediaCache": "حافطه نهان Media Player", "checkErrorReports": "گزارش خطاها", "cleanDriveB": "پاکسازی", "lblPretext": "حداکثر اندازه ای که آزاد میشود:", "cleanerTitle": "درایو سیستم خود را تمیز کنید", "pingerTitle": "آدرس های IP را پینگ کنید و تأخیر خود را ارزیابی کنید", "lblPinger": "آیپی / نام دامنه", "btnOpenNetwork": "بازکردن Network Connections", "copyIPB": "کپی", "copyB": "کپی IP", "btnShodan": "بررسی در SHODAN.io", "btnPing": "پینگ", "lblResults": "نتیجه ها", "flushCacheB": "پاک کردن حافظه پنهان DNS", "btnExport": "استخراج", "hostsTitle": "فایل هاست خود را به طور موثر ویرایش کنید", "linkLocate": "مکان یابی", "linkAdvancedEdit": "ویرایشگر پیشرفته", "linkRestoreDefault": "برگشت به حالت پیشفرض", "lblIP": "IP آدرس", "lblDomain": "دامنه", "chkBlock": "مسدود کردن", "addHostB": "افزودن", "lblLock": "با قفل کردن فایل HOSTS خود از آن محافظت کنید", "chkReadOnly": "فقط خواندنی", "lblAdblock": "بلوک های تبلیغاتی از پیش ساخته شده", "lblAdblockSub": "(پیکربندی فعلی شما را حذف می کند)", "adblockS": "مسدود کردن تبلیغات + شبکه های اجتماعی", "adblockP": "مسدود کردن تبلیغات + محتوای مستهجن", "removeHostB": "حذف", "refreshHostsB": "بارگذاری مجدد", "removeAllHostsB": "حذف همه", "regFixB": "تعمیر", "regLbl": "(برخی تغییرات ممکن است به این نیاز داشته باشند)", "checkRestartExplorer": "برای اعمال تغییرات، Explorer را مجددا راه اندازی کنید", "checkRegistryEditor": "Registry ویرایشگر", "checkFirewall": "فایروال ویندوز", "checkContextMenu": "منو راست کلیک", "checkRunDialog": "اجرا Dialog", "checkFolderOptions": "Folder Options", "checkControlPanel": "Control Panel", "checkCommandPrompt": "Command Prompt", "checkTaskManager": "Task Manager", "checkEnableAll": "فعال کردن همه", "registryTitle": "برطرف کردن مشکلات رایج Registry", "quickAccessToggle": "نمایش منو Quick Access", "helpTipsToggle": "نمایش پیام کمک", "lblTheming": "تم خود را انتخاب کنید", "radioOcean": "اقیانوس", "radioMagma": "ماگما", "radioZerg": "Zerg", "radioCaramel": "کارامل", "radioLime": "لیمویی", "radioMinimal": "ساده", "lblUpdating": "بررسی && بروزرسانی", "btnUpdate": "بررسی بروز رسانی", "btnChangelog": "دیدن تغییرات", "lblUpdateDisabled": "در نسخه ها آزمایشی غیرفعال است", "lblTroubleshoot": "عیب یابی", "btnViewLog": "دیدن خطاها", "btnOpenConf": "دیدن پوشه پیکربندی", "btnResetConfig": "تعمیر", "integrator1": "یکپارچه‌ساز می‌تواند آیتم‌های کاملاً سفارشی‌شده را در منوی کلیک راست دسک‌تاپ اضافه کند:", "integrator2": "• هر برنامه‌ای", "integrator3": "• میانبرهای پوشه ها", "integrator4": "• لینک ها به وب", "integrator5": "• هر نوع از فایلی", "integrator6": "• دستورات", "integrator7": "آیتم ها می توانند نمادها و موقعیت های سفارشی داشته باشند.\nآنها همچنین می توانند پنهان شوند، فقط در دسترس هستند\nبا فشار دادن کلید SHIFT.\nهمچنین می تواند دستورات سفارشی ایجاد کند\nبرای Run Dialog، راه اندازی آن را آسان می کند\nهر برنامه ای فقط با تایپ کلمه کلیدی مورد نظر خود.", "integratorInfoTab": "اطلاعات", "tabPage8": "افزودن/اصلاح", "tabPage9": "حذف", "tabPage10": "منوهای آماده", "tabPage11": "اجرای Dialog", "addItemL": "افزودن یا اصلاح یک آیتم", "itemtype": "نوع آیتم", "radioProgram": "برنامه", "radioFolder": "فولدر", "radioLink": "لینک", "radioFile": "فایل", "radioCommand": "دستور", "itemtoaddgroup": "برنامه برای اضافه کردن", "folderToAdd": "پوشه برای افزودن", "linkToAdd": "پیوند برای افزودن", "fileToAdd": "فایل برای افزودن", "commandToAdd": "افزودن دستور", "icontoaddgroup": "افزودن آیکون", "checkDefaultIcon": "استفاده از آیکون برنامه ها", "checkDefaultFolderIcon": "از پوشه پیش فرض استفاده شود", "checkFavicon": "دانلود آیکون وب سایت (favicon)", "checkNoIcon": "بدون آیکون", "dnsCacheM": "کش DNS در حال تولید است، بعداً دوباره امتحان کنید!", "itemposition": "مکان آیتم", "radioTop": "بالا", "radioMiddle": "وسط", "radioBottom": "پایین", "security": "امنیت", "checkShift": "فقط زمانی نمایش داده شود که SHIFT فشار داده شود", "itemnamegroup": "نام آیتم در منو", "btnAddItem": "افزودن/اصلاح", "removeIntegratorItemsL": "موارد موجود دسکتاپ را حذف کنید", "removeDIB": "حذف", "refreshIIB": "بارگیری مجدد", "removeAllIIB": "حذف همه", "PMB": "افزودن منو Power", "STB": "افزودن ابزار سیستم", "WAB": "افزودن برنامه های ویندوز", "SSB": "افزودن میانبر های سیستم", "DSB": "افزودن میانبر های دسکتاپ", "AddOwnerB": "افزودن 'Take Ownership'", "RemoveOwnerB": "حذف 'Take Ownership'", "AddCMDB": "افرودن 'Open with CMD'", "DeleteCMDB": "حذف 'Open with CMD'", "readyMenusL": "افزودن منوهای مفید و از پیش ساخته", "refreshCCB": "بارگذاری مجدد", "removeCCB": "حذف", "removeCCL": "حذف دستورات موجود", "btnCreateCustomCommand": "ایجاد", "ccKeywordL": "کلمه کلیدی", "ccFileL": "مکان فایل", "ccL": "دستورات Run سفارشی خود را تعریف کنید", "btnYes": "بله", "btnNo": "خیر", "btnOk": "تایید", "HostsEditorForm": "Hosts ویرایشگر", "savebtn": "ذخیره", "closebtn": "خروج", "adminMissingMsg": "Optimizer باید به عنوان مدیر اجرا شود!\nاکنون برنامه بسته می شود ...", "unsupportedMsg": "Optimizer با ویندوز 7 و بالاتر کار می کند!\nاکنون برنامه بسته می شود ...", "confInvalidVersionMsg": "نسخه ویندوز مطابقت ندارد!", "confInvalidFormatMsg": "فایل پیکربندی در قالب نامعتبر است!", "confNotFoundMsg": "فایل کانفیگ وجود ندارد!", "argInvalidMsg": "argument نامعتبر! مثال: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer در حال حاضر در پس زمینه اجرا می شود!", "StartupPreviewForm": "پیش نمایش آیتم ها Startup", "StartupRestoreForm": "بازگرداندن آیتم های Startup", "backupL": "موارد راه اندازی خود را بازیابی کنید", "txtNoBackups": "هیچ پشتیبان گیری پیدا نشد", "previewBackupB": "پیشنمایش", "restoreBackupB": "بازگرداندن", "deleteBackupB": "حذف", "noNewVersion": "شما آخرین نسخه را دارید!", "betaVersion": "شما از یک نسخه آزمایشی استفاده می کنید!", "removeAllStartup": "آیا مطمئن هستید که می خواهید همه موارد راه اندازی را حذف کنید؟", "removeAllHosts": "آیا مطمئن هستید که می خواهید همه ورودی های میزبان را حذف کنید؟", "removeAllItems": "آیا مطمئن هستید که می خواهید همه موارد دسکتاپ را حذف کنید؟", "removeModernApps": "آیا مطمئن هستید که می خواهید برنامه(های) زیر را حذف نصب کنید؟", "errorModernApps": "برنامه(های) زیر را نمی توان حذف نصب کرد:\n", "latestVersionM": "آخرین نسخه: {LATEST}", "currentVersionM": "نسخه کنونی: {CURRENT}", "resetMessage": "برنامه خارج می شود و سعی می کند خودش را تعمیر کند.", "newVersion": "نسخه جدید موجود است! آیا میخواهید الان دانلودش کنید؟\nبرنامه چند ثانیه دیگر راه اندازی مجدد می شود.", "flushDNSMessage": "آیا مطمئن هستید که می خواهید کش DNS ویندوز را پاک کنید؟\n\nاین باعث قطع شدن اینترنت برای لحظه ای می شود و ممکن است برای عملکرد صحیح نیاز به راه اندازی مجدد باشد.", "downloadsFinished": "تمام شد", "downloadDirInvalid": "پوشه دانلود مشخص شده معتبر نیست", "no64Download": "64 بیتی موجود نیست، دانلود 32 بیتی", "no32Download": "32 بیتی در دسترس نیست، گذشتن", "installing": "درحال نصب", "linkInvalid": "لینک دیگر معتبر نیست", "noErrorsM": "هیچ خطایی برای نشان دادن وجود ندارد!", "hostNotFound": "میزبان پیدا نشد", "pinging": "پینگ با 32 bytes - 9 مرتبه...", "latency": "تاخیر", "lblSystemTools": "سیستم && ابزار", "lblInternet": "اینترنت", "lblCoding": "کد نویسی", "lblVideoSound": "ویدیو && صوت", "min": "حداقل", "max": "حداکثر", "avg": "میانگین", "timeout": "زمان درخواست تمام شد", "languagesL": "انتخاب زبان", "trayStartup": "Startup مدیریت", "trayCleaner": "پاک کننده درایو", "trayPinger": "Pinger ابزار", "trayHosts": "HOSTS ویرایشگر", "trayAD": "دانلود کننده نرم‌افزار", "trayOptions": "تنظبمات", "trayRegistry": "Registry تعمیر", "trayRestartExplorer": "راه اندازی مجدد Explorer", "trayExit": "خروج", "tipWhatsThis": "این چیه؟", "hwDetailed": "نمایش جزئیات", "btnCopyHW": "کپی", "btnSaveHW": "ذخیره", "indiciumTab": "سخت‌افزار", "toolHWCopy": "کپی", "toolHWGoogle": "جست و جو در Google", "toolHWDuck": "جست و جو در DuckDuckGo", "trayHW": "اطلاعات سخت‌افزار", "os": "سیستم عامل", "cpu": "پردازنده", "ram": "رم", "gpu": "گرافیک", "mobo": "مادربرد", "disk": "فضای ذخیره سازی", "inet": "آداپتورهای شبکه", "audio": "صوت", "dev": "لوازم جانبی", "vm": "حافظه مجازی", "drives": "درایوهای دیسک", "volumes": "پارتیشن ها", "opticals": "درایوهای نوری", "removables": "درایوهای قابل جابجایی", "physicalAdapters": "آداپتورهای فیزیکی", "virtualAdapters": "آداپتورهای مجازی", "keyboards": "صفحه کلید", "pointings": "دستگاه های اشاره گر", "performanceTip": "مجموعه ای از تنظیمات داخلی ویندوز برای بهینه سازی عملکرد. برای اعمال کاملاً ایمن است. - زمان انتظار را قبل از کشتن فرآیندهای بی پاسخ کاهش می دهد. - منوی کاهش زمان تاخیر را نشان می دهد. - اعلان بررسی فضای کم دیسک را غیرفعال می کند - ویژگی لرزش برای به حداقل رساندن را غیرفعال می کند - همیشه پسوند فایل را نشان می دهد - فایل های مخفی را نشان می دهد", "networkTip": "ویندوز مکانیسمی را پیاده‌سازی می‌کند که در هنگام اجرای برنامه‌های چندرسانه‌ای، ترافیک شبکه را محدود می‌کند. همچنین می تواند عملکرد شبکه را در هنگام بازی های آنلاین کاهش دهد.", "defenderTip": "Windows Defender آنتی ویروس داخلی در سیستم های ویندوز است.", "smartScreenTip": "SmartScreen به طور خودکار فایل ها، دانلودها و وب سایت ها را اسکن می کند و مسدود می کند محتوای خطرناک از قبل شناخته شده و قبل از اجرای آنها به شما هشدار می دهد.", "systemRestoreTip": "System Restore قابلیتی است که امکان بازگرداندن وضعیت ویندوز را فراهم می کند به یک قبلی برای بازیابی از نقص یا مشکلات دیگر.", "reportingTip": "Error Reporting خرابی ها و خطاهای برنامه را جمع آوری کرده و به مایکروسافت ارسال می کند.", "telemetryTasksTip": "خدمات تله متری به صورت دوره ای داده های استفاده و عملکرد را برای بهبودهای آینده به مایکروسافت ارسال می کند.", "officeTelemetryTip": "تله متری آفیس به صورت دوره ای داده های استفاده و عملکرد را برای بهبود در آینده به مایکروسافت ارسال می کند.", "ffTelemetryTip": "خدمات تله متری و گزارش داده موزیلا فایرفاکس را غیرفعال می کند.", "vsTip": "ویژگی های تله متری و بازخورد ویژوال استودیو، از جمله سرویس گیرنده SQM را غیرفعال می کند.", "chromeTelemetryTip": "ابزار تله متری و گزارش نرم افزار Google Chrome را غیرفعال می کند (که معروف است باعث استفاده زیاد از CPU می شود).", "printTip": "سرویس چاپ وظیفه شناسایی، نصب و استفاده از چاپگرها را بر عهده دارد.", "faxTip": "سرویس فکس وظیفه ارسال و دریافت فکس را بر عهده دارد.", "mediaSharingTip": "Media Player Sharing اشتراک گذاری رسانه خانگی را برای Windows Media Player فراهم می کند.", "stickyTip": "Sticky Keys یک ویژگی دسترس‌پذیری برای کمک به کاربران ویندوز با ناتوانی‌های فیزیکی است و از نوع حرکت مرتبط با آسیب‌های فشاری مکرر می‌کاهد.", "homegroupTip": "HomeGroup قابلیتی است که امکان اشتراک گذاری فایل ها را فراهم می کند در یک شبکه خانگی با استفاده از Windows Explorer.", "superfetchTip": "Superfetch برنامه‌های معمولاً مورد استفاده را در RAM از قبل بارگیری می‌کند و باعث استفاده زیاد از دیسک، به‌ویژه در هارد دیسک‌ها می‌شود.", "compatTip": "سرویس Compatibility Assistant مشکلات شناخته شده سازگاری را در برنامه های قدیمی تشخیص می دهد.", "disableOneDriveTip": "ادغام فضای ذخیره سازی ابری OneDrive را غیرفعال می کند.", "oldMixerTip": "پانل کنترل ولوم میکسر کلاسیک را بازیابی می کند.", "oldExplorerTip": "- سابقه دسترسی سریع را غیرفعال می کند - نمای پیش فرض File Explorer را روی This PC تنظیم می کند - فایل های اخیر را غیرفعال می کند - جستجو، وظیفه و آب و هوا را از نوار وظیفه حذف می کند - تاریخچه فایل را غیرفعال می کند", "adsTip": "از نمایش تبلیغات در منوی استارت جلوگیری می کند.", "uODTip": "ادغام فضای ذخیره سازی ابری OneDrive را به طور کامل حذف می کند.", "peopleTip": "My People یک ویژگی جدید است که مخاطبین اخیر را در نوار وظیفه نشان می دهد.", "longPathsTip": "حداکثر محدودیت طول مسیر 256 نویسه را حذف می کند.", "inkTip": "Windows Ink از قلم های دیجیتال برای طراحی روی صفحه پشتیبانی می کند.", "spellTip": "صفحه کلید لمسی فقط دارای ویژگی هایی مانند: - تصحیح خودکار - پیشنهادات متنی - بررسی املا", "xboxTip": "سرویس‌های Xbox Live ویژگی‌های پخش، ضبط و اجتماعی را برای بازی‌های Xbox ارائه می‌کنند.", "actionTip": "Notification Center یک مکان مرکزی برای اعلان ها و کاشی های اقدام سریع است، مانند وای فای، بلوتوث و غیره", "autoUpdatesTip": "دانلود و نصب خودکار به روز رسانی ویندوز را غیرفعال می کند. در عوض، زمانی که به‌روزرسانی‌های جدید در دسترس هستند، یک اعلان وجود دارد. همچنین سرویس Delivery Optimization را غیرفعال می کند.", "driversTip": "زمانی مفید است که Windows Update مدام یک درایور که به درستی کار می کند با یک درایور معیوب جایگزین می کند.", "telemetryServicesTip": "خدمات تله متری داده های استفاده را ردیابی و ثبت می کند و بازخورد ارسالی برای تجزیه و تحلیل به مایکروسافت ارسال می کند.", "privacyTip": "ترفندهای اضافی حریم خصوصی که موارد زیر را غیرفعال می کند: - Biometrics - موقعیت جغرافیایی - برنامه ها را در دستگاه ها به اشتراک بگذارید - Text logger - Diagnostics", "ccTip": "Cloud Clipboard داده های کلیپ بورد را در دستگاه های شما به اشتراک می گذارد. این اجازه می دهد تا در یک دستگاه کپی و در دستگاه دیگر جای گذاری کنید. نیاز به ورود به حساب مایکروسافت دارد.", "cortanaTip": "Cortana یک دستیار مجازی مبتنی بر هوش مصنوعی است - غیرفعال کردن Cortana. - غیرفعال کردن جست و جوی وب در منوی استارت - - از نگه داشتن تاریخچه جستجو جلوگیری می کند", "sensorTip": "خدماتی که عملکرد حسگرها را مدیریت می کنند، مانند چرخش خودکار، روشنایی خودکار و غیره. فقط برای تبلت ها یا دستگاه های دارای صفحه نمایش لمسی مفید است.", "castTip": "برای اشتراک‌گذاری محتوای رسانه با دستگاه‌های Miracast، کلیک راست را حذف می‌کند.", "gameBarTip": "Game Bar یک منوی دسترسی سریع برای خدمات بازی Xbox است.", "insiderTip": "برنامه Windows Insider به شما امکان می دهد آخرین ویژگی ها را آزمایش کنید قبل از اینکه در معرض دید عموم قرار گیرند. این یک سرویس غیر ضروری برای کاربرانی است که مایل به مشارکت نیستند.", "storeUpdatesSw": "غیرفعال کردن بروزرسانی Microsoft Store", "storeUpdatesTip": "عملکرد به روز رسانی خودکار فروشگاه مایکروسافت را غیرفعال می کند.", "tpmTip": "الزامات Secure Boot و TPM 2.0 را دور می زند و امکان ارتقا به ویندوز 11 را فراهم می کند.", "leftTaskbarTip": "تراز کردنآیکون های نوار وظیفه به سمت چپ", "snapAssistTip": "هنگام نگه داشتن بر روی دکمه maximize, Snap Assist Flyout غیرفعال شود", "widgetsTip": "غیرفعال کردن ویژگی های Widgets و حذف آیکون Widgets از taskbar.", "chatTip": "حذف آیکون Chat از نوارد وظیفه", "smallerTaskbarTip": "اندازه نوار وظیفه و نمادها را کوچکتر می کند.", "classicRibbonTip": "بازیابی نوار ribbon از ویندوز 10 در File Explorer.", "classicContextTip": "بازیابی منوی راست کلیک قدیمی, حذف 'Show more options'.", "gameModeSw": "فعال کردن حالت بازی", "gameModeTip": "فعال کردن حالت بازی در ترکیب با برنامه‌ریزی پردازش گرافیکی تسریع‌شده سخت‌افزاری.", "systemRestoreM": "آیا مطمئن هستید که می خواهید بازیابی سیستم را غیرفعال کنید؟ این کار فایل های پشتیبان فعلی شما را حذف می کند!", "compactModeSw": "فعال کردن حالت Compact در Explorer", "compactModeTip": "فضای اضافی بین فایل‌ها را در Files Explorer کاهش می‌دهد.", "stickersTip": "استیکرها ایموجی های بزرگی هستند که روی کاغذ دیواری ها ظاهر می شوند و در پیام رسان های اجتماعی استفاده می شوند.", "hibernateSw": "غیرفعال کردن Hibernation", "hibernateTip": "غیرفعال کردن ویژگی های hibernate ویندوز", "smb1Sw": "غیرفعال کردن پروتکل SMBv1", "smb2Sw": "غیرفعال کردن پروتکل SMBv2", "smbTip": "SMB{v} پروتکل مسئول به اشتراک گذاری فایل بین رایانه های ویندوزی است. با SMBv3 جایگزین شده است که امنیت بیشتری دارد.", "ntfsStampSw": "غیرفعال کردن NTFS Timestamp", "ntfsStampTip": "نشان دهنده آخرین بار دسترسی به مهر فایل است. غیرفعال کردن آن می تواند عملیات I/O روی دیسک ها را کاهش دهد.", "autoStartToggle": "بازشدن شدن هنگام اجرا ویندوز", "nvidiaTelemetrySw": "غیرفعال کردن NVIDIA Telemetry", "dnsTitle": "تغییر سریع سرور DNS", "vbsSw": "غیرفعال کردن امنیت مبتنی بر مجازی سازی", "vbsTip": "ویژگی کرنل که از تزریق درایورهای مخرب به فرآیندها جلوگیری می کند. تاثیر منفی بر عملکرد دارد.", "winSearchSw": "غیرفعال کردن جست و جو", "winSearchTip": "غیرفعال کردن سرویس جست و جو ویندوز", "btnRestoreUwp": "بازگرداندن همه UWP", "restoreUwpMessage": "آیا مطمئنید که می خواهید این کار را انجام دهید؟", "telemetrySvcToggle": "غیرفعال کردن Optimizer Insights", "edgeAiSw": "غیرفعال کردن Edge Discover", "edgeTelemetrySw": "غیرفعال کردن Edge Telemetry", "edgeAiTip": "حذف Discover Bar در Edge.", "edgeTelemetryTip": "غیرفعال کردن سرویس های SmartScreen, Spotlight و Telemetry در Edge.", "hpetSw": "غیرفعال کردن HPET", "loginVerboseSw": "صفحه ورود با جزئیات را فعال کنید", "advancedTab": "پیشرفته", "btnRestartSafe": "راه اندازی مجدد در حالت ایمن", "btnRestart": "راه اندازی مجدد در حالت معمولی", "btnRestartDisableDefender": "راه اندازی مجدد && غیرفعال کردن Defender", "classicPhotoViewerSw": "باز گرداندن Photo Viewer قدیمی", "tabPage3": "فونت", "fontSetTitle": "فونت مورد علاقه خود را به عنوان فونت پیش فرض ویندوز تنظیم کنید", "label11": "فونت های موجود:", "btnSetGlobalFont": "تنظیم به عنوان پیش فرض", "lblFontsCount": "فونت فعلی:", "btnRestoreFont": "برگشت به حالت پیشفرض", "btnRefreshFonts": "بارگذاری مجدد", "chkAllNics": "تنظیم برای همه آداپتورهای شبکه", "chkCustomDns": "DNS سفارشی را تنظیم کنید", "btnSetDns": "DNS را تنظیم کنید", "copilotSw": "غیرفعال کردن ویژگی CoPilot AI به طور کامل", "copilotTip": "ویژگی CoPilot AI به طور کامل غیرفعال می‌شود.", "btnReinforce": "تقویت سیاست‌ها", "msgReinforce": "آیا مطمئن هستید که می‌خواهید سیاست‌های فعلی را مجدداً اعمال کنید؟", "newsInterestsSw": "غیرفعال کردن اخبار و علاقه‌مندی‌ها", "allTrayIconsSw": "نمایش تمام آیکون‌های اطلاع‌رسانی", "noMenuDelaySw": "حذف تأخیر منوها", "hideSearchSw": "مخفی کردن جستجو در نوار وظایف", "hideWeatherSw": "مخفی کردن آب و هوا در نوار وظایف", "enableUtcSw": "فعال کردن زمان UTC", "autoUpdateToggle": "به‌روزرسانی هنگام راه‌اندازی", "modernStandbySw": "غیرفعال کردن حالت آماده مدرن", "label24": "ویرایشگر متغیرهای سیستم", "label23": "مسیر متغیر سیستم جدید:", "button3": "افزودن", "label21": "متغیرهای سیستم", "button1": "حذف", "button2": "بروزرسانی" } ================================================ FILE: Optimizer/Resources/i18n/FR.json ================================================ { "subSystem": "Système", "subPrivacy": "Intimité", "subGaming": "Jeux", "subTouch": "Toucher", "subTaskbar": "Barre des tâches", "subExtras": "Suppléments", "btnAbout": "OK", "restartButton": "redemarrer maintenant", "restartButton8": "redemarrer maintenant", "restartButton10": "redemarrer maintenant", "btnFind": "Trouver", "btnKill": "Tuer", "trayUnlocker": "Poignées de fichier", "restartAndApply": "Redemarrer pour appliquer les changements", "regBackupSw": "Activer les sauvegardes du registre", "onedriveM": "Voulez-vous vraiment désinstaller OneDrive? Cela supprimera vos fichiers de bureau et de document! N'utilisez cette option que sur un compte local!", "txtVersion": "Version: {VN}", "systemRestoreM": "Voulez-vous vraiment désactiver la restauration du système? Cela supprimera vos images de sauvegarde actuelles!", "txtBitness": "Vous travaillez avec {BITS}", "linkUpdate": "Mise a jour disponible", "CleanPreviewForm": "Nettoyer L'aperçu", "lblLab": "Build Experimental\n(supprimer apres avoir teste)", "performanceSw": "Activer les Tweaks de Performance", "networkSw": "Desactiver la limitation du reseau", "defenderSw": "Desactiver Windows Defender", "systemRestoreSw": "Desactiver la restauration du systeme", "printSw": "Desactiver le service d'impression", "mediaSharingSw": "Desactiver le partage du lecteur multimedia", "faxSw": "Desactiver le service de fax", "reportingSw": "Desactiver les rapports d'erreurs", "homegroupSw": "Desactiver HomeGroup", "superfetchSw": "Desactiver Superfetch", "telemetryTasksSw": "Desactiver les taches de telemetrie", "officeTelemetrySw": "Desactiver la telemetrie d'Office", "vsSW": "Désactiver la télémétrie de Visual Studio", "ffTelemetrySw": "Désactiver la télémétrie de Firefox", "chromeTelemetrySw": "Désactiver la télémétrie de Google Chrome", "compatSw": "Desactiver l'assistant de compatibilite", "smartScreenSw": "Desactiver SmartScreen", "stickySw": "Desactiver les Touches Remanentes", "universalTab": "Universel", "analyzeDriveB": "Analyser", "modernAppsTab": "Applications UWP", "startupTab": "Demarrage", "appsTab": "Applications courantes", "cleanerTab": "Nettoyeur", "pingerTab": "Pinger", "registryFixerTab": "Registre", "integratorTab": "Integrateur", "optionsTab": "Options", "oldMixerSw": "Activer le melangeur de volume classique", "oldExplorerSw": "Desactiver l'historique d'acces rapide", "adsSw": "Desactiver les publicites du menu Demarrer", "uODSw": "Desinstaller OneDrive", "peopleSw": "Desactiver My People", "longPathsSw": "Activer Long Paths", "autoUpdatesSw": "Desactiver les mises a jour automatiques", "driversSw": "Exclure les pilotes des mises a jour", "telemetryServicesSw": "Desactiver les services de telemetrie", "privacySw": "Ameliorer la confidentialite", "ccSw": "Desactiver Cloud Clipboard", "cortanaSw": "Desactiver Cortana", "sensorSw": "Desactiver les services du capteur", "castSw": "Supprimer Cast to Device", "inkSw": "Desactiver Windows Ink", "spellSw": "Desactiver la verification orthographique", "xboxSw": "Desactiver Xbox Live", "gameBarSw": "Desactiver Game Bar", "insiderSw": "Desactiver le service Insider", "actionSw": "Desactiver le centre de notification", "disableOneDriveSw": "Desactiver OneDrive", "tpmSw": "Désactiver le contrôle TPM 2.0", "leftTaskbarSw": "Aligner la barre des tâches à gauche", "snapAssistSw": "Désactiver Snap Assit", "widgetsSw": "Désactiver les widgets", "chatSw": "Désactiver le chat", "smallerTaskbarSw": "Réduire la barre des tâches", "classicRibbonSw": "Activer les options classiques dans l'explorateur de fichiers", "classicContextSw": "Activer le menu contextuel classique", "refreshModernAppsButton": "Rafraichir", "uninstallModernAppsButton": "Desinstaller", "txtModernAppsTitle": "Desinstaller les applications UWP indesirables", "chkSelectAllModernApps": "Selectionner tout", "chkOnlyRemovable": "Uniquement les desinstallables", "flushDNSMessage": "Êtes-vous sûr de vouloir vider le cache DNS de Windows?\n\nCela entraînera une déconnexion d'Internet pendant un moment et un redémarrage peut être nécessaire pour que le système fonctionne correctement.", "startupTitle": "Choisissez vos elements de demarrage", "removeStartupItemB": "Supprimer", "locateFileB": "Localiser le fichier", "findInRegB": "Trouver dans le registre", "refreshStartupB": "Rafraichir", "restoreStartupB": "Restaurer", "backupStartupB": "Sauvegarde", "lblBackupTitle": "Titre de sauvegarde:", "doBackup": "OK", "cancelBackup": "Annuler", "startupItemName": "Nom", "startupItemLocation": "Location", "startupItemType": "Type", "txtFeedError": "Pas de connexion internet, essayez de rafraichir les liens a nouveau", "appsTitle": "Telecharger et installer rapidement des applications utiles", "btnGetFeed": "Rafraichir les liens", "bitPref": "Definir la preference de bit", "linkWarnings": "Voir les avertissements", "txtDownloadStatus": "Inactif", "goToDownloadsB": "Aller aux telechargements", "btnDownloadApps": "Telecharger", "cAutoInstall": "Installer apres le telechargement", "setDownDirLbl": "Definir le dossier de telechargement", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Selectionner tout", "checkTemp": "Fichiers temporaires", "checkLogs": "logs Windows", "checkMiniDumps": "BSOD minidumps", "checkBin": "Vider la corbeille", "checkMediaCache": "Cache du lecteur multimedia", "checkErrorReports": "Rapports d'erreurs", "cleanDriveB": "Nettoyer", "lblPretext": "Taille a liberer:", "cleanerTitle": "Nettoyer votre disque systeme", "pingerTitle": "Ping des adresses IP et evaluer votre latence", "lblPinger": "IP / Nom de domaine", "btnOpenNetwork": "Ouvrir les connexions reseau", "copyIPB": "Copier", "copyB": "Copier l'IP", "btnShodan": "Verifier sur SHODAN.io", "btnPing": "Ping", "lblResults": "Resultats", "flushCacheB": "Vider le cache DNS", "btnExport": "Exporter", "hostsTitle": "Modifier efficacement votre fichier hosts", "linkLocate": "Localiser", "linkAdvancedEdit": "Editeur avance", "linkRestoreDefault": "Retablir les valeurs par defaut", "lblIP": "Adresse IP", "lblDomain": "Domaine", "chkBlock": "Bloc", "addHostB": "Ajouter", "lblLock": "Proteger votre fichier HOSTS en le verrouillant", "chkReadOnly": "En lecture seule", "lblAdblock": "Adblocks prefabriques", "lblAdblockSub": "(supprimera votre configuration actuelle)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Supprimer", "refreshHostsB": "Rafraichir", "removeAllHostsB": "Supprimer tout", "regFixB": "Fixer", "regLbl": "(certaines modifications peuvent necessiter ca)", "checkRestartExplorer": "Redemarrez egalement l'Explorateur pour appliquer les modifications", "checkRegistryEditor": "editeur de registre", "checkFirewall": "Pare-feu Windows", "checkContextMenu": "Menu clic droit", "checkRunDialog": "Executer la boite de dialogue", "checkFolderOptions": "Options du dossier", "checkControlPanel": "Panneau de configuration", "checkCommandPrompt": "Invite de commande", "checkTaskManager": "Gestionnaire des taches", "checkEnableAll": "Activer tout", "registryTitle": "Corriger les problemes courants du registre", "quickAccessToggle": "Afficher le menu d'acces rapide", "helpTipsToggle": "Afficher les messages d'aide", "lblTheming": "Choisissez votre theme", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Verifier && mettre a jour", "btnUpdate": "Verifier les mise a jour", "btnChangelog": "Voir les changements", "lblUpdateDisabled": "Desactive dans les builds experimentales", "lblTroubleshoot": "Resolution des problemes", "btnViewLog": "Afficher les erreurs", "btnOpenConf": "Afficher le dossier de configuration", "btnResetConfig": "Réparation", "integrator1": "L'integrateur est capable d'ajouter des element\nentierement personnalises dans le menu contextuel du bureau:", "integrator2": "- N'importe quel programme", "integrator3": "- Raccourcis vers des dossiers", "integrator4": "- Liens vers le web", "integrator5": "- Tout type de fichier", "integrator6": "- Commandes", "integrator7": "Les elements peuvent avoir des icones et une position personnalisees.\nIls peuvent egalement etre caches, accessibles uniquement\nen appuyant sur la touche SHIFT.\nIl peut egalement creer des commandes personnalisees\npour executer la boite de dialogue, ce qui permet de lancer facilement\nn'importe quelle application en tapant uniquement le mot cle souhaite.", "integratorInfoTab": "Info", "tabPage8": "Ajouter/Modifier", "tabPage9": "Supprimer", "tabPage10": "Menus prets", "tabPage11": "Executer la Boite de dialogue", "addItemL": "Ajouter ou modifier un element", "itemtype": "Type d'element", "radioProgram": "Programme", "radioFolder": "Dossier", "radioLink": "Lien", "radioFile": "Fichier", "radioCommand": "Commande", "itemtoaddgroup": "Programme a ajouter", "folderToAdd": "Dossier a ajouter", "linkToAdd": "Lien a ajouter", "fileToAdd": "Fichier a ajouter", "commandToAdd": "Commande a ajouter", "icontoaddgroup": "Icone a ajouter", "checkDefaultIcon": "Utiliser l'icone du programme", "checkDefaultFolderIcon": "Utiliser l'icone du dossier par defaut", "checkFavicon": "Telecharger l'icone du site web (favicon)", "checkNoIcon": "Pas d'icone", "dnsCacheM": "Cache DNS en cours de generation, reessayez plus tard!", "itemposition": "Position de l'element", "radioTop": "Haut", "radioMiddle": "Milieu", "radioBottom": "Bas", "security": "Securite", "checkShift": "Afficher uniquement lorsque la touche SHIFT est enfoncee", "itemnamegroup": "Nom de l'element dans le menu", "btnAddItem": "Ajouter/Modifier", "removeIntegratorItemsL": "Supprimer les elements existants du bureau", "removeDIB": "Supprimer", "refreshIIB": "Rafraichir", "removeAllIIB": "Supprimer tout", "PMB": "Ajouter le menu d'alimentation", "STB": "Ajouter les outils systeme", "WAB": "Ajouter les applications Windows", "SSB": "Ajouter des raccourcis systeme", "DSB": "Ajouter des raccourcis de bureau", "AddOwnerB": "Ajouter Take Ownership", "RemoveOwnerB": "Supprimer Take Ownership", "AddCMDB": "Ajouter Open with CMD", "DeleteCMDB": "Supprimer Open with CMD", "readyMenusL": "Ajouter des menus utiles pre-faits", "refreshCCB": "Actualiser", "removeCCB": "Supprimer", "removeCCL": "Supprimer les commandes existantes", "btnCreateCustomCommand": "Creer", "ccKeywordL": "mot-cle", "ccFileL": "Emplacement du fichier", "ccL": "Definissez vos commandes d'execution personnalisees", "btnYes": "Oui", "btnNo": "Non", "btnOk": "OK", "HostsEditorForm": "Editeur d'Hosts", "savebtn": "Enregistrer", "closebtn": "Fermer", "alreadyRunningMsg": "Optimizer fonctionne déjà en arrière-plan!", "adminMissingMsg": "Optimizer doit etre execute en tant qu'Administrateur!\nL'application va maintenant se fermer...", "unsupportedMsg": "Optimizer fonctionne sous Windows 7 ou superieur !\nL'application va maintenant se fermer...", "confInvalidVersionMsg": "La version de Windows ne correspond pas!", "confInvalidFormatMsg": "Le fichier de configuration est dans un format invalide!", "confNotFoundMsg": "Le fichier de configuration n'est pas present!", "argInvalidMsg": "Argument invalide! Exemple: Optimizer.exe /template.json", "StartupPreviewForm": "Apercu des elements de demarrage", "StartupRestoreForm": "Restaurer les elements de demarrage", "backupL": "Recuperer vos elements de demarrage", "txtNoBackups": "Aucune sauvegarde trouvee", "previewBackupB": "Apercu", "restoreBackupB": "Restaurer", "deleteBackupB": "Supprimer", "noNewVersion": "Vous avez deja la derniere version!", "betaVersion": "Vous utilisez une version experimentale!", "removeAllStartup": "Etes-vous sur de vouloir supprimer tous les elements de demarrage?", "removeAllHosts": "Etes-vous sur de vouloir supprimer toutes les entrees d'Hosts?", "removeAllItems": "Etes-vous sur de vouloir supprimer tous les elements du bureau?", "removeModernApps": "Etes-vous sur de vouloir desinstaller les applications suivantes?", "errorModernApps": "L'application suivante n'a pas pu etre desinstallee :\n", "resetMessage": "L'application va se fermer et essayer de se réparer.", "newVersion": "Une nouvelle version est disponible! Voulez-vous la telecharger maintenant?\nL'application va redemarrer dans quelques secondes.", "downloadsFinished": "Fini", "latestVersionM": "Derniere version: {LATEST}", "currentVersionM": "Version actuelle: {CURRENT}", "downloadDirInvalid": "Le dossier de telechargement specifie n'est pas valide", "no64Download": "Pas de 64 bits disponibles, telechargement en 32 bits", "no32Download": "Pas de 32 bits disponibles, suivant", "installing": "Installation", "linkInvalid": "Le lien n'est plus valide", "noErrorsM": "Il n'y a pas d'erreurs a afficher!", "hostNotFound": "Impossible de trouver l'hote", "pinging": "Pinging avec 32 octets - 9 fois...", "latency": "LATENCE", "lblSystemTools": "Systeme et outils", "lblInternet": "Internet", "lblCoding": "Coding", "lblVideoSound": "Video et son", "min": "Min", "max": "Max", "avg": "Average", "timeout": "La requete a expire", "languagesL": "Choisir la langue", "trayStartup": "Gestionnaire de demarrage", "trayCleaner": "Nettoyeur de disque", "trayPinger": "Outil Pinger", "trayHosts": "HOSTS Editeur", "trayAD": "Installer des applications", "trayOptions": "Option", "trayRegistry": "Réparer le registre", "trayRestartExplorer": "Redemarrer l'Explorer", "trayExit": "Quitter", "tipWhatsThis": "Qu'est-ce que c'est?", "hwDetailed": "Vue detaillee", "btnCopyHW": "Copie", "btnSaveHW": "Sauver", "indiciumTab": "Materiel", "toolHWCopy": "Copie", "toolHWGoogle": "Chercher Google", "toolHWDuck": "Chercher DuckDuckGo", "trayHW": "Materiel", "os": "Systeme operateur", "cpu": "Processeurs", "ram": "Memory", "gpu": "Mémoire", "mobo": "Cartes meres", "disk": "Stockage", "inet": "Adaptateurs reseau", "audio": "L'audio", "dev": "Peripheriques", "vm": "Memoire virtuelle", "drives": "Disques", "volumes": "Cloisons", "opticals": "Lecteurs optiques", "removables": "Disques amovibles", "physicalAdapters": "Adaptateurs physiques", "virtualAdapters": "Adaptateurs virtuels", "keyboards": "Claviers", "pointings": "Dispositifs de pointage", "performanceTip": "Collection de parametres internes de Windows pour optimiser les performances. Ces changements sont totalement surs. - Reduit le temps d'attente avant de tuer les processus non actifs. - Diminue le delai d'affichage des menus. - Desactive la notification de verification du manque d'espace disque - Desactive la fonction secouer pour reduire - Affiche toujours les extensions de fichiers - Affiche les fichiers caches", "networkTip": "Windows met en œuvre un mecanisme de limitation du reseau qui restreint le trafic reseau lors de l'execution d'applications multimedia. Il peut egalement reduire les performances du reseau lorsque vous jouez a des jeux en ligne.", "defenderTip": "Windows Defender est l'antivirus integre dans les systemes Windows.", "smartScreenTip": "SmartScreen analyse automatiquement les fichiers, les telechargements et les sites Web, en bloquant les contenus dangereux deja connus et vous avertit avant de les executer.", "systemRestoreTip": "La restauration du systeme est une fonctionnalite qui permet de retablir l'etat de Windows a un etat anterieur de Windows afin de resoudre des dysfonctionnements ou d'autres problemes.", "reportingTip": "Error Reporting collecte les crashs et les erreurs des applications et les envoie a Microsoft.", "telemetryTasksTip": "Les services de telemetrie envoient periodiquement des donnees d'utilisation et de performance a Microsoft, pour des ameliorations futures.", "officeTelemetryTip": "La telemetrie d'Office envoie periodiquement des donnees d'utilisation et de performance a Microsoft, en vue d'ameliorations futures.", "ffTelemetryTip": "Desactive les services de telemetrie et de rapport de donnees de Firefox.", "vsTip": "Desactive les fonctionnalites de telemetrie et de retroaction de Visual Studio.", "chromeTelemetryTip": "Desactive la telemetrie Chrome et l'outil de creation de rapports logiciels (connu pour provoquer une utilisation elevee du processeur).", "printTip": "Le service d'impression est responsable de la detection, de l'installation et de l'utilisation des imprimantes.", "faxTip": "Le service de fax est responsable de l'envoi et de la reception des fax.", "mediaSharingTip": "Media Player Sharing permet le partage de medias a domicile pour Windows Media Player.", "stickyTip": "Touche remanente est une fonctionnalite d'accessibilite pour aider les utilisateurs de Windows souffrant d'handicapes physiques a reduire le type de mouvement associe aux microtraumatismes repetes.", "homegroupTip": "HomeGroup est une fonctionnalite qui permet de partager des fichiers sur un reseau domestique en utilisant l'Explorateur Windows.", "superfetchTip": "Superfetch precharge les applications les plus utilisees dans la RAM, ce qui entraine une utilisation elevee du disque, surtout sur les disques durs.", "compatTip": "Le service Compatibility Assistant detecte les problemes de compatibilite connus dans les anciens programmes.", "disableOneDriveTip": "Desactive l'integration de OneDrive sur le stockage dans le Cloud.", "oldMixerTip": "Restaure le panneau de controle classique du melangeur de volume.", "oldExplorerTip": "Desactive l'acces rapide et supprime les fichiers frequents dans l'Explorer Windows.", "adsTip": "Empeche les publicites de s'afficher dans le menu Demarrer.", "uODTip": "Supprime completement l'integration de OneDrive sur le stockage dans le Cloud.", "peopleTip": "My People est une nouvelle fonctionnalite qui affiche les contacts recents dans la barre des taches.", "longPathsTip": "Supprime la limitation de la longueur maximale des chaines de caracteres a 256 caracteres.", "inkTip": "Windows Ink fournit un support pour les stylos numeriques, pour dessiner sur l'ecran.", "spellTip": "Des fonctionnalites reservees au clavier tactile comme: - Auto-correction - Suggestions de texte - Verification de l'orthographe", "xboxTip": "Les services Xbox Live offrent des fonctionnalites de streaming, d'enregistrement et de contacts pour les jeux Xbox.", "actionTip": "Le centre de notification est un endroit central pour les notifications et les fenetres d'action rapide, comme Wi-Fi, Bluetooth, etc.", "autoUpdatesTip": "Desactive le telechargement et l'installation automatiques des mises a jour de Windows. A la place, une notification est emise lorsque de nouvelles mises a jour sont disponibles. Il desactive egalement le service d'optimisation de livraison.", "driversTip": "Utile lorsque Windows Update remplace constamment un pilote fonctionnant correctement par un pilote defectueux.", "telemetryServicesTip": "Les services de telemetrie suivent et enregistrent les donnees d'utilisation en envoyant un retour d'information pour analyse a Microsoft.", "privacyTip": "Des reglages supplementaires de confidentialite desactivant les elements suivants: - Biometrie - Geolocalisation - Partage d'applications entre appareils - Enregistrement de texte - Diagnostics", "ccTip": "Cloud Clipboard partage les donnees du presse-papiers entre vos appareils. Il permet de copier sur un appareil et de coller sur un autre. Necessite l'ouverture d'un compte Microsoft.", "cortanaTip": "Cortana est un assistant virtuel base sur une IA. - Desactive Cortana. - Desactive la recherche Web dans le menu Demarrer - Empeche de conserver l'historique des recherches", "sensorTip": "Services qui gerent les fonctionnalites des capteurs, comme l'auto-rotation, l'auto-luminosite, etc. Utile uniquement pour les tablettes ou les appareils avec un ecran tactile.", "castTip": "Supprime le clic droit pour partager du contenu multimedia vers des appareils Miracast.", "gameBarTip": "Game Bar est un menu d'acces rapide aux services de jeux Xbox.", "insiderTip": "Le programme Windows Insider vous permet de tester les dernieres fonctionnalites avant qu'elles ne soient diffusees au public. Il est considere comme un service inutile pour les utilisateurs qui ne souhaitent pas y participer.", "tpmTip": "Contourne les exigences Secure Boot et TPM 2.0, permettant la mise à niveau vers Windows 11.", "leftTaskbarTip": "Aligne les icônes de la barre des tâches sur la gauche.", "snapAssistTip": "Désactivez Snap Assist Flyout lorsque vous survolez les boutons d'agrandissement.", "widgetsTip": "Désactive la fonction Widgets et supprime l'icône Widgets de la barre des tâches.", "chatTip": "Supprime l'icône de discussion de la barre des tâches.", "smallerTaskbarTip": "Rend la taille de la barre des tâches et les icônes plus petites.", "classicRibbonTip": "Restaure la barre d'options classique de Windows 10 dans l'explorateur de fichiers.", "classicContextTip": "Restaure le menu contextuel classique en supprimant 'Afficher plus d'options'.", "gameModeSw": "Activer le mode jeu", "gameModeTip": "Active le mode Gaming en combinaison avec la planification GPU accélérée par le matériel.", "compactModeSw": "Activer le mode compact dans l'explorateur", "compactModeTip": "Réduit l'espace supplémentaire et le rembourrage entre les fichiers dans l'explorateur de fichiers.", "stickersTip": "Les autocollants sont de grands emojis qui apparaissent sur les fonds d'écran, utilisés dans les messagers sociaux.", "hibernateSw": "Désactiver l'hibernation", "hibernateTip": "Désactive la fonction d'hibernation de Windows.", "smb1Sw": "Désactiver le protocole SMBv1", "smb2Sw": "Désactiver le protocole SMBv2", "smbTip": "Le protocole SMB{v} est responsable du partage de fichiers entre les ordinateurs Windows. Il a été remplacé par SMBv3, qui est plus sécurisé.", "ntfsStampSw": "Désactiver l'horodatage NTFS", "ntfsStampTip": "Indique l'horodatage du dernier accès au fichier. Sa désactivation peut réduire les opérations d'E/S sur les disques.", "autoStartToggle": "Commence avec Windows", "nvidiaTelemetrySw": "Désactiver la télémétrie NVIDIA", "dnsTitle": "Changer rapidement de serveur DNS", "vbsSw": "Désactiver la sécurité basée sur la virtualisation", "vbsTip": "Fonctionnalité du noyau qui empêche l'injection de pilotes malveillants dans les processus. Cela a un effet négatif sur les performances.", "winSearchSw": "Désactiver la recherche", "winSearchTip": "Désactive le service de recherche Windows.", "storeUpdatesSw": "Désactiver les mises à jour du Microsoft Store", "storeUpdatesTip": "Désactive la fonctionnalité de mises à jour automatiques de Microsoft Store.", "btnRestoreUwp": "Restaurer tous les UWP", "restoreUwpMessage": "Es-tu sûr de vouloir faire ça?", "telemetrySvcToggle": "Désactiver la télémétrie de l'optimiseur", "edgeAiSw": "Désactiver Edge Discover", "edgeTelemetrySw": "Désactiver la télémétrie Edge", "edgeAiTip": "Supprime la barre de découverte dans Edge.", "edgeTelemetryTip": "Désactive les services SmartScreen, Spotlight et Télémétrie dans Edge.", "hpetSw": "Désactiver HPET", "loginVerboseSw": "Activer l'écran de connexion détaillé", "advancedTab": "Avancé", "btnRestartSafe": "Redémarrer en mode sans échec", "btnRestart": "Redémarrer en mode normal", "btnRestartDisableDefender": "Redémarrer et désactiver Defender", "classicPhotoViewerSw": "Restaurer la visionneuse de photos classique", "tabPage3": "Polices", "fontSetTitle": "Définir votre police préférée comme police par défaut de Windows", "label11": "Police actuelle:", "btnSetGlobalFont": "Définir par défaut", "lblFontsCount": "Polices disponibles:", "btnRestoreFont": "Retablir les valeurs par defaut", "btnRefreshFonts": "Rafraichir", "chkAllNics": "Définir pour toutes les cartes réseau", "chkCustomDns": "Définir un DNS personnalisé", "btnSetDns": "Définir le DNS", "copilotSw": "Désactiver CoPilot AI", "copilotTip": "Désactive complètement la fonctionnalité CoPilot AI.", "btnReinforce": "Renforcer les politiques", "msgReinforce": "Êtes-vous sûr de vouloir réappliquer vos politiques actuelles?", "newsInterestsSw": "Désactiver les actualités et les centres d'intérêt", "allTrayIconsSw": "Afficher toutes les icônes de notification", "noMenuDelaySw": "Supprimer le délai des menus", "hideSearchSw": "Masquer la recherche dans la barre des tâches", "hideWeatherSw": "Masquer la météo dans la barre des tâches", "autoUpdateToggle": "Mise à jour au démarrage", "enableUtcSw": "Activer l'heure UTC", "modernStandbySw": "Désactiver le mode veille moderne", "label24": "Éditeur de variables système", "label23": "Nouveau chemin de variable système:", "button3": "Ajouter", "label21": "Variables Système", "button1": "Supprimer", "button2": "Actualiser" } ================================================ FILE: Optimizer/Resources/i18n/HR.json ================================================ { "subSystem": "Sistem", "subPrivacy": "Privatnost", "subGaming": "Igre", "subTouch": "Dodir", "subTaskbar": "Taskbar", "subExtras": "Dodaci", "btnAbout": "OK", "restartButton": "Ponovno pokreni sad", "restartButton8": "Ponovno pokreni sad", "restartButton10": "Ponovno pokreni sad", "btnFind": "Pronađi", "btnKill": "Ubi", "trayUnlocker": "Držači datoteka", "restartAndApply": "Ponovno pokrenite za primjenu promjena", "regBackupSw": "Omogućite sigurnosne kopije registra", "txtVersion": "Verzija: {VN}", "txtBitness": "Radite s {BITS}", "linkUpdate": "Dostupno ažuriranje", "lblLab": "Eksperimentalna verzija\n(izbrisati nakon testiranja)", "performanceSw": "Optimiziraj performanse", "networkSw": "Optimizer Mreže", "defenderSw": "Onemogući Windows Defender", "systemRestoreSw": "Onemogući sistemsko vraćanje", "printSw": "Onemogući servis printanja", "mediaSharingSw": "Onemogući djeljenje Media Playera", "faxSw": "Onemogući Fax Service", "reportingSw": "Onemogući prijavljivanje grešaka", "homegroupSw": "Onemogući HomeGroup", "superfetchSw": "Onemogući Superfetch", "telemetryTasksSw": "Onemogući telemetriju zadataka", "officeTelemetrySw": "Onemogući telemetriju Offica", "vsSW": "Onemogući telemetriju Visual Studia", "ffTelemetrySw": "Onemogući telemetriju Mozilla Firefoxa", "chromeTelemetrySw": "Onemogući telemetriju Google Chromea", "compatSw": "Onemogući asistenta kompaktibilnosti", "smartScreenSw": "Onemogući SmartScreen", "stickySw": "Onemogući Ljepljive Tipke", "universalTab": "Generalno", "modernAppsTab": "UWP Aplikacije", "startupTab": "Pokretanje", "appsTab": "Aplikacije", "cleanerTab": "Čistač", "pingerTab": "Mreža", "registryFixerTab": "Registar", "integratorTab": "Integrator", "CleanPreviewForm": "Čisti pregled", "optionsTab": "Opcije", "oldMixerSw": "Omogući klasični Volume Mixer", "oldExplorerSw": "Vrati klasični File Explorer", "adsSw": "Onemogući reklame u Start izborniku", "uODSw": "Izbriši OneDrive", "peopleSw": "Onemogući My People", "longPathsSw": "Omogući duge putanje", "autoUpdatesSw": "Onemogući automatska ažuriranja", "driversSw": "Izuzmi drivere iz ažuriranja", "telemetryServicesSw": "Onemogući telemetrijske usluge", "privacySw": "Poboljšaj privatnost", "ccSw": "Onemogući Cloud Clipboard", "cortanaSw": "Onemogući Cortanu", "sensorSw": "Onemogući usluge senzora", "castSw": "Ukloni Cast to Device", "inkSw": "Onemogući Windows Ink", "spellSw": "Onemogući provjeru pravopisa", "xboxSw": "Onemogući Xbox Live", "gameBarSw": "Onemogući Game Bar", "insiderSw": "Onemogući Insider Service", "actionSw": "Onemogući Centar za obavijesti", "disableOneDriveSw": "Onemogući OneDrive", "tpmSw": "Onemogući provjeru TPM-a", "leftTaskbarSw": "Poravnaj traku zadataka ulijevo", "snapAssistSw": "Onemogući Snap Assist", "widgetsSw": "Onemogući Widgete", "chatSw": "Onemogući Chat", "smallerTaskbarSw": "Učini traku zadataka manjom", "classicRibbonSw": "Omogući klasičnu traku s alatima u Exploreru", "classicContextSw": "Omogući klasični izbornik desnog klika", "refreshModernAppsButton": "Osvježi", "uninstallModernAppsButton": "Deinstaliraj", "txtModernAppsTitle": "Deinstaliraj neželjene UWP aplikacije", "chkSelectAllModernApps": "Odaberi sve", "chkOnlyRemovable": "Samo deinstaliraj-uće", "onedriveM": "Jeste li sigurni da želite deinstalirati OneDrive? Time će se izbrisati datoteke s radne površine i dokumenti! Koristite ovu opciju samo na lokalnom računu!", "startupTitle": "Odaberite stavke za pokretanje", "removeStartupItemB": "Izbriši", "locateFileB": "Pronađi datoteku", "findInRegB": "Pronađi u Registru", "analyzeDriveB": "Analiziraj", "refreshStartupB": "Osvježi", "restoreStartupB": "Vrati", "backupStartupB": "Izradi sigurnosnu kopiju", "lblBackupTitle": "Naslov sigurnosne kopije:", "doBackup": "OK", "cancelBackup": "Otkaži", "startupItemName": "Naziv", "startupItemLocation": "Lokacija", "startupItemType": "Tip", "txtFeedError": "Nema internetske veze, pokušajte ponovno osvježiti veze", "appsTitle": "Brzo preuzmite i instalirajte korisne aplikacije", "btnGetFeed": "Osvježi veze", "bitPref": "Postavi bit preferenciju", "linkWarnings": "Vidi upozorenja", "txtDownloadStatus": "U stanju mirovanja", "goToDownloadsB": "Idi u Preuzimanja", "btnDownloadApps": "Preuzmi", "cAutoInstall": "Instaliraj nakon preuzimanja", "setDownDirLbl": "Postavi mapu za preuzimanje", "c64": "64-bitni", "c32": "32-bitni", "checkSelectAll": "Odaberi sve", "checkTemp": "Privremene datoteke", "checkLogs": "Windows dnevnici", "checkMiniDumps": "BSOD minidumpovi", "checkBin": "Isprazni koš za smeće", "checkMediaCache": "Cache Media Playera", "checkErrorReports": "Izvještaji o greškama", "cleanDriveB": "Očisti", "lblPretext": "Maksimalna veličina za oslobađanje:", "cleanerTitle": "Očistite svoj sistemski disk", "pingerTitle": "Ping IP adrese i procijenite svoju latenciju", "lblPinger": "IP / Naziv domene", "btnOpenNetwork": "Otvori mrežne veze", "copyIPB": "Kopiraj", "copyB": "Kopiraj IP", "btnShodan": "Provjeri na SHODAN.io", "btnPing": "Ping", "lblResults": "Rezultati", "flushCacheB": "Očisti DNS cache", "btnExport": "Izvezi", "hostsTitle": "Učinkovito uredite svoj hosts datoteku", "linkLocate": "Pronađi", "linkAdvancedEdit": "Napredni urednik", "linkRestoreDefault": "Vrati na zadano", "lblIP": "IP adresa", "lblDomain": "Domena", "chkBlock": "Blokiraj", "addHostB": "Dodaj", "lblLock": "Zaštitite svoj HOSTS datoteku zaključavanjem", "chkReadOnly": "Samo za čitanje", "lblAdblock": "Unaprijed pripremljeni blokatori oglasa", "lblAdblockSub": "(izbrisat će vašu trenutnu konfiguraciju)", "adblockS": "AdBlock + Socijalno", "adblockP": "AdBlock + Pornografija", "removeHostB": "Izbriši", "refreshHostsB": "Osvježi", "removeAllHostsB": "Izbriši sve", "regFixB": "Popravi", "regLbl": "(neke promjene mogu zahtijevati ovo)", "checkRestartExplorer": "Također ponovno pokreni Explorer za primjenu promjena", "checkRegistryEditor": "Uređivač registra", "checkFirewall": "Windows Firewall", "checkContextMenu": "Izbornik desnog klika", "checkRunDialog": "Pokreni dijalog", "checkFolderOptions": "Opcije mape", "checkControlPanel": "Upravljačka ploča", "checkCommandPrompt": "Naredbeni redak", "checkTaskManager": "Upravitelj zadataka", "checkEnableAll": "Omogući sve", "registryTitle": "Popravi uobičajene probleme s registrom", "quickAccessToggle": "Prikaži izbornik za brzi pristup", "helpTipsToggle": "Prikaži pomoćne poruke", "lblTheming": "Odaberite svoju temu", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Karamel", "radioLime": "Limeta", "radioMinimal": "Minimalna", "lblUpdating": "Provjeri i ažuriraj", "btnUpdate": "Provjeri ima li ažuriranja", "btnChangelog": "Pogledaj promjene", "lblUpdateDisabled": "Onemogućeno u eksperimentalnim izdanjima", "lblTroubleshoot": "Rješavanje problema", "btnViewLog": "Pogledaj pogreške", "btnOpenConf": "Prikaži mapu s konfiguracijom", "btnResetConfig": "Popravi", "integrator1": "Integrator može dodati potpuno prilagođene stavke u izbornik desnog klika na radnoj površini:", "integrator2": "• Bilo koji program", "integrator3": "• Prečaci do mapa", "integrator4": "• Veze na web", "integrator5": "• Bilo koju vrstu datoteke", "integrator6": "• Naredbe", "integrator7": "Stavke mogu imati prilagođene ikone i položaj.\nMogu također biti skrivene, dostupne samo\npritiskom na tipku SHIFT.\nTakođer može kreirati prilagođene naredbe\nza dijalog Pokreni, što olakšava pokretanje\nbilo koje aplikacije samo unosom željene ključne riječi.", "integratorInfoTab": "Informacije", "tabPage8": "Dodaj/Izmijeni", "tabPage9": "Izbriši", "tabPage10": "Pripremljeni izbornici", "tabPage11": "Dijalog Pokreni", "addItemL": "Dodaj ili izmijeni stavku", "itemtype": "Vrsta stavke", "radioProgram": "Program", "radioFolder": "Mapa", "radioLink": "Veza", "radioFile": "Datoteka", "radioCommand": "Naredba", "itemtoaddgroup": "Program za dodavanje", "folderToAdd": "Mapa za dodavanje", "linkToAdd": "Veza za dodavanje", "fileToAdd": "Datoteka za dodavanje", "commandToAdd": "Naredba za dodavanje", "icontoaddgroup": "Ikona za dodavanje", "checkDefaultIcon": "Koristi ikonu programa", "checkDefaultFolderIcon": "Koristi zadanu ikonu mape", "checkFavicon": "Preuzmi ikonu web-mjesta (favicon)", "checkNoIcon": "Bez ikone", "dnsCacheM": "DNS cache se generira, pokušajte kasnije!", "itemposition": "Pozicija stavke", "radioTop": "Vrh", "radioMiddle": "Sredina", "radioBottom": "Dno", "security": "Sigurnost", "checkShift": "Prikaži samo kada je SHIFT pritisnut", "itemnamegroup": "Naziv stavke u izborniku", "btnAddItem": "Dodaj/Izmijeni", "removeIntegratorItemsL": "Izbriši postojeće stavke na radnoj površini", "removeDIB": "Izbriši", "refreshIIB": "Osvježi", "removeAllIIB": "Izbriši sve", "PMB": "Dodaj Power Menu", "STB": "Dodaj System Tools", "WAB": "Dodaj Windows Apps", "SSB": "Dodaj System Shortcuts", "DSB": "Dodaj Desktop Shortcuts", "AddOwnerB": "Dodaj 'Preuzmi vlasništvo'", "RemoveOwnerB": "Izbriši 'Preuzmi vlasništvo'", "AddCMDB": "Dodaj 'Otvori s CMD'", "DeleteCMDB": "Izbriši 'Otvori s CMD'", "readyMenusL": "Dodaj korisne, unaprijed pripremljene izbornike", "refreshCCB": "Osvježi", "removeCCB": "Izbriši", "removeCCL": "Izbriši postojeće naredbe", "btnCreateCustomCommand": "Kreiraj", "ccKeywordL": "ključna riječ", "ccFileL": "Lokacija datoteke", "ccL": "Definiraj svoje prilagođene naredbe za Pokreni", "btnYes": "Da", "btnNo": "Ne", "btnOk": "OK", "HostsEditorForm": "Uređivač datoteke hosts", "savebtn": "Spremi", "closebtn": "Zatvori", "adminMissingMsg": "Optimizator treba pokrenuti kao administrator!\nAplikacija će se sada zatvoriti...", "unsupportedMsg": "Optimizator radi na Windows 7 i novijim verzijama!\nAplikacija će se sada zatvoriti...", "confInvalidVersionMsg": "Verzija Windowsa ne odgovara!", "confInvalidFormatMsg": "Konfiguracijska datoteka nije u važećem formatu!", "confNotFoundMsg": "Konfiguracijska datoteka ne postoji!", "argInvalidMsg": "Neispravan argument! Primjer: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizator već radi u pozadini!", "StartupPreviewForm": "Pregled stavki pokretanja", "StartupRestoreForm": "Vrati stavke pokretanja", "backupL": "Oporavite svoje stavke pokretanja", "txtNoBackups": "Nema pronađenih sigurnosnih kopija", "previewBackupB": "Pregledaj", "restoreBackupB": "Vrati", "deleteBackupB": "Izbriši", "noNewVersion": "Već imate najnoviju verziju!", "betaVersion": "Koristite eksperimentalnu verziju!", "removeAllStartup": "Jeste li sigurni da želite izbrisati sve stavke pokretanja?", "removeAllHosts": "Jeste li sigurni da želite izbrisati sve unose datoteke hosts?", "removeAllItems": "Jeste li sigurni da želite izbrisati sve stavke radne površine?", "removeModernApps": "Jeste li sigurni da želite deinstalirati sljedeću aplikaciju(e)?", "errorModernApps": "Sljedeća aplikacija(e) se nije mogla deinstalirati:\n", "latestVersionM": "Najnovija verzija: {LATEST}", "currentVersionM": "Trenutna verzija: {CURRENT}", "resetMessage": "Aplikacija će se zatvoriti i pokušati samu popraviti.", "newVersion": "Nova verzija je dostupna! Želite li je sada preuzeti?\nAplikacija će se ponovno pokrenuti za nekoliko sekundi.", "flushDNSMessage": "Jeste li sigurni da želite očistiti DNS predmemoriju Windowsa?\n\nOvo će uzrokovati privremeni prekid internet veze i možda će biti potrebno ponovno pokretanje za ispravan rad.", "downloadsFinished": "Završeno", "downloadDirInvalid": "Navedena mapa za preuzimanje nije valjana", "no64Download": "64-bitna verzija nije dostupna, preuzimam 32-bitnu", "no32Download": "32-bitna verzija nije dostupna, preskačem", "installing": "Instaliram", "linkInvalid": "Veza više nije valjana", "noErrorsM": "Nema grešaka za prikaz!", "hostNotFound": "Nisam mogao pronaći glavno računalo", "pinging": "Pingiram sa 32 bajta - 9 puta...", "latency": "LATENCIJA", "lblSystemTools": "Sustav && Alati", "lblInternet": "Internet", "lblCoding": "Kodiranje", "lblVideoSound": "Video && Zvuk", "min": "Min", "max": "Maks", "avg": "Prosjek", "timeout": "Zahtjev je istekao", "languagesL": "Odaberi jezik", "trayStartup": "Upravitelj pokretanja", "trayCleaner": "Čistač diska", "trayPinger": "Mreža", "trayHosts": "Uređivač HOSTS datoteke", "trayAD": "Preuzimač aplikacija", "trayOptions": "Opcije", "trayRegistry": "Popravak registra", "trayRestartExplorer": "Ponovno pokreni Explorer", "trayExit": "Izlaz", "tipWhatsThis": "Što je ovo?", "hwDetailed": "Detaljan prikaz", "btnCopyHW": "Kopiraj", "btnSaveHW": "Spremi", "indiciumTab": "Hardver", "toolHWCopy": "Kopiraj", "toolHWGoogle": "Pretraži sa Googleom", "toolHWDuck": "Pretraži sa DuckDuckGoom", "trayHW": "Informacije o hardveru", "os": "Operativni sustav", "cpu": "Procesori", "ram": "Memorija", "gpu": "Grafika", "mobo": "Matične ploče", "disk": "Pohrana", "inet": "Mrežni adapteri", "audio": "Zvuk", "dev": "Periferije", "vm": "Virtualna memorija", "drives": "Diskovi", "volumes": "Particije", "opticals": "Optički diskovi", "removables": "Uklonjivi diskovi", "physicalAdapters": "Fizički adapteri", "virtualAdapters": "Virtualni adapteri", "keyboards": "Tipkovnice", "pointings": "Pokazivački uređaji", "performanceTip": "Zbirka internih Windows postavki za optimizaciju performansi. Potpuno je sigurno primijeniti ih. - Smanjuje vrijeme čekanja prije ubijanja neodgovornih procesa - Smanjuje kašnjenje prikaza izbornika - Onemogućuje obavijest o provjeri niskog prostora na disku - Onemogućuje značajku minimiziranja tresenjem - Uvijek prikazuje ekstenzije datoteka - Prikazuje skrivene datoteke", "networkTip": "Windows implementira mehanizam ograničavanja mreže koji će ograničiti mrežni promet kada se pokreću multimedijske aplikacije. Također može smanjiti performanse mreže pri igranju online igara.", "defenderTip": "Windows Defender je ugrađeni antivirusni program u Windows sustavima.", "smartScreenTip": "SmartScreen automatski skenira datoteke, preuzimanja i web stranice, blokirajući već poznati opasan sadržaj i upozorava vas prije njihovog pokretanja.", "systemRestoreTip": "Vraćanje sustava je funkcija koja vam omogućuje vraćanje stanja Windowsa na prethodno kako biste se oporavili od kvara ili drugih problema.", "reportingTip": "Izvješćivanje o greškama prikuplja rušenja aplikacija i greške te ih šalje Microsoftu.", "telemetryTasksTip": "Telemetrijske usluge periodično šalju podatke o korištenju i performansama Microsoftu, za buduća poboljšanja.", "officeTelemetryTip": "Office telemetrija periodično šalje Microsoftu podatke o korištenju i performansama, za buduća poboljšanja.", "ffTelemetryTip": "Onemogućuje telemetriju i usluge izvještavanja o podacima za Mozilla Firefox.", "vsTip": "Onemogućuje telemetriju i značajke povratnih informacija za Visual Studio, uključujući SQM klijenta.", "chromeTelemetryTip": "Onemogućuje Googleovu telemetriju za Chrome i alat za izvještavanje o softveru (poznato da uzrokuje visoku potrošnju CPU-a).", "printTip": "Usluga ispisa odgovorna je za otkrivanje, instaliranje i korištenje pisača.", "faxTip": "Faks usluga odgovorna je za slanje i primanje faksova.", "mediaSharingTip": "Dijeljenje medija omogućuje kućno dijeljenje medija za Windows Media Player.", "stickyTip": "Sticky tipke su značajka pristupačnosti koja pomaže Windows korisnicima s tjelesnim invaliditetom smanjujući pokrete povezane s ozljedama zbog ponavljajućeg napora.", "homegroupTip": "HomeGroup je značajka koja omogućuje dijeljenje datoteka na kućnoj mreži pomoću Windows Explorera.", "superfetchTip": "Superfetch prethodno učitava često korištene aplikacije u RAM, uzrokujući visoku uporabu diska, posebno na HDD-ovima.", "compatTip": "Usluga Pomoćnik za kompatibilnost otkriva poznate probleme kompatibilnosti u starijim programima.", "disableOneDriveTip": "Onemogućuje integraciju cloud pohrane OneDrive.", "oldMixerTip": "Vraća klasičnu kontrolnu ploču za miješanje glasnoće.", "oldExplorerTip": "- Onemogućuje povijest Brzog pristupa - Postavlja zadani prikaz Eksplorera datoteka na Ovo računalo - Onemogućuje nedavne datoteke - Uklanja Pretraživanje, Zadatke i Vremenske prilike s programske trake - Onemogućuje Povijest datoteka", "adsTip": "Sprječava prikazivanje reklama u Startnom izborniku.", "uODTip": "U potpunosti uklanja integraciju cloud pohrane OneDrive.", "peopleTip": "Ljudi je nova značajka koja prikazuje nedavne kontakte na programskoj traci.", "longPathsTip": "Uklanja ograničenje maksimalne duljine putanje od 256 znakova.", "inkTip": "Windows Ink pruža podršku za digitalne olovke za crtanje na zaslonu.", "spellTip": "Samo značajke dodirne tipkovnice poput: - Automatsko ispravljanje - Prijedlozi teksta - Provjera pravopisa", "xboxTip": "Xbox Live usluge nude značajke streaminga, snimanja i društvenih mreža za Xbox igre.", "actionTip": "Centar za obavijesti je središnje mjesto za obavijesti i pločice brzih radnji, poput Wi-Fi, Bluetootha itd.", "autoUpdatesTip": "Onemogućuje automatsko preuzimanje i instalaciju Windows ažuriranja. Umjesto toga, postoji obavijest kada su dostupna nova ažuriranja. Također onemogućuje uslugu Optimizacija isporuke.", "driversTip": "Korisno kada Windows Update stalno zamjenjuje ispravan upravljački program neispravnim.", "telemetryServicesTip": "Telemetrijske usluge prate i bilježe podatke o korištenju šaljući povratne informacije za analizu Microsoftu.", "privacyTip": "Dodatna privatna podešavanja onemogućuju sljedeće: - Biometriju - Geolokaciju - Dijeljenje aplikacija preko uređaja - Zapisnik teksta - Dijagnostiku", "ccTip": "Oblačna međuspremnik dijeli podatke međuspremnika preko vaših uređaja. Omogućuje kopiranje na jednom uređaju i lijepljenje na drugom. Zahtijeva prijavu Microsoft računa.", "cortanaTip": "Cortana je virtualni asistent temeljen na AI-u. - Onemogućuje Cortanu. - Onemogućuje web pretraživanje u Startnom izborniku - Sprječava zadržavanje povijesti pretraživanja", "sensorTip": "Usluge koje upravljaju funkcionalnostima senzora, poput auto-rotacije, auto-svjetline itd. Korisne su samo za tablete ili uređaje s dodirnim zaslonom.", "castTip": "Uklanja desni klik za dijeljenje medijskog sadržaja na Miracast uređaje.", "gameBarTip": "Traka igara je izbornik za brzi pristup Xbox gaming uslugama.", "insiderTip": "Windows Insider program vam omogućuje testiranje najnovijih značajki prije nego što se objave javnosti. Smatra se nepotrebnom uslugom za korisnike koji ne žele sudjelovati.", "storeUpdatesSw": "Onemogući ažuriranja Microsoft Storea", "storeUpdatesTip": "Onemogućuje funkcionalnost automatskog ažuriranja Microsoft Storea.", "tpmTip": "Zaobilazi Secure Boot i TPM 2.0 zahtjeve, omogućavajući nadogradnju na Windows 11.", "leftTaskbarTip": "Poravnava ikone programske trake na lijevu stranu.", "snapAssistTip": "Onemogućuje Snap Assist kada se lebdi iznad gumba za maksimiziranje.", "widgetsTip": "Onemogućuje značajku Widgeta i uklanja ikonu Widgeta s programske trake.", "chatTip": "Uklanja ikonu Chata s programske trake.", "smallerTaskbarTip": "Smanjuje veličinu programske trake i ikona.", "classicRibbonTip": "Vraća klasičnu traku izbornika iz Windows 10 u Eksploreru datoteka.", "classicContextTip": "Vraća klasični izbornik desnog klika, uklanjajući 'Prikaži više opcija'.", "gameModeSw": "Omogući Gaming Mode", "gameModeTip": "Omogućuje Gaming mode u kombinaciji s GPU planiranjem hardverskog ubrzanja.", "systemRestoreM": "Jeste li sigurni da želite onemogućiti Vraćanje sustava? Ovo će izbrisati vaše trenutne sigurnosne kopije!", "compactModeSw": "Omogući kompaktan način u Eksploreru", "compactModeTip": "Smanjuje dodatni prazan prostor i razmake između datoteka u Eksploreru datoteka.", "stickersTip": "Naljepnice su velike emoji koje se pojavljuju na pozadinama i koriste se u društvenim messenger aplikacijama.", "hibernateSw": "Onemogući hibernaciju", "hibernateTip": "Onemogućuje značajku hibernacije u Windowsu.", "smb1Sw": "Onemogući SMBv1 protokol", "smb2Sw": "Onemogući SMBv2 protokol", "smbTip": "SMB{v} protokol je odgovoran za dijeljenje datoteka između Windows računala. Zamijenjen je sa SMBv3, koji je sigurniji.", "ntfsStampSw": "Onemogući NTFS vremenske žigove", "ntfsStampTip": "Označava posljednje vrijeme pristupa datoteci. Onemogućavanjem se mogu smanjiti I/O operacije na diskovima.", "autoStartToggle": "Pokreni s Windowsom", "nvidiaTelemetrySw": "Onemogući NVIDIA telemetriju", "dnsTitle": "Brzo promijeni DNS server", "vbsSw": "Onemogući virtualizaciju temeljenu na sigurnosti", "vbsTip": "Kernel značajka koja sprječava ubacivanje zlonamjernih upravljačkih programa u procese. Ima negativan učinak na performanse.", "winSearchSw": "Onemogući pretraživanje", "winSearchTip": "Onemogućuje Windows uslugu pretraživanja.", "btnRestoreUwp": "Vrati sve UWP", "restoreUwpMessage": "Jeste li sigurni da želite ovo učiniti?", "telemetrySvcToggle": "Onemogući Optimizer Insights", "edgeAiSw": "Onemogući Edge Discover", "edgeTelemetrySw": "Onemogući Edge telemetriju", "edgeAiTip": "Uklanja traku Discover u Edgeu.", "edgeTelemetryTip": "Onemogućuje SmartScreen, Spotlight i usluge telemetrije u Edgeu.", "hpetSw": "Onemogući HPET", "loginVerboseSw": "Omogući detaljan zaslon za prijavu", "advancedTab": "Napredno", "btnRestartSafe": "Ponovno pokreni u sigurnom načinu", "btnRestart": "Ponovno pokreni u normalnom načinu", "btnRestartDisableDefender": "Ponovno pokreni i onemogući Defender", "classicPhotoViewerSw": "Vrati klasični preglednik fotografija", "tabPage3": "Fontovi", "fontSetTitle": "Postavite vaš omiljeni font kao zadani font Windowsa", "label11": "Trenutni font:", "btnSetGlobalFont": "Postavi kao zadani", "lblFontsCount": "Dostupni fontovi:", "btnRestoreFont": "Vrati zadani", "btnRefreshFonts": "Osvježi", "chkAllNics": "Postavi za sve mrežne adaptere", "chkCustomDns": "Postavi prilagođeni DNS", "btnSetDns": "Postavi DNS", "copilotSw": "Onemogući CoPilot AI", "copilotTip": "U potpunosti isključuje značajku CoPilot AI.", "btnReinforce": "Ojačaj pravila", "msgReinforce": "Jeste li sigurni da želite ponovno primijeniti vaša trenutno aktivna pravila?", "newsInterestsSw": "Onemogući novosti i interese", "allTrayIconsSw": "Prikaži sve ikone obavijesti", "noMenuDelaySw": "Ukloni kašnjenje izbornika", "hideSearchSw": "Sakrij pretraživanje na programskoj traci", "hideWeatherSw": "Sakrij vrijeme na programskoj traci", "autoUpdateToggle": "Ažuriraj pri pokretanju", "modernStandbySw": "Onemogući moderni stanje mirovanja", "enableUtcSw": "Omogući UTC vrijeme", "label24": "Uređivač sistemskih varijabli", "label23": "Nova putanja sistemske varijable:", "button3": "Dodaj", "label21": "Sistemske varijable", "button1": "Izbriši", "button2": "Osvježi" } ================================================ FILE: Optimizer/Resources/i18n/HU.json ================================================ { "subSystem": "Rendszer", "subPrivacy": "Adatvédelem", "subGaming": "Játék", "subTouch": "Érintés", "subTaskbar": "Tálca", "subExtras": "Extrák", "btnAbout": "Rendben", "restartButton": "Újraindítás most", "restartButton8": "Újraindítás most", "restartButton10": "Újraindítás most", "restartAndApply": "Eszköz újraindítása most, hogy a változások érvénybe kerüljenek", "txtVersion": "Verzió: {VN}", "txtBitness": "Te {BITS}-el dolgozol", "linkUpdate": "Frissítés elérhető", "lblLab": "Kísérleti verzió\n(töröld tesztelés után!)", "regBackupSw": "Nyilvántartási biztonsági mentések engedélyezése", "performanceSw": "Teljesítményjavítások engedélyezése", "networkSw": "Hálózati korlátozás letiltása", "defenderSw": "Windows Defender kikapcsolása", "systemRestoreSw": "Rendszer-visszaállítás letiltása", "printSw": "Nyomtatási szolgáltatás letiltása", "mediaSharingSw": "Médialejátszó megosztásának letiltása", "faxSw": "Faxszolgáltatás letiltása", "reportingSw": "Hibajelentés kikapcsolása", "homegroupSw": "Családi Csoport letiltása", "superfetchSw": "Superfetch letiltása", "telemetryTasksSw": "Telemetriai feladatok letiltása", "officeTelemetrySw": "Office telemetria letiltása", "vsSW": "Visual Studio telemetria letiltása", "ffTelemetrySw": "Mozilla Firefox telemetria letiltása", "chromeTelemetrySw": "Google Chrome telemetria letiltása", "compatSw": "Kompatibilitási asszisztens kikapcsolása", "smartScreenSw": "SmartScreen kikapcsolása", "stickySw": "Beragadó billentyűk letiltása", "universalTab": "Univerzális", "modernAppsTab": "UWP Alkalmazások", "startupTab": "Indítás", "appsTab": "Alkalmazások", "cleanerTab": "Tisztító", "pingerTab": "Pinger", "registryFixerTab": "Beállítások", "integratorTab": "Integrátor", "CleanPreviewForm": "Tiszta előnézet", "optionsTab": "Beállítások", "oldMixerSw": "Klasszikus hangerő keverő engedélyezése", "oldExplorerSw": "Klasszikus Fájlkezelő visszaállítása", "adsSw": "Start menü hirdetések letiltása", "uODSw": "OneDrive eltávolítása", "peopleSw": "Embereim kikapcsolása", "longPathsSw": "Hosszú utak engedélyezése", "autoUpdatesSw": "Automatikus frissítések letiltása", "driversSw": "Illesztőprogramok kizárása a frissítésekből", "telemetryServicesSw": "Telemetriai szolgáltatások letiltása", "privacySw": "Adatvédelem fokozása", "ccSw": "Felhőalapú vágólap letiltása", "cortanaSw": "Cortana kikapcsolása", "sensorSw": "Érzékelő szolgáltatások letiltása", "castSw": "Átküldés az eszközre eltávolítása", "inkSw": "A Windows Ink letiltása", "spellSw": "Helyesírás-ellenőrzés kikapcsolása", "xboxSw": "Xbox Live letiltása", "gameBarSw": "Játék sáv kikapcsolása", "insiderSw": "Insider program letiltása", "actionSw": "Értesítési központ letiltása", "disableOneDriveSw": "OneDrive letiltása", "tpmSw": "TPM 2.0 ellenőrzés letiltása", "leftTaskbarSw": "Tálca balra igazítása", "snapAssistSw": "Snap Assist kikapcsolása", "widgetsSw": "Widgetek letiltása", "chatSw": "Csevegés letiltása", "smallerTaskbarSw": "Tálca kisebbé tétele", "classicRibbonSw": "Engedélyezze a klasszikus szalagot az Explorerben", "classicContextSw": "Klasszikus jobb klikk menü engedélyezése", "refreshModernAppsButton": "Frissítés", "uninstallModernAppsButton": "Eltávolítás", "txtModernAppsTitle": "Távolítsd el a nem kívánt UWP-alkalmazásokat", "chkSelectAllModernApps": "Összes kijelölése", "chkOnlyRemovable": "Csak az eltávolítható elemek", "onedriveM": "Biztos, hogy szeretné eltávolítani a OneDrive-ot? Ez törölni fogja az asztali és dokumentumfájljait! Csak helyi fiókon használja ezt a lehetőséget!", "startupTitle": "Válaszd ki az indító elemeket", "removeStartupItemB": "Törlés", "locateFileB": "Fájl keresése", "findInRegB": "Keresés a Beállításszerkesztőben", "analyzeDriveB": "Elemzés", "refreshStartupB": "Frissítés", "restoreStartupB": "Visszaállítás", "backupStartupB": "Biztonsági mentés", "lblBackupTitle": "Mentés címe:", "doBackup": "Rendben", "cancelBackup": "Mégse", "startupItemName": "Név", "startupItemLocation": "Helyszín", "startupItemType": "Típus", "txtFeedError": "Nincs internetkapcsolat, próbáld meg újra frissíteni a linkeket", "appsTitle": "Hasznos alkalmazások gyors letöltése és telepítése", "btnGetFeed": "Linkek frissítése", "bitPref": "Bit preferencia beállítása", "linkWarnings": "Láthatóak a figyelmeztetések", "txtDownloadStatus": "Tétlen", "goToDownloadsB": "Letöltési mappa", "btnDownloadApps": "Letöltés", "cAutoInstall": "Telepítés letöltés után", "setDownDirLbl": "Letöltési mappa beállítása", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Összes kijelölése", "checkTemp": "Ideiglenes fájlok", "checkLogs": "Windows naplók", "checkMiniDumps": "BSOD minidumpok", "checkBin": "A lomtár kiürítése", "checkMediaCache": "Médialejátszó gyorsítótár", "checkErrorReports": "Hibajelentések", "cleanDriveB": "Tisztítás", "lblPretext": "Maximális felszabadítandó méret:", "cleanerTitle": "Rendszer meghajtó megtiszítása", "pingerTitle": "Pingeljen IP-címeket és mérd fel a késleltetési időt", "lblPinger": "IP / Domain név", "btnOpenNetwork": "Hálózati kapcsolatok megnyitása", "copyIPB": "Másolás", "copyB": "IP Másolása", "btnShodan": "Ellenőrizze a SHODAN.io oldalon", "btnPing": "Ping", "lblResults": "Eredmények", "flushCacheB": "DNS gyorsítótár ürítése", "btnExport": "Exportálás", "hostsTitle": "Szerkeszd hatékonyan a Hosts fájlját", "linkLocate": "Keresd meg", "linkAdvancedEdit": "Speciális szerkesztő", "linkRestoreDefault": "Alapértelmezett visszaállítása", "lblIP": "IP cím", "lblDomain": "Domain", "chkBlock": "Blokkolás", "addHostB": "Hozzáadás", "lblLock": "Védje HOSTS fájlját zárolással", "chkReadOnly": "Írásvédett", "lblAdblock": "Előre elkészített adblockok", "lblAdblockSub": "(törli az aktuális konfigurációt)", "adblockS": "AdBlock + Közösségi", "adblockP": "AdBlock + Pornó", "removeHostB": "Törlés", "refreshHostsB": "Frissítés", "removeAllHostsB": "Minden törlése", "regFixB": "Javítás", "regLbl": "(néhány változtatásra szükség lehet ehhez)", "checkRestartExplorer": "A változások alkalmazásához indítsa újra a Böngészőt is", "checkRegistryEditor": "Beállításszerkesztő", "checkFirewall": "Windows tűzfal", "checkContextMenu": "Jobb klikk menü", "checkRunDialog": "Párbeszédpanel futtatása", "checkFolderOptions": "Mappa beállítások", "checkControlPanel": "Vezérlőpult", "checkCommandPrompt": "Parancssor", "checkTaskManager": "Feladatkezelő", "checkEnableAll": "Összes engedélyezése", "registryTitle": "Gyakori beállítási problémák javítása", "quickAccessToggle": "Gyorselérési menü megjelenítése", "helpTipsToggle": "Súgóüzenetek megjelenítése", "lblTheming": "Válassz egy témát", "radioOcean": "Óceán", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Karamell", "radioLime": "Lime", "radioMinimal": "Minimális", "lblUpdating": "Ellenőrzés és frissítsés", "btnUpdate": "Frissítés ellenőrzése", "btnChangelog": "Változások megtekintése", "lblUpdateDisabled": "Kísérleti verziók letiltva", "lblTroubleshoot": "Hibaelhárítás", "btnViewLog": "Hibák megtekintése", "btnOpenConf": "Konfigurációs mappa megjelenítése", "btnResetConfig": "Javítás", "integrator1": "Az Integrator képes teljesen testreszabott\nlemeket hozzáadni az Asztal jobb klikk menüjéhez:", "integrator2": "• Bármilyen program", "integrator3": "• Mappák parancsikonjai", "integrator4": "• Linkek az internetre", "integrator5": "• Bármilyen típusú fájl", "integrator6": "• Parancsok", "integrator7": "Az elemek egyéni ikonokkal és pozícióval rendelkezhetnek.\nAz elemek elrejthetők is, és csak a SHIFT billentyű lenyomásával érhetők el.\nEz egyéni parancsokat is létrehozhat a párbeszédpanel futtatásához, így könnyen elindíthat bármilyen alkalmazást a kívánt kulcsszó beírásával.", "integratorInfoTab": "Infó", "tabPage8": "Új/Módosítás", "tabPage9": "Törlés", "tabPage10": "Kész menük", "tabPage11": "Párbeszédpanel futtatása", "addItemL": "Egy elem hozzáadása vagy módosítása", "itemtype": "Elem típusa", "radioProgram": "Program", "radioFolder": "Mappa", "radioLink": "Link", "radioFile": "Fájl", "radioCommand": "Parancs", "itemtoaddgroup": "Program hozzáadása", "folderToAdd": "Mappa hozzáadása", "linkToAdd": "Link hozzáadása", "fileToAdd": "Fájl hozzáadása", "commandToAdd": "Parancs hozzáadása", "icontoaddgroup": "Ikon hozzáadása", "checkDefaultIcon": "Program ikonjának használata", "checkDefaultFolderIcon": "Alapértelmezett mappa ikon használata", "checkFavicon": "Weboldalról letöltött ikon (favicon)", "checkNoIcon": "Nincs ikon", "dnsCacheM": "DNS Cache generálódik, próbáld meg később újra!", "itemposition": "Elem pozíciója", "radioTop": "Fent", "radioMiddle": "Középen", "radioBottom": "Lent", "security": "Biztonság", "checkShift": "Csak a SHIFT lenyomásakor jelenik meg", "itemnamegroup": "Elem neve a menüben", "btnAddItem": "Új/Módosítás", "removeIntegratorItemsL": "Meglévő asztali elemek törlése", "removeDIB": "Törlés", "refreshIIB": "Frissítés", "removeAllIIB": "Összes törlése", "PMB": "Tápellátás menü hozzáadása", "STB": "Rendszereszközök hozzáadása", "WAB": "Windows-alkalmazások hozzáadása", "SSB": "Rendszerparancsikonok hozzáadása", "DSB": "Asztali parancsikonok hozzáadása", "AddOwnerB": "'Tulajdonjog átvétele' hozzáadása", "RemoveOwnerB": "'Tulajdonjog átvétele' törlése", "AddCMDB": "'Megnyitás CMD-vel' hozzáadása", "DeleteCMDB": "'Megnyitás CMD-vel' törlése", "readyMenusL": "Hasznos, előre elkészített menük hozzáadása", "refreshCCB": "Frissítés", "removeCCB": "Törlés", "removeCCL": "Meglévő parancsok törlése", "btnCreateCustomCommand": "Új", "ccKeywordL": "kulcsszó", "ccFileL": "Fájl helyszíne", "ccL": "Határozd meg egyéni futtatási parancsait", "btnYes": "Igen", "btnNo": "Nem", "btnOk": "Rendben", "HostsEditorForm": "Gazdaszerkesztő", "savebtn": "Mentés", "closebtn": "Bezárás", "adminMissingMsg": "Optimizer-t rendszergazdaként kell futtatni!\nAz alkalmazás most bezárul...", "unsupportedMsg": "Optimizer csak Windows 7 és annál újabb operációs rendszerekkel működik!\nAz alkalmazás most bezárul...", "confInvalidVersionMsg": "A Windows verzió nem egyezik!", "confInvalidFormatMsg": "A konfigurációs fájl érvénytelen formátumú!", "confNotFoundMsg": "Konfig fájl nem létezik!", "argInvalidMsg": "Hibás érvelés! Példa: Optimizer.exe /template.json", "alreadyRunningMsg": "Az Optimizer már fut a háttérben!", "StartupPreviewForm": "Indítási elemek előnézete", "StartupRestoreForm": "Indítási elemek visszaállítása", "backupL": "Induló elemek viszaállítása", "txtNoBackups": "Nem találhatók biztonsági mentések", "previewBackupB": "Előnézet", "restoreBackupB": "Visszaállítás", "deleteBackupB": "Törlés", "noNewVersion": "Már a legújabb verziót használod!", "betaVersion": "Kísérleti verziót használsz!", "removeAllStartup": "Biztosan törölni akarod az összes indítási elemet?", "removeAllHosts": "Biztosan törölni akarod az összes gazdagép bejegyzést?", "removeAllItems": "Biztosan törölni akarod az összes asztali elemet?", "removeModernApps": "Biztosan eltávolítod a következő alkalmazás(oka)t?", "errorModernApps": "A következő alkalmazás(ok) nem távolíthatók el:\n", "latestVersionM": "Legújabb verzió: {LATEST}", "currentVersionM": "Jelenlegi verzió: {CURRENT}", "resetMessage": "Az alkalmazás kilép, és megpróbálja megjavítani magát.", "newVersion": "Új verzió érhető el! Szeretné most letölteni?\nAz alkalmazás néhány másodpercen belül újraindul.", "flushDNSMessage": "Biztosan ki szeretné üríteni a Windows DNS-gyorsítótárát?\n\nEz egy pillanatra megszakítja az internetkapcsolatot, és a megfelelő működéshez újraindításra lehet szükség.", "downloadsFinished": "Kész", "downloadDirInvalid": "A megadott letöltési mappa nem érvényes", "no64Download": "Nincs 64 bites verzió, 32 bites letöltése", "no32Download": "Nincs 32 bites verzió, kihagyva", "installing": "Telepítés", "linkInvalid": "A link már nem érvényes", "noErrorsM": "Nincs megjeleníthető hiba!", "hostNotFound": "Nem található gazdagép", "pinging": "Pingelés 32 bájttal - 9-szer...", "latency": "LATENCY", "lblSystemTools": "Rendszer és eszközök", "lblInternet": "Internet", "lblCoding": "Kódolás", "lblVideoSound": "Videó és hang", "min": "Min", "max": "Max", "avg": "Átlag", "timeout": "A kérés időtúllépése lejárt", "languagesL": "Nyelv kiválasztása", "trayStartup": "Indításkezelő", "trayCleaner": "Lemeztisztító", "trayPinger": "Pinger eszköz", "trayHosts": "HOSTS szerkesztő", "trayAD": "Alkalmazások letöltő", "trayOptions": "Opciók", "trayRegistry": "Beállítások javítása", "trayRestartExplorer": "Explorer Újraindítása", "trayExit": "Kilépés", "tipWhatsThis": "Mi ez?", "hwDetailed": "Részletes nézet", "btnCopyHW": "Másolás", "btnSaveHW": "Mentés", "indiciumTab": "Hardver", "toolHWCopy": "Másolás", "toolHWGoogle": "Keresés a Google-lal", "toolHWDuck": "Keresés a DuckDuckGo segítségével", "trayHW": "Hardverinformáció", "os": "Operációs rendszer", "cpu": "Processzorok", "ram": "Memória", "gpu": "Grafika", "mobo": "Alaplapok", "disk": "Lemezek", "inet": "Hálózati adapterek", "audio": "Audió", "dev": "Perifériák", "vm": "Virtuális memória", "drives": "Lemezek", "volumes": "Partíciók", "opticals": "Optikai meghajtók", "removables": "Cserélhető meghajtók", "physicalAdapters": "Fizikális adapterek", "virtualAdapters": "Virtuális adapterek", "keyboards": "Billentyűzetek", "pointings": "Mutatóeszközök", "performanceTip": "Belső Windows-beállítások gyűjteménye a teljesítmény optimalizálása érdekében. Teljesen kockázatmentes az alkalmazása. - Csökkenti a várakozási időt a nem reagáló folyamatok leállítása előtt. - Csökkenti a menü megjelenítésének késleltetési idejét. - Letiltja az alacsony lemezterület ellenőrzéséről szóló értesítést - Letiltja a shake-to-minimize funkciót - Mindig megmutatja a fájlkiterjesztéseket - Megjeleníti a rejtett fájlokat", "networkTip": "A Windows olyan hálózati szabályozási mechanizmust valósít meg, amely korlátozza hálózati forgalom multimédiás alkalmazások futtatásakor. Ez is csökkentheti a hálózatot teljesítmény online játékok közben.", "defenderTip": "A Windows Defender a Windows rendszerek beépített víruskeresője.", "smartScreenTip": "A SmartScreen automatikusan átvizsgálja a fájlokat, letöltéseket és webhelyeket, blokkolva már ismert veszélyes tartalomat, és figyelmeztet, mielőtt futtatná őket.", "systemRestoreTip": "A rendszer-visszaállítás egy olyan szolgáltatás, amely lehetővé teszi a Windows állapotának visszaállítását egy előzőhöz, hogy helyreálljon a meghibásodások vagy egyéb problémák után.", "reportingTip": "A hibajelentés összegyűjti az alkalmazások összeomlását és a hibákat, és elküldi a Microsoftnak.", "telemetryTasksTip": "A telemetriai szolgáltatások időszakonként használati és teljesítményadatokat küldenek a Microsoftnak, a jövőbeni fejlesztés érdekében.", "officeTelemetryTip": "Az irodai telemetria rendszeresen küld használati és teljesítményadatokat a Microsoftnak a jövőbeni fejlesztés érdekében.", "ffTelemetryTip": "Letiltja a Mozilla Firefox telemetriai és adatjelentési szolgáltatásokat.", "vsTip": "Letiltja a Visual Studio telemetriai és visszajelzési szolgáltatásait, beleértve az SQM klienst.", "chromeTelemetryTip": "Letiltja a Google Chrome telemetriai és szoftveres jelentési eszközét (közismerten magas CPU-használatot okoz).", "printTip": "A nyomtatási szolgáltatás felelős a nyomtatók észleléséért, telepítéséért és használatáért.", "faxTip": "A faxszolgáltatás a faxok küldéséért és fogadásáért felelős.", "mediaSharingTip": "A Media Player Sharing otthoni médiamegosztást biztosít a Windows Media Player számára.", "stickyTip": "A ragadós kulcsok egy kisegítő szolgáltatás, amely segít a Windows-felhasználóknak testi fogyatékosságok, amelyek csökkentik a kapcsolódó mozgásfajtát ismétlődő megerőltetési sérülés.", "homegroupTip": "A HomeGroup egy olyan szolgáltatás, amely lehetővé teszi a fájlok megosztását otthoni hálózaton a Windows Intéző segítségével.", "superfetchTip": "A Superfetch előtölti a gyakran használt alkalmazásokat a RAM-ba, ami magas lemezhasználatot okoz, különösen a merevlemezeken.", "compatTip": "A kompatibilitási asszisztens szolgáltatás felismeri a régebbi programok ismert kompatibilitási problémáit.", "disableOneDriveTip": "Letiltja a OneDrive felhőalapú tárolás integrációját.", "oldMixerTip": "Visszaállítja a klasszikus hangerőkeverő vezérlőpultját.", "oldExplorerTip": "- Letiltja a gyorselérési előzményeket - A File Explorer alapértelmezett nézetét erre a számítógépre állítja - Letiltja a legutóbbi fájlokat - Eltávolítja a keresést, a feladatot és az időjárást a tálcáról - Letiltja a Fájlelőzményeket", "adsTip": "Megakadályozza a hirdetések megjelenését a Start menüben.", "uODTip": "Teljesen eltávolítja a OneDrive felhőalapú tárolási integrációt.", "peopleTip": "A Saját emberek egy új funkció, amely a legutóbbi névjegyeket mutatja a tálcán.", "longPathsTip": "Eltávolítja a maximális elérési úthosszra vonatkozó 256 karakteres korlátozást.", "inkTip": "A Windows Ink támogatja a digitális tollakat a képernyőre való rajzoláshoz.", "spellTip": "Csak az érintőbillentyűzet funkciói, például: - Automatikus javítás - Szöveges javaslatok - Helyesírás-ellenőrzés", "xboxTip": "Az Xbox Live szolgáltatások streamelést, rögzítést és közösségi funkciókat kínálnak Xbox játékokhoz.", "actionTip": "Az értesítési központ az értesítések és a gyorsművelet-csempék központi helye, mint a Wi-Fi, Bluetooth stb.", "autoUpdatesTip": "Letiltja a Windows frissítések automatikus letöltését és telepítését. Ehelyett értesítés jelenik meg, ha új frissítések állnak rendelkezésre. Ezenkívül letiltja a kézbesítés-optimalizálási szolgáltatást.", "driversTip": "Hasznos, ha a Windows Update folyamatosan lecseréli a megfelően működő drivert egy hibással.", "telemetryServicesTip": "A telemetriai szolgáltatások nyomon követik és naplózzák a használati adatokat, visszajelzést küldenek elemzés céljából a Microsoftnak.", "privacyTip": "Extra adatvédelmi beállítások, amelyek letiltják a következőket: - Biometrikus adatok - Geolokáció - Alkalmazások megosztása az eszközök között - Szövegnaplózás - Diagnosztika", "ccTip": "A Cloud Clipboard megosztja a vágólap adatait az eszközökön. Lehetővé teszi a másolást az egyik eszközre, és a beillesztést egy másikra. Microsoft-fiókkal való bejelentkezés szükséges.", "cortanaTip": "A Cortana egy virtuális AI-alapú asszisztens. - Letiltja a Cortanát. - Letiltja a webes keresést a Start menüben - Megakadályozza a keresési előzmények megőrzését", "sensorTip": "Az érzékelők működését kezelő szolgáltatások, mint az automatikus forgatás, automatikus fényerő stb. Csak táblagépeken vagy érintőképernyős eszközökön használható.", "castTip": "Eltávolítja a jobb gombbal történő kattintást a médiatartalom Miracast eszközökkel való megosztásához.", "gameBarTip": "A Game Bar egy gyors hozzáférésű menü az Xbox játékszolgáltatásokhoz.", "insiderTip": "A Windows Insider program lehetővé teszi a legújabb szolgáltatások kipróbálását mielőtt nyilvánosságra hozzák őket. Feleslegesnek azoknak a felhasználók számára, akik nem kívánnak részt venni benne.", "tpmTip": "Kikerüli a Secure Boot és a TPM 2.0 követelményeit, lehetővé téve a Windows 11-re való frissítést.", "leftTaskbarTip": "A tálcaikonokat balra igazítja.", "snapAssistTip": "Letiltja a Snap Assist Flyout funkciót, amikor a nagyítás gombokat lebegteti.", "widgetsTip": "Letiltja a Widgetek funkciót, és eltávolítja a Widgetek ikont a tálcáról.", "chatTip": "Eltávolítja a Csevegés ikont a tálcáról.", "smallerTaskbarTip": "Kisebbé teszi a tálca méretét és az ikonokat.", "classicRibbonTip": "Visszaállítja a klasszikus szalagsávot a Windows 10 rendszerből a File Explorerben.", "classicContextTip": "Visszaállítja a klasszikus jobb egérgombos menüt, eltávolítva a További beállítások megjelenítése lehetőséget.", "gameModeSw": "Játék mód engedélyezése", "gameModeTip": "Engedélyezi a játékmódot a hardveresen gyorsított GPU-ütemezéssel kombinálva.", "systemRestoreM": "Biztosan ki akarja kapcsolni a Rendszer-visszaállítást? Ezzel törli a jelenlegi biztonsági másolatot!", "compactModeSw": "A kompakt mód engedélyezése az Explorerben", "compactModeTip": "Csökkenti az extra helyet és a kitöltést a fájlok között a Fájlkezelőben.", "trayUnlocker": "Fájlfogantyúk", "stickersTip": "A matricák nagy hangulatjelek, amelyek a háttérképeken jelennek meg, és közösségi üzenetküldőkben használatosak.", "hibernateSw": "A hibernált állapot letiltása", "hibernateTip": "Letiltja a Windows hibernált funkcióját.", "smb1Sw": "Az SMBv1 protokoll letiltása", "smb2Sw": "Az SMBv2 protokoll letiltása", "smbTip": "Az SMB{v} protokoll felelős a Windows számítógépek közötti fájlmegosztásért. Lecserélték SMBv3-ra, ami biztonságosabb.", "ntfsStampSw": "Az NTFS időbélyegző letiltása", "ntfsStampTip": "A fájl utolsó elérési időpontjának bélyegzőjét jelzi. Kikapcsolása csökkentheti a lemezeken végzett I/O műveleteket.", "autoStartToggle": "Kezdje a Windows rendszerrel", "nvidiaTelemetrySw": "Az NVIDIA telemetria letiltása", "dnsTitle": "DNS-kiszolgáló gyors cseréje", "vbsSw": "Virtualizáció alapú biztonság kikapcsolása", "vbsTip": "A kernel olyan funkciója, amely megakadályozza a kártékony driverek folyamatokba történő betöltését. Ez negatív hatással van a teljesítményre.", "winSearchSw": "Keresés letiltása", "winSearchTip": "Letiltja a Windows keresőszolgáltatást.", "storeUpdatesSw": "A Microsoft Store frissítéseinek letiltása", "storeUpdatesTip": "Letiltja a Microsoft Store automatikus frissítési funkcióját.", "btnRestoreUwp": "Állítsa vissza az összes UWP-t", "restoreUwpMessage": "Biztosan ezt akarod csinálni?", "telemetrySvcToggle": "Az Optimizer telemetria letiltása", "edgeAiSw": "Az Edge Discover letiltása", "edgeTelemetrySw": "Az Edge telemetria letiltása", "edgeAiTip": "Eltávolítja a Discover Bart az Edge-ből.", "edgeTelemetryTip": "Letiltja a SmartScreen, a Spotlight és a telemetria szolgáltatásokat az Edge-ben.", "hpetSw": "HPET letiltása", "loginVerboseSw": "Részletes bejelentkezési képernyő engedélyezése", "advancedTab": "Speciális", "btnRestartSafe": "Újraindítás csökkentett módban", "btnRestart": "Újraindítás normál módban", "btnRestartDisableDefender": "Indítsa újra és tiltsa le a Defendert", "classicPhotoViewerSw": "A klasszikus fényképnézegető visszaállítása", "tabPage3": "Betűtípusok", "fontSetTitle": "Állítsa be kedvenc betűtípusát a Windows alapértelmezett betűtípusaként", "label11": "Jelenlegi betűtípus:", "btnSetGlobalFont": "Beállítás alapértelmezettként", "lblFontsCount": "Elérhető betűtípusok:", "btnRestoreFont": "Alapértelmezett visszaállítása", "btnRefreshFonts": "Frissítés", "chkAllNics": "Minden hálózati adapterhez beállítva", "chkCustomDns": "Állítson be egy egyéni DNS-t", "btnSetDns": "Állítson be egy DNS-t", "copilotSw": "CoPilot AI kikapcsolása", "copilotTip": "Teljesen kikapcsolja a CoPilot AI funkciót.", "btnReinforce": "Iránypontok erősítése", "msgReinforce": "Biztos vagy benne, hogy újra alkalmazod az aktuális iránypontokat?", "newsInterestsSw": "Hírek és érdeklődések kikapcsolása", "allTrayIconsSw": "Összes értesítési ikon megjelenítése", "noMenuDelaySw": "Menük késleltetésének eltávolítása", "hideSearchSw": "Keresés elrejtése a feladatlista keresőmezőjében", "hideWeatherSw": "Időjárás elrejtése a feladatlista területén", "enableUtcSw": "UTC Idő Engedélyezése", "autoUpdateToggle": "Frissítés indításkor", "modernStandbySw": "Modern készenléti állapot kikapcsolása", "label24": "Rendszerváltozók szerkesztője", "label23": "Új rendszerváltozó útvonala:", "button3": "Hozzáadás", "label21": "Rendszerváltozók", "button1": "Törlés", "button2": "Frissítés" } ================================================ FILE: Optimizer/Resources/i18n/ID.json ================================================ { "subSystem": "Sistem", "subPrivacy": "Privasi", "subGaming": "Gaming", "subTouch": "Sentuh", "subTaskbar": "Bilah Tugas", "subExtras": "Extra", "btnAbout": "OKE", "restartButton": "Mulai ulang sekarang", "restartButton8": "Mulai ulang sekarang", "restartButton10": "Mulai ulang sekarang", "btnFind": "Cari", "btnKill": "Hentikan", "trayUnlocker": "Menangani FIle", "restartAndApply": "Mulai ulang untuk menerapkan perubahan", "regBackupSw": "Aktifkan Cadangan Registri", "txtVersion": "Versi: {VN}", "txtBitness": "Kamu Bekerja Dengan {BITS}", "linkUpdate": "Pembaruan tersedia", "lblLab": "Pembuatan eksperimental\n(Hapus setelah pengujian)", "performanceSw": "Optimalkan Performa", "networkSw": "Pengoptimalisasi Jaringan", "defenderSw": "Nonaktifkan Windows Defender", "systemRestoreSw": "Nonaktifkan Pemulihan Sistem", "printSw": "Nonaktifkan Print Service", "mediaSharingSw": "Nonaktifkan Media Player Sharing", "faxSw": "Nonaktifkan Fax Service", "reportingSw": "Nonaktifkan Error Reporting", "homegroupSw": "Nonaktifkan HomeGroup", "superfetchSw": "Nonaktifkan Superfetch", "telemetryTasksSw": "Nonaktifkan Telemetry Tasks", "officeTelemetrySw": "Nonaktifkan Office Telemetry", "vsSW": "Nonaktifkan Visual Studio Telemetry", "ffTelemetrySw": "Nonaktifkan Mozilla Firefox Telemetry", "chromeTelemetrySw": "Nonaktifkan Google Chrome Telemetry", "compatSw": "Nonaktifkan Compatibility Assistant", "smartScreenSw": "Nonaktifkan SmartScreen", "stickySw": "Nonaktifkan Sticky Keys", "universalTab": "General", "modernAppsTab": "UWP Apps", "startupTab": "Startup", "appsTab": "Apps", "cleanerTab": "Cleaner", "pingerTab": "Network", "registryFixerTab": "Registry", "integratorTab": "Integrator", "CleanPreviewForm": "Clean Preview", "optionsTab": "Options", "oldMixerSw": "Aktifkan Classic Volume Mixer", "oldExplorerSw": "Kembalikan Classic File Explorer", "adsSw": "Nonaktifkan Start Menu Ads", "uODSw": "Copot OneDrive", "peopleSw": "Nonaktifkan My People", "longPathsSw": "Aktifkan Long Paths", "autoUpdatesSw": "Nonaktifkan Automatic Updates", "driversSw": "Mengecualikan Driver dari Pembaruan", "telemetryServicesSw": "Nonaktifkan Telemetry Services", "privacySw": "Tingkatkan Privasi", "ccSw": "Nonaktifkan Cloud Clipboard", "cortanaSw": "Nonaktifkan Cortana", "sensorSw": "Nonaktifkan Sensor Services", "castSw": "Hapus Cast to Device", "inkSw": "Nonaktifkan Windows Ink", "spellSw": "Nonaktifkan Spell Checking", "xboxSw": "Nonaktifkan Xbox Live", "gameBarSw": "Nonaktifkan Game Bar", "insiderSw": "Nonaktifkan Insider Service", "actionSw": "Nonaktifkan Notification Center", "disableOneDriveSw": "Nonaktifkan OneDrive", "tpmSw": "Nonaktifkan TPM Check", "leftTaskbarSw": "Sejajarkan Bilah Tugas ke Kiri", "snapAssistSw": "Nonaktifkan Snap Assist", "widgetsSw": "Nonaktifkan Widgets", "chatSw": "Nonaktifkan Chat", "smallerTaskbarSw": "Make Taskbar Smaller", "classicRibbonSw": "Aktifkan Classic Ribbon in Explorer", "classicContextSw": "Aktifkan Classic Right-Click Menu", "refreshModernAppsButton": "Segarkan", "uninstallModernAppsButton": "Copot Pemasangan", "txtModernAppsTitle": "Copot unwanted UWP apps", "chkSelectAllModernApps": "Pilih Semua", "chkOnlyRemovable": "Hanya yang dapat dicopot pemasangannya", "onedriveM": "Apakah Kamu yakin ingin mencopot OneDrive? Ini akan menghapus file Desktop dan Dokumen Kamu! Hanya gunakan opsi ini pada akun lokal!", "startupTitle": "Pilih item startup Kamu", "removeStartupItemB": "Hapus", "locateFileB": "Cari File", "findInRegB": "Cari Di Registry", "analyzeDriveB": "Analisis", "refreshStartupB": "Segarkan", "restoreStartupB": "Kembalikan", "backupStartupB": "Cadangkan", "lblBackupTitle": "Nama Pencadangan:", "doBackup": "OKE", "cancelBackup": "Batal", "startupItemName": "Nama", "startupItemLocation": "Lokasi", "startupItemType": "Tipe", "txtFeedError": "Tidak ada koneksi internet, coba muat ulang tautan lagi", "appsTitle": "Unduh & pasang aplikasi yang berguna dengan cepat", "btnGetFeed": "Muat ulang Tautan", "bitPref": "Menetapkan preferensi bit", "linkWarnings": "Lihat Peringatan", "txtDownloadStatus": "Menunggu Tugas", "goToDownloadsB": "Pergi Ke Unduhan", "btnDownloadApps": "Unduh", "cAutoInstall": "Mengintall Setelah Download Selesai", "setDownDirLbl": "Atur folder unduhan", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Pilih Semua", "checkTemp": "File Sementara", "checkLogs": "Log Windows", "checkMiniDumps": "Minidump BSOD", "checkBin": "Kosongkan Recycle Bin", "checkMediaCache": "Pemutar Media cache", "checkErrorReports": "Laporan Error", "cleanDriveB": "Bersih", "lblPretext": "Ukuran maksimum yang akan dibebaskan:", "cleanerTitle": "Membersihkan drive sistem Anda", "pingerTitle": "Ping alamat IP dan menilai latensi Anda", "lblPinger": "IP / Nama Domain", "btnOpenNetwork": "Buka Koneksi Jaringan", "copyIPB": "Salin", "copyB": "Salin IP", "btnShodan": "Cek Di SHODAN.io", "btnPing": "Ping", "lblResults": "Hasil", "flushCacheB": "Mengosongkan cache DNS", "btnExport": "Ekspor", "hostsTitle": "Mengedit file host Anda secara efisien", "linkLocate": "Lokasi", "linkAdvancedEdit": "Editor Lanjutan", "linkRestoreDefault": "Kembali Ke Bawaan", "lblIP": "IP address", "lblDomain": "Domain", "chkBlock": "Blokir", "addHostB": "Tambah", "lblLock": "Lindungi file HOSTS Anda dengan menguncinya", "chkReadOnly": "Hanya-Baca", "lblAdblock": "Blok iklan yang sudah dibuat sebelumnya", "lblAdblockSub": "(akan menghapus konfigurasi Anda saat ini)", "adblockS": "Blokir Iklan + Sosial", "adblockP": "Blokir Iklan + Porno", "removeHostB": "Hapus", "refreshHostsB": "Segarkan", "removeAllHostsB": "Hapus Semua", "regFixB": "Perbaiki", "regLbl": "(beberapa perubahan mungkin memerlukan ini)", "checkRestartExplorer": "Mulai ulang juga Explorer untuk menerapkan perubahan", "checkRegistryEditor": "Registry Editor", "checkFirewall": "Windows Firewall", "checkContextMenu": "Menu Klik Kanan", "checkRunDialog": "Jalankan Dialog", "checkFolderOptions": "Opsi File", "checkControlPanel": "Control Panel", "checkCommandPrompt": "Command Prompt", "checkTaskManager": "Manager Tugas", "checkEnableAll": "Aktifkan Semua", "registryTitle": "Perbaiki masalah registri umum", "quickAccessToggle": "Tampilkan Menu Akses Cepat", "helpTipsToggle": "Tampilkan Pesan Bantuan", "lblTheming": "Pilih Tema Kmau", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Cek && Perbaharui", "btnUpdate": "Cek && Perbaharui", "btnChangelog": "Lihat Perubahan", "lblUpdateDisabled": "Dinonaktifkan dalam versi eksperimental", "lblTroubleshoot": "Penyelesaian masalah", "btnViewLog": "Lihat Error", "btnOpenConf": "Tampilkan folder konfigurasi", "btnResetConfig": "Perbaikanr", "integrator1": "Integrator dapat menambahkan\nitem yang sepenuhnya dapat disesuaikan di menu klik kanan Desktop:", "integrator2": "• Program apa pun", "integrator3": "• Pintasan ke folder", "integrator4": "•Tautan ke web", "integrator5": "• Semua jenis file", "integrator6": "• Perintah", "integrator7": "Item dapat memiliki ikon dan posisi khusus.\nMereka juga dapat disembunyikan,hanya dapat diakses\ndengan menekan tombol SHIFT.\nHal ini juga dapat membuat perintah kustom\nuntuk Run Dialog, sehingga mudah untuk meluncurkan\naplikasi apa pun hanya dengan mengetikkan kata kunci yang Anda inginkan.", "integratorInfoTab": "Informasi", "tabPage8": "Tambah/modifikasi", "tabPage9": "Menghapus", "tabPage10": "Menu Siap", "tabPage11": "Jalankan Dialog", "addItemL": "Menambah atau mengubah item", "itemtype": "Tipe barang", "radioProgram": "Program", "radioFolder": "Folder", "radioLink": "Tautan", "file radio": "Berkas", "radioCommand": "Perintah", "itemtoaddgroup": "Program yang akan ditambahkan", "folderToAdd": "Folder yang akan ditambahkan", "linkToAdd": "Tautan untuk menambahkan", "fileToAdd": "File yang akan ditambahkan", "commandToAdd": "Perintah untuk menambahkan", "icontoaddgroup": "Ikon untuk ditambahkan", "checkDefaultIcon": "Gunakan ikon program", "checkDefaultFolderIcon": "Gunakan ikon folder default", "checkFavicon": "Unduh ikon situs web (favicon)", "checkNoIcon": "Tidak ada ikon", "dnsCacheM": "DNS Cache sedang dibuat, coba lagi nanti!", "itemposition": "Posisi item", "radioTop": "Atas", "radioMiddle": "Tengah", "radioBottom": "Bawah", "security": "Keamanan", "checkShift": "Tampilkan hanya ketika SHIFT ditekan", "itemnamegroup": "Nama item di menu", "btnAddItem": "Tambah/Ubah", "removeIntegratorItemsL": "Hapus item Desktop yang ada", "removeDIB": "Hapus", "refreshIIB": "Segarkan", "removeAllIIB": "Hapus semua", "PMB": "Tambahkan Menu Daya", "STB": "Tambahkan Alat Sistem", "WAB": "Tambahkan Aplikasi Windows", "SSB": "Tambahkan Pintasan Sistem", "DSB": "Tambahkan Pintasan Desktop", "AddOwnerB": "Tambahkan 'Ambil Kepemilikan'", "RemoveOwnerB": "Hapus 'Ambil Kepemilikan'", "AddCMDB": "Tambahkan 'Buka dengan CMD'", "DeleteCMDB": "Hapus 'Buka dengan CMD'", "readyMenusL": "Tambahkan menu berguna yang telah dibuat sebelumnya", "refreshCCB": "Segarkan", "removeCCB": "Hapus", "removeCCL": "Hapus perintah yang ada", "btnCreateCustomCommand": "Buat", "ccKeywordL": "kata kunci", "ccFileL": "Lokasi berkas", "ccL": "Tentukan perintah Jalankan kustom Anda", "btnYes": "Ya", "btnNo": "Tidak", "btnOk": "Oke", "HostsEditorForm": "Editor Host", "savebtn": "Simpan", "closebtn": "Tutup", "adminMissingMsg": "Pengoptimal harus dijalankan sebagai administrator!\nAplikasi sekarang akan ditutup...", "unsupportedMsg": "Optimizer berfungsi dengan Windows 7 dan lebih tinggi!\nAplikasi sekarang akan ditutup...", "confInvalidVersionMsg": "Versi Windows tidak cocok!", "confInvalidFormatMsg": "Format file konfigurasi tidak valid!", "confNotFoundMsg": "Berkas konfigurasi tidak ada!", "argInvalidMsg": "Argumen tidak valid! Contoh: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer sudah berjalan di latar belakang!", "StartupPreviewForm": "Pratinjau Item Startup", "StartupRestoreForm": "Kembalikan Item Startup", "backupL": "Pulihkan item startup Anda", "txtNoBackups": "Tidak ada cadangan yang ditemukan", "previewBackupB": "Pratinjau", "restoreBackupB": "Pulihkan", "deleteBackupB": "Hapus", "noNewVersion": "Anda sudah memiliki versi terbaru!", "betaVersion": "Anda menggunakan versi percobaan!", "removeAllStartup": "Apakah Anda yakin ingin menghapus semua item startup?", "removeAllHosts": "Apakah Anda yakin ingin menghapus semua entri host?", "removeAllItems": "Apakah Anda yakin ingin menghapus semua item desktop?", "removeModernApps": "Apakah Anda yakin ingin meng-Copot aplikasi berikut?", "errorModernApps": "Aplikasi berikut tidak dapat dihapus instalasinya:\n", "latestVersionM": "Versi terbaru: {TERBARU}", "currentVersionM": "Versi saat ini: {CURRENT}", "resetMessage": "Aplikasi akan keluar dan mencoba memperbaiki dirinya sendiri.", "newVersion": "Ada versi baru yang tersedia! Apakah Anda ingin mengunduhnya sekarang?\nAplikasi akan dimulai ulang dalam beberapa detik.", "flushDNSMessage": "Apakah Anda yakin ingin membersihkan cache DNS Windows?\n\nIni akan menyebabkan koneksi internet terputus sejenak dan mungkin diperlukan restart agar dapat berfungsi dengan baik.", "downloadsFinished": "Selesai", "downloadDirInvalid": "Folder unduhan yang ditentukan tidak valid", "no64Download": "64-bit tidak tersedia, mengunduh 32-bit", "no32Download": "Tidak tersedia 32-bit, lewati", "memasang": "Memasang", "linkInvalid": "Tautan tidak valid lagi", "noErrorsM": "Tidak ada kesalahan untuk ditampilkan!", "hostNotFound": "Tidak dapat menemukan host", "pinging": "Ping dengan 32 byte -9 kali...", "latency": "LATENSI", "lblSystemTools": "Sistem && Alat", "lblInternet": "Internet", "lblCoding": "Pengkodean", "lblVideoSound": "Video && Suara", "min": "Menit", "max": "Maks", "avg": "Rata-rata", "timeout": "Waktu permintaan habis", "languagesL": "Pilih bahasa", "trayStartup": "Manajer Startup", "trayCleaner": "Pembersih Drive", "trayPinger": "Jaringan", "trayHosts": "Editor HOST", "trayAD": "Pengunduh Aplikasi", "trayOptions": "Pilihan", "trayRegistry": "Perbaikan Registri", "trayRestartExplorer": "Mulai ulang Penjelajah", "trayExit": "Keluar", "tipWhatsThis": "Apa ini?", "hwDetailed": "Tampilan Terperinci", "btnCopyHW": "Salin", "btnSaveHW": "Simpan", "indiciumTab": "Perangkat Keras", "toolHWCopy": "Salin", "toolHWGoogle": "Cari dengan Google", "toolHWDuck": "Cari dengan DuckDuckGo", "trayHW": "Informasi Perangkat Keras", "os": "Sistem Operasi", "cpu": "Prosesor", "ram": "Memori", "gpu": "Grafik", "mobo": "Motherboard", "disk": "Penyimpanan", "inet": "Adaptor Jaringan", "audio": "Audio", "dev": "Periferal", "vm": "Memori Virtual", "drives": "Disk Drive", "volume": "Partisi", "opticals": "Drive Optik", "removables": "Drive yang Dapat Dilepas", "physicalAdapters": "Adaptor Fisik", "virtualAdapters": "Adaptor Virtual", "keyboard": "Keyboard", "pointings": "Perangkat Penunjuk", "PerformanceTip": "Kumpulan pengaturan internal Windows untuk mengoptimalkan kinerja. Benar-benar aman untuk diterapkan. -Mengurangi waktu tunggu sebelum mematikan proses yang tidak responsif. -Mengurangi waktu tunda tampilan menu. -Menonaktifkan pemberitahuan pemeriksaan ruang disk rendah -Menonaktifkan fitur goyang untuk meminimalkan -Selalu menampilkan ekstensi file -Menampilkan file tersembunyi", "networkTip": "Windows menerapkan mekanisme pembatasan jaringan yang akan membatasi lalu lintas jaringan saat menjalankan aplikasi multimedia. Hal ini juga dapat mengurangi jaringan performa saat bermain game online.", "defenderTip": "Windows Defender adalah antivirus bawaan pada sistem Windows.", "smartScreenTip": "SmartScreen secara otomatis memindai file, unduhan, dan situs web, memblokir konten berbahaya yang sudah diketahui dan memperingatkan Anda sebelum menjalankannya.", "systemRestoreTip": "System Kembalikan adalah fitur yang memungkinkan untuk mengembalikan status Windows ke yang sebelumnya untuk memulihkan malfungsi atau masalah lainnya.", "reportingTip": "Pelaporan Kesalahan mengumpulkan kerusakan dan kesalahan aplikasi dan mengirimkannya ke Microsoft.", "telemetryTasksTip": "Layanan telemetri mengirimkan data penggunaan dan kinerja secara berkala ke Microsoft, untuk perbaikan di masa depan.", "officeTelemetryTip": "Telemetri kantor mengirimkan penggunaan dan data kinerja ke Microsoft, untuk perbaikan di masa mendatang.", "ffTelemetryTip": "Menonaktifkan layanan telemetri dan pelaporan data Mozilla Firefox.", "vsTip": "Menonaktifkan fitur telemetri dan umpan balik Visual Studio, termasuk klien SQM.", "chromeTelemetryTip": "Menonaktifkan telemetri Google Chrome dan alat pelaporan perangkat lunak (terkenal menyebabkan penggunaan CPU yang tinggi)", "printTip": "Layanan pencetakan bertanggung jawab untuk mendeteksi, menginstal dan memanfaatkan printer.", "faxTip": "Layanan faks bertanggung jawab untuk mengirim dan menerima faks.", "mediaSharingTip": "Berbagi Media Player menyediakan berbagi media rumah untuk Windows Media Player.", "stickyTip": "Sticky Keys adalah fitur aksesibilitas untuk membantu pengguna Windows cacat fisik mengurangi jenis gerakan yang terkait dengannya cedera regangan berulang.", "homegroupTip": "HomeGroup adalah fitur yang memungkinkan untuk berbagi file di jaringan rumah menggunakan Windows Explorer.", "superfetchTip": "Superfetch memuat aplikasi yang umum digunakan ke RAM, menyebabkan penggunaan disk yang tinggi, terutama pada HDD.", "compatTip": "Layanan Asisten Kompatibilitas mendeteksi masalah kompatibilitas yang diketahui pada program lama.", "disableOneDriveTip": "Menonaktifkan integrasi penyimpanan cloud OneDrive.", "oldMixerTip": "Memulihkan panel kontrol pengaduk volume klasik.", "oldExplorerTip": "-Menonaktifkan riwayat Akses Cepat -Mengatur tampilan default File Explorer ke PC ini -Menonaktifkan file terbaru -Menghapus Pencarian, Tugas, dan Cuaca dari bilah tugas -Menonaktifkan Riwayat File", "adsTip": "Mencegah iklan muncul di Menu Mulai.", "uODTip": "Sepenuhnya menghapus integrasi penyimpanan cloud OneDrive.", "peopleTip": "Orang Saya adalah fitur baru yang menampilkan kontak terkini di bilah tugas.", "longPathsTip": "Menghapus batasan panjang jalur maksimum 256 karakter.", "inkTip": "Windows Ink menyediakan dukungan untuk pena digital, untuk menggambar di layar.", "spellTip": "Fitur khusus keyboard sentuh seperti: -Koreksi otomatis -Saran teks -Cek ejaan", "xboxTip": "Layanan Xbox Live menawarkan fitur streaming, perekaman, dan sosial untuk game Xbox.", "actionTip": "Pusat Notifikasi adalah tempat terpusat untuk notifikasi dan ubin tindakan cepat, seperti Wi-Fi, Bluetooth, dll.", "autoUpdatesTip": "Menonaktifkan pengunduhan otomatis dan pemasangan pembaruan Windows. Sebaliknya, ada pemberitahuan ketika pembaruan baru tersedia. Ini juga menonaktifkan layanan Pengoptimalan Pengiriman.", "driversTip": "Berguna ketika Pembaruan Windows terus-menerus menggantikan yang benar driver yang berfungsi dengan yang rusak.", "telemetryServicesTip": "Layanan telemetri melacak dan mencatat data penggunaan yang mengirimkan umpan balik untuk analisis ke Microsoft.", "privacyTip": "Perubahan privasi ekstra menonaktifkan hal berikut: -Biometrik -Geolokasi -Bagikan aplikasi antar perangkat -Pencatat teks -Diagnostik", "ccTip": "Cloud Clipboard membagikan data clipboard ke seluruh perangkat Anda. Memungkinkan untuk menyalin di satu perangkat dan menempelkannya di perangkat lain. Memerlukan masuk akun Microsoft.", "cortanaTip": "Cortana adalah asisten virtual berbasis AI. -Menonaktifkan Cortana. -Menonaktifkan pencarian web di Start Menu -Mencegah menyimpan riwayat pencarian", "sensorTip": "Layanan yang mengelola fungsionalitas sensor, seperti rotasi otomatis, kecerahan otomatis, dll. Hanya berguna untuk tablet atau perangkat dengan layar sentuh.", "castTip": "Menghapus klik kanan untuk berbagi konten media ke perangkat Miracast.", "gameBarTip": "Game Bar adalah menu akses cepat untuk layanan game Xbox.", "insiderTip": "Program Windows Insider memungkinkan Anda menguji fitur-fitur terbaru sebelum dirilis ke publik. Ini dianggap sebagai layanan yang tidak perlu bagi pengguna yang tidak ingin berpartisipasi.", "storeUpdatesSw": "Nonaktifkan Pembaruan Microsoft Store", "storeUpdatesTip": "Menonaktifkan fungsionalitas pembaruan otomatis Microsoft Store.", "tpmTip": "Melewati persyaratan Boot Aman dan TPM 2.0, memungkinkan peningkatan ke Windows 11.", "leftTaskbarTip": "Sejajarkan ikon bilah tugas ke kiri.", "snapAssistTip": "Menonaktifkan Snap Assist Flyout saat mengarahkan tombol maksimalkan.", "widgetsTip": "Menonaktifkan fitur Widget dan menghapus ikon Widget dari bilah tugas.", "chatTip": "Menghapus ikon Obrolan dari bilah tugas.", "smallerTaskbarTip": "Memperkecil ukuran dan ikon taskbar.", "classicRibbonTip": "Memulihkan bilah pita klasik dari Windows 10 di File Explorer.", "classicContextTip": "Memulihkan menu klik kanan klasik, menghapus 'Tampilkan opsi lainnya'.", "gameModeSw": "Aktifkan Mode Permainan", "gameModeTip": "Mengaktifkan mode Permainan yang dikombinasikan dengan penjadwalan GPU yang dipercepat perangkat keras.", "systemRestoreM": "Apakah Anda yakin ingin Nonaktifkan Pemulihan Sistem? Ini akan menghapus gambar cadangan Anda saat ini!", "compactModeSw": "Aktifkan Mode Ringkas di Explorer", "compactModeTip": "Mengurangi ruang ekstra dan padding antar file di Files Explorer.", "stickersTip": "Stiker adalah emoji besar yang muncul di wallpaper, digunakan dalam pesan sosial.", "hibernateSw": "Nonaktifkan Hibernasi", "hibernateTip": "Menonaktifkan fitur hibernasi Windows.", "smb1Sw": "Nonaktifkan Protokol SMBv1", "smb2Sw": "Nonaktifkan Protokol SMBv2", "smbTip": "Protokol SMB{v} bertanggung jawab untuk berbagi file antar komputer Windows. Telah diganti dengan SMBv3, yang lebih aman.", "ntfsStampSw": "Nonaktifkan Stempel Waktu NTFS", "ntfsStampTip": "Menunjukkan stempel file yang terakhir kali diakses. Menonaktifkannya dapat mengurangi operasi I/O pada disk.", "autoStartToggle": "Mulai dengan Windows", "nvidiaTelemetrySw": "Nonaktifkan Telemetri NVIDIA", "dnsTitle": "Ubah server DNS dengan cepat", "vbsSw": "Nonaktifkan Keamanan Berbasis Virtualisasi", "vbsTip": "Fitur kernel yang mencegah injeksi driver berbahaya ke dalam proses. Ini berdampak negatif pada kinerja.", "winSearchSw": "Nonaktifkan Pencarian", "winSearchTip": "Menonaktifkan layanan pencarian Windows.", "btnRestoreUwp": "Kembalikan semua UWP", "restoreUwpMessage": "Apakah Anda yakin ingin melakukan ini?", "telemetrySvcToggle": "Nonaktifkan Wawasan Pengoptimal", "edgeAiSw": "Nonaktifkan Edge Discover", "edgeTelemetrySw": "Nonaktifkan Edge Telemetry", "edgeAiTip": "Menghapus Bilah Temukan di Edge.", "edgeTelemetryTip": "Menonaktifkan layanan SmartScreen, Spotlight, dan Telemetri di Edge.", "hpetSw": "Nonaktifkan HPET", "loginVerboseSw": "Aktifkan Layar Login Terperinci", "advancedTab": "Lanjutan", "btnRestartSafe": "Mulai ulang dalam Mode Aman", "btnRestart": "Mulai ulang dalam Mode Normal", "btnRestartDisableDefender": "Restart && Nonaktifkan Defender", "classicPhotoViewerSw": "Kembalikan Penampil Foto Klasik", "tabPage3": "Font", "fontSetTitle": "Tetapkan font favorit Anda sebagai font default Windows", "label11": "Font saat ini:", "btnSetGlobalFont": "Ditetapkan sebagai default", "lblFontsCount": "Font yang tersedia:", "btnRestoreFont": "Kembalikan default", "btnRefreshFonts": "Segarkan", "chkAllNics": "Disetel untuk semua adaptor jaringan", "chkCustomDns": "Setel DNS khusus", "btnSetDns": "Setel DNS", "copilotSw": "Nonaktifkan CoPilot AI", "copilotTip": "Mematikan sepenuhnya fitur CoPilot AI.", "btnReinforce": "Perkuat kebijakan", "msgReinforce": "Apakah Anda yakin ingin menerapkan kembali kebijakan aktif Anda saat ini?", "newsInterestsSw": "Nonaktifkan Berita && Minat", "allTrayIconsSw": "Tampilkan semua ikon notifikasi", "noMenuDelaySw": "Penundaan menu Hapus", "hideSearchSw": "Sembunyikan Pencarian Taskbar", "hideWeatherSw": "Sembunyikan Cuaca Taskbar", "autoUpdateToggle": "Pembaruan saat peluncuran", "modernStandbySw": "Nonaktifkan Modern Standby", "enableUtcSw": "Aktifkan Waktu UTC", "radioFile": "Mengajukan", "installing": "Menginstal", "volumes": "Partisi", "keyboards": "Papan ketik", "performanceTip": "Kumpulan pengaturan internal Windows untuk mengoptimalkan kinerja. Benar-benar aman untuk diterapkan. - Mengurangi waktu tunggu sebelum mematikan proses yang tidak responsif. - Mengurangi waktu tunda tampilan menu. - Menonaktifkan pemberitahuan pemeriksaan ruang disk rendah - Menonaktifkan fitur goyang untuk meminimalkan - Selalu menampilkan ekstensi file - Menampilkan file tersembunyi", "label24": "Editor Variabel Sistem", "label23": "Jalur variabel sistem baru:", "button3": "Tambahkan", "label21": "Variabel Sistem", "button1": "Hapus", "button2": "Segarkan" } ================================================ FILE: Optimizer/Resources/i18n/IT.json ================================================ { "subSystem": "Sistema", "subPrivacy": "Privacy", "subGaming": "Gioco", "subTouch": "Tocco", "subTaskbar": "Barra delle applicazioni", "subExtras": "Extra", "btnAbout": "OK", "restartButton": "riavvia ora", "restartButton8": "riavvia ora", "restartButton10": "riavvia ora", "restartAndApply": "Riavviare per applicare le modifiche", "regBackupSw": "Abilita i backup del registro", "txtVersion": "Versione: {VN}", "btnFind": "Trova", "btnKill": "Uccisione", "trayUnlocker": "Manici di file", "txtBitness": "Architettura: {BITS}", "linkUpdate": "Aggiornamento disponibile", "lblLab": "Build sperimentale\n(cancellare dopo il test)", "systemRestoreM": "Sei sicuro di voler disabilitare Ripristino configurazione di sistema? Questo cancellerà le tue attuali immagini di backup!", "onedriveM": "Sei sicuro di voler disinstallare OneDrive? Questo cancellerà i tuoi file desktop e documenti! Usa questa opzione solo su un account locale!", "performanceSw": "Abilita miglioramento prestazioni", "networkSw": "Disabilita rallentamento della rete", "defenderSw": "Disabilita Windows Defender", "systemRestoreSw": "Disabilita ripristino di sistema", "printSw": "Disabilita servizio stampa", "mediaSharingSw": "Disabilita condivisione Media Player", "faxSw": "Disabilita servizio fax", "reportingSw": "Disabilita segnalazione errori", "homegroupSw": "Disabilita Gruppo Home", "superfetchSw": "Disabilita Superfetch", "telemetryTasksSw": "Disabilita processi telemetria", "officeTelemetrySw": "Disabilita telemetrica Office", "vsSW": "Disabilita la telemetria di Visual Studio", "ffTelemetrySw": "Disabilita la telemetria di Firefox", "chromeTelemetrySw": "Disabilita la telemetria di Chrome", "compatSw": "Disabilita assistente compatibilità", "smartScreenSw": "Disabilita SmartScreen", "stickySw": "Disabilita tasti permanenti", "universalTab": "Universale", "analyzeDriveB": "Analizza", "modernAppsTab": "App UWP", "startupTab": "Avvio", "appsTab": "App comuni", "cleanerTab": "Pulizia", "pingerTab": "Ping", "registryFixerTab": "Registro", "integratorTab": "Integrazione", "optionsTab": "Opzioni", "oldMixerSw": "Abilita mixer volume classico", "oldExplorerSw": "Disabilita storico accesso rapido", "adsSw": "Disabilita annunci menu Start", "uODSw": "Disinstalla OneDrive", "peopleSw": "Disabilita persone", "longPathsSw": "Abilita percorsi file lunghi", "autoUpdatesSw": "Disabilita aggiornamenti automatici", "driversSw": "Escludi driver dagli aggiornamenti", "telemetryServicesSw": "Disabilita servizi telemetria", "privacySw": "Aumenta privacy", "ccSw": "Disabilita appunti cloud", "cortanaSw": "Disabilita Cortana", "sensorSw": "Disabilita servizi sensori", "castSw": "Remove Cast to Device", "inkSw": "Disabilita Windows Ink", "spellSw": "Disabilita controllo ortografia", "xboxSw": "Disabilita Xbox Live", "gameBarSw": "Disabilita Game Bar", "insiderSw": "Disabilita Insider Service", "actionSw": "Disabilita centro notifiche", "disableOneDriveSw": "Disabilita OneDrive", "refreshModernAppsButton": "Aggiorna", "uninstallModernAppsButton": "Disinstalla", "txtModernAppsTitle": "Disinstalla app UWP indesiderate", "chkSelectAllModernApps": "Seleziona tutto", "chkOnlyRemovable": "Mostra solo app removibili", "flushDNSMessage": "Sei sicuro di voler svuotare la cache DNS di Windows?\n\nQuesto causerà la disconnessione da internet per un momento e potrebbe essere necessario un riavvio per funzionare correttamente.", "startupTitle": "Scegli cosa mantenere in avvio", "removeStartupItemB": "Rimuovi", "locateFileB": "Localizza file", "findInRegB": "Trova nel registro", "refreshStartupB": "Aggiorna", "restoreStartupB": "Ripristina", "backupStartupB": "Esegui backup", "lblBackupTitle": "Nomee backup:", "doBackup": "OK", "cancelBackup": "Annulla", "startupItemName": "Nome", "startupItemLocation": "Percorso", "startupItemType": "Tipo", "txtFeedError": "Nessuna connessione ad internet, prova ad aggiornare ancora i link", "appsTitle": "Scarica && installa app utili", "btnGetFeed": "Aggiorna link", "bitPref": "Imposta preferenza bit", "linkWarnings": "Guarda avvisi", "txtDownloadStatus": "In attesa", "goToDownloadsB": "Vai ai download", "btnDownloadApps": "Scarica", "cAutoInstall": "Installa dopo il download", "setDownDirLbl": "Imposta cartella download", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Seleziona tutto", "checkTemp": "File temporanei", "checkLogs": "Log di Windows", "checkMiniDumps": "minidump BSOD", "checkBin": "Svuota cestino", "checkMediaCache": "cache Media Player", "checkErrorReports": "Report sugli errori", "cleanDriveB": "Pulisci", "lblPretext": "Memoria liberabile:", "cleanerTitle": "Clean up your system drive", "pingerTitle": "Ping IP addresses and assess your latency", "lblPinger": "IP / Domain name", "btnOpenNetwork": "Apri connessioni di rete", "copyIPB": "Copia", "copyB": "Copia IP", "btnShodan": "Controlla su SHODAN.io", "btnPing": "Esegui ping", "lblResults": "Risultati", "flushCacheB": "Svuota cache DNS", "btnExport": "Esporta", "hostsTitle": "Modifica il file hosts efficientemente", "linkLocate": "Localizza", "linkAdvancedEdit": "Editor avanzato", "linkRestoreDefault": "Riprista predefinito", "lblIP": "Indirizzo IP", "lblDomain": "Dominio", "chkBlock": "Blocca", "addHostB": "Aggiungi", "lblLock": "Proteggi il file HOSTS bloccandolo", "chkReadOnly": "Sola lettura", "lblAdblock": "Adblock pre-fatti", "lblAdblockSub": "(cancellerà la configurazione attuale)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "Cancella", "refreshHostsB": "Aggiorna", "removeAllHostsB": "Cancella tutto", "regFixB": "Ripara", "regLbl": "(alcune modifiche potrebbero necessitarne)", "checkRestartExplorer": "Riavvia anche Explorer per applicare le modifiche", "checkRegistryEditor": "Editor del registro", "checkFirewall": "Windows Firewall", "checkContextMenu": "Menu tasto destro", "checkRunDialog": "Finestra Esegui", "checkFolderOptions": "Opzioni cartella", "checkControlPanel": "Pannello di controllo", "checkCommandPrompt": "Prompt dei comandi", "checkTaskManager": "Gestione attività", "checkEnableAll": "Abilita tutto", "registryTitle": "Ripara problemi comuni del registro", "quickAccessToggle": "Mostra menu accesso rapido", "helpTipsToggle": "Mostra suggerimenti", "lblTheming": "Scegli il tema", "radioOcean": "Oceano", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramello", "radioLime": "Lime", "radioMinimal": "Minimale", "lblUpdating": "Controlla && aggiorna", "btnUpdate": "Verifica aggiornamenti", "btnChangelog": "Visualizza modifiche", "lblUpdateDisabled": "Disabilitato nelle build sperimentali", "lblTroubleshoot": "Risoluzione errori", "btnViewLog": "Visualizza errori", "btnOpenConf": "Mostra cartella configurazione", "btnResetConfig": "Riparazione", "integrator1": "L'integratore è in grado di aggiungere elementi\npersonalizzati al menu contestuale del Desktop:", "integrator2": "• Qualsiasi programma", "integrator3": "• Scorciatoie alle cartelle", "integrator4": "• Link a pagine web", "integrator5": "• Qualsiasi tipo di file", "integrator6": "• Comandi", "integrator7": "Gli elementi possono avere icone e posizioni personalizzate\nPossono inoltre essere nascosti o essere accessibili solo\npremendo il tasto shift.\nÈ possibile inoltre creare comandi personalizzati\nper la finestra Esegui, rendendo più facile l'esecuzione\ndi ogni applicazione solo scrivendo la parola chiave desiderata.", "integratorInfoTab": "Info", "tabPage8": "Aggiungi/Modifica", "tabPage9": "Rimuovi", "tabPage10": "Ready Menus", "tabPage11": "Finestra Esegui", "addItemL": "Aggiungi o modifica un elemento", "itemtype": "Tipo di elemento", "radioProgram": "Programma", "radioFolder": "Cartella", "radioLink": "Link", "radioFile": "File", "radioCommand": "Comando", "itemtoaddgroup": "Programma da aggiungere", "folderToAdd": "Cartella da aggiungere", "linkToAdd": "Link da aggiungere", "fileToAdd": "File da aggiungere", "commandToAdd": "Comando da aggiungere", "icontoaddgroup": "Icona da aggiungere", "checkDefaultIcon": "Usa l'icona del programma", "checkDefaultFolderIcon": "Usa icona di default per la cartella", "checkFavicon": "Scarica icon sito (favicon)", "checkNoIcon": "Nessuna icona", "dnsCacheM": "La cache DNS è in generazione, riprova più tardi!", "itemposition": "Posizione elemento", "radioTop": "In alto", "radioMiddle": "In mezzo", "radioBottom": "In basso", "security": "Sicurezza", "checkShift": "Mostra solo quando SHIFT è premuto", "itemnamegroup": "Nome elemento nel menu", "btnAddItem": "Aggiungi/Modifica", "removeIntegratorItemsL": "Cancella elementi desktop esistenti", "removeDIB": "Rimuovi", "refreshIIB": "Aggiorna", "removeAllIIB": "Cancella tutto", "PMB": "Aggiungi menu spegnimento", "STB": "Aggiungi strumenti di sistema", "WAB": "Aggiungi app di Windows", "SSB": "Aggiungi scorciatoie di sistema", "DSB": "Aggiungi scorciatoie desktop", "AddOwnerB": "Aggiungi menu assumi proprietà", "RemoveOwnerB": "Rimuoci menu assumi proprietà", "AddCMDB": "Aggiungi Apri con CMD", "DeleteCMDB": "Rimuoci Apri con CMD", "readyMenusL": "Aggiungi utili menu già pronti", "refreshCCB": "Aggiorna", "removeCCB": "Rimuovi", "removeCCL": "Rimuovi comandi esistenti", "btnCreateCustomCommand": "Crea", "ccKeywordL": "parola chiave", "ccFileL": "Posizione file", "ccL": "Stabilisci il tuo comando di esecuzione personalizzato", "btnYes": "Sì", "btnNo": "No", "btnOk": "OK", "HostsEditorForm": "Editor file HOSTS", "savebtn": "Salva", "closebtn": "Chiudi", "adminMissingMsg": "Optimizer necessita privilegi amministrativi!\nL'applicazione verrà chiusa...", "unsupportedMsg": "Optimizer funziona per Windows 7 o versioni superiori!\nL'applicazione verrà chiusa...", "confInvalidVersionMsg": "La versione di Windows non corrisponde!", "confInvalidFormatMsg": "Il file di configurazione è in formato non valido!", "confNotFoundMsg": "Il file di configurazione non esiste!", "argInvalidMsg": "Argomento non valido! Esempio: Optimizer.exe /template.json", "StartupPreviewForm": "Anteprima elementi avvio", "StartupRestoreForm": "Ripristina elementi avvio", "backupL": "Recupera elementi avvio originali da un backup", "txtNoBackups": "Nessun backup trovato", "previewBackupB": "Anteprima", "restoreBackupB": "Ripristina", "deleteBackupB": "Cancella", "noNewVersion": "Stai utilizzando l'ultima versione.", "betaVersion": "Stai utilizzando una versione sperimentale.", "removeAllStartup": "Sei sicuro di voler eliminare tutti gli elementi di avvio?", "removeAllHosts": "Sei sicuro di voler eliminare tutti gli host?", "removeAllItems": "Sei sicuro di voler eliminare tutti gli elementi dal desktop?", "removeModernApps": "Sei sicuro di voler disinstallare le seguenti app?", "errorModernApps": "Le seguenti applicazioni non possono essere disinstallate:\n", "resetMessage": "L'app si chiuderà e proverà a ripararsi.", "newVersion": "C'è una nuova versione disponibile! Vuoi scaricarla adesso?\nL'app si riavvierà tra pochi secondi.", "downloadsFinished": "Completato", "latestVersionM": "Ultima versione: {LATEST}", "currentVersionM": "Versione attuale: {CURRENT}", "downloadDirInvalid": "La cartella di download specificata non è valida", "no64Download": "64-bit non disponibile, download 32-bit in corso", "no32Download": "32-bit non disponibile, impossibile proseguire", "installing": "Installazione in corso", "linkInvalid": "Il link non è più valido", "noErrorsM": "Non ci sono errori da mostrare!", "hostNotFound": "Impossibile trovare l'host", "pinging": "Ping con 32 byte - 9 volte...", "latency": "LATENZA", "lblSystemTools": "Sistema && strumenti", "lblInternet": "Internet", "lblCoding": "Programmazione", "lblVideoSound": "Video && Suono", "min": "Minimo", "max": "Massimo", "avg": "Medio", "timeout": "Richiesta scaduta", "languagesL": "Scegli lingua", "trayStartup": "Manager avvio", "trayCleaner": "Pulizia disco", "trayPinger": "Strumento ping", "trayHosts": "Editor HOSTS", "trayAD": "App Downloader", "trayOptions": "Opzioni disponibili", "trayRegistry": "Ripristina registro", "trayRestartExplorer": "Riavvia Explorer", "trayExit": "Esci", "tipWhatsThis": "Che cos'è?", "hwDetailed": "Vista dettagliata", "btnCopyHW": "Copia", "btnSaveHW": "Salvare", "indiciumTab": "Hardware", "toolHWCopy": "Copia", "toolHWGoogle": "Ricerca Google", "toolHWDuck": "Ricerca DuckDuckGo", "trayHW": "Hardware", "os": "Sistema operativo", "cpu": "Processori", "ram": "Memoria", "gpu": "Grafica", "mobo": "Scheda Madre", "disk": "Conservazione", "inet": "Schede di rete", "audio": "Audio", "dev": "Periferici", "vm": "Memoria virtuale", "drives": "Unita disco", "volumes": "Partizioni", "opticals": "Unita ottiche", "removables": "Unita rimovibili", "physicalAdapters": "Adattatori fisici", "virtualAdapters": "Adattatori virtuali", "keyboards": "Tastiere", "pointings": "Dispositivi di puntamento", "performanceTip": "Raccolta di impostazioni interne di Windows per migliorare le performance. Sicura da applicare. - Riduce il tempo di attesa prima di terminare un processo che non risponde. - Riduce la latenza per mostrare il menu. - Disabilita la notifica per poco spazio disponibile su disco. - Disabilita la funzionalità \"scuoti per ridurre ad icona\". - Mostra sempre estensioni file. - Mostra file nascosti.", "networkTip": "Windows implementa un meccanismo di rallentamento della rete che limiterà il traffico di rete durante l'esecuzione di app multimediali. Può anche ridurre le prestazioni di rete mentre si gioca online.", "defenderTip": "Windows Defender è l'antivirus intrinseco di Windows.", "smartScreenTip": "SmartScreen scansiona automaticamente file, download e siti, bloccando contenuti pericolosi già conosciuti e avvisa l'utente prima che vengano avviati.", "systemRestoreTip": "Il ripristino di sistema è una funzionalità che permette di ripristinare uno stato precedente di Windows per ovviare a problemi e malfunzionamenti.", "reportingTip": "La segnalazione errori colleziona i dati dei crash delle app e gli errori e li invia a Microsoft.", "telemetryTasksTip": "I servizi di telemetria inviano periodicamente dai di uso e performance a Microsoft, per futuri miglioramenti.", "officeTelemetryTip": "La telemetria di Office invia periodicamente dati di uso e performance a Microsoft, per futuri miglioramenti.", "ffTelemetryTip": "Disabilita i servizi di telemetria e report dei dati di Firefox.", "vsTip": "Disabilita le funzionalita di telemetria e feedback di Visual Studio.", "chromeTelemetryTip": "Disabilita la telemetria di Chrome e lo strumento di segnalazione del software (noto per causare un utilizzo elevato della CPU).", "printTip": "Il servizio stampa è responsabile del rilevamento, installazione e utilizzo delle stampanti.", "faxTip": "Il servizio fax è responsabile dell'invio e ricezione dei fax.", "mediaSharingTip": "La condivisione Media Player fornisce condivisione media per Windows Media Player.", "stickyTip": "I tasti permanenti sono una funzionalità di accessibilità per aiutare gli utenti con disabilità fisiche a ridurre i movimenti che causano danni ripetuti ai tendini.", "homegroupTip": "Il gruppo Home è una funzionalità che permette di condividere file su una rete domestica utilizzando Windows Explorer.", "superfetchTip": "Superfetch precarica le app comunemente più usate nella RAM, causando un alto uso del disco, soprattutto su hard disk.", "compatTip": "Il servizio Assistente Compatibilità rileva i problemi di compatibilità noti in programmi più vecchi.", "disableOneDriveTip": "Disabilita l'integrazione cloud-storage OneDrive.", "oldMixerTip": "Restores the classic volume mixer control panel.", "oldExplorerTip": "Disabilita Accesso rapido e i file recenti in Windows Explorer.", "adsTip": "Rimuove pubblicità dal menu Start.", "uODTip": "Rimuove completamente l'integrazione cloud-storage di OneDrive.", "peopleTip": "Persone è una nuova funzionalità che mostra i contatti recenti nella barra delle applicazioni.", "longPathsTip": "Rimuove la limitazione di lunghezza per i percorsi dei file di 256 caratteri.", "inkTip": "Windows Ink fornisce il supporto alle penne e al disegno su schermo.", "spellTip": "Funzionalità solo per tastiera touch come: - Correzione automatica - Suggermineti di scrittura - Controllo ortografia", "xboxTip": "I servizi Xbox Live offrono streaming, registrazione e integrazioni social per giochi Xbox.", "actionTip": "Il centro notifiche è il centro nevralgico per le notifiche e le azioni rapide come Wi-Fi, Bluetooth e altro.", "autoUpdatesTip": "Disabilita il download e l'installazione automatici degli aggiornamenti di Windows Update. Invece, mostra una notifica quando gli aggiornamenti sono disponibili. Disabilita inoltre il servizio Ottimizzazione Recapito.", "driversTip": "Utile quando Windows Update rimpiazza costantemente un driver funzionante con uno che non funziona.", "telemetryServicesTip": "I servizi di Telemetria tracciano e fanno logging dei dati di utilizzo inviando feedback di analisi a Microsoft.", "privacyTip": "Aumenta privacy disabilita le seguenti funzionalità: - Biometrica - Geolocalizzazione - Condivisione app su più dispositivi - Cronologia testi - Diagnostica", "ccTip": "Gli appunti cloud condividono i dati degli appunti tra i tuoi dispositivi. Permette di copiare da un dispositivo e incollare su un altro. Richiede aver fatto l'accesso con un account Microsoft.", "cortanaTip": "Cortana è un'assistente virtuale basato su AI. - Disablita Cortana. - Disablita la ricerca web nel menu Start - Smette di tenere traccia della cronologia ricerca", "sensorTip": "Servizi che gesticono le funzionalità dei sensori, come rotazione automatica, luminosità automatica, ecc. Utile solo per tablet e dispositivi con touchscreen.", "castTip": "Rimuove dal menu del tasto destro la condivisione per i media ai dispositivi Miracast.", "gameBarTip": "La Barra di gioco è un menu di accesso rapido ai servizi Xbox gaming.", "insiderTip": "Il programma Windows Insider permette di testare le ultime funzionalità di Windows prima che vengano rilasciate al pubblico. È considerato un servizio non necessario per tutti gli utenti che non vogliono partecipare.", "CleanPreviewForm": "Anteprima pulizia", "tpmSw": "Disabilita controllo TPM 2.0", "leftTaskbarSw": "Allinea barra delle applicazioni a sinistra", "snapAssistSw": "Disabilita Snap Assist", "widgetsSw": "Disabilita Widget", "chatSw": "Disabilita Chat", "smallerTaskbarSw": "Riduci barra delle applicazioni", "classicRibbonSw": "Abilita menu classico in Explorer", "classicContextSw": "Abilita menu classico sul tasto destro", "alreadyRunningMsg": "Optimizer è già in esecuzione in background!", "tpmTip": "Bypassa i requisiti di Secure Boot e TPM 2.0, permettendo l'upgrade a Windows 11.", "leftTaskbarTip": "Allinea icone della barra delle applicazioni a sinistra.", "snapAssistTip": "Disabilita il menu Snap Assist quando mantieni il mouse sui pulsanti per massimizzare le finestre.", "widgetsTip": "Disabilita funzionalità widget e li rimuove dalla barra delle applicazioni.", "chatTip": "Rimouve l'icona della Chat dalla barra delle applicazioni.", "smallerTaskbarTip": "Riduci barra delle applicazioni e icone.", "classicRibbonTip": "Riprista il menu di Esplora File di Windows 10.", "classicContextTip": "Ripristina il menu contestuale classico, rimuovendo 'Mostra più opzioni'.", "gameModeSw": "Abilita la modalità di gioco", "gameModeTip": "Abilita la modalità di gioco in combinazione con la pianificazione GPU con accelerazione hardware.", "compactModeSw": "Abilita la modalità compatta in Explorer", "compactModeTip": "Riduce lo spazio aggiuntivo e il riempimento tra i file in Esplora file.", "stickersTip": "Gli adesivi sono grandi emoji che appaiono sugli sfondi, utilizzati nei social messenger.", "hibernateSw": "Disabilita l'ibernazione", "hibernateTip": "Disabilita la funzione di ibernazione di Windows.", "smb1Sw": "Disabilita il protocollo SMBv1", "smb2Sw": "Disabilita il protocollo SMBv2", "smbTip": "Il protocollo SMB{v} è responsabile della condivisione di file tra computer Windows. È stato sostituito con SMBv3, che è più sicuro.", "ntfsStampSw": "Disabilita il timestamp NTFS", "ntfsStampTip": "Indica l'ultima volta che si è avuto accesso al file. La disabilitazione può ridurre le operazioni di I/O sui dischi.", "autoStartToggle": "Inizia con Windows", "nvidiaTelemetrySw": "Disabilita la telemetria NVIDIA", "dnsTitle": "Cambia rapidamente il server DNS", "vbsSw": "Disabilita la sicurezza basata sulla virtualizzazione", "vbsTip": "Funzionalità del kernel che impedisce l'iniezione di driver dannosi nei processi. Ha un effetto negativo sulle prestazioni.", "winSearchSw": "Disabilita la ricerca", "winSearchTip": "Disabilita il servizio di ricerca di Windows.", "storeUpdatesSw": "Disabilita gli aggiornamenti di Microsoft Store", "storeUpdatesTip": "Disabilita la funzionalità degli aggiornamenti automatici di Microsoft Store.", "btnRestoreUwp": "Ripristina tutta la piattaforma UWP", "restoreUwpMessage": "Disabilita la telemetria dell'ottimizzatore", "edgeAiSw": "Disattiva Edge Discover", "edgeTelemetrySw": "Disabilita la telemetria Edge", "edgeAiTip": "Rimuove Discover Bar in Edge.", "edgeTelemetryTip": "Disabilita i servizi SmartScreen, Spotlight e Telemetry in Edge.", "hpetSw": "Disattiva HPET", "loginVerboseSw": "Abilita schermata di accesso dettagliata", "advancedTab": "Avanzate", "btnRestartSafe": "Riavvia in modalità provvisoria", "btnRestart": "Riavvia in modalità normale", "btnRestartDisableDefender": "Riavvia && Disabilita Defender", "classicPhotoViewerSw": "Ripristina il visualizzatore di foto classico", "tabPage3": "Caratteri", "fontSetTitle": "Imposta il tuo carattere preferito come carattere predefinito di Windows", "label11": "Carattere corrente:", "btnSetGlobalFont": "Imposta come predefinito", "lblFontsCount": "Caratteri disponibili:", "btnRestoreFont": "Riprista predefinito", "btnRefreshFonts": "Aggiorna", "chkAllNics": "Impostato per tutti gli adattatori di rete", "chkCustomDns": "Imposta DNS personalizzati", "btnSetDns": "Imposta DNS", "copilotSw": "Disabilita CoPilot AI", "copilotTip": "Disattiva completamente la funzionalità CoPilot AI.", "btnReinforce": "Rafforzare le Politiche", "msgReinforce": "Sei sicuro di voler riapplicare le tue attuali politiche?", "newsInterestsSw": "Disabilita notizie e interessi", "allTrayIconsSw": "Mostra tutte le icone di notifica", "noMenuDelaySw": "Rimuovi ritardo dei menu", "hideSearchSw": "Nascondi ricerca nella barra delle applicazioni", "hideWeatherSw": "Nascondi il meteo nella barra delle applicazioni", "enableUtcSw": "Abilita ora UTC", "autoUpdateToggle": "Aggiornamento all'avvio", "modernStandbySw": "Disabilita Standby moderno", "label24": "Editor di variabili di sistema", "label23": "Nuovo percorso variabile di sistema:", "button3": "Aggiungi", "label21": "Variabili di Sistema", "button1": "Elimina", "button2": "Aggiorna" } ================================================ FILE: Optimizer/Resources/i18n/JA.json ================================================ { "subSystem": "システム", "subPrivacy": "プライバシー", "subGaming": "ゲーム", "subTouch": "タッチ", "subTaskbar": "タスクバー", "subExtras": "その他", "btnAbout": "OK", "restartButton": "今すぐ再起動", "restartButton8": "今すぐ再起動", "restartButton10": "今すぐ再起動", "btnFind": "検索", "btnKill": "強制終了", "regBackupSw": "レジストリバックアップを有効にする", "trayUnlocker": "ファイル ハンドル", "restartAndApply": "再起動して変更を適用", "txtVersion": "バージョン: {VN}", "txtBitness": "{BITS}で動作しています。", "linkUpdate": "アップデートが利用可能です", "lblLab": "実験的ビルド\n(テスト後に削除されます)", "performanceSw": "パフォーマンスを最適化", "networkSw": "ネットワークを最適化", "defenderSw": "Windows Defenderを無効化", "systemRestoreSw": "システムの復元を無効化", "printSw": "印刷 サービスを無効化", "mediaSharingSw": "Media Player Sharingを無効化", "faxSw": "Fax サービスを無効化", "reportingSw": "Error Reportingを無効化", "homegroupSw": "ホームグループを無効化", "superfetchSw": "Superfetchを無効化", "telemetryTasksSw": "テレメトリ タスクを無効化", "officeTelemetrySw": "Office テレメトリを無効化", "vsSW": "Visual Studio テレメトリを無効化", "ffTelemetrySw": "Mozilla Firefox テレメトリを無効化", "chromeTelemetrySw": "Google Chrome テレメトリを無効化", "compatSw": "互換性アシスタントを無効化", "smartScreenSw": "SmartScreenを無効化", "stickySw": "固定キーを無効化", "universalTab": "一般", "modernAppsTab": "UWP アプリ", "startupTab": "スタートアップ", "appsTab": "アプリ", "cleanerTab": "クリーナー", "pingerTab": "Ping", "registryFixerTab": "レジストリ", "integratorTab": "Integrator", "CleanPreviewForm": "Clean Preview", "optionsTab": "オプション", "oldMixerSw": "以前のボリュームミキサーを有効化", "oldExplorerSw": "以前のファイルエクスプローラーを復元", "adsSw": "スタートメニューの広告を無効化", "uODSw": "OneDriveをアンインストール", "peopleSw": "My Peopleを無効化", "longPathsSw": "長いパスを有効化", "autoUpdatesSw": "自動アップデートを無効化", "driversSw": "ドライバをアップデートから除外する", "telemetryServicesSw": "テレメトリ サービスを無効化", "privacySw": "プライバシーを強化", "ccSw": "クラウドクリップボードを無効化", "cortanaSw": "コルタナを無効化", "sensorSw": "センサーサービスを無効化", "castSw": "Remove Cast to Device", "inkSw": "Windows Inkを無効化", "spellSw": "スペルチェックを無効化", "xboxSw": "Xbox Liveを無効化", "gameBarSw": "Game Barを無効化", "insiderSw": "Insider サービスを無効化", "actionSw": "通知センターを無効化", "disableOneDriveSw": "OneDriveを無効化", "tpmSw": "TPMチェックを無効化", "leftTaskbarSw": "タスクバーを左寄せする", "snapAssistSw": "スナップアシストを無効化", "widgetsSw": "ウィジェットを無効化", "chatSw": "チャットを無効化", "smallerTaskbarSw": "タスクバーを小さくする", "classicRibbonSw": "エクスプローラーで以前のリボンメニューを有効化", "classicContextSw": "以前の右クリックメニューを有効化", "refreshModernAppsButton": "更新", "uninstallModernAppsButton": "アンインストール", "txtModernAppsTitle": "不要なUWPアプリをアンインストール", "chkSelectAllModernApps": "全て選択", "chkOnlyRemovable": "アンインストール可能な項目のみ表示", "onedriveM": "OneDriveをアンインストールしてもよろしいですか?この操作はデスクトップとドキュメントファイルを削除します。このオプションはローカルアカウントでのみ使用してください!", "startupTitle": "編集するスタートアップ項目を選択してください", "removeStartupItemB": "削除", "locateFileB": "場所を表示", "findInRegB": "レジストリで表示", "analyzeDriveB": "解析", "refreshStartupB": "更新", "restoreStartupB": "復元", "backupStartupB": "バックアップ", "lblBackupTitle": "バックアップ名:", "doBackup": "OK", "cancelBackup": "キャンセル", "startupItemName": "名前", "startupItemLocation": "場所", "startupItemType": "種類", "txtFeedError": "インターネットへの接続がありません, もう一度リンクを更新してみてください", "appsTitle": "便利なアプリを簡単にインストール", "btnGetFeed": "リンクを更新", "bitPref": "ビット数の設定", "linkWarnings": "警告を表示", "txtDownloadStatus": "待機中", "goToDownloadsB": "ダウンロードを開く", "btnDownloadApps": "ダウンロード", "cAutoInstall": "ダウンロード後にインストール", "setDownDirLbl": "ダウンロードフォルダを設定", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "すべて選択", "checkTemp": "一時ファイル", "checkLogs": "Windows logs", "checkMiniDumps": "BSOD ミニダンプ", "checkBin": "ごみ箱を空にする", "checkMediaCache": "メディアプレーヤーのキャッシュ", "checkErrorReports": "エラーレポート", "cleanDriveB": "クリーン", "lblPretext": "開放される最大サイズ:", "cleanerTitle": "システムドライブをクリーンアップ", "pingerTitle": "IPにPingを送信し、レイテンシを測定します", "lblPinger": "IP / ドメイン 名", "btnOpenNetwork": "ネットワーク接続を開く", "copyIPB": "コピー", "copyB": "IPをコピー", "btnShodan": "SHODAN.ioで確認", "btnPing": "Ping", "lblResults": "結果", "flushCacheB": "DNSキャッシュをクリア", "btnExport": "エクスポート", "hostsTitle": "HOSTSファイルを効率的に編集", "linkLocate": "場所", "linkAdvancedEdit": "詳細なエディタ", "linkRestoreDefault": "デフォルトを復元", "lblIP": "IPアドレス", "lblDomain": "ドメイン", "chkBlock": "ブロック", "addHostB": "追加", "lblLock": "HOSTSファイルを読み取り専用にして保護します", "chkReadOnly": "読み取り専用", "lblAdblock": "Pre-made adblocks", "lblAdblockSub": "(現在の設定を削除します)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Porn", "removeHostB": "削除", "refreshHostsB": "更新", "removeAllHostsB": "すべて削除", "regFixB": "修正", "regLbl": "(一部項目の変更に必要かもしれません)", "checkRestartExplorer": "エクスプローラを再起動して変更を適用", "checkRegistryEditor": "レジストリエディター", "checkFirewall": "Windows ファイアウォール", "checkContextMenu": "右クリックメニュー", "checkRunDialog": "実行ダイアログ", "checkFolderOptions": "フォルダオプション", "checkControlPanel": "コントロールパネル", "checkCommandPrompt": "コマンドプロンプト", "checkTaskManager": "タスクマネージャー", "checkEnableAll": "すべて有効化", "registryTitle": "よくあるレジストリの問題を修正", "quickAccessToggle": "クイックアクセスメニューを表示", "helpTipsToggle": "ヘルプメッセージを表示", "lblTheming": "テーマを選択してください", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "更新を確認して適用する", "btnUpdate": "アップデートを確認する", "btnChangelog": "変更点を表示", "lblUpdateDisabled": "実験的ビルドでは無効化されています", "lblTroubleshoot": "トラブルシューティング", "btnViewLog": "エラーを表示", "btnOpenConf": "設定フォルダを表示", "btnResetConfig": "修復", "integrator1": "ここではデスクトップの右クリックメニューに、完全にカスタマイズされた\n項目を追加することができます:", "integrator2": "• プログラム", "integrator3": "• フォルダへのショートカット", "integrator4": "• ウェブへのリンク", "integrator5": "• 任意の形式のファイル", "integrator6": "• コマンド", "integrator7": "メニュー内の項目には、アイコンや位置を自由に設定することができます。\n他にも、SHIFTキーを押した時だけ項目が表示されるようにしたり、\n実行ダイアログ用のカスタム コマンドを作成し、\n特定のキーワードを入力するだけでアプリケーションを簡単に起動できるように設定できます。", "integratorInfoTab": "情報", "tabPage8": "追加/変更", "tabPage9": "削除", "tabPage10": "スタートメニュー", "tabPage11": "実行ダイアログ", "addItemL": "項目の追加と修正", "itemtype": "項目の種類", "radioProgram": "プログラム", "radioFolder": "フォルダ", "radioLink": "リンク", "radioFile": "ファイル", "radioCommand": "コマンド", "itemtoaddgroup": "追加するプログラム", "folderToAdd": "追加するフォルダ", "linkToAdd": "追加するリンク", "fileToAdd": "追加するファイル", "commandToAdd": "追加するコマンド", "icontoaddgroup": "追加するアイコン", "checkDefaultIcon": "プログラムのアイコンを使う", "checkDefaultFolderIcon": "デフォルトのフォルダアイコンを使う", "checkFavicon": "ウェブサイトのアイコン (favicon)をダウンロード", "checkNoIcon": "アイコンなし", "dnsCacheM": "DNSキャッシュを生成中です。時間をおいてから、再度確認してください。", "itemposition": "項目の位置", "radioTop": "上部", "radioMiddle": "中部", "radioBottom": "下部", "security": "セキュリティ", "checkShift": "SHIFTキーが押されている場合のみ表示する", "itemnamegroup": "メニュー内の項目名", "btnAddItem": "追加/変更", "removeIntegratorItemsL": "既存のデスクトップアイコンを削除", "removeDIB": "削除", "refreshIIB": "更新", "removeAllIIB": "すべて削除", "PMB": "電源メニューを追加", "STB": "システムツールを追加", "WAB": "Windows Appsを追加", "SSB": "システムショートカットを追加", "DSB": "デスクトップショートカットを追加", "AddOwnerB": "所有権を取得'を追加", "RemoveOwnerB": "'所有権を取得'を削除", "AddCMDB": "'コマンドプロンプトで開く'を追加", "DeleteCMDB": "'コマンドプロンプトで開く'を削除", "readyMenusL": "便利な既製のメニューを追加", "refreshCCB": "更新", "removeCCB": "削除", "removeCCL": "既存のコマンドを削除", "btnCreateCustomCommand": "作成", "ccKeywordL": "キーボード", "ccFileL": "ファイルの場所", "ccL": "カスタムコマンドを定義", "btnYes": "はい", "btnNo": "いいえ", "btnOk": "OK", "HostsEditorForm": "HOSTSエディター", "savebtn": "保存", "closebtn": "閉じる", "adminMissingMsg": "Optimizerは管理者権限で実行する必要があります!\nアプリを終了します...", "unsupportedMsg": "OptimizerはWindows 7以降で動作します!\nアプリを終了します...", "confInvalidVersionMsg": "Windowsのバージョンが一致しません!", "confInvalidFormatMsg": "間違った形式の設定ファイルです!", "confNotFoundMsg": "設定ファイルが存在しません!", "argInvalidMsg": "間違った引数です! 例: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizerはすでにバックグラウンドで実行中です!", "StartupPreviewForm": "スタートアップ項目のプレビュー", "StartupRestoreForm": "スタートアップ項目を復元", "backupL": "スタートアップ項目を復元", "txtNoBackups": "バックアップが見つかりませんでした", "previewBackupB": "プレビュー", "restoreBackupB": "復元", "deleteBackupB": "削除", "noNewVersion": "すでに最新バージョンがインストールされています!", "betaVersion": "実験バージョンが実行中です!", "removeAllStartup": "全てのスタートアップ項目を削除します。よろしいですか?", "removeAllHosts": "全てのhostsエントリを削除します。よろしいですか?", "removeAllItems": "全てのデスクトップアイコンを削除します。よろしいですか?", "removeModernApps": "以下のアプリをアンインストールします。よろしいですか?", "errorModernApps": "以下のアプリはアンインストールできませんでした:\n", "latestVersionM": "最新のバージョン: {LATEST}", "currentVersionM": "現在のバージョン: {CURRENT}", "resetMessage": "このアプリを終了し、アプリそのものを修復しようとします。", "newVersion": "新しいバージョンが利用可能です!ダウンロードしますか?\nアプリは数秒以内に再起動します。", "flushDNSMessage": "DNSキャッシュをクリアしますか?\n\nインターネットが一時的に切断され、再起動が必要になる場合があります。", "downloadsFinished": "完了", "downloadDirInvalid": "指定されたダウンロードフォルダが不正です。", "no64Download": "64-bit版は利用できません。32-bit版をダウンロードします。", "no32Download": "32-bit版は利用できません。スキップします。", "installing": "インストール中...", "linkInvalid": "リンクが無効です", "noErrorsM": "表示するエラーがありません!", "hostNotFound": "ホストが見つかりませんでした", "pinging": "32 バイトのPingを9回送信しています...", "latency": "レイテンシ", "lblSystemTools": "システムとツール", "lblInternet": "インターネット", "lblCoding": "コーディング", "lblVideoSound": "ビデオとサウンド", "min": "最小", "max": "最大", "avg": "平均", "timeout": "要求はタイムアウトしました", "languagesL": "言語を選択", "trayStartup": "スタートアップマネージャー", "trayCleaner": "ドライブクリーナー", "trayPinger": "Pingツール", "trayHosts": "HOSTSエディター", "trayAD": "アプリダウンローダー", "trayOptions": "オプション", "trayAdvanced": "高度な設定", "trayRegistry": "レジストリ修復", "trayRestartExplorer": "エクスプローラを再起動", "trayExit": "終了", "tipWhatsThis": "これは何?", "hwDetailed": "詳細を表示", "btnCopyHW": "コピー", "btnSaveHW": "保存", "indiciumTab": "ハードウェア", "toolHWCopy": "コピー", "toolHWGoogle": "Googleで検索", "toolHWDuck": "DuckDuckGoで検索", "trayHW": "ハードウェア情報", "os": "オペレーティングシステム", "cpu": "プロセッサー", "ram": "メモリ", "gpu": "グラフィック", "mobo": "マザーボード", "disk": "ストレージ", "inet": "ネットワークアダプタ", "audio": "オーディオ", "dev": "周辺機器", "vm": "仮想メモリ", "drives": "ディスクドライブ", "volumes": "パーティション", "opticals": "光学ドライブ", "removables": "リムーバブルデバイス", "physicalAdapters": "物理アダプター", "virtualAdapters": "仮想アダプター", "keyboards": "キーボード", "pointings": "ポインティングデバイス", "performanceTip": "パフォーマンスを改善するためのWindowsの内部設定です。 絶対に、安全に適用できます。 - 応答しないプロセスを強制終了するまでの待ち時間を短縮 - メニュー表示の遅延を現象 - ディスク容量の低下の通知を無効化 - エアロシェイクを無効化 - 拡張子を常に表示 - 隠しファイルを表示", "networkTip": "Windowsはマルチメディアアプリの実行時にネットワークを制限する、 ネットワークスロットリングを実装しています。 これはオンラインゲームのプレイ中のパフォーマンスに 悪影響を及ぼす可能性があります。", "defenderTip": "Windows DefenderはWindows内蔵のアンチウイルスソフトです。", "smartScreenTip": "SmartScreen はファイルやウェブサイトを自動でスキャンし、既知の脅威をブロックして実行前に警告を表示します。", "systemRestoreTip": "システムの復元はWindowsを以前の状態に戻して誤動作などの問題を修正するための機能です。", "reportingTip": "エラーレポートはアプリケーションのクラッシュログとエラーを収集してMicrosoftに送信します。", "telemetryTasksTip": "テレメトリ サービスは機能改善のため、使用状況とパフォーマンスデータを定期的にMicrosoftに送信します。", "officeTelemetryTip": "Office テレメトリは定期的に使用状況とパフォーマンスデータを機能改善のためにMicrosoftに送信します", "ffTelemetryTip": "Mozilla Firefox テレメトリ と データレポートサービスを無効化します。", "vsTip": "Visual Studio テレメトリ と SQM クライアントを含むフィードバック機能を無効化します。", "chromeTelemetryTip": "高いCPU使用率で有名な Google Chrome テレメトリ と ソフトウェアレポートツールを無効化します。", "printTip": "印刷 サービスはプリンターの検出やインストール、利用を行います。", "faxTip": "Fax サービスはFaxの送受信を行います。", "mediaSharingTip": "Media Player Sharingは、Windows Media Playerのホームメディア共有機能を提供します。", "stickyTip": "固定キーは、身体に障害のあるWindowsユーザーのための、 反復性疲労障害を引き起こす可能性のある動作を減らす アクセシビリティ機能です。", "homegroupTip": "ホームグループはWindowsエクスプローラを用いてホームネットワーク上でファイルを共有するための機能です。", "superfetchTip": "Superfetch は頻繁に使われるアプリをメモリ上に事前ににロードしますが、特にHDDでディスクを専有することがあります。", "compatTip": "互換性アシスタントサービスは古いプログラムの既知の互換性の問題を検出します。", "disableOneDriveTip": "クラウドストレージ OneDriveとの連携を無効化します。", "oldMixerTip": "以前のボリュームミキサーを復元", "oldExplorerTip": "- クイックアクセスの履歴を無効化します - エクスプローラのデフォルトページをPCに設定します - 「最近のファイル」を無効化します - 検索、タスク、天気をタスクバーから削除 - ファイル履歴を無効化します", "adsTip": "スタートメニューに表示される広告を拒否します。", "uODTip": "クラウドストレージOneDriveとの連携を完全に削除", "peopleTip": "My Peopleは最近利用した連絡先をタスクバーに表示する新しい機能です。", "longPathsTip": "256文字というパスの最大の長さの制限を削除します。", "inkTip": "Windows Inkはデジタルペン用の画面書き込みを提供します。", "spellTip": "以下のようなタッチキーボードのみの機能: - 自動訂正 - テキストの提案 - スペルチェック", "xboxTip": "Xbox LiveサービスはXboxのゲームにストリーミングや録画、SNSなどの機能を提供します。", "actionTip": "通知センターはWi-FiやBluetoothなどのクイックアクションと通知がある場所です。", "autoUpdatesTip": "Windows Updateの自動ダウンロードとインストールを無効化します。 代わりに新しいアップデートが利用可能になった際には通知が表示されます。 また、配信の最適化も無効となります。", "driversTip": "Windows Updateにより、正常に動作しているドライバが 不具合のあるドライバに置き換わる場合にも有効です。", "telemetryServicesTip": "テレメトリサービスは追跡データと使用ログをMicrosoftにフィードバックします。", "privacyTip": "無効化される追加のプライバシーに関する機能: - 生体認証 - 位置情報 - デバイス間のアプリ共有 - 入力履歴 - 自動診断", "ccTip": "クラウドクリップボードはクリップボードのデータをデバイス間で共有します。 これはあるデバイスでコピーしたあと、別のデバイスで貼り付けることを可能にします。 Microsoftアカウントへのサインインが必要です。", "cortanaTip": "コルタナはAIベースのバーチャルアシスタントです。 - コルタナを無効化 - スタートメニューでのウェブ検索を無効化 - 検索履歴の保持を拒否", "sensorTip": "自動回転や明るさ調整などのセンサーに関する機能を管理するサービス。 タブレットやタッチスクリーンを持つデバイスでのみ便利です。", "castTip": "右クリックからメディアのMiracastデバイスへの共有を削除します。", "gameBarTip": "ゲームバーはXboxゲームサービスへのクイックアクセスメニューです。", "insiderTip": "Windows Insider プログラムは正式リリース前の最新機能のテストを行います。 このプログラムに参加しない人にとって、不要なサービスです。", "storeUpdatesSw": "Microsoft ストアのアップデートを無効化", "storeUpdatesTip": "Microsoft ストアの自動アップデート機能を無効化します。", "tpmTip": "セキュアブートとTPM 2.0の確認をバイパスし、Windows 11へのアップグレードを可能にします。", "leftTaskbarTip": "タスクバーのアイコンを左寄せします。", "snapAssistTip": "最大化ボタンにホバーした際のスナップアシストを無効化します。", "widgetsTip": "ウィジェット機能を無効化してアイコンをタスクバーから削除します。", "chatTip": "タスクバーからチャットアイコンを削除します。", "smallerTaskbarTip": "タスクバーとアイコンのサイズを小さくします", "classicRibbonTip": "ファイルエクスプローラーの、Windows10からのリボンバーを復元します。", "classicContextTip": "'その他のオプションを表示'を削除して以前の右クリックメニューを復元します。", "gameModeSw": "ゲーミングモードを有効化", "gameModeTip": "ハードウェアアクセラレーションとGPUスケジューリングと組み合わせたゲーミングモードを有効にします。", "systemRestoreM": "システム復元を無効化してもよろしいですか?これは現在のバックアップイメージを削除します!", "compactModeSw": "エクスプローラでコンパクトモードを有効化", "compactModeTip": "ファイルエクスプローラーの項目間の余分なスペースとパディングを減らします。", "stickersTip": "Stickersは壁紙やSNSで使われる大きな絵文字です。", "hibernateSw": "ハイバネーションを無効化", "hibernateTip": "Windowsのハイバネーションを無効化します。", "smb1Sw": "SMBv1 プロトコルを無効化", "smb2Sw": "SMBv2 プロトコルを無効化", "smbTip": "SMB{v}プロトコルはWindowsコンピュータ間でファイル共有を行うプロトコルです。 SMBv3に置き換えられており、そちらのほうがより安全です。", "ntfsStampSw": "NTFS タイムスタンプを無効化", "ntfsStampTip": "ファイルの最終アクセス時刻を示します。 無効にすることで、ディスクのI/O操作が減少します。", "autoStartToggle": "Windowsと一緒に起動", "nvidiaTelemetrySw": "NVIDIA テレメトリを無効化", "dnsTitle": "DNSサーバーを即座に変更", "vbsSw": "仮想化技術ベースのセキュリティ機能を無効化", "vbsTip": "悪意あるドライバがプロセスに介入するのを防ぐカーネルの機能です。 パフォーマンスに悪影響を及ぼす可能性があります。", "winSearchSw": "検索を無効化", "winSearchTip": "Windows Searchサービスを無効化します。", "btnRestoreUwp": "全てのUWPを復元", "restoreUwpMessage": "本当に復元しますか?", "telemetrySvcToggle": "Optimizerのテレメトリを無効にする", "edgeAiSw": "Edge Discover を無効にする", "edgeTelemetrySw": "エッジ テレメトリを無効にする", "edgeAiTip": "Edge の Discover バーを削除します。", "edgeTelemetryTip": "Edge で SmartScreen、Spotlight、および Telemetry サービスを無効にします。", "hpetSw": "HPETを無効にする", "loginVerboseSw": "詳細ログイン画面を有効にする", "advancedTab": "高度", "btnRestartSafe": "セーフモードで再起動", "btnRestart": "通常モードで再起動", "btnRestartDisableDefender": "Defender を再起動 && 無効化", "classicPhotoViewerSw": "クラシックフォトビューアを復元する", "tabPage3": "フォント", "fontSetTitle": "お気に入りのフォントを Windows のデフォルト フォントとして設定", "label11": "現在のフォント:", "btnSetGlobalFont": "デフォルトとして設定", "lblFontsCount": "利用可能なフォント:", "btnRestoreFont": "デフォルトを復元", "btnRefreshFonts": "更新", "chkAllNics": "すべてのネットワークアダプターに設定", "chkCustomDns": "カスタムDNSを設定する", "btnSetDns": "DNSの設定", "copilotSw": "CoPilot AI を無効にする", "copilotTip": "CoPilot AI の機能を完全に無効にします.", "btnReinforce": "ポリシーを強化する", "msgReinforce": "現在のポリシーを再適用してもよろしいですか?", "newsInterestsSw": "ニュースと関心事の無効化", "allTrayIconsSw": "すべての通知アイコンを表示", "noMenuDelaySw": "メニューの遅延を削除", "hideSearchSw": "タスクバーの検索を非表示", "hideWeatherSw": "タスクバーの天気を非表示", "enableUtcSw": "UTC 時間を有効にする", "autoUpdateToggle": "起動時の更新", "modernStandbySw": "モダンスタンバイの無効化", "label24": "システム変数エディタ", "label23": "新しいシステム変数パス:", "button3": "追加", "label21": "システム変数", "button1": "削除", "button2": "更新" } ================================================ FILE: Optimizer/Resources/i18n/KO.json ================================================ { "subSystem": "시스템", "subPrivacy": "개인 정보", "subGaming": "게이밍", "subTouch": "터치", "subTaskbar": "작업 표시줄", "subExtras": "추가", "btnAbout": "확인", "restartButton": "지금 다시 시작", "restartButton8": "지금 다시 시작", "restartButton10": "지금 다시 시작", "btnFind": "찾기", "btnKill": "죽이기", "regBackupSw": "레지스트리 백업 활성화", "trayUnlocker": "파일 핸들", "restartAndApply": "다시 시작하여 변경 사항 적용", "txtVersion": "버전: {VN}", "txtBitness": "{BITS}로 작업중 - 한국어: 비너스걸", "linkUpdate": "업데이트 가능", "lblLab": "실험 빌드\n(테스트 후 삭제)", "performanceSw": "성능 최적화", "networkSw": "네트워크 최적화", "defenderSw": "Windows Defender 사용 안 함", "systemRestoreSw": "시스템 복원 사용 안 함", "printSw": "인쇄 서비스 사용 안 함", "mediaSharingSw": "Media Player 공유 사용 안 함", "faxSw": "팩스 서비스 사용 안 함", "reportingSw": "오류 보고 사용 안 함", "homegroupSw": "홈그룹 사용 안 함", "superfetchSw": "Superfetch 사용 안 함", "telemetryTasksSw": "원격 측정 작업 사용 안 함", "officeTelemetrySw": "Office 2016 원격 측정 사용 안 함", "vsSW": "Visual Studio 원격 측정 사용 안 함", "ffTelemetrySw": "Mozilla Firefox 원격 측정 사용 안 함", "chromeTelemetrySw": "Google Chrome 원격 측정 사용 안 함", "compatSw": "호환성 지원 사용 안 함", "smartScreenSw": "SmartScreen 사용 안 함", "stickySw": "고정 키 사용 안 함", "universalTab": "일반", "modernAppsTab": "UWP 앱", "startupTab": "시작", "appsTab": "앱", "cleanerTab": "청소", "pingerTab": "핑 도구", "registryFixerTab": "레지스트리", "integratorTab": "통합", "CleanPreviewForm": "미리보기 지우기", "optionsTab": "옵션", "oldMixerSw": "클래식 볼륨 믹서 사용", "oldExplorerSw": "클래식 파일 탐색기 복원", "adsSw": "시작 메뉴 광고 사용 안 함", "uODSw": "OneDrive 제거", "peopleSw": "피플 사용 안 함", "longPathsSw": "긴 경로 사용", "autoUpdatesSw": "자동 업데이트 사용 안 함", "driversSw": "업데이트에서 드라이버 제외", "telemetryServicesSw": "원격 측정 서비스 사용 안 함", "privacySw": "개인 정보 강화", "ccSw": "클라우드 클립보드 사용 안 함", "cortanaSw": "Cortana 사용 안 함", "sensorSw": "센서 서비스 사용 안 함", "castSw": "장치에 캐스트 제거", "inkSw": "Windows Ink 사용 안 함", "spellSw": "맟춤법 검사 사용 안 함", "xboxSw": "Xbox Live 사용 안 함", "gameBarSw": "Game Bar 사용 안 함", "insiderSw": "Insider 서비스 사용 안 함", "actionSw": "알림 센터 사용 안 함", "disableOneDriveSw": "OneDrive 사용 안 함", "tpmSw": "TPM 2.0 확인 사용 안 함", "leftTaskbarSw": "작업 표시줄 왼쪽으로 정렬", "snapAssistSw": "스냅 레이아웃 사용 안 함", "widgetsSw": "위젯 사용 안 함", "chatSw": "채팅 사용 안 함", "smallerTaskbarSw": "작업 표시줄 작게 만들기", "classicRibbonSw": "탐색기에서 클래식 리본 사용", "classicContextSw": "클래식 오른쪽 클릭 메뉴 사용", "refreshModernAppsButton": "새로 고침", "uninstallModernAppsButton": "설치 제거", "txtModernAppsTitle": "불필요한 UWP 앱 제거", "chkSelectAllModernApps": "모두 선택", "chkOnlyRemovable": "제거 가능한 것만", "onedriveM": "OneDrive를 제거하시겠습니까? 데스크탑 및 문서 파일이 삭제됩니다! 로컬 계정에서만 이 옵션을 사용하십시오!", "startupTitle": "시작 항목 선택하기", "removeStartupItemB": "삭제", "locateFileB": "파일 위치", "findInRegB": "레지스트리에서 찾기", "analyzeDriveB": "분석", "refreshStartupB": "새로 고침", "restoreStartupB": "복원", "backupStartupB": "백업", "lblBackupTitle": "백업 제목:", "doBackup": "확인", "cancelBackup": "취소", "startupItemName": "이름", "startupItemLocation": "위치", "startupItemType": "유형", "txtFeedError": "인터넷에 연결되어 있지 않습니다. 링크를 다시 새로 고치십시오", "appsTitle": "유용한 앱을 빠르게 다운로드하여 설치", "btnGetFeed": "링크 새로 고침", "bitPref": "비트 환경 설정을 설정", "linkWarnings": "경고 보이기", "txtDownloadStatus": "유휴", "goToDownloadsB": "다운로드로 이동", "btnDownloadApps": "다운로드", "cAutoInstall": "다운로드 후 설치", "setDownDirLbl": "다운로드 폴더 설정", "c64": "64비트", "c32": "32비트", "checkSelectAll": "모두 선택", "checkTemp": "임시 파일", "checkLogs": "Windows 로그", "checkMiniDumps": "BSOD 미니덤프", "checkBin": "휴지통 비우기", "checkMediaCache": "Media Player 캐시", "checkErrorReports": "오류 보고", "cleanDriveB": "지우기", "lblPretext": "사용 가능한 최대 크기:", "cleanerTitle": "시스템 드라이브 청소", "pingerTitle": "IP 주소 핑 및 대기 시간 평가", "lblPinger": "IP / 도메인 이름", "btnOpenNetwork": "네트워크 연결 열기", "copyIPB": "복사", "copyB": "IP 복사", "btnShodan": "SHODAN.io에서 확인", "btnPing": "핑", "lblResults": "결과", "flushCacheB": "DNS 캐시 플러시", "btnExport": "내보내기", "hostsTitle": "hosts 파일을 효율적으로 편집", "linkLocate": "위치", "linkAdvancedEdit": "고급 편집기", "linkRestoreDefault": "기본값 복원", "lblIP": "IP 주소", "lblDomain": "도메인", "chkBlock": "차단", "addHostB": "추가", "lblLock": "HOSTS 파일을 잠그고 보호", "chkReadOnly": "읽기 전용", "lblAdblock": "미리 제작된 광고 차단", "lblAdblockSub": "(현재 구성 삭제)", "adblockS": "광고 차단 + 소셜", "adblockP": "광고 차단 + 성인용", "removeHostB": "삭제", "refreshHostsB": "새로 고침", "removeAllHostsB": "모두 삭제", "regFixB": "수정", "regLbl": "(일부 변경 사항에는 이것이 필요할 수 있습니다)", "checkRestartExplorer": "또한 변경 사항을 적용하려면 탐색기를 다시 시작하십시오", "checkRegistryEditor": "레지스트리 편집기", "checkFirewall": "Windows 방화벽", "checkContextMenu": "오른쪽 클릭 메뉴", "checkRunDialog": "대화 상자 실행", "checkFolderOptions": "폴더 옵션", "checkControlPanel": "제어판", "checkCommandPrompt": "명령 프롬프트", "checkTaskManager": "작업 관리자", "checkEnableAll": "모두 사용", "registryTitle": "일반적인 레지스트리 문제 해결", "quickAccessToggle": "빠른 접근 메뉴 표시", "helpTipsToggle": "도움말 메시지 표시", "lblTheming": "테마 선택", "radioOcean": "대양", "radioMagma": "마그마", "radioZerg": "저그", "radioCaramel": "카라멜", "radioLime": "라임", "radioMinimal": "미니멀", "lblUpdating": "확인 및 업데이트", "btnUpdate": "업데이트 확인", "btnChangelog": "변경 내용 표시", "lblUpdateDisabled": "실험 빌드에서 사용 안 함", "lblTroubleshoot": "문제 해결", "btnViewLog": "오류 표시", "btnOpenConf": "구성 폴더 표시", "btnResetConfig": "구성 재설정", "integrator1": "통합은 바탕화면 마우스 오른쪽 클릭 메뉴에\n완전히 사용자 정의된 항목을 추가할 수 있습니다:", "integrator2": "• 모든 프로그램", "integrator3": "• 폴더 바로가기", "integrator4": "• 웹 링크", "integrator5": "• 모든 유형의 파일", "integrator6": "• 명령", "integrator7": "항목에는 사용자 지정 아이콘과 위치가 있을 수 있습니다.\n또한 SHIFT 키를 눌러서만 접근할 수 있으며\n숨길 수 있습니다.\n또한 대화상자 실행에 대한 사용자 정의 명령을 만들 수 있으므로\n원하는 키워드를 입력하는 것만으로\n응용 프로그램을 쉽게 시작할 수 있습니다.", "integratorInfoTab": "정보", "tabPage8": "추가/수정", "tabPage9": "삭제", "tabPage10": "메뉴 준비", "tabPage11": "대화 상자 실행", "addItemL": "항목 추가 또는 수정", "itemtype": "항목 유형", "radioProgram": "프로그램", "radioFolder": "폴더", "radioLink": "링크", "radioFile": "파일", "radioCommand": "명령", "itemtoaddgroup": "추가할 프로그램", "folderToAdd": "추가할 폴더", "linkToAdd": "추가할 링크", "fileToAdd": "추가할 파일", "commandToAdd": "추가할 명령", "icontoaddgroup": "추가할 아이콘", "checkDefaultIcon": "프로그램 아이콘 사용", "checkDefaultFolderIcon": "기본 폴더 아이콘 사용", "checkFavicon": "웹 사이트 아이콘 다운로드 (파비콘)", "checkNoIcon": "아이콘 없음", "dnsCacheM": "DNS 캐시를 생성하는 중입니다. 나중에 다시 시도하십시오!", "itemposition": "항목 위치", "radioTop": "위쪽", "radioMiddle": "가운데", "radioBottom": "아래쪽", "security": "보안", "checkShift": "SHIFT를 눌렀을 때만 표시", "itemnamegroup": "메뉴에 항목 이름", "btnAddItem": "추가/수정", "removeIntegratorItemsL": "기존 바탕화면 항목 삭제", "removeDIB": "삭제", "refreshIIB": "새로 고침", "removeAllIIB": "모두 삭제", "PMB": "전원 메뉴 추가", "STB": "시스템 도구 추가", "WAB": "Windows 앱 추가", "SSB": "시스템 바로 가기 추가", "DSB": "바탕화면 바로 가기 추가", "AddOwnerB": "'소유권 취득' 추가", "RemoveOwnerB": "'소유권 취득' 삭제", "AddCMDB": "'CMD로 열기' 추가", "DeleteCMDB": "'CMD로 열기' 삭제", "readyMenusL": "유용하고 미리 제작된 메뉴 추가", "refreshCCB": "새로 고침", "removeCCB": "삭제", "removeCCL": "기존 명령 삭제", "btnCreateCustomCommand": "만들기", "ccKeywordL": "키워드", "ccFileL": "파일 위치", "ccL": "사용자 지정 실행 명령어 정의", "btnYes": "예", "btnNo": "아니오", "btnOk": "확인", "HostsEditorForm": "Hosts 편집기", "savebtn": "저장", "closebtn": "닫기", "adminMissingMsg": "Optimizer를 관리자로 실행해야 합니다!\n지금 앱이 닫힙니다...", "unsupportedMsg": "Optimizer는 Windows 7 이상에서 작동합니다!\n지금 앱이 닫힙니다...", "confInvalidVersionMsg": "Windows 버전이 일치하지 않습니다!", "confInvalidFormatMsg": "구성 파일의 형식이 잘못되었습니다!", "confNotFoundMsg": "구성 파일이 없습니다!", "argInvalidMsg": "잘못된 인수입니다! 예를 들면: Optimizer.exe /config=win10.conf", "alreadyRunningMsg": "Optimizer가 백그라운드에서 이미 실행 중입니다!", "StartupPreviewForm": "시작 항목 미리 보기", "StartupRestoreForm": "시작 항목 복원", "backupL": "시작 항목 복구", "txtNoBackups": "백업을 찾을 수 없습니다", "previewBackupB": "미리보기", "restoreBackupB": "복원", "deleteBackupB": "삭제", "noNewVersion": "최신 버전이 이미 있습니다!", "betaVersion": "실험 버전을 사용하고 있습니다!", "removeAllStartup": "모든 시작 항목을 삭제하시겠습니까?", "removeAllHosts": "모든 호스트 항목을 삭제하시겠습니까?", "removeAllItems": "모든 바탕화면 항목을 삭제하시겠습니까?", "removeModernApps": "다음 앱을 제거하시겠습니까?", "errorModernApps": "다음 앱을 제거할 수 없습니다\n", "latestVersionM": "최신 버전: {LATEST}", "currentVersionM": "현재 버전: {CURRENT}", "resetMessage": "구성을 재설정하시겠습니까?\n이렇게 하면 통합기를 사용하여 압축을 풀거나 다운로드한 아이콘을 포함하여\n모든 기본 설정이 재설정되지만 컴퓨터의 아무 것도 건드리지 않습니다!", "newVersion": "사용 가능한 새 버전이 있습니다! 지금 다운로드하시겠습니까?\n몇 초 후에 앱이 다시 시작됩니다.", "flushDNSMessage": "Windows의 DNS 캐시를 플러시하시겠습니까?\n\n이로 인해 인터넷 연결이 잠시 끊기고 제대로 작동하려면 다시 시작해야 할 수 있습니다.", "downloadsFinished": "마침", "downloadDirInvalid": "지정한 다운로드 폴더가 잘못되었습니다", "no64Download": "사용 가능한 64비트 없음, 32비트 다운로드 중", "no32Download": "사용 가능한 32비트 없음, 건너뛰기", "installing": "설치 중", "linkInvalid": "링크가 더 이상 유효하지 않습니다", "noErrorsM": "표시할 오류가 없습니다!", "hostNotFound": "호스트를 찾을 수 없습니다", "pinging": "32바이트로 핑 - 9회...", "latency": "지연", "lblSystemTools": "시스템 및 도구", "lblInternet": "인터넷", "lblCoding": "코딩", "lblVideoSound": "동영상 및 소리", "min": "최소", "max": "최대", "avg": "평균", "timeout": "요청 시간 초과", "languagesL": "언어 선택", "trayStartup": "시작 관리자", "trayCleaner": "드라이브 정리", "trayPinger": "핑 도구", "trayHosts": "HOSTS 편집기", "trayAD": "앱 다운로더", "trayOptions": "옵션", "trayRegistry": "레지스트리 복구", "trayRestartExplorer": "탐색기 재시작", "trayExit": "종료", "tipWhatsThis": "새로운 기능?", "hwDetailed": "상세 보기", "btnCopyHW": "복사", "btnSaveHW": "저장", "indiciumTab": "하드웨어", "toolHWCopy": "복사", "toolHWGoogle": "Google에서 검색", "toolHWDuck": "DuckDuckGo에서 검색", "trayHW": "하드웨어 정보", "os": "운영 체제", "cpu": "프로세서", "ram": "메모리", "gpu": "그래픽", "mobo": "마더보드", "disk": "저장 장치", "inet": "네트워크 어댑터", "audio": "오디오", "dev": "주변기기", "vm": "가상 메모리", "drives": "디스크 드라이브", "volumes": "파티션", "opticals": "광 드라이브", "removables": "이동식 드라이브", "physicalAdapters": "물리적 어댑터", "virtualAdapters": "가상 어댑터", "keyboards": "키보드", "pointings": "포인팅 장치", "performanceTip": "성능을 최적화하기 위한 내부 Windows 설정 모음입니다. 적용해도 안전합니다. - 응답하지 않는 프로세스를 종료할 때까지의 대기 시간이 단축됩니다. - 메뉴 표시 지연 시간을 줄입니다. - 디스크 공간 부족 확인 알림을 실행 중지합니다 - 흔들기-최소화 기능을 사용하지 않습니다 - 항상 파일 확장자를 표시합니다 - 숨겨진 파일을 표시합니다", "networkTip": "Windows에서는 멀티미디어 앱을 실행할 때 네트워크 트래픽을 제한하는 네트워크 조절 메커니즘을 구현합니다. 또한 온라인 게임을 할 때 네트워크 성능을 저하시킬 수 있습니다.", "defenderTip": "Windows Defender는 Windows 시스템에 내장된 바이러스 백신입니다.", "smartScreenTip": "SmartScreen은 파일, 다운로드 및 웹 사이트를 자동으로 검색하여 이미 알려진 위험한 콘텐츠를 차단하고 이를 실행하기 전에 경고합니다.", "systemRestoreTip": "시스템 복원은 Windows 상태를 이전 상태로 되돌려 오작동이나 기타 문제로부터 복구할 수 있는 기능입니다.", "reportingTip": "오류 보고는 응용 프로그램 충돌 및 오류를 수집하여 Microsoft로 보냅니다.", "telemetryTasksTip": "원격 측정 서비스는 향후 개선을 위해 사용 및 성능 데이터를 정기적으로 Microsoft로 전송합니다.", "officeTelemetryTip": "Office 원격 측정 기능은 향후 개선을 위해 사용량 및 성능 데이터를 Microsoft로 정기적으로 전송합니다.", "ffTelemetryTip": "Mozilla Firefox 원격 측정 및 데이터 보고 서비스를 사용하지 않도록 설정합니다.", "vsTip": "SQM 클라이언트를 포함한 Visual Studio 원격 측정 및 피드백 기능을 사용하지 않도록 설정합니다.", "chromeTelemetryTip": "Google Chrome 원격 측정 및 소프트웨어 보고 도구 (일반적으로 CPU 사용량이 높은 것으로 알려져 있음)를 사용하지 않습니다.", "printTip": "인쇄 서비스는 프린터의 검출, 설치 및 활용을 담당합니다.", "faxTip": "팩스 서비스는 팩스 송수신을 담당합니다.", "mediaSharingTip": "Media Player 공유는 Windows Media Player용 홈 미디어 공유를 제공합니다.", "stickyTip": "고정 키는 신체적 장애가 있는 Windows 사용자가 반복적인 긴장 손상과 관련된 움직임을 줄일 수 있도록 도와주는 접근성 기능입니다.", "homegroupTip": "홈그룹은 Windows 탐색기를 사용하여 홈 네트워크에서 파일을 공유할 수 있는 기능입니다.", "superfetchTip": "Superfetch는 일반적으로 사용되는 앱을 RAM에 미리 로드하여 특히 HDD에서 디스크 사용량이 높습니다.", "compatTip": "호환성 지원 서비스는 이전 프로그램에서 알려진 호환성 문제를 탐지합니다.", "disableOneDriveTip": "OneDrive 클라우드-저장소 통합을 실행 중지합니다.", "oldMixerTip": "기존 볼륨 믹서 제어판을 복원합니다.", "oldExplorerTip": "- 빠른 접근 기록을 사용하지 않습니다 - 파일 탐색기 기본 보기를 이 PC로 설정 - 파일을 받지 않도록 설정 - 작업 표시줄에서 검색, 작업 및 날씨를 제거 - 파일 기록을 사용하지 않음", "adsTip": "광고가 시작 메뉴에 표시되지 않도록 합니다.", "uODTip": "OneDrive 클라우드-저장소 통합을 완전히 제거합니다.", "peopleTip": "피플은 작업 표시줄에 최근 연락처를 표시하는 새로운 기능입니다.", "longPathsTip": "최대 경로 길이 제한인 256자를 제거합니다.", "inkTip": "Windows Ink는 화면에 그릴 수 있는 디지털 펜을 지원합니다.", "spellTip": "터치 키보드 기능은 다음과 같습니다: - 자동 수정 - 텍스트 제안 - 맞춤법 검사", "xboxTip": "Xbox Live 서비스는 Xbox 게임을 위한 스트리밍, 녹음 및 소셜 기능을 제공합니다.", "actionTip": "알림 센터는 Wi-Fi, 블루투스 등과 같은 알림 및 빠른 동작 타일의 중심 장소입니다.", "autoUpdatesTip": "Windows 업데이트의 자동 다운로드 및 설치를 실행 중지합니다. 대신 새 업데이트를 사용할 수 있을 때 알림이 표시됩니다. 또한 배달 최적화 서비스를 실행 중지합니다.", "driversTip": "Windows Update가 올바르게 작동하는 드라이버를 장애가 있는 드라이버로 지속적으로 교체할 때 유용합니다.", "telemetryServicesTip": "원격 측정 서비스는 Microsoft에 분석을 위한 피드백을 보내는 사용 데이터를 추적 및 기록합니다.", "privacyTip": "추가 개인 정보 보호 조정은 다음을 비활성화합니다: - 생체 인식 - 지리 위치 - 기기 간에 앱 공유 - 텍스트 로거 - 진단", "ccTip": "클라우드 클립보드는 클립보드 데이터를 장치 간에 공유합니다. 한 장치에 복사하고 다른 장치에 붙여넣을 수 있습니다. Microsoft 계정 로그인이 필요합니다.", "cortanaTip": "Cortana는 AI 기반의 가상 비서입니다. - Cortana 사용 안 함 - 시작 메뉴에서 웹 검색을 사용 안 함 - 검색 기록 보관 금지", "sensorTip": "자동 회전, 자동 밝기 등과 같은 센서의 기능을 관리하는 서비스입니다. 터치 스크린이 있는 태블릿 또는 장치에만 유용합니다.", "castTip": "마우스 오른쪽 버튼을 클릭하여 미디어 콘텐츠를 Miracast 장치와 공유합니다.", "gameBarTip": "Game Bar는 Xbox 게임 서비스를 위한 빠른 접근 메뉴입니다.", "insiderTip": "Windows Insider 프로그램을 사용하면 최신 기능이 일반에 공개되기 전에 테스트할 수 있습니다. 참여를 원하지 않는 사용자에게는 불필요한 서비스로 간주됩니다.", "featuresTip": "기능 업데이트는 업그레이드가 필요한 기술적으로 새로운 버전의 Windows입니다. 그러나 이러한 시술은 위험한 절차로 간주됩니다. 일반적으로 반년마다 출시됩니다.", "tpmTip": "Secure Boot 및 TPM 2.0 요구 사항을 무시하고 Windows 11로 업그레이드할 수 있습니다.", "leftTaskbarTip": "작업 표시줄 아이콘을 왼쪽으로 정렬합니다.", "snapAssistTip": "최대화 버튼을 맴돌 때 스냅 레이아웃 플라이아웃을 사용하지 않습니다.", "widgetsTip": "위젯 기능을 사용하지 않도록 설정하고 작업 표시줄에서 위젯 아이콘을 제거합니다.", "chatTip": "작업 표시줄에서 채팅 아이콘을 제거합니다.", "smallerTaskbarTip": "작업 표시줄 크기와 아이콘을 더 작게 만듭니다.", "classicRibbonTip": "Windows 10에서 파일 탐색기의 기존 리본 막대를 복원합니다.", "classicContextTip": "'추가 옵션 표시'를 제거하여 기존 마우스 오른쪽 버튼 메뉴를 복원합니다.", "gameModeSw": "게임 모드 사용", "gameModeTip": "하드웨어 가속 GPU 스케줄링과 함께 게임 모드를 사용합니다.", "systemRestoreM": "시스템 복원을 사용하지 않도록 설정하시겠습니까? 현재 백업 이미지가 삭제됩니다!", "compactModeSw": "탐색기에서 압축 모드 사용", "compactModeTip": "파일 탐색기에서 파일 사이의 추가 공간과 패딩을 줄입니다.", "stickersTip": "스티커는 배경화면에 나타나는 커다란 이모티콘으로, 소셜 메신저에서 사용되고 있습니다.", "hibernateSw": "최대 절전 모드 사용 안 함", "hibernateTip": "Windows 최대 절전 모드 기능을 사용하지 않도록 설정합니다.", "smb1Sw": "SMBv1 프로토콜 사용 안 함", "smb2Sw": "SMBv2 프로토콜 사용 안 함", "smbTip": "SMB{v} 프로토콜은 Windows 시스템 간의 파일 공유를 담당합니다. 더 안전한 SMBv3로 대체되었습니다.", "ntfsStampSw": "NTFS 타임스탬프 사용 안 함", "ntfsStampTip": "파일의 마지막으로 액세스한 스탬프를 나타냅니다. 사용하지 않도록 설정하면 디스크의 I/O 작업을 줄일 수 있습니다.", "autoStartToggle": "Windows와 함께 시작", "nvidiaTelemetrySw": "NVIDIA 원격 측정 사용 안 함", "dnsTitle": "DNS 서버를 신속하게 변경", "vbsSw": "가상화 기반 보안 사용 안 함", "vbsTip": "프로세스에 대한 악의적인 드라이버 주입을 방지하는 커널 기능입니다. 그것은 성능에 부정적인 영향을 미칩니다.", "winSearchSw": "검색 사용 안 함", "winSearchTip": "Windows 검색 서비스를 사용하지 않도록 설정합니다.", "btnRestoreUwp": "모든 UWP 복원", "restoreUwpMessage": "정말 이 작업을 수행하시겠습니까?", "telemetrySvcToggle": "Optimizer 인사이트 사용 안 함", "edgeAiSw": "Edge 검색 사용 안 함", "edgeTelemetrySw": "Edge 원격 측정 사용 안 함", "edgeAiTip": "Edge에서 탐색 막대를 제거합니다.", "edgeTelemetryTip": "Edge에서 SmartScreen, 스포트라이트 및 원격 측정 서비스 서비스를 비활성화합니다.", "hpetSw": "HPET 사용 안 함", "loginVerboseSw": "상세 로그인 화면 사용", "advancedTab": "고급", "btnRestartSafe": "안전 모드에서 다시 시작", "btnRestart": "정상 모드에서 다시 시작", "btnRestartDisableDefender": "Defender 다시 시작 및 사용 안 함", "storeUpdatesSw": "Microsoft Store 업데이트 비활성화", "storeUpdatesTip": "Microsoft Store 자동 업데이트 기능을 비활성화합니다.", "classicPhotoViewerSw": "클래식 사진 뷰어 복원", "tabPage3": "글꼴", "fontSetTitle": "즐겨찾는 글꼴을 Windows 기본 글꼴로 설정", "label11": "현재 글꼴:", "btnSetGlobalFont": "기본값으로 설정", "lblFontsCount": "사용 가능한 글꼴:", "btnRestoreFont": "기본값 복원", "btnRefreshFonts": "새로 고침", "chkAllNics": "모든 네트워크 어댑터에 대해 설정", "chkCustomDns": "맞춤 DNS 설정", "btnSetDns": "DNS 설정", "copilotSw": "CoPilot AI 기능 완전히 비활성화", "copilotTip": "CoPilot AI 기능을 완전히 비활성화합니다.", "btnReinforce": "정책 강화", "msgReinforce": "현재 정책을 다시 적용하시겠습니까?", "newsInterestsSw": "뉴스 및 관심사 비활성화", "allTrayIconsSw": "모든 알림 아이콘 표시", "noMenuDelaySw": "메뉴 지연 제거", "hideSearchSw": "작업 표시줄 검색 숨기기", "hideWeatherSw": "작업 표시줄 날씨 숨기기", "autoUpdateToggle": "시작 시 업데이트", "enableUtcSw": "UTC 시간 활성화", "modernStandbySw": "현대 대기 모드 비활성화", "label24": "시스템 변수 편집기", "label23": "새 시스템 변수 경로:", "button3": "추가", "label21": "시스템 변수", "button1": "삭제", "button2": "새로 고침" } ================================================ FILE: Optimizer/Resources/i18n/KU.json ================================================ { "subSystem": "سیستەم", "subPrivacy": "تایبەتمەندیەتی", "subGaming": "یاریکردن", "subTouch": "دەست لێدان", "subTaskbar": "تاسکبار", "subExtras": "زیادە", "btnAbout": "باشە", "restartButton": "ئێستا ڕیستارتی بکەوە", "restartButton8": "ئێستا ڕیستارتی بکەوە", "restartButton10": "ئێستا ڕیستارتی بکەوە", "btnFind": "بیدۆزەوە", "btnKill": "بیکوژە (دایبخە)", "regBackupSw": "پشتیگێری لەفایلی تۆمار چالاک بکە", "trayUnlocker": "دەسکەکانی فایل", "restartAndApply": "ڕیستارتی ئەکەیتەوە بۆ بینینی گۆڕانکاریەکان", "txtVersion": "وەشان :", "txtBitness": "کاردەکەیت (BITS) تۆ لەگەڵ", "linkUpdate": "وەشانی نوێ بەردەستە", "lblLab": "دروست کردنی تاقیکاری\n سڕینەوە دوای تاقیکردنەو", "performanceSw": "کاراکردن بۆ باشکردنی تویکەکان", "networkSw": "ناچالاک کردنی بەکارهێنانی ئینتەرنێتی زۆر", "defenderSw": "Defender ناچالاک کردنی بەشی", "systemRestoreSw": "ناچالاک کردنی بەشی گەراندنەوەی سیستەم", "printSw": "ناچالاک کردنی خزمەتگوزاری چاپکردن", "mediaSharingSw": "Media Player Sharing ناچالاک کردنی بەشی", "faxSw": "Fax ناچالاک کردنی خزمەتگوزاری", "reportingSw": "ناچالاک کردنی ناردنی کێشە و هەڵەکان", "homegroupSw": "HomeGroup ناچالاک کردنی بەشی", "superfetchSw": "SuperFetch ناچالاک کردنی", "telemetryTasksSw": "ناچالاک کردنی ناردنی داتا تاسکەکان", "officeTelemetrySw": "Office ناچالاک کردنی ناردنی داتای", "vsSW": "Visual Studios ناچالاک کردنی ناردنی داتا", "ffTelemetrySw": "FireFox ناچالاک کردنی ناردنی داتا", "chromeTelemetrySw": "GoogleChrome ناچالاک کردنی ناردنی داتا", "compatSw": "ناچالاک کردنی خزمەتگوزاری کێشەکان", "smartScreenSw": "SmartScreen ناچالاک کردنی بەشی", "stickySw": "StickyKeys ناچالاک کردنی بەشی", "universalTab": "جیهانی", "modernAppsTab": "UWP بەرنامەکانی", "startupTab": "دەستپێکردنەکان", "appsTab": "بەرنامەکان", "cleanerTab": "خاوێن کەرەوە", "pingerTab": "Pinger", "registryFixerTab": "ڕێجستری", "integratorTab": "تەواوکەر", "CleanPreviewForm": "پێشیبنینی خاوێنکردنەوەکان", "optionsTab": "بژاردەکان", "oldMixerSw": "چالاک کردنی شێوازی کۆنی (دەنگ پێدەر)", "oldExplorerSw": "(File Explorer) گەڕانەوەی شێوازی کلاسیکی", "adsSw": "ناچالاک کردنی ریکلامەکانی پەڕەی سەرەکی", "uODSw": "OneDrive سڕینەوەی", "peopleSw": "My People ناچالاک کردنی بەشی", "longPathsSw": "چالاک کردنی ڕێڕەوی درێژ", "autoUpdatesSw": "ناچالاک کردنی نوێکردنەوەی خودکار", "driversSw": "چاک کردنەوەی درایفەرەکان لە نوێکەرەوەکان", "telemetryServicesSw": "ناچالاک کردنی خزمەتگوزاری ناردنی داتا", "privacySw": "پەرەپێدانی پارێزەری زیاتر", "ccSw": "Cloud Clipboard ناچالاک کردنی", "cortanaSw": "Cortana ناچالاک کردنی خزمەتگوزاری", "sensorSw": "ناچالاک کردنی خزمەت گوزاری هستەوەرەکان", "castSw": "Cast To Device سڕینەوەی", "inkSw": "Windows Ink ناچالاک کردنی", "spellSw": "ناچالاک کردنی پشکنینی ئیملا", "xboxSw": "Xbox Live ناچالاک کردنی", "gameBarSw": "Game Bar ناچالاک کردنی", "insiderSw": "ناچالاک کردنی خزمەتگوزاری ناوەکی", "actionSw": "ناچالاک کردنی بەشی ئاگاداری نامە", "disableOneDriveSw": "OneDrive ناچالاک کردنی", "tpmSw": "TPM 2.0 ناچالاک کردنی پشکنینی", "leftTaskbarSw": "بۆ چەپ TaskBarگۆرینی شوێنی", "snapAssistSw": "Snap Assist ناچالاک کردنی", "widgetsSw": "Widgets ناچالاک کردنی", "chatSw": "ناچالاک کردنی چات", "smallerTaskbarSw": "بچووکتر بکەرەوە task bar", "classicRibbonSw": "Explorer چالاک کردنی شێوازی کلاسیکی وردەکاریەکانی", "classicContextSw": "چالاک کردنی شێوازی کلاسیکی لیستی کلیکی-ڕاست,", "refreshModernAppsButton": "(Refresh) ڕیفرێش", "uninstallModernAppsButton": "سڕینەوە", "txtModernAppsTitle": "کە پێویستت پێی نیە UMP سڕینەوەی بەرنامەکانی", "chkSelectAllModernApps": "هەموویان هەڵبژێرە", "chkOnlyRemovable": "تەنها خەت بە ژێرداهاتوەکان بسڕەوە", "onedriveM": "؟ چونکە هەموو فایلەکانی کە پەیوەستن بەو بەرنامەیە لەسەر شاشە و ناو دۆکیومێنتەکانت دەسڕێتەوە ئاگاداربە لە بەکارهێنانی OneDrive ئایا دڵنیایی لە سڕینەوەی", "txtUWP": "etc,Settings,MicrosoftEdge وەک \n ناتوانی بیسڕیتەوە \n هەندێک بەرنامە \n چیتر ناتوانی بەرنامە نوێیەکان دابزێنیتەوە \n بسڕیتەوە store ئەگەر", "startupTitle": "دەستپێکەرەکانت هەڵبژێرە", "removeStartupItemB": "سڕینەوە", "locateFileB": "شوێنی فایل دیاری بکە", "findInRegB": "بیدۆزەرەوە Registry لە بەشی", "analyzeDriveB": "شیکردنەوە", "refreshStartupB": "نوێکردنەوە", "restoreStartupB": "گەڕانەوە", "backupStartupB": "پاڵپشت", "lblBackupTitle": "تایتڵی پاڵپشت:", "doBackup": "باشە", "cancelBackup": "ڕەتکردنەوە", "startupItemName": "ناو", "startupItemLocation": "شوێن", "startupItemType": "جۆر", "txtFeedError": "هیچ هێڵی ئینتەرنێت نیە هەوڵبدە لینکەکە ریفرێش بکەیتەوە", "appsTitle": "بەخێرایی دەتوانی بەرنامە بەسوودەکان دابەزێنی", "btnGetFeed": "ریفرێشکردنەوەی لینک", "bitPref": "Bit هەڵبژاردنی جۆری", "linkWarnings": "ئاگادارکەرەوەکان ببینە", "txtDownloadStatus": "داونڵۆد دەبێ", "goToDownloadsB": "بچۆ فایلی داونڵۆدەکان", "btnDownloadApps": "داونڵۆد بکە", "cAutoInstall": "دایبەزێنە پاش داونڵۆد بوون", "setDownDirLbl": "دەستنیشانکردنی شوێنی داونڵۆدەکان", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "هەمووی هەڵبژێرە", "checkTemp": "فایلی کاتی", "checkLogs": "ئامارەکانی ویندۆز", "checkMiniDumps": "BSOD minidumps", "checkBin": "Recycle Bin سڕینەوەی فایلەکانی ناو", "checkMediaCache": "Media Player cache", "checkErrorReports": "Error reports", "cleanDriveB": "خاوێن بکەوە", "lblPretext": "بەرزترین قەبارە بۆ سڕینەوە:", "cleanerTitle": "خاوێن کردنەوەی درایفەرەکانی سیستەم", "pingerTitle": "ناونیشان خەملاندنی ڕەشنەکەی Ping IP", "lblPinger": "IP / Domain ناوی", "btnOpenNetwork": "Network Connections کردنەوەی بەشی", "copyIPB": "کۆپی", "copyB": "IP کۆپی", "btnShodan": "SHODAN.io دڵنیا بوونەوە لە", "btnPing": "Ping", "lblResults": "ئەنجام", "flushCacheB": "DNS سڕینەوەی فایلە زیادەکانی", "btnExport": "دەرهێنان", "hostsTitle": "دەستکاری فایلی هۆستەکەت بکە بە لێهاتویی", "linkLocate": "دیاری کردنی شوێنی هۆست", "linkAdvancedEdit": "دەستکاریکەری پێشکەوەتوو", "linkRestoreDefault": "گەڕاندنەوەی بنەڕەت", "lblIP": "IP ناونیشان", "lblDomain": "دۆمەین", "chkBlock": "بلۆک کردن", "addHostB": "زیاد کردن", "lblLock": "پاراستنی فایلی هۆستەکەت بە قوفل کردنی", "chkReadOnly": "تەنها خوێندنەوە", "lblAdblock": "رێکلام بلۆکەری ئامادەکراو", "lblAdblockSub": "(شێوەپێدانەکەی ئێستات دەسڕێتەوە)", "adblockS": "رێکلام بلۆکەر لەگەڵ کۆمەڵایەتی", "adblockP": "رێکلام بلۆکەر لەگەڵ بلۆک کردنی پۆڕن", "removeHostB": "سرێنەوە", "refreshHostsB": "ڕیفرێش", "removeAllHostsB": "سڕینەوەی هەمووی", "regFixB": "چارەسەر کردن", "regLbl": "(هەندێک گۆڕانکاری لەوانەیە پێوستی بەوەبێ)", "checkRestartExplorer": "ڕیستارت بکەوە لەگەڵی Explorer هەروەها", "checkRegistryEditor": "Registry دەستکاری کەری", "checkFirewall": "Windows Firewall", "checkContextMenu": "لیستی کلیکی لای ڕاست", "checkRunDialog": "ئیشپێکردنی دیالۆگ", "checkFolderOptions": "بژاردەکانی فۆڵدەر", "checkControlPanel": "پەڕەی کۆنتڕۆڵ", "checkCommandPrompt": "داواکردنی فەرمان", "checkTaskManager": "بەڕێوبەری ئەرک", "checkEnableAll": "چالاک کردنی هەمووی", "registryTitle": "چارەسەرکردنی کێشەکانی تۆماری گشتی", "quickAccessToggle": "Quick Access Menu پیشاندانی بەشی", "helpTipsToggle": "نیشاندانی نامەی یارمەتی", "lblTheming": "ڕووکارێک هەڵبژێرە", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "پشکنین بۆ وەشانی نوێ", "btnUpdate": "پشکنین بۆ وەشانی نوێ", "btnChangelog": "گۆڕانکاریەکان ببینە", "lblUpdateDisabled": "ناچالاککراوە لە بنیاتنانەکانی تاقیکردنەوەدا", "lblTroubleshoot": "چارەسەرکردن", "btnViewLog": "پیشاندانی هەڵەکان", "btnOpenConf": "فۆڵدەری شێوەپێدان نیشان بدە", "btnResetConfig": "چاککردنەوە", "integrator1": "تەواوکەرەکە توانای ئەوەی هەیە بە تەواوی تایبەتمەندکراو زێدە بکات\n شتەکان لەسەر شاشە لیستی کلیکی لای ڕاست :", "integrator2": "• هەر پڕۆگرامێک بێ", "integrator3": "• کورتکراوەکان بۆ فۆڵدەرەکان", "integrator4": "• بەستنەوە بە تۆڕێک", "integrator5": "• هەر جۆرێکی فایل بێ", "integrator6": "• ئەرکەکان", "integrator7": "ئایتمەکان دەتوانن ئایکۆن و شوێنی تایبەتیان هەبێت.\n هەروەها دەتوانن شاراوە بن، تەنها بەردەست بن \n بە داگرتنی دوگمەی شیفت.\n هەروەها دەتوانێت فرمانی تایبەتیش دروست بکات\n بۆ کارپێکردنی دیالۆگ،وای لێبکە بە ئاسانی دەستپێبکات \n هەر بەرنامەیەک بێت تەنها بە نوسینی ووشەی سەرەکی خوازراوت", "integratorInfoTab": "زانیاری", "tabPage8": "زیاد کردن یان دەستکاری کردن", "tabPage9": "سڕینەوە", "tabPage10": "لیستی ئامادەکردن", "tabPage11": "ئیشپێکردنی", "addItemL": "زیاد کردن یان دەستکاری کردنی شتێک", "itemtype": "جۆرێک شتەکەت", "radioProgram": "پڕۆگرام", "radioFolder": "فۆڵدەر", "radioLink": "لینک", "radioFile": "فایل", "radioCommand": "فەرمان", "itemtoaddgroup": "پڕۆگرام بۆ زیاد کردن", "folderToAdd": "فۆڵدەر بۆ زیاد کردن", "linkToAdd": "لینک بۆ زیاد کردن", "fileToAdd": "فایل بۆ زیاد کردن", "commandToAdd": "فەرمان بۆ زیاد کردن", "icontoaddgroup": "ئایکۆن بۆ زیاد کردن", "checkDefaultIcon": "بەکارهێنانی ئایکۆنی پڕۆگرامەکان", "checkDefaultFolderIcon": "بەکارهێنانی ئایکۆنی بنەڕەتی فۆڵدەر", "checkFavicon": "داونڵۆد کردنی ئایکۆنی ماڵپەڕ", "checkNoIcon": "ئایکۆن نیە", "dnsCacheM": "دەستی کرد بە دروست کردن دواتر هەوڵبدەرەوە DNS فایلی زیادەی", "itemposition": "شوێنی شتەکان", "radioTop": "سەرەوە", "radioMiddle": "ناوەڕاست", "radioBottom": "خوارەوە", "security": "پاراستن", "checkShift": "داگیرابێت SHIFT تەنیا ئەو کاتە نیشان بدرێت کە دوگمەی", "itemnamegroup": "ناوی شتەکان لە لیست", "btnAddItem": "زیاد کردن یان دەستکاری کردن", "removeIntegratorItemsL": "سڕینەوەی ئایکۆنی هەبوو لە سەر شاشە", "removeDIB": "سڕینەوە", "refreshIIB": "نوێکردنەوە", "removeAllIIB": "سڕێنەوەی هەمووی", "PMB": "POWER زیادکردنی لیستی", "STB": "System Tools زیادکردنی", "WAB": "زیادکردنی بەرنامەی ویندۆز", "SSB": "زیادکردنی کورتکراوەی سیستەم", "DSB": "زیادکردنی کورتکراوەی دێسکتۆپ", "AddOwnerB": "زیادکردنی خاوەندارێتی وەربگرە", "RemoveOwnerB": "سڕینەوەی خاوەندارێتی وەربگرە", "AddCMDB": "CMD زیادکردنی کردنەوە بە", "DeleteCMDB": "CMD سڕینەوەی کردنەوە بە", "readyMenusL": "زیادکردنی لیستی ئامادەکراوی بەسوود", "refreshCCB": "نوێکردنەوە", "removeCCB": "سڕینەوە", "removeCCL": "سڕینەوەی کۆماندی هەبوون", "btnCreateCustomCommand": "دروست کردن", "ccKeywordL": "وشەی خوازراو", "ccFileL": "شوێنی فایل", "ccL": "پێناسەی ئیشپێکردنی فەرمانی تایبەت", "btnYes": "بەڵێ", "btnNo": "نەخێر", "btnOk": "باشە", "HostsEditorForm": "دەستکاری کەری هۆست", "savebtn": "سەیف کردن", "closebtn": "داخستن", "adminMissingMsg": "بەرنامەکە پێویستە وەک سەرپەرشتیار ئیشپێبکرێت!\n بەرنامەکە ئێستا دادەخرێت", "unsupportedMsg": "بەرنامەکە بۆ ویندۆز 7 بەرەو سەرەوە کار دەکا!\n بەرنامەکە ئێستا دادەخرێت", "confInvalidVersionMsg": "وەشانی ویندۆزەکەت لەگەڵی نتگونجێ!", "confInvalidFormatMsg": "فایلی کۆنفیگ لە فۆرماتی نادروستدایە!", "confNotFoundMsg": "فایلی کۆنفیگ بوونی نییە!", "argInvalidMsg": "ئارگیومێنتی نادروست! نموونە: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer ئێستا لە باکگراونددا ئیش دەکات!", "StartupPreviewForm": "پێشبینی دەستپێکەری شتێک", "StartupRestoreForm": "گەڕاندنەوەی دەستپێکەری شتێک", "backupL": "گەڕاندنەوەی دەستپێکەری شتێک", "txtNoBackups": "هیچ پاڵپشتێک نەدۆزراوە", "previewBackupB": "پێشبینین", "restoreBackupB": "گەڕاندنەوە", "deleteBackupB": "سڕینەوە", "noNewVersion": "تۆ کۆتا وەشان بەکاردەهێنیت!", "betaVersion": "تۆ ڤێرژنێکی تاقیکاری بەکاردێنیت!", "removeAllStartup": "ئایا دڵنیای لە سڕینەوەی هەموو دەستپێکەری شتەکانت؟", "removeAllHosts": "ئایا دڵنیای لە سڕینەوەی هەموو هۆستەکانت؟", "removeAllItems": "ئایا دڵنیایی لە سڕینەوەی هەموو شتەکانی دیسکتۆپ؟", "removeModernApps": "ئایا تۆ دڵنیای لە سڕینەوەی ئەم بەرنامانە", "errorModernApps": "\n ناتوانی ئەم بەرنامانە بسڕیتەوە", "latestVersionM": "کۆتا ڤێرژن: {کۆتا}", "currentVersionM": "ڤێرژنی ئێستا: {ئێستا}", "resetMessage": "ئەپەکە دەردەچێت و هەوڵدەدات خۆی چاک بکاتەوە.", "newVersion": "بەرنامە لە چەند چرکەیەکدا دەستپێدەکاتەوە \n ڤێرژنێکی نوێ بەردەستە! دەتەوێت ئێستا دایبەزێنیت؟", "flushDNSMessage": "بسڕیتەوە؟ئەمە دەبێتە هۆی بڕینی پەیوەندی ئینتەرنێت بۆ ساتێک و لەوانەیە پێویستی بە دەستپێکردنەوەیەک بێت بۆ کارکردن بە شێوەیەکی گونجاو DNS WINDOWS ئایا دڵنیای دەتەوێ خزنگەی", "downloadsFinished": "تەواوبوو", "downloadDirInvalid": "شوێنی فۆڵدەری دیاریکراو دروست نیە", "no64Download": "64bit بەردەست نیە", "no32Download": "32bit بەردەست نیە", "installing": "دادەیەزێت", "linkInvalid": "لینکەکە هیچی تر بەردەست نیە", "noErrorsM": "هەڵە هەیە بۆ نیشاندان", "hostNotFound": "هۆستەکە نەدۆزراوە", "pinging": "Pinging with 32 bytes - 9 times...", "latency": "گونجان", "lblSystemTools": "سیستەم و کەلوپەل", "lblInternet": "ئینتەرنێت", "lblCoding": "کۆدینگ", "lblVideoSound": "دەنگ و ڕەنگ", "min": "کەمترین", "max": "بەرزترین", "avg": "مامناوەند", "timeout": "داواکاری بە کۆتا هات", "languagesL": "زمانێک هەڵبژێرە", "trayStartup": "شوێنی دەستپێکەر", "trayCleaner": "خاوێنکەرەوەی درایفەر", "trayPinger": "Pinger کەلوپەلی", "trayHosts": "دەستکاری کەری هۆست", "trayAD": "داونڵۆدی بەرنامە", "trayOptions": "بژاردەکان", "trayRegistry": "چاککردنەوەی تۆمارکردن", "trayRestartExplorer": "Explorer دەستپێکردنەوەی", "trayExit": "چوونەدەر", "tipWhatsThis": "ئەمە چیە؟", "hwDetailed": "دیمەنی ورد", "btnCopyHW": "کۆپی", "btnSaveHW": "سەیف", "indiciumTab": "هاردوێر", "toolHWCopy": "کۆپی", "toolHWGoogle": "لە گوگڵ بگەڕێ", "toolHWDuck": "بگەڕێ DuckDuckGo لە", "trayHW": "زانیاری هاردوێر", "os": "سیستەمی کارپێکردن", "cpu": "پڕۆسێسەر", "ram": "بیرگەی کاتی", "gpu": "گرافیک", "mobo": "مەزەربۆرد", "disk": "بیرگە", "inet": "گونجێنەرەکانی تۆڕ", "audio": "دەنگ", "dev": "پەڕاوگە", "vm": "قەبارەی بیرگەی کاتی", "drives": "درایڤەکانی دیسک", "volumes": "دابەشکردنەکان", "opticals": "درایڤەکانی بینایی", "removables": "درایڤەکانی لابراو", "physicalAdapters": "گونجێنەری فیزیکی", "virtualAdapters": "گونجێنەرە ڕاستەقینەکان", "keyboards": "کیبۆردەکان", "pointings": "ئامێرەکانی ئاماژەکردن", "performanceTip": "کۆمەڵێک سێتینگی بەسوودن بۆ خێراکردنی سیستەم و کارکردنی ئاسان بێ وە بە تەواوەتی سەلامەتە بۆ چالاکردنی ئەم بەشە - کەمکردنەوەی کاتی چاوەڕێکردن لەکاتی کردنەوەی هەر بەرنامەیەک - کەمکردنەوەی کاتی نیشاندانی لیست - ناچالاک کردنی نامەی ئاگاداری کەمی بیرگەی ناوەکی - ناچالاک کردنی لەرزین لەکاتی داخستنی هەر بەرنامەیەک - هەمیشە پاشگری هەموو فایلەکانت نیشان دەدا - نیشاندانی هەموو فایلە شاراوەکان", "networkTip": "بەکاردێت بە کەمکردنەوەی ڕێژەی بەکارهێنانی ئینتەرنێت لەکاتی بەکارهێنانی هەر بەرنامەیەکی راستەوخۆ , وا دەکا لە کاتی یاری کردن ئینتەرنێتەکەت خاو ببێتەوە", "defenderTip": "پارێزەری ویندۆز ناتوانرێ ناچالاک بکرێ لە ویندۆز 10 بەرەو سەرەوە پارێزەری ویندۆز کە بەکاردێت بۆ نەهێشتنی ڤایرۆس و ئەو بەرنامانەی مەترسیان هەیە کە ڤایرۆس بن", "smartScreenTip": "بە شێوەیەکی ئۆتۆماتیکی فایلەکانی داگرتن و بلۆککردنی وێب سایتەکان سکان دەکات SmartScreen پێشتر ناوەرۆکێکی مەترسیداری ناسیوە و ئاگادارت دەکاتەوە پێش ئەوەی ڕایانبکەیت.", "systemRestoreTip": "گەڕاندنەوەی سیستەم تایبەتمەندیەکە کە رێگە دەدات بە گەڕاندنەوەی دۆخی ویندۆز بۆ یەکێکی پێشوو بۆ چاکبوونەوە لە ناکاری یان کێشەکانی تر.", "reportingTip": "ڕاپۆرتکردنی هەڵە تێکشکانی کاربەرنامە و هەڵەکان کۆ دەکاتەوە و دەیاننێرێتە مایکڕۆسۆفت.", "telemetryTasksTip": "خزمەتگوزاریەکانی بە شێوەی خولی داتای بەکارهێنان و ئەدا دەنێرێت بۆ مایکڕۆسۆفت Telemetry بۆ بەرەوپێشچونی داهاتوو", "officeTelemetryTip": "شێوەی خولی بەکارهێنان دەنێرێت و Office telemetry داتای ئەدا بۆ مایکڕۆسۆفت بۆ باشکردنی داهاتوو.", "ffTelemetryTip": "لە کارخستنی مۆزیلا فایەرفۆکس و راپۆرتی زانیاری خزمەتگوزاریەکان.", "vsTip": "ویژاڵ ستۆدیۆ لە دووری ستۆدیۆ و تایبەتمەندیەکانی کاردانەوە ناچالاک دەکات، بە ئێس کیو ئێمیشەوە.", "chromeTelemetryTip": "ئامێری راپۆرتی سۆفتوێری گووگڵ کرۆم ناچالاک دەکات (cpu بە ناوبانگ ناسراوە بۆ ئەوەی ببێتە هۆی بەکارهێنانی بەرزی).", "printTip": "خزمەتگوزاری چاپکردن بەرپرسیارە لە دۆزینەوەی دامەزراندن و بەکارهێنانی چاپکەرەکان", "faxTip": "خزمەتگوزاری فاکس بەرپرسیارە لە ناردن و وەرگرتنی فاکس", "mediaSharingTip": "Windows Media Player هاوبەشکردنی میدیا پلەیەر هاوبەشیکردنی میدیای ماڵەوە دابین دەکات بۆ", "stickyTip": "کلیلە چەسپاوەکان تایبەتمەندیەکی دەستگەیشتنە بۆ یارمەتیدانی بەکارهێنەرانی ویندۆز لەگەڵ کەمئەندامی جەستەیی ئەو جووڵانە کەمدەکاتەوە کە پەیوەندی هەیە بە برینی دووبارەیی فشار", "homegroupTip": "گرووپی ماڵەوە تایبەتمەندیەکە کە ڕێگە بە هاوبەشکردنی فایلەکان دەدات Windows Explorer لەسەر تۆڕێکی ماڵەوە بە بەکارهێنانی", "superfetchTip": "پڕکردنەوەی ئەو کاربەرنامانەی بە شێوەیەکی گشتی بەکاردێت بۆ ڕام ئەمەش دەبێتە هۆی بەکارهێنانی دیسکی بەرز بەتایبەتی لەسەر هاردەکان", "compatTip": "خزمەتگوزاری یاریدەدەری گونجان کێشەی گونجاوی ناسراو لە بەرنامە کۆنەکاندا دەدۆزێتەوە", "disableOneDriveTip": "OneDrive Cloud Storage ناچالاک کردنی", "oldMixerTip": "گەڕانەوەی شێوازی کلاسیکی کۆنی پێدانی دەنگ", "oldExplorerTip": "- مێژووی چوونە ژورەوەی خێرا ناچالاک دەکات - دیمەنی گریمانەیی دۆزەرەوەی فایل ڕێکبکە بۆ ئەم کۆمپیوتەرە - فایلەکانی ئەم دواییانە لە کاربخە - گەڕان، ئەرک و کەش و هەوا لە میلی ئەرک لادەبات - مێژووی فایل ناچالاک دەکات", "adsTip": "ڕێ لە ڕیکلامەکان دەگرێت لە پیشاندان لە لاپەڕەی دەستپێک.", "uODTip": "بسڕیتەوە OneDrive Cloud بەتەواوی", "peopleTip": "کە دەتوانێ ئەو ناوانەت پێنیشان بدا کە زۆر پەیوەندیان پێوەدەکەی People بەشی", "longPathsTip": "ئەوپەڕی سنوردارکردنی درێژی ڕێڕەوی 256 پیت لادەبات.", "inkTip": "پشتگیری پێنووسە دیجیتاڵیەکان دابین دەکات، بۆ وێنەکێشان لەسەر شاشەکە Windows Ink", "spellTip": "تەنها داگرتنی کیبۆڕد ئەم تایبەتمەندیانەی هەیە - راستکردنەوەی وشەکان - پێدانی وشەی پێشنیار - پشکنینی ئیملا", "xboxTip": "XBOX خزمەتگوزاریەکانی خەسڵەتی کردنەوەی لایڤ و تۆمارکردن و تایبەتمەندی پێشکەش دەکات بۆ یارییەکانی XBOX LIVE", "actionTip": "ناوەندی ئاگانامەکان شوێنێکی ناوەندیە بۆ ئاگانامەکان و خشتەکانی کاری خێرا، وەک وای فای و بلوتوس و هتد", "autoUpdatesTip": "دابەزاندنی ئۆتۆماتیکی و دامەزراندنی نوێکاریەکانی ویندۆز ناچالاک دەکات. لە جیاتی ئەوە، ئاگانامەیەک هەیە کاتێک نوێکردنەوە نوێکان بەردەستن. هەروەها خزمەتگوزاری باشکردنی گەیاندن ناچالاک دەکات.", "driversTip": "بەسوودە کاتێک نوێکاریەکانی ویندۆز بە شێوەیەکی بەردەوام جێگرەوەی گونجاو دەکات بۆ درایفەری خراپ و گۆرینی بۆ باشترین", "telemetryServicesTip": "وادەکات داتا و زانیاری بەکارهێنانی بەرنامەکە نەنێرێت بۆ کۆمپانیایی مایکڕۆسۆفت", "privacyTip": "زیادە شاراوەی ئەمانە لەکاردەخا: - پەنجەمۆر - شوێنی جیۆلۆجی - هاوبەشکردنی کاربەرنامەکان بە درێژایی ئامێرەکان - تێکستی لۆگەر - شیکاریەکان", "ccTip": "کڵاود کلیپبۆڕد بەکاردێت بۆ کۆپی و پەیست کردنی تێکست لە ئامێرک بۆ ئامێریکی تر , پێویستی بە ئەکاونتی مایکڕۆسۆفتە", "cortanaTip": "یاریدەدەرێکی راستەقینەیی لەسەر بنەمای ئای ئایە Cortana. - ناچالاک کردنی کۆرتانە - ناچالاک کردن گەڕان لە ئینتەرنێت - ڕێگری دەکات لە هێشتنەوەی مێژووی گەڕان", "sensorTip": "ئەو خزمەتانەی کە کرداری هەستەوەرەکان بەڕێوەدەبەن وەک خولانەوەی خۆکار، درەوشانەوەی خۆکار، هتد تەنها بۆ تابلێت یان ئەو ئامێرانەی کە شاشەی لەمسییان هەیە بەسوودە.", "castTip": "MiraCast لابردنی کرتەی ڕاست بۆ هاوبەشکردنی ناوەڕۆکی میدیا بۆ ئامێرەکانی", "gameBarTip": "XBOX شریتی یاری لیستێکی چوونەژوورەوەی خێرایە بۆ خزمەتگوزاریەکانی یاری", "insiderTip": "بەرنامەی ویندۆزی ناوەکی ڕێگەت پێدەدات بۆ تاقیکردنەوەی نوێترین تایبەتمەندیەکان پێش ئەوەی ئازاد بکرێت بۆ ڕای گشتی ئەمە بە خزمەتێکی ناپێویست دادەنرێت بۆ ئەو بەکارهێنەرانەی کە نایانەوێت بەشداری بکەن.", "tpmTip": "بۆ ئەوەی بە ئاسانی ویندۆز یانزە TMP تێپەڕکردنی پشکنینی", "leftTaskbarTip": "خۆدانەپاڵی وێنۆکەکانی تاسک بار بۆ لای چەپ.", "snapAssistTip": "کاتێک دوگمەکانی زیادەکردنی دوگمەکان ئەپپ یارمەتیدان ناچالاک دەکات.", "widgetsTip": "تایبەتمەندی ویجیتەکان ناچالاک دەکات و ئایکۆنی ویجیتەکان لادەبات لە تاسک بار .", "chatTip": "ئایکۆنی چات لادەبات لە تاسک بار.", "smallerTaskbarTip": "قەبارەی تاسک بار و ئایکۆنەکان بچووکتر بکە.", "classicRibbonTip": "شریتی ڕیبۆنی کلاسیک لە ویندۆز 10 لە گەڕاڵی فایلدا دەگەڕێنێتەوە", "classicContextTip": "گەڕاندنەوەی شێوازی کلیکی ڕاستی کلاسیک، لابردنی 'پیشاندانی بژاردەی زیاتر'.", "gameModeSw": "چالاککردنی مۆدی یاریکردن", "gameModeTip": "مۆدی یاری کردن بە تێکەڵی گرافیک کارد لەگەڵ هاردوێر خێراکردنی خشتەی بەتوانا دەکات.", "systemRestoreM": "ئایا تۆ دڵنیایت کە دەتەوێت مۆدی کایەکردن بە تێکەڵی گرافیک کارد لەگەڵ هاردوێر خێراکراوی خشتە چالاک بکەیت. گەڕاندنەوەی سیستەم ناچالاک بکە؟ ئەمە وێنەکانی پاڵپشتی ئێستات دەسڕێتەوە!", "compactModeSw": "Explorer مۆدی کۆمپکت بەتوانا بکە لە", "compactModeTip": "بۆشایی زیادە و پادینگ لە نێوان فایلەکانی ناو کۆمپیوتەر فایلەکان کەم دەکاتەوە.", "stickersTip": "ستیکەر بریتییە لە ئیمۆجی گەورە کە لەسەر کاغەزی دیوارەکان دەردەکەون، لە نامەبەرە کۆمەڵایەتییەکاندا بەکاردەهێنرێن.", "hibernateSw": "مۆری کاتی NTFS لەکاربخە", "hibernateTip": "تایبەتمەندی Windows hibernate لەکاردەخات.", "smb1Sw": "پرۆتۆکۆڵی SMBv1 لەکاربخە", "smb2Sw": "پرۆتۆکۆڵی SMBv2 لەکاربخە", "smbTip": "پرۆتۆکۆڵی SMB{v} بەرپرسیارە لە هاوبەشکردنی پەڕگە لە نێوان کۆمپیوتەرەکانی ویندۆز. بە SMBv3 گۆڕدراوە کە پارێزراوترە.", "ntfsStampSw": "مۆری کاتی NTFS لەکاربخە", "ntfsStampTip": "ئاماژە بە دوایین جار مۆری پەڕگەکە دەکات کە دەستی پێگەیشتووە. لەکارخستنی دەتوانێت کارەکانی I/O لەسەر دیسکەکان کەم بکاتەوە.", "autoStartToggle": "لە ویندۆزەوە دەست پێ بکە", "nvidiaTelemetrySw": "NVIDIA Telemetry لەکاربخە", "dnsTitle": "بە خێرایی ڕاژەکاری DNS بگۆڕە", "vbsSw": "ئاسایش لەسەر بنەمای مەجازیکردن لەکاربخە", "vbsTip": "تایبەتمەندی ناوک کە ڕێگری دەکات لە دەرزی لێدانی شۆفێری زیانبەخش بۆ ناو پرۆسەکان. کاریگەری نەرێنی لەسەر ئەدای کارکردن هەیە.", "winSearchSw": "گەڕان لەکاربخە", "winSearchTip": "خزمەتگوزاری گەڕانی ویندۆز لەکاردەخات.", "storeUpdatesSw": "نوێکارییەکانی فرۆشگای مایکرۆسۆفت لەکاربخە", "storeUpdatesTip": "کارایی نوێکردنەوەی ئۆتۆماتیکی فرۆشگای مایکرۆسۆفت لەکاردەخات.", "btnRestoreUwp": "هەموو UWP بگەڕێنەرەوە", "restoreUwpMessage": "دڵنیای کە دەتەوێت ئەم کارە بکەیت؟", "telemetrySvcToggle": "تەلەمێتری ئۆپتیمایزەر لەکاربخە", "edgeAiSw": "Edge Discover لەکاربخە", "edgeTelemetrySw": "تەلەمێتری لێوار لەکاربخە", "edgeAiTip": "Discover Bar لە Edge لا دەبات.", "edgeTelemetryTip": "خزمەتگوزارییەکانی SmartScreen و Spotlight و Telemetry لە Edge لەکاردەخات.", "hpetSw": "HPET لەکاربخە", "loginVerboseSw": "شاشەی چوونەژوورەوەی ورد چالاک بکە", "advancedTab": "پێشکەوتوو", "btnRestartSafe": "لە دۆخی سەلامەتدا دووبارە دەستپێبکەرەوە", "btnRestart": "لە دۆخی ئاساییدا دووبارە دەستپێبکەرەوە", "btnRestartDisableDefender": "دووبارە دەستپێکردنەوە && لەکارخستنی بەرگریکار", "classicPhotoViewerSw": "گەڕاندنەوەی بینەری وێنەی کلاسیک", "tabPage3": "فۆنتەکانی ئێستا", "fontSetTitle": "فۆنتەکانی دڵخوازت وەک فۆنتەکانی پێشوەختەی ویندۆز دابنێ", "label11": "فۆنتەکانی بەردەست:", "btnSetGlobalFont": "وەک پێشوەختە ڕێکبخە", "lblFontsCount": "فۆنتەکانی بەردەست:", "btnRestoreFont": "گەڕاندنەوەی بنەڕەت", "btnRefreshFonts": "ڕیفرێش", "chkAllNics": "بۆ هەموو ئەداپتەرەکانی تۆڕ ڕێکبخە", "chkCustomDns": "DNS تایبەت بەخۆت دابنێ", "btnSetDns": "DNS دابنێ", "copilotSw": "CoPilot AI تایبه‌تییه‌کرن", "copilotTip": "ویژگی CoPilot AI تایبه‌تییه‌کرنەوەکی ته‌مامی.", "btnReinforce": "سیاسهٔ بیشکوچین", "newsInterestsSw": "بازنیشانیکردنی خۆبەخش و بەڵگەڕان", "allTrayIconsSw": "پیشاندانی هەموو ئایکۆنەکانی ئاگەداری", "noMenuDelaySw": "لابردنی داگیراوەی مێنوەکان", "hideSearchSw": "شاردنەوەی گەڕان لە نواری کارەکوتنەکان", "enableUtcSw": "فعال کردن زمان UTC", "hideWeatherSw": "شاردنەوەی ئاستی هەوا لە نواری کارەکوتنەکان", "autoUpdateToggle": "نوێکردنەوە لە دەستپێکردن", "modernStandbySw": "بازنیشانیکردنی بەرزی نوێ", "label24": "دەستکاریکەری گۆڕاوە سیستەمەکان", "label23": "ڕێڕەوی گۆڕاوەی سیستەمی نوێ:", "button3": "زیادکردن", "label21": "گۆڕاوە سیستەمەکان", "button1": "سڕینەوە", "button2": "نوێکردنەوە" } ================================================ FILE: Optimizer/Resources/i18n/NE.json ================================================ { "subSystem": "सिस्टम", "subPrivacy": "गोपनीयता", "subGaming": "गेमिङ", "subTouch": "स्पर्श", "subTaskbar": "टास्कबार", "subExtras": "अतिरिक्त", "btnAbout": "ठिक छ", "restartButton": "अहिले पुन: प्रारंभ गर्नुहोस्", "restartButton8": "अहिले पुन: प्रारंभ गर्नुहोस्", "restartButton10": "अहिले पुन: प्रारंभ गर्नुहोस्", "btnFind": "फेला पर्ख्नुहोस्", "btnKill": "मार्नुहोस्", "trayUnlocker": "फाइल ह्यान्डलहरू", "restartAndApply": "परिवर्तन लागू गर्नका लागि पुन: प्रारंभ गर्नुहोस्", "regBackupSw": "रेजिस्ट्री ब्याकअप सक्षम गर्नुहोस्", "txtVersion": "संस्करण: {VN}", "txtBitness": "तपाइँ {BITS} संग काम गर्दैछन्", "linkUpdate": "अपडेट उपलब्ध छ", "lblLab": "प्रयोगशील बिल्ड\n(परीक्षण पछि मेटाउनुहोस्)", "performanceSw": "प्रदर्शन अनुकूलन गर्नुहोस्", "networkSw": "नेटवर्कको लागि अनुकूलक", "defenderSw": "विन्डोज रक्षकलाई असक्षम गर्नुहोस्", "systemRestoreSw": "सिस्टम पुनर्स्थापन असक्षम गर्नुहोस्", "printSw": "प्रिन्ट सेवा असक्षम गर्नुहोस्", "mediaSharingSw": "मिडिया प्लेयर सेयरिङ असक्षम गर्नुहोस्", "faxSw": "फ्याक्स सेवा असक्षम गर्नुहोस्", "reportingSw": "त्रुटि प्रतिवेदन असक्षम गर्नुहोस्", "homegroupSw": "होमग्रुप असक्षम गर्नुहोस्", "superfetchSw": "सुपरफेच असक्षम गर्नुहोस्", "telemetryTasksSw": "तेलिमेट्री कार्यहरू असक्षम गर्नुहोस्", "officeTelemetrySw": "अफिस तेलिमेट्री असक्षम गर्नुहोस्", "vsSW": "भिजुअल स्टूडियो तेलिमेट्री असक्षम गर्नुहोस्", "ffTelemetrySw": "मोजिला फायरफोक्स तेलिमेट्री असक्षम गर्नुहोस्", "chromeTelemetrySw": "गूगल क्रोम तेलिमेट्री असक्षम गर्नुहोस्", "compatSw": "संगतता सहायक असक्षम गर्नुहोस्", "smartScreenSw": "स्मार्टस्क्रिन असक्षम गर्नुहोस्", "stickySw": "स्टिकी किस असक्षम गर्नुहोस्", "universalTab": "सामान्य", "modernAppsTab": "UWP एप्स", "startupTab": "सुरुवात", "appsTab": "एप्स", "cleanerTab": "क्लिनर", "pingerTab": "पिङ्गर", "registryFixerTab": "रजिस्ट्री", "integratorTab": "इन्टिग्रेटर", "CleanPreviewForm": "सफा पूर्वावलोकन", "optionsTab": "विकल्प", "oldMixerSw": "क्लासिक भोल्यूम मिक्सर सक्षम गर्नुहोस्", "oldExplorerSw": "क्लासिक फाइल एक्सप्लोरर पुनर्स्थापित गर्नुहोस्", "adsSw": "सुरुमा मेनू विज्ञापनहरू असक्षम गर्नुहोस्", "uODSw": "वनड्राइभ असक्षम गर्नुहोस्", "peopleSw": "मेरो मानिसहरू असक्षम गर्नुहोस्", "longPathsSw": "लामा पथहरू सक्षम गर्नुहोस्", "autoUpdatesSw": "स्वत: अपडेटहरू असक्षम गर्नुहोस्", "driversSw": "ड्राइभरहरूलाई अपडेटहरूबाट बाहिर राख्नुहोस्", "telemetryServicesSw": "तेलिमेट्री सेवाहरू असक्षम गर्नुहोस्", "privacySw": "गोपनीयता बढाउनुहोस्", "ccSw": "क्लाउड क्लिपबोर्ड असक्षम गर्नुहोस्", "cortanaSw": "कोर्टाना असक्षम गर्नुहोस्", "sensorSw": "सेन्सर सेवाहरू असक्षम गर्नुहोस्", "castSw": "यान्त्रिकमा भेट दिन असक्षम गर्नुहोस्", "inkSw": "विन्डोज इंक असक्षम गर्नुहोस्", "spellSw": "स्पेल जाँच असक्षम गर्नुहोस्", "xboxSw": "एक्सबक्स लाइभ असक्षम गर्नुहोस्", "gameBarSw": "गेम बार असक्षम गर्नुहोस्", "insiderSw": "इन्साइडर सेवा असक्षम गर्नुहोस्", "actionSw": "सूचना केन्द्र असक्षम गर्नुहोस्", "disableOneDriveSw": "वनड्राइभ असक्षम गर्नुहोस्", "tpmSw": "TPM परीक्षण असक्षम गर्नुहोस्", "leftTaskbarSw": "टास्कबारलाई बायाँमा समर्थन गर्नुहोस्", "snapAssistSw": "स्नैप असिस्ट असक्षम गर्नुहोस्", "widgetsSw": "विजेटहरू असक्षम गर्नुहोस्", "chatSw": "च्याट असक्षम गर्नुहोस्", "smallerTaskbarSw": "टास्कबार छोटो गर्नुहोस्", "classicRibbonSw": "एक्सप्लोररमा क्लासिक रिबन सक्षम गर्नुहोस्", "classicContextSw": "क्लासिक राइट-क्लिक मेनु सक्षम गर्नुहोस्", "refreshModernAppsButton": "ताजा गर्नुहोस्", "uninstallModernAppsButton": "स्थापना रद्द गर्नुहोस्", "txtModernAppsTitle": "अपचाहिएका UWP अनुप्रयोगहरू मेटाउनुहोस्", "chkSelectAllModernApps": "सबै चयन गर्नुहोस्", "chkOnlyRemovable": "मात्र मेटाइन सकिने", "onedriveM": "के तपाईं निश्चित रूपमा OneDrive मेटाउन चाहनुहुन्छ? यसले तपाईंको डेस्कटप र दस्तावेज फाइलहरू मेटाउँदछ! यस विकल्पलाई केवल स्थानीय खातामा मात्र प्रयोग गर्नुहोस्!", "startupTitle": "तपाईंको स्टार्टअप वस्तुहरू चयन गर्नुहोस्", "removeStartupItemB": "मेटाउनुहोस्", "locateFileB": "फाइल फेला पार्टिएको छ", "findInRegB": "रजिष्ट्रीमा खोज्नुहोस्", "analyzeDriveB": "विश्लेषण गर्नुहोस्", "refreshStartupB": "ताजा गर्नुहोस्", "restoreStartupB": "पुन: प्रारम्भ गर्नुहोस्", "backupStartupB": "ब्याकअप बनाउनुहोस्", "lblBackupTitle": "ब्याकअप शीर्षक:", "doBackup": "ठिक छ", "cancelBackup": "रद्द गर्नुहोस्", "startupItemName": "नाम", "startupItemLocation": "स्थान", "startupItemType": "प्रकार", "txtFeedError": "इन्टरनेट कनेक्सन छैन, फेरि लिङ्कहरू पुन: ताजा गर्नुहोस्", "appsTitle": "उपयोगी अनुप्रयोगहरू डाउनलोड गर्नुहोस् र स्थापना गर्नुहोस्", "btnGetFeed": "लिङ्कहरू ताजा गर्नुहोस्", "bitPref": "बिट प्राथमिकता सेट गर्नुहोस्", "linkWarnings": "चेतावनीहरू हेर्नुहोस्", "txtDownloadStatus": "आवश्यकता छैन", "goToDownloadsB": "डाउनलोडहरूमा जानुहोस्", "btnDownloadApps": "डाउनलोड गर्नुहोस्", "cAutoInstall": "डाउनलोड गरेपछि स्वत: स्थापना गर्नुहोस्", "setDownDirLbl": "डाउनलोड फोल्डर सेट गर्नुहोस्", "c64": "64-बिट", "c32": "32-बिट", "checkSelectAll": "सबै चयन गर्नुहोस्", "checkTemp": "अस्थायी फाइलहरू", "checkLogs": "विन्डोज लगहरू", "checkMiniDumps": "BSOD मिनीडम्पहरू", "checkBin": "रिसाइकल बिन खाली गर्नुहोस्", "checkMediaCache": "मिडिया प्लेयर क्यास", "checkErrorReports": "त्रुटि रिपोर्टहरू", "cleanDriveB": "सफा गर्नुहोस्", "lblPretext": "मुक्त गर्नका लागि अधिकतम आकार:", "cleanerTitle": "तपाईंको सिस्टम ड्राइभ सफा गर्नुहोस्", "pingerTitle": "IP पताका पिंग गर्नुहोस् र तपाईंको ल्याटेन्स आकलन गर्नुहोस्", "lblPinger": "IP / डोमेन नाम", "btnOpenNetwork": "नेटवर्क कनेक्सनहरू खोल्नुहोस्", "copyIPB": "प्रतिलिपि गर्नुहोस्", "copyB": "IP प्रतिलिपि गर्नुहोस्", "btnShodan": "SHODAN.io मा जाँच गर्नुहोस्", "btnPing": "पिंग गर्नुहोस्", "lblResults": "परिणामहरू", "flushCacheB": "DNS क्यास फ्लष गर्नुहोस्", "btnExport": "निर्यात गर्नुहोस्", "hostsTitle": "आफ्नो होस्ट फाइल प्रभावी रूपमा सम्पादन गर्नुहोस्", "linkLocate": "फेला पार्टिएको छ", "linkAdvancedEdit": "उन्नत सम्पादक", "linkRestoreDefault": "पूर्वनिर्धारित पुनर्स्थापन गर्नुहोस्", "lblIP": "IP पता", "lblDomain": "डोमेन", "chkBlock": "ब्लक गर्नुहोस्", "addHostB": "थप्नुहोस्", "lblLock": "तपाईंको HOSTS फाइललाई बाइ लक गर्नुहोस्", "chkReadOnly": "मात्र पठ्न मात्र", "lblAdblock": "पूर्व-निर्मित विज्ञापन ब्लकहरू", "lblAdblockSub": "(तपाईंको हालको गरिएको कन्फिग मेटाउनेछ)", "adblockS": "विज्ञापन ब्लक + सामाजिक", "adblockP": "विज्ञापन ब्लक + पोर्न", "removeHostB": "मेटाउनुहोस्", "refreshHostsB": "ताजा गर्नुहोस्", "removeAllHostsB": "सबै मेटाउनुहोस्", "regFixB": "मिलाउनुहोस्", "regLbl": "(केहि परिवर्तनहरूलाई यसको आवश्यकता छ)", "checkRestartExplorer": "परिवर्तनहरू लागू गर्नका लागि एक्सप्लोरर पनि पुनः प्रारंभ गर्नुहोस्", "checkRegistryEditor": "रजिस्ट्री संपादक", "checkFirewall": "विंडोज फायरवल", "checkContextMenu": "राइट क्लिक मेनु", "checkRunDialog": "डाइलग चलाउन", "checkFolderOptions": "फोल्डर विकल्पहरू", "checkControlPanel": "नियंत्रण प्यानल", "checkCommandPrompt": "कमान प्रोम्प्ट", "checkTaskManager": "कार्य प्रबन्धक", "checkEnableAll": "सबै चालु गर्नुहोस्", "registryTitle": "सामान्य रजिस्ट्री समस्याहरू ठिक गर्नुहोस्", "quickAccessToggle": "त्वरित पहुँच मेनु देखाउनुहोस्", "helpTipsToggle": "सहयोग सन्देशहरू देखाउनुहोस्", "lblTheming": "तपाईंको थिम चयन गर्नुहोस्", "radioOcean": "समुद्र", "radioMagma": "म्याग्मा", "radioZerg": "जेर्ग", "radioCaramel": "कारमेल", "radioLime": "लाइम", "radioMinimal": "न्यूनतम", "lblUpdating": "जाँच गर्नुहोस् र अपडेट गर्नुहोस्", "btnUpdate": "अपडेटको लागि जाँच गर्नुहोस्", "btnChangelog": "परिवर्तनहरू हेर्नुहोस्", "lblUpdateDisabled": "प्रायोगिक निर्माणमा अक्षम", "lblTroubleshoot": "समस्या सोल्यूशन", "btnViewLog": "त्रुटिहरू हेर्नुहोस्", "btnOpenConf": "कन्फिग फोल्डर देखाउनुहोस्", "btnResetConfig": "मरम्मत गर्नुहोस्", "integrator1": "इन्टिग्रेटर डेस्कटपको राइट-क्लिक मेनुमा पूर्णरूपमा\nसामान्यजन्य आइटमहरू थप्नका लागि सक्षम छ:", "integrator2": "• कुनै प्रोग्राम", "integrator3": "• फोल्डरहरूको लागि संक्षिप्त मार्ग", "integrator4": "• वेवमा लिङ्कहरू", "integrator5": "• कुनै प्रकारको फाइल", "integrator6": "• कमानहरू", "integrator7": "आइटमहरूमा विशेषकरित आइकन र स्थिति हुन सक्छ। यसले छुपा पनि गर्न सकिन्छ, SHIFT कुञ्जी मात्र प्रेस गरेर पहुँचिने। यसले डाइलगको लागि पनि विशेषकै कमानहरू बनाउँछ, जसले तपाईंको इच्छित कीवर्ड प्रविष्टि गरेर कुनै पनि अनुप्रयोगलाई आसानीले चलाउन बनाउँछ।", "integratorInfoTab": "जानकारी", "tabPage8": "थप/संशोधन गर्नुहोस्", "tabPage9": "मेट्नुहोस्", "tabPage10": "प्रस्तुत मेनुहरू", "tabPage11": "चलाउन डाइलग", "addItemL": "वस्तु थप गर्नुहोस् वा संशोधन गर्नुहोस्", "itemtype": "वस्तुको प्रकार", "radioProgram": "प्रोग्राम", "radioFolder": "फोल्डर", "radioLink": "लिङ्क", "radioFile": "फाइल", "radioCommand": "कमान", "itemtoaddgroup": "थप्नको लागि प्रोग्राम", "folderToAdd": "थप्नको लागि फोल्डर", "linkToAdd": "थप्नको लागि लिङ्क", "fileToAdd": "थप्नको लागि फाइल", "commandToAdd": "थप्नको लागि कमान", "icontoaddgroup": "थप्नको लागि आइकन", "checkDefaultIcon": "प्रोग्रामको आइकन प्रयोग गर्नुहोस्", "checkDefaultFolderIcon": "पूर्वनिर्धारित फोल्डर आइकन प्रयोग गर्नुहोस्", "checkFavicon": "वेवसाइट आइकन (फेविकन) डाउनलोड गर्नुहोस्", "checkNoIcon": "कुनै आइकन छैन", "dnsCacheM": "DNS क्यास तयार गरिएको छ, पछि पुन: प्रयास गर्नुहोस्!", "itemposition": "वस्तुको स्थान", "radioTop": "माथि", "radioMiddle": "मध्य", "radioBottom": "तल", "security": "सुरक्षा", "checkShift": "शिफ्ट प्रेस गरिएकोमा मात्र देखाउनुहोस्", "itemnamegroup": "मेनुमा वस्तुको नाम", "btnAddItem": "थप/संशोधन गर्नुहोस्", "removeIntegratorItemsL": "मौजुदा डेस्कटप वस्तुहरू मेट्नुहोस्", "removeDIB": "मेटाउनुहोस्", "refreshIIB": "ताजा गर्नुहोस्", "removeAllIIB": "सबै मेटाउनुहोस्", "PMB": "पावर मेनु थप्नुहोस्", "STB": "सिस्टम टुल्स थप्नुहोस्", "WAB": "विन्डोज अनुप्रयोगहरू थप्नुहोस्", "SSB": "सिस्टम संक्षिप्त मार्ग थप्नुहोस्", "DSB": "डेस्कटप संक्षिप्त मार्ग थप्नुहोस्", "AddOwnerB": "'मालिकता लिनुहोस्' थप्नुहोस्", "RemoveOwnerB": "'मालिकता लिनुहोस्' मेटाउनुहोस्", "AddCMDB": "'CMD संग खोल्नुहोस्' थप्नुहोस्", "DeleteCMDB": "'CMD संग खोल्नुहोस्' मेटाउनुहोस्", "readyMenusL": "उपयोगी पूर्व-निर्मित मेनुहरू थप्नुहोस्", "refreshCCB": "ताजा गर्नुहोस्", "removeCCB": "मेटाउनुहोस्", "removeCCL": "मौजुदा कमानहरू मेटाउनुहोस्", "btnCreateCustomCommand": "बनाउनुहोस्", "ccKeywordL": "कीवर्ड", "ccFileL": "फाइल स्थान", "ccL": "आफ्नो विशेष चलाउन कमानहरू परिभाषित गर्नुहोस्", "btnYes": "हो", "btnNo": "होइन", "btnOk": "ठिक छ", "HostsEditorForm": "होस्ट सम्पादक", "savebtn": "सुरक्षित गर्नुहोस्", "closebtn": "बन्द गर्नुहोस्", "adminMissingMsg": "अद्यावधिककर्ता के रुपमा चलाउनको लागि अपटिमाइजरमा चलाउनुहोस्! \nअनुप्रयोग अब बन्द हुनेछ...", "unsupportedMsg": "अपटिमाइजर Windows 7 र उच्च संस्करणमा काम गर्दछ! \nअनुप्रयोग अब बन्द हुनेछ...", "confInvalidVersionMsg": "Windows संस्करण मिलेन!", "confInvalidFormatMsg": "कन्फिग फाइल अमान्य ढाँचामा छ!", "confNotFoundMsg": "कन्फिग फाइल अवस्थित छैन!", "argInvalidMsg": "अवैध आर्ग्यूमेन्ट! उदाहरण: Optimizer.exe /template.json", "alreadyRunningMsg": "अपटिमाइजर पहिले नै पृष्ठभूमिमा चलिरहेको छ!", "StartupPreviewForm": "स्टार्टअप वस्तुहरूको पूर्वावलोकन", "StartupRestoreForm": "स्टार्टअप वस्तुहरू पुनर्स्थापन गर्नुहोस्", "backupL": "आफ्नो स्टार्टअप वस्तुहरू पुनर्प्राप्त गर्नुहोस्", "txtNoBackups": "कुनै पनि पुनर्प्राप्तिहरू फेला परेन", "previewBackupB": "पूर्वावलोकन", "restoreBackupB": "पुनर्स्थापन गर्नुहोस्", "deleteBackupB": "मेटाउनुहोस्", "noNewVersion": "तपाईंको पास मात्र नयाँ संस्करण छ!", "betaVersion": "तपाईं प्रायोगिक संस्करण प्रयोग गरिरहेका छन्!", "removeAllStartup": "के तपाईं सबै स्टार्टअप वस्तुहरू मेट्न चाहनुहुन्छ?", "removeAllHosts": "के तपाईं सबै होस्ट प्रविष्टिहरू मेट्न चाहनुहुन्छ?", "removeAllItems": "के तपाईं सबै डेस्कटप वस्तुहरू मेट्न चाहनुहुन्छ?", "removeModernApps": "के तपाईं निम्नलिखित अनुप्रयोग(हरू)लाई अनइन्स्टल गर्न चाहनुहुन्छ?", "errorModernApps": "निम्नलिखित अनुप्रयोग(हरू) अनइन्स्टल गर्न मिलेन:\n", "latestVersionM": "नविनतम संस्करण: {LATEST}", "currentVersionM": "हालको संस्करण: {CURRENT}", "resetMessage": "अनुप्रयोग बन्द हुने छ र आफ्नो मर्मत गर्ने प्रयास गर्ने छ।", "newVersion": "नयाँ संस्करण उपलब्ध छ! के तपाईं यसलाई डाउनलोड गर्न चाहनुहुन्छ?\nअनुप्रयोग केहि समयमा पुन: सुरु हुनेछ।", "flushDNSMessage": "के तपाईं विन्डोजको DNS क्यास मिलाउन चाहनुहुन्छ?\n\nयसले केहि समयका लागि इन्टरनेट असंगत बनाउनेछ र यसले ठीकमा काम गर्नको लागि पुन: प्रारंभ गर्नुपर्नेछ।", "downloadsFinished": "समाप्त", "downloadDirInvalid": "निर्दिष्ट डाउनलोड फोल्डर मान्य छैन", "no64Download": "64-बिट उपलब्ध छैन, 32-बिट डाउनलोड गर्दैछ", "no32Download": "32-बिट उपलब्ध छैन, छोड्दैछ", "installing": "स्थापना गरिदै", "linkInvalid": "लिङ्क मान्य छैन", "noErrorsM": "देखाउनका लागि कुनै पनि त्रुटिहरू छैन!", "hostNotFound": "होस्ट प्राप्त गर्न सकिएन", "pinging": "32 बाइटसहित पिंग गर्दै - 9 पटक...", "latency": "लेटेन्सी", "lblSystemTools": "सिस्टम र टुल्स", "lblInternet": "इन्टरनेट", "lblCoding": "कोडिंग", "lblVideoSound": "भिडियो र आवाज", "min": "न्यून", "max": "अधिक", "avg": "औसत", "timeout": "अनुरोध समयाउट भएको छ", "languagesL": "भाषा छनौट गर्नुहोस्", "trayStartup": "स्टार्टअप प्रबन्धक", "trayCleaner": "ड्राइभ पुन:साफ गर्ने उपकरण", "trayPinger": "पिंगर उपकरण", "trayHosts": "होस्ट सम्पादक", "trayAD": "अनुप्रयोगहरू डाउनलोड गर्ने उपकरण", "trayOptions": "विकल्पहरू", "trayRegistry": "रजिष्ट्री मरम्मत", "trayRestartExplorer": "एक्सप्लोरर पुन: प्रारंभ गर्नुहोस्", "trayExit": "बाहिर निस्कनुहोस्", "tipWhatsThis": "यो के हो?", "hwDetailed": "विस्तृत दृश्य", "btnCopyHW": "प्रतिलिपि गर्नुहोस्", "btnSaveHW": "सुरक्षित गर्नुहोस्", "indiciumTab": "हार्डवेयर", "toolHWCopy": "प्रतिलिपि गर्नुहोस्", "toolHWGoogle": "Googleमा खोज्नुहोस्", "toolHWDuck": "DuckDuckGoमा खोज्नुहोस्", "trayHW": "हार्डवेयर जानकारी", "os": "आपरेटिङ सिस्टम", "cpu": "प्रोसेसरहरू", "ram": "स्मृति", "gpu": "ग्राफिक्स", "mobo": "मातृबोर्डहरू", "disk": "संग्रहण", "inet": "नेटवर्क एडाप्टरहरू", "audio": "आवाज", "dev": "प्राथमिक उपकरणहरू", "vm": "भर्चुअल मेमोरी", "drives": "डिस्क ड्राइभहरू", "volumes": "वाल्यूमहरू", "opticals": "आक्सेस गर्ने ड्राइभहरू", "removables": "निकाल्ने ड्राइवहरू", "physicalAdapters": "भौतिक एडाप्टरहरू", "virtualAdapters": "भर्चुअल एडाप्टरहरू", "keyboards": "किबोर्डहरू", "pointings": "प्विन्टिङ डिभाइसहरू", "performanceTip": "प्रदर्शनका लागि आन्तरिक विन्डोज सेटिङहरूको संग्रह गर्दछ। पूर्णरूपमा सुरक्षित छ।\n\n- असहाय प्रक्रियाहरू मार्फतको प्रतिक्रिया अघि पुग्ने समय कम गर्दछ।\n- मेनु दर्शन मिलाउनको प्रतिक्रिया समय घटाउँछ।\n- कम डिस्क खाली स्थान चेक सूचना असक्षम गर्दछ\n- हल्काको कमीमा मिनीमाइज गर्ने क्षमता असक्षम गर्दछ\n- सधैँ फाइल विस्तारणहरू देखाउँछ\n- लुकेका फाइलहरू देखाउँछ", "networkTip": "विन्डोजले मल्टिमिडिया अनुप्रयोगहरू चलाउँदा नेटवर्क थ्रटलिङ मेकेनिजम प्रयोग गर्दछ जु बिघटन ट्राफिक पर्च गर्दछ। यसले आनलाइन खेल खेल्दा पनि नेटवर्कको प्रदर्शन पनि कम गर्दछ।", "defenderTip": "विन्डोज डिफेन्डर विन्डोज प्रणालीहरूमा अवस्थित बिल्ट-इन एन्टिभायरस हो।", "smartScreenTip": "स्मार्टस्क्रिन स्वचालित रूपमा फाइलहरू, डाउनलोडहरू र वेबसाइटहरू स्क्यान गर्दछ, पहिले पनि खतरनाक सामग्री ब्लक गर्दछ र तपाईंलाई उनीहरू चलाउनु अघि चेतावनी दिन्छ।", "systemRestoreTip": "सिस्टम पुनर्स्थापन एक विशेषता हो जु विन्डोजको पूर्ववत क्षेत्रमा परिवर्तन गर्नका लागि प्रदर्शन छ जु बिघटन वा अन्य समस्याहरू बताउनका लागि प्रयोग गर्न सकिन्छ।", "reportingTip": "त्रुटि रिपोर्टिङ अनुप्रयोगहरूको बारेमा जानकारी एकत्र गर्दछ र तिनीहरूलाई माइक्रोसफ्टमा पठाउने छ।", "telemetryTasksTip": "टेलिमेट्री सेवाहरू नियमित अवधिमा प्रयोग र प्रदर्शन डेटा माइक्रोसफ्टमा पठाउँछ, भविष्यको सुधारका लागि।", "officeTelemetryTip": "अफिस टेलिमेट्री नियमित अवधिमा प्रयोग र प्रदर्शन डेटा माइक्रोसफ्टमा पठाउँछ, भविष्यको सुधारका लागि।", "ffTelemetryTip": "मोजिला फायरफक्स टेलिमेट्री र डेटा रिपोर्टिङ सेवाहरू असक्षम गर्दछ।", "vsTip": "भिजुअल स्टूडियो टेलिमेट्री र प्रतिक्रिया सुविधाहरूलाई असक्षम गर्दछ, सहित स्क्युएम क्लाइयन्ट।", "chromeTelemetryTip": "गुगल क्रोम टेलिमेट्री र सफ्टवेयर रिपोर्टिङ उपकरण (उच्च CPU प्रयोग गर्ने गरेको छ) असक्षम गर्दछ।", "printTip": "मुद्रण सेवा मुद्रण पत्ता पत्ता पत्ता लागू गर्दछ, अद्यतन गर्दछ र उपयोग गर्दछ।", "faxTip": "फ्याक्स सेवा फक्स पठाउन र प्राप्त गर्नका लागि जिम्मेवार छ।", "mediaSharingTip": "मिडिया प्लेयर सेयरिङ गृह मिडिया सेयरिङ प्रदान गर्दछ।", "stickyTip": "स्टिकी किम्स एक पहुँचिलोता सुविधा हो जु विन्डोज प्रयोगकर्ताहरूलाई शारीरिक असमर्थन दिने जु दोहोर्याइको प्रतिक्रियाको साथ साथको चलनका साथ घटनात्मक स्ट्रेन चुक्त गर्नमा मद्दत गर्दछ।", "homegroupTip": "होमग्रुप एक सुविधा हो जु विन्डोज एक्सप्लोरर प्रयोग गरी घरको नेटवर्कमा फाइल साझा गर्न अनुमति दिन्छ।", "superfetchTip": "सुपरफेच पूर्वधारकहरूलाई राममा सामान्यत: प्रयुक्त अनुप्रयोगहरूलाई पूर्ववत लोड गर्दछ, विशेषतः HDD मा उच्च डिस्क प्रयोग गर्दछ।", "compatTip": "अनुकूलन सहायक सेवा पुरानो कार्यक्रमहरूमा ज्ञात अनुकूलन समस्याहरू चिन्दछ।", "disableOneDriveTip": "वनड्राइभ बादल-स्थान समेटन अनुभाग असक्षम गर्दछ।", "oldMixerTip": "- त्वरित पहुँच इतिहास असक्षम गर्दछ\n- फाइल एक्सप्लोररको पूर्वनिर्धारित दृश्य This PC मा सेट गर्दछ\n- हल्का प्राप्ति फाइलहरू असक्षम गर्दछ\n- खोज, काम र मौसमलाई टास्कबारबाट हटाउँछ\n- फाइल इतिहास असक्षम गर्दछ", "oldExplorerTip": "- क्विक एक्सेस इतिहास अक्षम गर्दछ\n- फाइल एक्सप्लोरर पूर्वनिर्धारित दृश्यलाई यस पीसीमा सेट गर्दछ\n- हालका फाइलहरू अक्षम गर्दछ\n- कार्य, कार्य र मौसमलाई कार्यपटकबाट हटाइँदछ\n- फाइल इतिहास अक्षम गर्दछ", "adsTip": "स्टार्ट मेनूमा विज्ञापनहरू देखाइदिनको रोक्नुहोस्।", "uODTip": "वनड्राइभ क्लाउड-स्टोरेज एकत्रण पूर्ण रूपमा हटाइन्छ।", "peopleTip": "मेरो व्यक्तिहरू तस्बारमा हालका सम्पर्कहरू देखाउने एक नयाँ सुविधा हो।", "longPathsTip": "256 वर्णको अधिकतम मार्ग लम्बाइको परिमितिलाई हटाउँछ।", "inkTip": "विंडोज इन्कले स्क्रिनमा कलममा खिचाइ गर्नका लागि समर्थन प्रदान गर्दछ।", "spellTip": "स्पर्श-किबोर्ड मात्रका विशेषताहरू:\n\n- स्वत: सुधार\n- पाठ सुझावहरू\n- वर्तनी-परीक्षण", "xboxTip": "Xbox Live सेवाहरू गेमहरूका लागि स्ट्रिमिङ, रेकर्डिङ, र सामाजिक सुविधाहरू प्रदान गर्दछ।", "actionTip": "सूचना केन्द्र सूचना र शीघ्र क्रिया टाइलहरूका लागि एक केन्द्रीय स्थान हो, जस्तै:\n\n- वाई-फाई, ब्लुटूथ, आदि।", "autoUpdatesTip": "विंडोज अपडेटहरूको स्वत: डाउनलोड र इन्स्टल गर्दा अक्षम पार्छ। बजाय तत्कालिन अपडेटहरू उपलब्ध भएमा सूचना आउँछ। यसले पनि वितरण सुधारक सेवा अक्षम पार्छ।", "driversTip": "विंडोज अपडेट प्रतिस्थिति सही काम गर्दैजान लागेको ड्राइभरलाई लगातार प्रतिस्थापन गर्दा उपयोगी छ।", "telemetryServicesTip": "तेलीमेट्री सेवाहरू प्रयोग डाटा ट्र्याक र लगद गर्दछन्, जसले प्रतिक्रिया विश्लेषणका लागि माइक्रोसफ्टमा पठाउँछ।", "privacyTip": "अतिरिक्त गोपनीयता सम्पर्कहरूलाई निम्नलिखितको रूपमा अक्षम पार्छ:\n\n- जीवन-रेखा\n- स्थान संकेत\n- उपकरणहरू डिभाइसहरूमा साझा गर्नुहोस्\n- पाठ लग्गर\n- नैतिकी विश्लेषण", "ccTip": "क्लाउड क्लिपबोर्ड तपाईंको उपकरणहरू बीच चिपबोर्ड डाटा साझा गर्दछ। यसले एक उपकरणमा प्रतिलिपि बनाउनु र अर्कोमा पेस्ट गर्न अनुमति दिन्छ। माइक्रोसफ्ट खाता दर्ता चाहिन्छ।", "cortanaTip": "कोर्टाना एक भर्चुअल एआइ-आधारित सहायक हो।\n\n- कोर्टाना अक्षम पार्छ।\n- स्टार्ट मेनूमा वेब खोज अक्षम पार्छ\n- खोज इतिहास राख्न रोक्दछ", "sensorTip": "सेन्सरको कार्यक्षमतालाई प्रबन्ध गर्दा प्रदान गरिएका सेवाहरू,\nजस्तै स्वत: घुमाउन, स्वत: उज्यालो आदि।\nकेवल ट्याबलेटहरू वा स्पर्श-स्क्रिन सहितका डिभाइसहरूको लागि उपयोगी।", "castTip": "मिराकास्ट डिभाइसमा मिडिया सामग्री साझा गर्नका लागि दायाँ क्लिक हटाउँदछ।", "gameBarTip": "गेम बार एक त्वरित-पहुँच मेनु हो जुन Xbox गेमिङ सेवाहरूको लागि हो।", "insiderTip": "विन्डोज इन्साइडर प्रोग्राम तपाईंलाई प्रकाशित हुनु अघिका नवीनतम सुविधाहरूको परीक्षण गर्नका लागि अनुमति दिन्छ\nजुन तपाईंलाई सार्वजनिक संस्करणमा प्रकाशित गरिएका छैन।\nयसलाई प्रयोग गर्नका लागि इच्छुक उपयोगकर्ताहरूको लागि एक आवश्यक सेवा मानिन्छ।", "storeUpdatesSw": "माइक्रोसफ्ट स्टोर अपडेटहरू अक्षम गर्नुहोस्", "storeUpdatesTip": "माइक्रोसफ्ट स्टोरको स्वत: अपडेट सुविधा अक्षम गर्दछ।", "tpmTip": "सुरक्षित बुट र TPM 2.0 आवश्यकताहरूलाई अवहेलन गर्दै, विन्डोज 11 मा अपग्रेड गर्न अनुमति दिन्छ।", "leftTaskbarTip": "कामको पट्टी आइकनहरूलाई बायाँमा संरेखित गर्दछ।", "snapAssistTip": "महात्वपूर्णको लागि Snap Assist Flyout अक्षम गर्दा, बडाउन गर्ने महत्त्व बटनहरूमा हेर्दा देखिने छैन।", "widgetsTip": "विजेटहरूको सुविधा अक्षम गर्दछ र कामको पट्टीबाट विजेटहरूको आइकन हटाइदिन्छ।", "chatTip": "कामको पट्टीबाट च्याट आइकन हटाइदिन्छ।", "smallerTaskbarTip": "कामको पट्टीको आकार र आइकनहरूलाई सानो बनाउँछ।", "classicRibbonTip": "फाइल एक्सप्लोररमा विन्डोज 10 बाट पुरानो रिबन पटको पुनर्स्थापना गर्दछ।", "classicContextTip": "पुरानो दायाँ-क्लिक मेनु पुनर्स्थापना गर्दछ, 'थप विकल्प देखाउने' हटाइदिन्छ।", "gameModeSw": "गेमिङ मोड सक्षम गर्नुहोस्", "gameModeTip": "हार्डवेयर सुचालित ग्राफिक्स प्रोसेसिङ संग संयोजनमा गेमिङ मोड सक्षम गर्दछ।", "systemRestoreM": "के तपाईं निश्चित हुनुहुन्छ कि तपाईं सिस्टम पुनर्स्थापन अक्षम गर्न चाहनुहुन्छ? यसले तपाईंका हालका ब्याकअप छविहरूलाई मेटाउनेछ!", "compactModeSw": "एक्सप्लोररमा संक्षिप्त मोड सक्षम गर्नुहोस्", "compactModeTip": "फाइलहरूको बीचको अतिरिक्त ठाउँ र प्याडिङ कम गर्दछ।", "stickersTip": "स्टिकरहरू भित्र देखिने बडा इमोजीहरू हो जो वॉलपेपरमा देखिन्छ, सामाजिक संवादकहरूमा प्रयोग गरिन्छ।", "hibernateSw": "हाइबर्नेसन अक्षम गर्नुहोस्", "hibernateTip": "विन्डोज हाइबर्नेट सुविधा अक्षम गर्दछ।", "smb1Sw": "SMBv1 प्रोटोकल अक्षम गर्नुहोस्", "smb2Sw": "SMBv2 प्रोटोकल अक्षम गर्नुहोस्", "smbTip": "SMB{v} प्रोटोकल विन्डोज कम्प्युटरहरूको बीच फाइल साझा गर्न जिम्मेवार छ।\nयसलाई SMBv3 द्वारा बदलिएको छ, जुन अधिक सुरक्षित छ।", "ntfsStampSw": "NTFS समय-छाप अक्षम गर्नुहोस्", "ntfsStampTip": "फाइलको अन्तिम पटक पहुँच छाप देखाउँछ।\nयसलाई अक्षम गर्दा डिस्कमा I/O कार्यहरूमा कमी आउन सक्छ।", "autoStartToggle": "विंडोज संग सुरु गर्नुहोस्", "nvidiaTelemetrySw": "NVIDIA टेलिमेट्री अक्षम गर्नुहोस्", "dnsTitle": "DNS सर्भर त्वरित रूपमा परिवर्तन गर्नुहोस्", "vbsSw": "भर्चुअलाइजेसन आधारित सुरक्षा अक्षम गर्नुहोस्", "vbsTip": "कर्नल सुविधा जो प्रक्रियामा दुर्घटनाकारी ड्राइभरहरू इन्जेक्ट गर्न रोक्छ।\nयो प्रदर्शनमा नकारात्मक प्रभाव पार्दछ।", "winSearchSw": "खोज अक्षम गर्नुहोस्", "winSearchTip": "विंडोज खोज सेवा अक्षम गर्दछ।", "btnRestoreUwp": "सबै UWP पुनः स्थापित गर्नुहोस्", "restoreUwpMessage": "के तपाईं यो गर्न चाहनुहुन्छ?", "telemetrySvcToggle": "अनुकूलक अनुसन्धान अक्षम गर्नुहोस्", "edgeAiSw": "Edge Discover अक्षम गर्नुहोस्", "edgeTelemetrySw": "Edge टेलिमेट्री अक्षम गर्नुहोस्", "edgeAiTip": "Edge मा Discover बार हटाउँदछ।", "edgeTelemetryTip": "Edge मा SmartScreen, Spotlight र टेलिमेट्री सेवाहरू अक्षम गर्दछ।", "hpetSw": "HPET अक्षम गर्नुहोस्", "loginVerboseSw": "विस्तृत लगइन स्क्रिन सक्षम गर्नुहोस्", "advancedTab": "उन्नत", "btnRestartSafe": "सुरक्षित मोडमा पुनः सुरु गर्नुहोस्", "btnRestart": "सामान्य मोडमा पुनः सुरु गर्नुहोस्", "btnRestartDisableDefender": "पुनः सुरु गर्नुहोस् र Defender अक्षम गर्नुहोस्", "classicPhotoViewerSw": "पुरानो फोटो भ्युअर पुनः स्थापित गर्नुहोस्", "tabPage3": "फन्टहरू", "fontSetTitle": "तपाईंको मनपर्ने फन्टलाई विंडोजको डिफ़ॉल्ट फन्टको रूपमा सेट गर्नुहोस्", "label11": "हालको फन्ट:", "btnSetGlobalFont": "डिफ़ॉल्ट को रूपमा सेट गर्नुहोस्", "lblFontsCount": "उपलब्ध फन्टहरू:", "btnRestoreFont": "पूर्वनिर्धारित पुनः स्थापित गर्नुहोस्", "btnRefreshFonts": "रिफ्रेस गर्नुहोस्", "chkAllNics": "सबै नेटवर्क एडेप्टरहरूको लागि सेट गर्नुहोस्", "chkCustomDns": "अनुकूलन DNS सेट गर्नुहोस्", "btnSetDns": "DNS सेट गर्नुहोस्", "copilotSw": "CoPilot AI बिल्कुल बन्द गर्दछ।", "copilotTip": "CoPilot AI कुरा पूरा बन्द गर्दछ।", "btnReinforce": "नीत", "msgReinforce": "तपाईंले आफ्ना हालका नीत", "newsInterestsSw": "समाचार र रुचिहरू अक्षम गर्नुहोस्", "allTrayIconsSw": "सबै सूचना चिन्हहरू देखाउनुहोस्", "noMenuDelaySw": "मेनू विलम्ब हटाउनुहोस्", "hideSearchSw": "कार्य सामग्री खोज लुकाउनुहोस्", "hideWeatherSw": "तारको समय लुकाउनुहोस्", "enableUtcSw": "समय समन्वित करें UTC", "autoUpdateToggle": "अपडेट प्रारंभमा", "modernStandbySw": "आधुनिक रुकावट अक्षम गर्नुहोस्", "label24": "प्रणाली चर सम्पादक", "label23": "नयाँ प्रणाली चर पथ:", "button3": "थप्न", "label21": "प्रणाली चरहरू", "button1": "मेटाउनुहोस्", "button2": "रिफ्रेश गर्नुहोस्" } ================================================ FILE: Optimizer/Resources/i18n/NL.json ================================================ { "subSystem": "Systeem", "subPrivacy": "Privacy", "subGaming": "Gamen", "subTouch": "Aanraken", "subTaskbar": "Taakbalk", "subExtras": "Extra's", "btnAbout":"OK", "restartButton":"Nu opnieuw opstarten", "restartButton8":"Nu opnieuw opstarten", "restartButton10":"Nu opnieuw opstarten", "restartAndApply":"Herstart om wijzigingen toe te passen", "regBackupSw": "Registerback-ups inschakelen", "txtVersion":"Versie: {VN}", "btnFind":"Vind", "btnKill":"Dood", "trayUnlocker":"Bestandshandvatten", "txtBitness":"OS: {BITS}", "onedriveM":"Weet u zeker dat u OneDrive wilt verwijderen? Hiermee worden uw bureaublad- en documentbestanden verwijderd! Gebruik deze optie alleen voor een lokaal account!", "linkUpdate":"Update beschikbaar", "systemRestoreM":"Weet u zeker dat u systeemherstel wilt uitschakelen? Hiermee worden uw huidige back-upimages gewist!", "lblLab":"Experimentele build\n(verwijderen na testen)", "performanceSw":"Prestaties optimaliseren", "networkSw":"Netwerkbeperking uitschakelen", "defenderSw":"Windows Defender uitschakelen", "systemRestoreSw":"Systeemherstel uitschakelen", "printSw":"Afdrukservice uitschakelen", "mediaSharingSw":"Delen van mediaspeler uitschakelen", "faxSw":"Faxservice uitschakelen", "reportingSw":"Foutrapportage uitschakelen", "homegroupSw":"Thuisgroep uitschakelen", "superfetchSw":"Superfetch uitschakelen", "telemetryTasksSw":"Telemetrietaken uitschakelen", "analyzeDriveB":"Analyseren", "officeTelemetrySw":"Office telemetrie uitschakelen", "vsSW":"Visual Studio-telemetrie uitschakelen", "ffTelemetrySw":"Mozilla Firefox-telemetrie uitschakelen", "chromeTelemetrySw":"Google Chrome-telemetrie uitschakelen", "compatSw":"Compatibiliteitsassistent uitschakelen", "smartScreenSw":"SmartScreen uitschakelen", "stickySw":"Sticky Keys uitschakelen", "universalTab":"Algemeen", "modernAppsTab":"UWP-apps", "startupTab":"Opstarten", "appsTab":"Algemene apps", "cleanerTab":"Cleaner", "pingerTab":"pinger", "registryFixerTab":"Register", "integratorTab":"Integrator", "optiesTab":"Opties", "oldMixerSw":"Klassieke volumemixer inschakelen", "oldExplorerSw":"Klassieke bestandsverkenner herstellen", "adsSw":"Startmenu-advertenties uitschakelen", "uODSw":"OneDrive verwijderen", "peopleSw":"Mijn mensen uitschakelen", "longPathsSw":"Lange paden inschakelen", "autoUpdatesSw":"Automatische updates uitschakelen", "driversSw":"Stuurprogramma's uitsluiten van updates", "telemetryServicesSw":"Telemetrieservices uitschakelen", "privacySw":"Versterk de privacy", "ccSw":"Cloud klembord uitschakelen", "cortanaSw":"Cortana uitschakelen", "sensorSw":"Sensorservices uitschakelen", "castSw":"Verwijder cast naar apparaat", "inkSw":"Windows Ink uitschakelen", "spellSw":"Spellingcontrole uitschakelen", "xboxSw":"Xbox Live uitschakelen", "gameBarSw":"Spelbalk uitschakelen", "insiderSw":"Insider-service uitschakelen", "actionSw":"Meldingscentrum uitschakelen", "disableOneDriveSw":"OneDrive uitschakelen", "tpmSw":"TPM 2.0-controle uitschakelen", "leftTaskbarSw":"Taakbalk links uitlijnen", "snapAssistSw":"Snap Assist uitschakelen", "widgetsSw":"Widgets uitschakelen", "chatSw":"Chat uitschakelen", "smallerTaskbarSw":"Kleinere taakbalk", "classicRibbonSw":"Klassiek lint inschakelen", "classicContextSw":"Klassiek rechtsklikmenu inschakelen", "refreshModernAppsButton":"Vernieuwen", "uninstallModernAppsButton":"Verwijderen", "txtModernAppsTitle":"Ongewenste UWP-apps verwijderen", "chkSelectAllModernApps":"Alles selecteren", "chkOnlyRemovable":"Alleen verwijderbaar", "flushDNSMessage":"Weet u zeker dat u de Windows DNS-cache wilt leegmaken?\n\nDit zal resulteren in een korte onderbreking van de internetverbinding en mogelijk opnieuw opstarten om correct te functioneren.", "startupTitle":"Kies uw opstartitems", "removeStartupItemB":"Verwijderen", "locateFileB":"Bestand zoeken", "findInRegB":"Zoeken in het register", "CleanPreviewForm":"Clean Preview", "refreshStartupB":"Vernieuwen", "restoreStartupB":"Herstellen", "backupStartupB":"Back-up", "lblBackupTitle":"Back-uptitel", "doBackup":"OK", "cancelBackup":"Annuleren", "startupItemName":"Naam", "startupItemLocation":"Locatie", "startupItemType":"Type", "txtFeedError":"Geen internetverbinding, probeer de links opnieuw bij te werken", "appsTitle":"Snel nuttige apps downloaden en installeren", "btnGetFeed":"Koppelingen bijwerken", "bitPref":"Bitvoorkeur instellen", "linkWarnings":"Zie waarschuwingen", "txtDownloadStatus":"Inactief", "goToDownloadsB":"Ga naar Downloads", "btnDownloadApps":"Downloaden", "cAutoInstall":"Installeren na downloaden", "setDownDirLbl":"Downloadmap instellen", "c64":"64-bits", "c32":"32-bits", "checkSelectAll":"Alles selecteren", "checkTemp":"Tijdelijke bestanden", "checkLogs":"Windows-logboeken", "checkMiniDumps":"BSOD Minidumps", "checkBin":"Prullenbak leegmaken", "checkMediaCache":"Mediaspeler-cache", "checkErrorReports":"Foutrapporten", "cleanDriveB":"Schoon", "lblPretext":"Maximaal vrij te maken geheugen:", "cleanerTitle":"Systeemschijf opschonen", "pingerTitle":"IP-adressen pingen en latentie bepalen", "lblPinger":"IP / domeinnaam", "btnOpenNetwork":"Open netwerkverbindingen", "copyIPB":"Kopiëren", "copyB":"Kopieer IP", "btnShodan":"Controleer op SHODAN.io", "btnPing":"Ping", "lblResultaten":"Resultaten", "flushCacheB":"DNS-cache doorspoelen", "btnExport":"Exporteren", "hostsTitle":"Efficiënte bewerking van uw hosts-bestand", "linkLocate":"Lokaliseert", "linkAdvancedEdit":"Geavanceerde editor", "linkRestoreDefault":"Standaard herstellen", "lblIP":"IP-adres", "lblDomain":"Domein", "chkBlock":"Blok", "addHostB":"Toevoegen", "lblLock":"Vergrendel het HOSTS-bestand om het te beschermen", "chkReadOnly":"Alleen lezen", "lblAdblock":"Vooraf gebouwde adblockers", "lblAdblockSub":"(verwijdert uw huidige configuratie)", "adblockS":"AdBlock + sociaal", "adblockP":"AdBlock + porno", "removeHostB":"Verwijderen", "refreshHostsB":"Ververs", "removeAllHostsB":"Alles verwijderen", "regFixB":"Repareren", "regLbl":"(sommige wijzigingen kunnen dit vereisen)", "checkRestartExplorer":"Herstart Explorer om wijzigingen toe te passen", "checkRegistryEditor":"Register-editor", "checkFirewall":"Windows Firewall", "checkContextMenu":"Rechtsklikmenu", "checkRunDialog":"Dialoogvenster uitvoeren", "checkFolderOptions":"Mapopties", "checkControlPanel":"Configuratiescherm", "checkCommandPrompt":"Opdrachtprompt", "checkTaskManager":"Taakbeheer", "checkEnableAll":"Alles inschakelen", "registryTitle":"Veelvoorkomende registerproblemen oplossen", "quickAccessToggle":"Toon menu voor snelle toegang", "helpTipsToggle":"Toon Help-tips", "lblTheming":"Kies je thema", "radioOcean":"Oceaan", "radioMagma":"Magma", "radioZerg":"Zerg", "radioCaramel":"Caramel", "radioLime":"Lime", "radioMinimaal":"Minimaal", "lblUpdating":"Controleer && update", "btnUpdate":"Controleer op updates", "btnChangelog":"Bekijk wijzigingen", "lblUpdateDisabled":"Uitgeschakeld in experimentele builds", "lblTroubleshoot":"Problemen oplossen", "btnViewLog":"Bekijk fouten", "btnOpenConf":"Toon configuratiemap", "btnResetConfig":"Reparatie", "integrator1":"De integrator kan volledig aangepaste\nitems toevoegen aan het rechtermuisknopmenu op het bureaublad:", "integrator2":"- Elk programma", "integrator3":"- snelkoppelingen naar mappen", "integrator4":"- Links naar internet", "integrator5":"- Elk bestandstype", "integrator6":"- Commando's", "integrator7":"Elementen kunnen aangepaste pictogrammen en posities hebben.\nZe kunnen ook worden verborgen en zijn alleen\ntoegankelijk door op de SHIFT-toets te drukken.\nOok aangepaste opdrachten\nkunnen worden gemaakt voor het dialoogvenster Uitvoeren, waardoor het gemakkelijk wordt om Start de applicatie met een willekeurig trefwoord.", "integratorInfoTab":"Info", "tabPage8":"Toevoegen/Wijzigen", "tabPage9":"Verwijderen", "tabPage10":"Vooraf gemaakte menu's", "tabPage11":"Dialoogvenster uitvoeren", "addItemL":"Een item toevoegen of wijzigen", "itemtype":"Artikeltype", "radioProgramma":"Programma", "radioFolder":"Map", "radioLink":"Link", "radioFile":"Bestand", "radioCommand":"Commando", "itemtoaddgroup":"Programma om toe te voegen", "folderToAdd":"Map om toe te voegen", "linkToAdd":"Link om toe te voegen", "fileToAdd":"Bestand om toe te voegen", "commandToAdd":"Opdracht om toe te voegen", "icontoaddgroup":"Pictogram toevoegen", "checkDefaultIcon":"Gebruik programmapictogram", "checkDefaultFolderIcon":"Gebruik standaardmappictogram", "checkFavicon":"Download website icoon (favicon)", "checkNoIcon":"Geen pictogram", "dnsCacheM":"DNS-cache wordt gegenereerd, probeer het later opnieuw!", "itempositie":"Artikelpositie", "radioTop":"Top", "radioMiddle":"Midden", "radioBottom":"Bottom", "beveiliging":"beveiliging", "checkShift":"Alleen weergeven als SHIFT is ingedrukt", "itemnamegroup":"Itemnaam in menu", "btnAddItem":"Toevoegen/Wijzigen", "removeIntegratorItemsL":"Bestaande bureaubladitems verwijderen", "removeDIB":"Verwijderen", "refreshIIB":"Ververs", "removeAllIIB":"Alles verwijderen", "PMB":"Voeg voedingsmenu toe", "STB":"Systeemhulpprogramma's toevoegen", "WAB":"Windows-toepassingen toevoegen", "SSB":"Systeemsnelkoppelingen toevoegen", "DSB":"Bureausnelkoppelingen toevoegen", "AddOwnerB":"Eigenaar toevoegen", "RemoveOwnerB":"Eigendom verwijderen", "AddCMDB":"Open toevoegen met CMD", "DeleteCMDB":"Open verwijderen met CMD", "readyMenusL":"Nuttige kant-en-klare menu's toevoegen", "refreshCCB":"Ververs", "removeCCB":"Verwijderenn", "removeCCL":"Bestaande opdrachten verwijderen", "btnCreateCustomCommand":"Maken", "ccKeywordL":"Trefwoord", "ccFileL":"Bestandslocatie", "ccL":"Definieer uw eigen uitvoeringscommando's", "btnYes":"Ja", "btnNo":"Nee", "btnOk":"OK", "HostsEditorForm":"HostsEditor", "savebtn":"Opslaan", "closebtn":"Sluiten", "alreadyRunningMsg":"Optimizer draait al op de achtergrond!", "adminMissingMsg":"Optimizer moet worden uitgevoerd als beheerder!\nApp wordt nu gesloten...", "unsupportedMsg":"Optimizer werkt alleen op Windows 7 of hoger!\nApp wordt nu gesloten...", "confInvalidVersionMsg":"Windows-versie komt niet overeen!", "confInvalidFormatMsg":"Config-bestand heeft een ongeldig formaat!", "confNotFoundMsg":"Config-bestand bestaat niet!", "argInvalidMsg":"Ongeldig argument! Voorbeeld: Optimizer.exe /template.json", "StartupPreviewForm":"Opstartitems voorbeeld", "StartupRestoreForm":"Opstartitems herstellen", "backupL":"Opstartitems herstellen", "txtNoBackups":"Geen back-ups gevonden", "previewBackupB":"Voorbeeld", "restoreBackupB":"Herstellen", "deleteBackupB":"Verwijderen", "noNewVersion":"Je hebt al de laatste versie!", "betaVersion":"Je gebruikt een experimentele versie!", "removeAllStartup":"Weet u zeker dat u alle opstartitems wilt verwijderen?", "removeAllHosts":"Weet u zeker dat u alle hosts-items wilt verwijderen?", "removeAllItems":"Weet u zeker dat u alle bureaubladitems wilt verwijderen?", "removeModernApps":"Weet u zeker dat u de volgende app(s) wilt verwijderen?", "errorModernApps":"De volgende app(s) konden niet worden verwijderd:\n", "latestVersionM":"Laatste versie: {LAATSTE}", "currentVersionM":"Huidige versie: {CURRENT}", "resetMessage":"De app wordt afgesloten en probeert zichzelf te repareren.", "newVersion":"Er is een nieuwe versie beschikbaar! Wilt u deze nu downloaden?\nDe app wordt binnen enkele seconden opnieuw opgestart.", "downloadsFinished":"Voltooid", "downloadDirInvalid":"De opgegeven downloadmap is niet geldig", "no64Download":"Geen 64-bit beschikbaar, download 32-bit", "no32Download":"Geen 32-bits beschikbaar, overslaan", "installing":"Installeren", "linkInvalid":"Link is niet meer geldig", "noErrorsM":"Geen fout om weer te geven!", "hostNotFound":"Geen host gevonden", "pinging":"Pingen met 32 ​​bytes - 9 keer...", "latency":"LATENTIE", "lblSystemTools":"Systeem && Tools", "lblInternet":"Internet", "lblCoding":"Coding", "lblVideoSound":"Video && Audio", "min":"min", "max":"max", "gem":"Gemiddeld", "timeout":"Verzoek is verlopen.", "languagesL":"Kies taal", "trayStartup":"Startup Manager", "trayCleaner":"Drive Cleaner", "trayPinger":"Pinger-tool", "trayHosts":"HOSTS-editor", "trayAD":"App-downloader", "trayOptions":"Opties", "trayRegistry":"Reparatieregister", "trayRestartExplorer":"Herstart Explorer", "trayExit":"Afsluiten", "tipWhatsThis":"Wat is dit?", "hwDetailed":"Gedetailleerde weergave", "btnCopyHW":"Kopiëren", "btnSaveHW":"Opslaan", "indiciumTab":"Hardware", "toolHWCopy":"Kopiëren", "toolHWGoogle":"Zoeken met Google", "toolHWDuck":"Zoeken met DuckDuckGo", "trayHW":"Hardware-informatie", "os":"Besturingssysteem", "cpu":"Processors", "ram":"Geheugen", "gpu":"Grafiek", "mobo":"Moederborden", "disk":"opslag", "inet":"Netwerkadapter", "audio":"audio", "dev":"Randapparatuur", "vm":"Virtueel geheugen", "drives":"harde schijven", "volumes":"partities", "opticals":"Optische stations", "removables":"Verwisselbare schijven", "physicalAdapters":"Fysieke Adapters", "virtualAdapters":"Virtuele adapters", "keyboards":"Toetsenborden", "pointings":"Aanwijsapparaten", "performanceTip":"Verzameling van interne Windows-instellingen voor prestatie-optimalisatie. Volledig veilig in gebruik. - Kortere wachttijd voor het beëindigen van niet-reagerende processen. - Verlaagt de vertraging van de menuweergave. - Melding van weinig schijfruimte uitgeschakeld. - Schudden uitgeschakeld om de functie te minimaliseren. - Toont altijd bestandsextensies - Toont verborgen bestanden ", "networkTip":"Windows implementeert een netwerkbeperkingsmechanisme dat het netwerkverkeer beperkt bij het uitvoeren van multimediatoepassingen. Het kan ook de netwerkprestaties verminderen bij het spelen van online games.", "defenderTip":"Windows Defender is de ingebouwde virusbescherming in Windows-systemen.", "smartScreenTip":"SmartScreen scant automatisch bestanden, downloads en websites, blokkeert reeds bekende gevaarlijke inhoud en warip ze voordat je ze uitvoert.", "systemRestoreTip":"Systeemherstel is een functie die kan worden gebruikt om Windows terug te zetten van de huidige staat naar een vorige staat om storingen of andere problemen op te lossen.", "reportingTip":"Foutrapportage verzamelt applicatiecrashes en fouten en stuurt deze naar Microsoft.", "telemetryTasksTip":"Telemetrieservices sturen periodiek gebruiks- en prestatiegegevens naar Microsoft om toekomstige verbeteringen mogelijk te maken.", "officeTelemetryTip":"Office Telemetry Services sturen regelmatig gebruiks- en prestatiegegevens naar Microsoft voor toekomstige verbeteringen.", "ffTelemetryTip":"Schakelt de telemetrie- en gegevensrapportageservices van Mozilla Firefox uit.", "vsTip":"Schakelt telemetrie- en feedbackfuncties van Visual Studio uit, inclusief de SQM-client.", "chromeTelemetryTip":"Hiermee wordt de telemetrie- en softwarerapportagetool van Google Chrome uitgeschakeld. (bekend vanwege het hoge CPU-gebruik).", "printTip":"De printservice is verantwoordelijk voor het ontdekken, installeren en gebruiken van printers.", "faxTip":"De faxservice is verantwoordelijk voor het verzenden en ontvangen van faxen.", "mediaSharingTip":"Media Player Sharing is verantwoordelijk voor het delen van thuismedia voor Windows Media Player.", "stickyTip":"Sticky Keys is een toegankelijkheidsfunctie die is ontworpen om Windows-gebruikers met een fysieke handicap te helpen het soort bewegingen te verminderen dat gepaard gaat met RSI.", "homegroupTip":"Thuisgroep is een functie waarmee bestanden kunnen worden gedeeld op een thuisnetwerk met behulp van Windows Verkenner.", "superfetchTip":"Superfetch laadt veelgebruikte applicaties vooraf in het geheugen, wat resulteert in een hoog schijfgebruik, vooral op harde schijven.", "compatTip":"De compatibiliteitsassistent detecteert bekende compatibiliteitsproblemen in oudere programma's.", "disableOneDriveTip":"Deactiveert integratie van OneDrive-cloudopslag.", "oldMixerTip":"Herstelt het klassieke Volume Mixer-paneel.", "oldExplorerTip":"Schakelt de toegang uit en verwijdert het veelgebruikte paneel Bestanden in Windows Verkenner.", "adsTip":"Voorkom de weergave van advertenties in het startmenu", "uODTip":"Verwijdert de integratie van OneDrive cloudopslag volledig.", "peopleTip":"Mijn mensen is een nieuwe functie die recente contacten in het systeemvak toont.", "longPathsTip":"Verwijdert de maximale padlengte van 256 tekens.", "inkTip":"Windows Ink voegt digitale penondersteuning toe voor tekenen op het scherm.", "spellTip":"Alleen touch-toetsenbordfuncties zoals: - Automatische correctie -Tekstsuggesties -Spellingscontrole ", "xboxTip":"Xbox Live-services bieden streaming-, opname- en sociale functies voor Xbox-games.", "actionTip":"Het meldingscentrum is een centrale plaats voor meldingen en snelle actietegels, zoals wifi, Bluetooth, enz.", "autoUpdatesTip":"Hiermee wordt het automatisch downloaden en installeren van Windows-updates uitgeschakeld. In plaats daarvan ontvangt u een melding wanneer er nieuwe updates beschikbaar zijn. De Deployment Optimization-service wordt ook uitgeschakeld.", "driversTip":"Handig wanneer Windows Update een goed werkend stuurprogramma steeds vervangt door een defect stuurprogramma.", "telemetryServicesTip":"Telemetry Services volgen en loggen gebruiksgegevens en sturen feedback naar Microsoft voor analyse.", "privacyTip":"Extra privacy tweaks die uitschakelen: - Biometrie - Geolocatie - App delen op verschillende apparaten - Tekstlogger - Diagnose ", "ccTip":"Cloud klembord deelt klembordgegevens op verschillende apparaten. Hierdoor kunt u op het ene apparaat kopiëren en op het andere plakken. Aanmelden bij een Microsoft-account vereist.", "cortanaTip":"Cortana is een virtuele op AI gebaseerde assistent. - Schakelt Cortana uit. - Schakelt zoeken op internet in het startmenu uit - Voorkomt dat de zoekgeschiedenis wordt opgeslagen ", "sensorTip":"Services die de functionaliteit van sensoren beheren, zoals automatische rotatie, automatische helderheid, enz. Alleen nuttig voor tablets of touchscreen-apparaten.", "castTip":"Verwijdert rechtsklik om media-inhoud naar Miracast-apparaten te casten.", "gameBarTip":"Game Bar is een toegangsmenu voor Xbox-gameservices.", "insiderTip":"Met het Windows Insider-programma kunt u de nieuwste functies testen voordat ze voor het publiek worden vrijgegeven. Het wordt beschouwd als een onnodige service voor gebruikers die niet willen deelnemen.", "tpmTip":"Omzeilt Secure Boot- en TPM 2.0-vereisten en maakt een upgrade naar Windows 11 mogelijk", "leftTaskbarTip":"Lijnt de taakbalkpictogrammen naar links uit.", "snapAssistTip":"Schakelhulp-flyout uitschakelen wanneer de muisaanwijzer over de maximaliseerknop wordt gehouden.", "widgetsTip":"Schakelt de widgetfunctie uit en verwijdert het widgetpictogram uit het systeemvak.", "chatTip":"Verwijdert het chatpictogram uit het systeemvak.", "smallerTaskbarTip":"Verklein de taakbalk en pictogrammen.", "classicRibbonTip":"Herstelt het klassieke Windows 10-lint in Verkenner.", "classicContextTip":"Herstelt het klassieke rechtsklikmenu en verwijdert de optie 'Meer opties weergeven'.", "gameModeSw":"Spelmodus inschakelen", "gameModeTip":"Maakt gaming-modus mogelijk in combinatie met hardware-versnelde GPU-planning.", "compactModeSw":"Schakel de compacte modus in Verkenner in", "compactModeTip":"Vermindert extra ruimte en opvulling tussen bestanden in Verkenner.", "stickersTip":"Stickers zijn grote emoji's die op achtergrondafbeeldingen verschijnen en worden gebruikt in sociale messengers.", "hibernateSw":"Sluimerstand uitschakelen", "hibernateTip":"Schakelt de Windows-slaapstandfunctie uit.", "smb1Sw":"SMBv1-protocol uitschakelen", "smb2Sw":"SMBv2-protocol uitschakelen", "smbTip":"Het SMB{v}-protocol is verantwoordelijk voor het delen van bestanden tussen Windows-computers. Het is vervangen door SMBv3, wat veiliger is.", "ntfsStampSw":"NTFS-tijdstempel uitschakelen", "ntfsStampTip":"Geeft aan wanneer het bestand voor het laatst is geopend. Uitschakelen kan I/O-bewerkingen op de harde schijven verminderen.", "autoStartToggle": "Begin met Windows", "nvidiaTelemetrySw": "NVIDIA-telemetrie uitschakelen", "dnsTitle": "Snel van DNS-server veranderen", "vbsSw": "Op virtualisatie gebaseerde beveiliging uitschakelen", "vbsTip": "Kernelfunctie die voorkomt dat kwaadaardige stuurprogramma's in processen worden geïnjecteerd. Het heeft een negatief effect op de prestaties.", "winSearchSw": "Schakel Zoeken uit", "winSearchTip": "Schakelt de Windows-zoekservice uit.", "storeUpdatesSw": "Schakel Microsoft Store-updates uit", "storeUpdatesTip": "Schakelt de functionaliteit voor automatische updates van de Microsoft Store uit.", "btnRestoreUwp": "Herstel alle UWP", "restoreUwpMessage": "Weet je zeker dat je dit wilt doen?", "telemetrySvcToggle": "Schakel Optimizer-telemetrie uit", "edgeAiSw": "Schakel Edge Discover uit", "edgeTelemetrySw": "Schakel Edge-telemetrie uit", "edgeAiTip": "Verwijdert Discover Bar in Edge.", "edgeTelemetryTip": "Schakelt SmartScreen-, Spotlight- en telemetrieservices in Edge uit.", "hpetSw": "Schakel HPET uit", "loginVerboseSw": "Gedetailleerd inlogscherm inschakelen", "advancedTab": "Geavanceerd", "btnRestartSafe": "Start opnieuw op in Veilige modus", "btnRestart": "Start opnieuw op in de normale modus", "btnRestartDisableDefender": "Herstart && Schakel Defender uit", "classicPhotoViewerSw": "Herstel klassieke fotoviewer", "tabPage3": "Lettertypen", "fontSetTitle": "Stel uw favoriete lettertype in als standaardlettertype van Windows", "label11": "Huidig ​​lettertype:", "btnSetGlobalFont": "Stel in als standaardlettertype", "lblFontsCount": "Beschikbare lettertypen:", "btnRestoreFont": "Standaard herstellen", "btnRefreshFonts": "Ververs", "chkAllNics": "Instellen voor alle netwerkadapters", "chkCustomDns": "Aangepaste DNS instellen", "btnSetDns": "DNS instellen", "copilotSw": "Schakel CoPilot AI uit", "copilotTip": "Schakelt de CoPilot AI-functie volledig uit.", "btnReinforce": "Beleid versterken", "msgReinforce": "Weet u zeker dat u uw huidige beleid opnieuw wilt toepassen?", "newsInterestsSw": "Nieuws en interesses uitschakelen", "allTrayIconsSw": "Alle meldingspictogrammen weergeven", "noMenuDelaySw": "Vertraging van menu's verwijderen", "hideSearchSw": "Zoeken op taakbalk verbergen", "hideWeatherSw": "Weer op taakbalk verbergen", "enableUtcSw": "UTC-tijd inschakelen", "autoUpdateToggle": "Bij opstarten bijwerken", "modernStandbySw": "Moderne stand-bymodus uitschakelen", "label24": "Systeemvariabelen editor", "label23": "Nieuw systeemvariabele pad:", "button3": "Toevoegen", "label21": "Systeemvariabelen", "button1": "Verwijderen", "button2": "Vernieuwen" } ================================================ FILE: Optimizer/Resources/i18n/PL.json ================================================ { "subSystem": "System", "subPrivacy": "Prywatność", "subGaming": "Gra", "subTouch": "Dotyk", "subTaskbar": "Pasek zadań", "subExtras": "Dodatki", "btnAbout": "OK", "restartButton": "Uruchom ponownie teraz", "restartButton8": "Uruchom ponownie teraz", "restartButton10": "Uruchom ponownie teraz", "btnFind": "Znajdź", "btnKill": "Zakończ", "regBackupSw": "Włącz kopie zapasowe rejestru", "trayUnlocker": "Deskryptory plików", "restartAndApply": "Uruchom ponownie, aby zastosować zmiany", "onedriveM": "Czy na pewno chcesz usunąć usługę OneDrive? Spowoduje to usunięcie wszystkich plików i folderów usługi OneDrive!", "txtVersion": "Wersja: {VN}", "systemRestoreM": "Czy na pewno chcesz wyłączyć przywracanie systemu? Spowoduje to usunięcie bieżących punktów przywracania!", "txtBitness": "Masz {BITS} bitowy system", "linkUpdate": "Dostępna nowa aktualizacja", "lblLab": "Wersja eksperymentalna\n(usuń po przetestowaniu)", "performanceSw": "Optymalizacja wydajności", "networkSw": "Optymalizacja sieci i przepustowości", "defenderSw": "Wyłącz funkcję Windows Defender", "systemRestoreSw": "Wyłącz przywracanie systemu", "printSw": "Wyłącz usługę drukowania (drukarka)", "mediaSharingSw": "Wyłącz udostępnianie odtwarzacza multimedialnego", "faxSw": "Wyłącz usługę faksu (Faks)", "reportingSw": "Wyłącz raportowanie błędów", "homegroupSw": "Wyłącz udostępnianie plików przez grupę domową", "superfetchSw": "Wyłącz Superfetch", "telemetryTasksSw": "Wyłącz telemetrię", "officeTelemetrySw": "Wyłącz telemetrię pakietu Office", "vsSW": "Wyłącz telemetrię programu Visual Studio", "ffTelemetrySw": "Wyłącz telemetrię Mozilla Firefox", "chromeTelemetrySw": "Wyłącz telemetrię Google Chrome", "compatSw": "Wyłącz usługę sprawdzania zgodności", "smartScreenSw": "Wyłącz SmartScreen", "stickySw": "Wyłącz lepkie klawisze", "universalTab": "Uniwersalne", "modernAppsTab": "Aplikacje UWP", "startupTab": "Auto. uruchamianie", "appsTab": "Aplikacje początkowe", "cleanerTab": "Czyszczenie", "pingerTab": "Pinger", "registryFixerTab": "Rejestr", "integratorTab": "Integrator", "CleanPreviewForm": "Podgląd Czyszczenia", "optionsTab": "Opcje", "oldMixerSw": "Przywróć klasyczny mikser głośności", "oldExplorerSw": "Przywróć klasyczny Eksplorator Plików", "adsSw": "Wyłącz wyświetlanie kontaktów w Eksploratorze Plików", "uODSw": "Odinstaluj OneDrive", "peopleSw": "Wyłącz Aplikację 'Kontakty'", "longPathsSw": "Wyłącz limit 260 znaków w ścieżce pliku", "autoUpdatesSw": "Wyłącz automatyczne aktualizacje", "driversSw": "Wyklucz sterowniki z automatycznej aktualizacji", "telemetryServicesSw": "Wyłącz telemetrię", "privacySw": "Ulepszenia prywatności", "ccSw": "Wyłącz schowek w chmurze", "cortanaSw": "Wyłącz Cortanę", "sensorSw": "Wyłącz czujniki", "castSw": "Wyłącz udostępnianie treści przez Miracast", "inkSw": "Wyłącz tryb rysowania/dotyku", "spellSw": "Wyłącz sprawdzanie pisowni", "xboxSw": "Wyłącz Xbox Live", "gameBarSw": "Wyłącz Game Bar", "insiderSw": "Wyłącz usługę Windows Insider", "actionSw": "Wyłącz centrum powiadomień", "disableOneDriveSw": "Wyłącz OneDrive", "tpmSw": "Wyłącz sprawdzanie TPM 2.0", "leftTaskbarSw": "Wyrównaj Pasek Zadań do Lewej", "snapAssistSw": "Wyłącz Snap Assist", "widgetsSw": "Wyłącz widżety", "chatSw": "Wyłącz ikonke czat na Pasku Zadań", "smallerTaskbarSw": "Zmniejsz pasek zadań", "classicRibbonSw": "Przywróć klasyczną belkę narzędzi", "classicContextSw": "Przywróć klasyczne menu kontekstowe", "refreshModernAppsButton": "Odśwież", "uninstallModernAppsButton": "Odinstaluj", "txtModernAppsTitle": "Usuń niechciane aplikacje UWP", "chkSelectAllModernApps": "Zaznacz wszystko", "chkOnlyRemovable": "Ukryj nie możliwe do odinstalowania", "startupTitle": "Wybierz elementy startowe", "removeStartupItemB": "Usuń", "locateFileB": "Znajdź plik w eksploratorze", "findInRegB": "Znajdź w Rejestrze", "refreshStartupB": "Odśwież", "restoreStartupB": "Przywróć", "backupStartupB": "Utwórz kopię zapasową", "lblBackupTitle": "Nazwa kopii zapasowej:", "doBackup": "OK", "cancelBackup": "Anuluj", "startupItemName": "Nazwa elementu", "startupItemLocation": "Ścieżka do pliku", "startupItemType": "Rodzaj", "txtFeedError": "Błąd podczas pobierania linków, spróbuj ponownie później", "appsTitle": "Szybkie pobieranie przydatnych aplikacji", "btnGetFeed": "Zaktualizuj linki", "bitPref": "Wybierz bitowość aplikacji do pobrania", "linkWarnings": "Zobacz ostrzeżenia", "txtDownloadStatus": "Stan pobierania", "goToDownloadsB": "Przejdź do pobranych", "btnDownloadApps": "Pobierz", "cAutoInstall": "Zainstaluj po pobraniu", "setDownDirLbl": "Folder, do którego zostaną pobrane aplikacje:", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Zaznacz wszystko", "checkTemp": "Pliki tymczasowe", "checkLogs": "Tymczasowe pliki dziennika Windows", "checkMiniDumps": "Mini-dumpy", "checkBin": "Opróżnij Kosz", "checkMediaCache": "Pamięć podręczna odtwarzacza multimedialnego", "checkErrorReports": "Raporty o błędach", "cleanDriveB": "Oczyścić", "lblPretext": "Rozmiar plików do usunięcia:", "cleanerTitle": "Wyczyść dysk systemowy", "pingerTitle": "Sprawdź dostępność adresu IP i poznaj opóźnienie", "lblPinger": "Podaj adres IP lub nazwę domeny:", "btnOpenNetwork": "Otwórz ustawienia sieciowe", "copyIPB": "Kopiuj", "copyB": "Kopiuj IP", "btnShodan": "Sprawdź na SHODAN.io", "btnPing": "Sprawdź", "lblResults": "Wynik", "flushCacheB": "Wyczyść pamięć podręczną DNS", "btnExport": "Zapisz wynik do pliku", "hostsTitle": "Edytor pliku HOSTS", "linkLocate": "Otwórz lokalizację pliku", "linkAdvancedEdit": "Zaawansowany edytor", "linkRestoreDefault": "Przywróć wartości domyślne", "lblIP": "Adres IP", "lblDomain": "Nazwa domeny", "chkBlock": "Zablokuj", "addHostB": "Dodaj do listy", "lblLock": "Chroń plik HOSTS blokując jego edycję", "chkReadOnly": "Tylko do odczytu", "lblAdblock": "Wstępnie skonfigurowane blokery reklam", "lblAdblockSub": "(usunie twoją obecną konfigurację)", "adblockS": "Blokuj reklamy i media społecznościowe sieci", "adblockP": "Blokuj reklamy i materiały dla dorosłych (pornografia)", "removeHostB": "Usuń", "refreshHostsB": "Odśwież", "removeAllHostsB": "Usuń wszystko", "regFixB": "Napraw", "regLbl": "(wymagane do zastosowania niektórych zmian)", "checkRestartExplorer": "Uruchom ponownie Eksplorator Plików, aby zastosować zmiany", "checkRegistryEditor": "Edytor Rejestru", "checkFirewall": "Windows Firewall", "checkContextMenu": "Menu kontekstowe (prawy przycisk myszy)", "checkRunDialog": "Okno dialogowe „Uruchom”", "checkFolderOptions": "Opcje/właściwości folderów", "checkControlPanel": "Panel sterowania", "checkCommandPrompt": "Wiersz poleceń", "checkTaskManager": "Menedżer zadań", "checkEnableAll": "Zaznacz wszystko", "registryTitle": "Naprawianie popularnych błędów rejestru", "quickAccessToggle": "Pokaż menu szybkiego dostępu na pasku zadań", "helpTipsToggle": "Pokaż komunikaty pomocy", "lblTheming": "Wybierz motyw aplikacji", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zergi", "radioCaramel": "Karmel", "radioLime": "Limonkowy", "radioMinimal": "Minimalistyczny", "lblUpdating": "Aktualizacja", "btnUpdate": "Sprawdź dostępne aktualizacje dla aplikacji", "btnChangelog": "Zobacz zmiany", "lblUpdateDisabled": "Niedostępne dla wersji beta", "lblTroubleshoot": "Rozwiązywanie problemów", "btnViewLog": "Wyświetl błędy systemu", "btnOpenConf": "Pokaż folder z konfiguracją", "btnResetConfig": "Naprawa aplikacji", "integrator1": "Integrator może dodawać elementy do menu kontekstowego, takie jak:", "integrator2": "• Programy", "integrator3": "• Skróty do folderów", "integrator4": "• Linki internetowe", "integrator5": "• Pliki", "integrator6": "• Komendy", "integrator7": "Elementy mogą mieć własne ikony i pozycje, a także mogą być ukryte\ni dostępne tylko po naciśnięciu klawisza SHIFT. Możesz także dodać niestandardowe polecenia, które pozwolą ci\nuruchamiać programy po prostu wpisując słowo kluczowe.", "integratorInfoTab": "Informacja", "tabPage8": "Dodaj/Edytuj", "tabPage9": "Usuń elementy", "tabPage10": "Gotowe ustawienia", "tabPage11": "Uruchom okno dialogowe 'Uruchom'", "addItemL": "Dodaj lub zmodyfikuj element", "itemtype": "Typ elementu", "radioProgram": "Program", "radioFolder": "Folder", "radioLink": "Link", "radioFile": "Plik", "radioCommand": "Komenda", "itemtoaddgroup": "Program do dodania", "folderToAdd": "Folder do dodania", "linkToAdd": "Link do dodania", "fileToAdd": "Plik do dodania", "commandToAdd": "Komenda do dodania", "icontoaddgroup": "Ikona do dodania", "checkDefaultIcon": "Użyj domyślnej ikony elementu", "checkDefaultFolderIcon": "Użyj domyślnej ikony folderu", "checkFavicon": "Użyj ikony witryny", "checkNoIcon": "Brak ikony", "dnsCacheM": "Trwa tworzenie pamięci podręcznej DNS, spróbuj ponownie później!", "itemposition": "Pozycja", "radioTop": "Na górze", "radioMiddle": "Środek", "radioBottom": "Na dole", "security": "Ustawienia wyświetlania", "checkShift": "Pokaż jedynie przy naciśnięciu klawisza SHIFT", "itemnamegroup": "Nazwa elementu w menu", "btnAddItem": "Dodaj/Edytuj", "removeIntegratorItemsL": "Usuń istniejące elementy menu kontekstowego", "removeDIB": "Usuń wybrane elementy", "refreshIIB": "Odśwież listę", "removeAllIIB": "Usuń wszystko", "PMB": "Dodaj menu zasilania", "STB": "Dodaj narzędzia systemowe", "WAB": "Dodaj aplikacje Windows", "SSB": "Dodaj skróty systemowe", "DSB": "Pokaż skróty na pulpicie", "AddOwnerB": "Dodaj 'Przejmij własność'", "RemoveOwnerB": "Usuń 'Przejmij własność'", "AddCMDB": "Otwórz za pomocą wiersza poleceń", "DeleteCMDB": "Usuń 'Otwórz za pomocą wiersza poleceń'", "readyMenusL": "Gotowe ustawienia menu", "refreshCCB": "Odśwież", "removeCCB": "Usuń", "removeCCL": "Usuń istniejące komendy", "btnCreateCustomCommand": "Utwórz", "ccKeywordL": "Słowo kluczowe do uruchomienia", "ccFileL": "Plik do uruchomienia", "ccL": "Dostosuj własne polecenia do uruchamiania programów", "btnYes": "Tak", "btnNo": "Nie", "btnOk": "OK", "HostsEditorForm": "Edytor pliku HOSTS", "savebtn": "Zapisz", "closebtn": "Zamknij", "adminMissingMsg": "Aplikację należy uruchomić jako administrator!\nProgram zostanie teraz zamknięty...", "unsupportedMsg": "Twoja wersja systemu Windows nie jest obsługiwana!\nProgram zostanie teraz zamknięty...", "confInvalidVersionMsg": "Wersja systemu Windows nie pasuje!", "confInvalidFormatMsg": "Plik konfiguracyjny jest uszkodzony!", "confNotFoundMsg": "Plik konfiguracyjny nie istnieje!", "argInvalidMsg": "Niepoprawny argument! Przykład: Optimizer.exe /template.json", "alreadyRunningMsg": "Program jest już uruchomiony!", "StartupPreviewForm": "Podgląd elementów startowych", "StartupRestoreForm": "Przywróć elementy startowe", "backupL": "Odzyskaj elementy startowe", "txtNoBackups": "Nie znaleziono kopii zapasowych", "previewBackupB": "Podgląd kopii zapasowej", "restoreBackupB": "Przywróć", "deleteBackupB": "Usuń", "noNewVersion": "Nie znaleziono aktualizacji, używasz najnowszej wersji!", "betaVersion": "Używasz wersji beta!", "removeAllStartup": "Jesteś pewien że chcesz usunąć wszystkie elementy startowe?", "removeAllHosts": "Jesteś pewien że chcesz usunąć wszystkie wpisy pliku HOSTS?", "removeAllItems": "Jesteś pewien że chcesz usunąć wszystkie elementy menu kontekstowego pulpitu?", "removeModernApps": "Jesteś pewien że chcesz odinstalować następujące programy?", "errorModernApps": "Następujące programy nie mogły zostać odinstalowane:\n", "resetMessage": "Aplikacja uruchomi się ponownie, aby odzyskać.", "newVersion": "Nowa wersja dostępna! Czy chcesz ją teraz pobrać?\nAplikacja uruchomi się ponownie za kilka sekund.", "flushDNSMessage": "Czy na pewno chcesz wyczyścić pamięć podręczną DNS systemu Windows?\n\nSpowoduje to chwilowe odłączenie od Internetu i być może będzie konieczne ponowne uruchomienie komputera, aby połączenie Internetowe mógło działać prawidłowo.", "downloadsFinished": "Pobieranie zakończone!", "latestVersionM": "Najnowsza dostępna wersja: {LATEST}", "currentVersionM": "Akutalna wersja: {CURRENT}", "downloadDirInvalid": "Podany folder pobierania jest nieprawidłowy", "no64Download": "Wersja 64-bitowa nie dostępna, pobrano wersję 32-bitową!", "no32Download": "Wersja 32-bitowa nie dostępna, pobieranie zostało pominięte!", "installing": "Instalowanie", "linkInvalid": "Nieprawidłowy link", "noErrorsM": "Brak błędów do wyświetlenia!", "hostNotFound": "Nie udało się znaleźć hosta", "pinging": "Wysyłanie 32-bajtowego żądania 9 razy...", "latency": "OPÓŹNiENIE", "lblSystemTools": "Narzędzia systemowe", "lblInternet": "Internet", "lblCoding": "Programowanie", "lblVideoSound": "Wideo i dźwięk", "min": "Min.", "max": "Max.", "avg": "Średnie", "timeout": "Upłynął limit czasu żądania", "languagesL": "Wybierz język", "trayStartup": "Manager autostartu", "trayCleaner": "Czyszczenia dysku", "trayPinger": "Pinger", "trayHosts": "Edytor HOSTS", "trayAD": "Pobieranie aplikacji", "trayOptions": "Ustawienia", "trayRegistry": "Naprawa Rejestru", "trayRestartExplorer": "Zrestartuj Eksplorator", "trayExit": "Wyjdź", "tipWhatsThis": "Co to?", "hwDetailed": "Widok szczegółowy", "btnCopyHW": "Kopiuj", "btnSaveHW": "Zapisz", "indiciumTab": "Sprzęt", "toolHWCopy": "Kopiuj", "toolHWGoogle": "Wyszukaj w Google", "toolHWDuck": "Wyszukaj w DuckDuckGo", "trayHW": "Informacje o sprzęcie", "os": "System Operacyjny", "cpu": "Procesory", "ram": "Pamięć RAM", "gpu": "Karta(y) graficzne", "mobo": "Płyta główne", "disk": "Dyski", "inet": "Karty sieciowe", "audio": "Dźwięk", "dev": "Urządzenia", "vm": "Pamięć wirtualna", "drives": "Dyski", "volumes": "Partycje", "opticals": "Dyski optyczne", "removables": "Dyski wymienne", "physicalAdapters": "Adaptery fizyczne", "virtualAdapters": "Adaptery wirtualne", "keyboards": "Klawiatury", "pointings": "Myszy", "performanceTip": "Podstawowe ustawienia systemu Windows poprawiające wydajność.\nBezpieczne dla Twojego systemu.\n - Skraca czas oczekiwania przed zabiciem niereagujących procesów; - Zmniejsza czas opóźnienia wyświetlania menu; - Wyłącza powiadomienie o małej ilości miejsca na dysku; - Wyłącza potrząśnięcie, aby zminimalizować funkcję; - Zawsze pokazuj rozszerzenia plików; - Wyświetla ukryte pliki", "networkTip": "Może zmniejszyć obciążenie sieci i poprawić wydajność w grach online.", "defenderTip": "Windows Defender to wbudowany antywirus w systemach Windows.", "smartScreenTip": "SmartScreen automatycznie skanuje pliki, pliki do pobrania i strony internetowe\ni blokuje znane niebezpieczne treści i ostrzega przed ich uruchomieniem.", "systemRestoreTip": "Przywracanie systemu to funkcja, która umożliwia przywrócenie stanu systemu Windows do momentu ostatniego zapisania stanów systemu.", "reportingTip": "System zbiera informacje o błędach i wysyła je do firmy Microsoft.", "telemetryTasksTip": "Usługi telemetryczne okresowo wysyłają dane dotyczące użytkowania i wydajności do firmy Microsoft w celu dalszego ulepszania.", "officeTelemetryTip": "Dane telemetryczne pakietu Office okresowo wysyłają dane dotyczące użytkowania i wydajności do firmy Microsoft w celu dalszego ulepszania.", "ffTelemetryTip": "Wyłącza usługi telemetrii i raportowania danych przeglądarki Mozilla Firefox.", "vsTip": "Wyłącza funkcje telemetrii i opinii programu Visual Studio, w tym klienta SQM.", "chromeTelemetryTip": "Wyłącza telemetrię przeglądarki Google Chrome i narzędzie do raportowania oprogramowania.", "printTip": "Usługa drukowania jest odpowiedzialna za wykrywanie, instalowanie i używanie drukarek.", "faxTip": "Usługa faksu jest odpowiedzialna za wysyłanie i odbieranie faksów.", "mediaSharingTip": "Udostępnianie odtwarzacza multimediów — zapewnia udostępnianie multimediów w domu dla programu Windows Media Player.", "stickyTip": "Lepkie klawisze to funkcja ułatwień dostępu, która pomaga użytkownikom systemu Windows, którzy mają problemy z naciśnięciami klawiszy.", "homegroupTip": "Grupa domowa to funkcja umożliwiająca udostępnianie plików w sieci domowej przy użyciu Eksploratora Windows.", "superfetchTip": "Superfetch — wstępnie ładuje często używane aplikacje i pliki\nindo pamięci RAM, aby przyspieszyć ich uruchamianie.", "compatTip": "Usługa Asystent zgodności wykrywa znane problemy ze zgodnością w starszych programach.", "disableOneDriveTip": "Wyłącza przechowywanie w chmurze OneDrive.", "oldMixerTip": "Przywraca klasyczny mikser do regulacji głośności.", "oldExplorerTip": "- Wyłącza historię szybkiego dostępu; - Eksplorator plików otworzy się w sekcji „Ten komputer”; - Wyłącza historię ostatnich plików; - Usuwa wyszukiwanie, zadania i pogodę z paska zadań.", "adsTip": "Zapobiega wyświetlaniu reklam w menu Start.", "uODTip": "Usuwa magazyn w chmurze OneDrive.", "peopleTip": "People - to nowa funkcja, która pokazuje ostatnie kontakty na pasku zadań.", "longPathsTip": "Usuwa limit 256 znaków dla ścieżek plików i folderów.", "inkTip": "Windows Ink — obsługuje cyfrowe pióra/pióra/pędzle do rysowania na ekranie.", "spellTip": "Klawiatura dotykowa posiada takie funkcje jak: - Autokorekta (T9); - Sugestie tekstowe; - Sprawdzanie pisowni.", "xboxTip": "Xbox Live to funkcja przesyłania strumieniowego, nagrywania i mediów społecznościowych dla gier Xbox.", "actionTip": "Centrum powiadomień to centralne miejsce, w którym system Windows 10\nwyświetla powiadomienia o zdarzeniach, które mogą być dla Ciebie ważne.", "autoUpdatesTip": "Wyłącza automatyczne pobieranie i instalację aktualizacji. Powiadomienie o dostępnych aktualizacjach będą pojawiać się na pasku zadań.", "driversTip": "Gdy ta funkcja jest uruchomiona, system Windows może zastąpić działający sterownik niedziałającym.", "telemetryServicesTip": "Usługi telemetryczne okresowo wysyłają dane dotyczące użytkowania i wydajności do firmy Microsoft w celu dalszego ulepszania.", "privacyTip": "Aby poprawić prywatność, wyłącz następujące funkcje: - Biometria; - Geolokalizacja; - Udostępniaj aplikacje na różnych urządzeniach; - Rejestrator tekstu; - Diagnostyka.", "ccTip": "Schowek to funkcja, która umożliwia zapisywanie i synchronizowanie schowka na urządzeniach z systemem Windows.", "cortanaTip": "Cortana to funkcja, która pozwala sterować urządzeniem za pomocą głosu i uzyskiwać informacje z Internetu.", "sensorTip": "Wyłącz czujniki, takie jak automatyczna jasność, automatyczna korekcja kolorów itp.", "castTip": "Usuwa możliwość udostępniania treści multimedialnych innym urządzeniom za pomocą Miracast", "gameBarTip": "Game Bar to menu skrótów do usług gier Xbox.", "insiderTip": "Windows Insider to program, który pozwala użytkownikom uzyskać wersje beta systemu Windows.", "tpmTip": "Omija wymagania Secure Boot i TPM 2.0, umożliwiając aktualizację do systemu Windows 11.", "leftTaskbarTip": "Wyrównuje ikony paska zadań do lewej strony.", "snapAssistTip": "Wyłącza okienko asystenta przyciągania po najechaniu kursorem na przycisk maksymalizacji okna.", "widgetsTip": "Wyłącza widżety i usuwa ikonę widżetów z paska zadań.", "chatTip": "Usuwa czat Microsoft Teams z paska zadań.", "smallerTaskbarTip": "Zmniejsza rozmiar paska zadań i ikon aplikacji na pasku zadań.", "classicRibbonTip": "Przywraca klasyczny pasek wstążki w Eksploratorze plików.", "classicContextTip": "Przywraca klasyczne menu kontekstowe, usuwając „Pokaż opcje zaawansowane”.", "gameModeSw": "Włącz tryb gier", "gameModeTip": "Włącza tryb gry w połączeniu z akceleracją sprzętową planowania GPU w celu poprawy wydajności gier.", "compactModeSw": "Włącz tryb kompaktowy w Eksploratorze plików.", "compactModeTip": "Zmniejsza dodatkową przestrzeń i wypełnienie między plikami w Eksploratorze.", "stickersTip": "Naklejki to duże emotikony, które pojawiają się na tapetach i są używane w komunikatorach społecznościowych.", "hibernateSw": "Wyłącz hibernację", "hibernateTip": "Wyłącza funkcję hibernacji systemu Windows.", "smb1Sw": "Wyłącz protokół SMBv1", "smb2Sw": "Wyłącz protokół SMBv2", "smbTip": "Protokół SMB{v} jest odpowiedzialny za wymianę plików między komputerami w sieci. Zaleca się wyłączenie wersji SMB 1.0 i 2.0 w celu zwiększenia bezpieczeństwa.", "ntfsStampSw": "Wyłącz znacznik czasu NTFS", "ntfsStampTip": "Określa sygnaturę czasową NTFS używaną do śledzenia czasu ostatniej modyfikacji pliku.", "autoStartToggle": "Uruchom razem z Windows", "nvidiaTelemetrySw": "Wyłącz telemetrię NVIDIA", "dnsTitle": "Szybko zmień serwer DNS", "vbsSw": "Wyłącz zabezpieczenia oparte na wirtualizacji", "vbsTip": "Funkcja jądra, która zapobiega wprowadzaniu złośliwych sterowników do systemu. Może niekorzystnie wpływać na wydajność.", "winSearchSw": "Wyłącz wyszukiwanie", "winSearchTip": "Wyłącza usługę wyszukiwania systemu Windows.", "storeUpdatesSw": "Wyłącz aktualizacje Microsoft Store", "storeUpdatesTip": "Wyłącza funkcję automatycznych aktualizacji Microsoft Store.", "btnRestoreUwp": "Przywróć wszystkie platformy UWP", "restoreUwpMessage": "Czy na pewno chcesz to zrobić?", "telemetrySvcToggle": "Wyłącz telemetrię aplikacji", "edgeAiSw": "Wyłącz wykrywanie krawędzi", "edgeTelemetrySw": "Wyłącz telemetrię brzegową", "edgeAiTip": "Usuwa Discover Bar w Edge.", "edgeTelemetryTip": "Wyłącza usługi SmartScreen, Spotlight i Telemetry w Edge.", "hpetSw": "Wyłącz HPET", "loginVerboseSw": "Włącz szczegółowy ekran logowania", "advancedTab": "Zaawansowany", "btnRestartSafe": "Uruchom ponownie w trybie awaryjnym", "btnRestart": "Uruchom ponownie w trybie normalnym", "btnRestartDisableDefender": "Uruchom ponownie i wyłącz program Defender", "classicPhotoViewerSw": "Przywróć klasyczną przeglądarkę zdjęć", "tabPage3": "Czcionki", "fontSetTitle": "Ustaw swoją ulubioną czcionkę jako domyślną czcionkę systemu Windows", "label11": "Bieżąca czcionka:", "btnSetGlobalFont": "Ustaw jako domyślną", "lblFontsCount": "Dostępne czcionki:", "btnRestoreFont": "Przywróć wartości domyślne", "btnRefreshFonts": "Odśwież", "chkAllNics": "Ustaw dla wszystkich kart sieciowych", "chkCustomDns": "Ustaw niestandardowy DNS", "btnSetDns": "Ustaw DNS", "copilotSw": "Wyłącz funkcję CoPilot AI", "copilotTip": "Całkowicie wyłącza funkcję CoPilot AI.", "btnReinforce": "Wzmocnienie polityk", "msgReinforce": "Czy na pewno chcesz ponownie zastosować obecne polityki?", "newsInterestsSw": "Wyłącz wiadomości i zainteresowania", "allTrayIconsSw": "Pokaż wszystkie ikony powiadomień", "noMenuDelaySw": "Usuń opóźnienie menu", "hideSearchSw": "Ukryj wyszukiwanie na pasku zadań", "hideWeatherSw": "Ukryj pogodę na pasku zadań", "enableUtcSw": "Włącz czas UTC", "autoUpdateToggle": "Aktualizuj przy uruchomieniu", "modernStandbySw": "Wyłącz nowoczesny tryb gotowości", "label24": "Edytor zmiennych systemowych", "label23": "Nowa ścieżka zmiennej systemowej:", "button3": "Dodaj", "label21": "Zmienne systemowe", "button1": "Usuń", "button2": "Odśwież" } ================================================ FILE: Optimizer/Resources/i18n/PT.json ================================================ { "subSystem": "Sistema", "subPrivacy": "Privacidade", "subGaming": "Jogos", "subTouch": "Toque", "subTaskbar": "Barra de tarefas", "subExtras": "Extras", "btnAbout": "Feito", "restartButton": "Reinicie agora", "restartButton8": "Reinicie agora", "restartButton10": "Reinicie agora", "btnFind": "Encontrar", "btnKill": "Finalizar", "trayUnlocker": "Alças de arquivo", "restartAndApply": "Reinicie para aplicar as alterações", "regBackupSw": "Ativar backups de registro", "onedriveM": "Tem certeza de que deseja desinstalar o OneDrive? Isso excluirá seus arquivos da área de trabalho e de documentos, Use esta opção apenas em uma conta local", "CleanPreviewForm": "Antevisão Limpa", "systemRestoreM": "Tem certeza de que deseja desativar a Restauração do sistema? Isso excluirá suas imagens de backup atuais", "txtVersion": "Versão: {VN}", "txtBitness": "A arquitetura do seu computador é de {BITS}.", "linkUpdate": "Nova atualização disponível", "lblLab": "Experimentar nova implementação\n(deletar após teste)", "performanceSw": "Habilitar ajustes de desempenho", "networkSw": "Desativar limitações de rede", "defenderSw": "Desabilitar Windows Defender", "systemRestoreSw": "Desabilitar Recuperação do Sistema", "printSw": "Desabilitar Serviço de PrintScreen", "mediaSharingSw": "Desabilitar compartilhamento de mídia", "faxSw": "Desabilitar Serviço de Fax", "reportingSw": "Desativar Serviço de Relatório de Erros", "homegroupSw": "Desabilitar Grupo Home", "superfetchSw": "Desabilitar Superfetch", "telemetryTasksSw": "Desabilitar tarefas de Telemetria", "officeTelemetrySw": "Desabilitar Telemetria para o Office", "vsSW": "Desabilitar a Telemetria do Visual Studio", "ffTelemetrySw": "Desativar a Telemetria do Firefox", "chromeTelemetrySw": "Desativar a Telemetria do Chrome", "compatSw": "Desativar o Assistente de Compatibilidade", "smartScreenSw": "Desabilitar o SmartScreen", "stickySw": "Desabilitar as Teclas de Aderência", "universalTab": "Universal", "modernAppsTab": "Apps UWP", "analyzeDriveB": "Analisar", "startupTab": "Aplicativos na Inicialização", "appsTab": "Aplicativos", "cleanerTab": "Limpar", "pingerTab": "Pinger", "registryFixerTab": "Registros", "integratorTab": "Integrador", "optionsTab": "Opções", "oldMixerSw": "Habilitar Mixer de Volume Clássico", "oldExplorerSw": "Desativar Histórico de Acesso Rápido", "adsSw": "Desativar anúncios do Menu Iniciar", "uODSw": "Desinstalar OneDrive", "peopleSw": "Desabilitar 'My People'", "longPathsSw": "Habilitar Caminhos Longos", "autoUpdatesSw": "Desativar Atualizações Automáticas", "driversSw": "Excluir Drivers de Atualizações", "telemetryServicesSw": "Desativar Serviços de Telemetria", "privacySw": "Aumento de Privacidade", "ccSw": "Desabilitar Cloud Clipboard", "cortanaSw": "Desabilitar a Assistência da Cortana", "sensorSw": "Desabilitar Serviços de Sensores", "castSw": "Remover a Transmissão de Miracast", "inkSw": "Desabilitar app Windows Ink", "spellSw": "Desabilitar Spell Checking", "xboxSw": "Desabilitar Xbox Live", "gameBarSw": "Desabilitar Xbox Game Bar", "insiderSw": "Desabilitar Windows Insider Service", "actionSw": "Desabilitar Centro de Notificações", "disableOneDriveSw": "Desabilitar Microsoft OneDrive", "tpmSw": "Desativar Verificação TPM 2.0", "leftTaskbarSw": "Alinhar a Barra de Tarefas à Esquerda", "snapAssistSw": "Desativar o Snap Assist", "widgetsSw": "Desativar os Widgets", "chatSw": "Desativar Bate-Papo", "smallerTaskbarSw": "Diminuir a Barra de Tarefas", "classicRibbonSw": "Habilitar a Faixa Clássica (Classic Ribbon)", "classicContextSw": "Habilitar Menu Clássico do Botão Direito", "refreshModernAppsButton": "Atualizar", "uninstallModernAppsButton": "Desinstalar", "txtModernAppsTitle": "Desinstalar Aplicativos Indesejados", "chkSelectAllModernApps": "Selecionar Todos", "chkOnlyRemovable": "Apenas Desinstaláveis", "startupTitle": "Escolha os aplicativos que iniciarão com o sistema", "flushDNSMessage": "Você deseja limpar o cache DNS do Windows?\n\nIsto causará a desconexão da Internet por um momento e pode ser necessário reiniciar para funcionar corretamente.", "removeStartupItemB": "Remover", "locateFileB": "Local do Arquivo", "findInRegB": "Procurar nos Registros", "refreshStartupB": "Atualizar", "restoreStartupB": "Restaurar", "backupStartupB": "Criar Backup", "lblBackupTitle": "Título para o Backup:", "doBackup": "Feito", "cancelBackup": "Cancelar", "startupItemName": "Nome", "startupItemLocation": "Localização", "startupItemType": "Tipo", "txtFeedError": "Sem conexão com a Internet, tente atualizar novamente", "appsTitle": "Baixe e instale aplicativos úteis rapidamente", "btnGetFeed": "Atualizar aplicativos", "bitPref": "Preferência de Arquitetura (bits)", "linkWarnings": "Veja os avisos", "txtDownloadStatus": "Inativo", "goToDownloadsB": "Pasta dos instaladores", "btnDownloadApps": "Baixar agora", "cAutoInstall": "Instalar depois de baixar", "setDownDirLbl": "Definir a pasta dos instaladores", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Selecionar todos", "checkTemp": "Arquivos temporários", "checkLogs": "Logs do Windows", "checkMiniDumps": "BSOD (Pequenos Despejos)", "checkBin": "Esvaziar lixeira", "checkMediaCache": "Cache do Media Player", "checkErrorReports": "Relatórios de erros", "cleanDriveB": "Limpar", "lblPretext": "Tamanho a ser liberado:", "cleanerTitle": "Limpe a unidade do seu sistema", "pingerTitle": "Faça ping em endereços IP e visualize sua latência", "lblPinger": "Endereço IP / Nome do Domínio", "btnOpenNetwork": "Conexões de rede abertas", "copyIPB": "Copiar", "copyB": "Copiar IP", "btnShodan": "Checar no site SHODAN.io", "btnPing": "Ping", "lblResults": "Resultados", "flushCacheB": "Atualizar cache do DNS", "btnExport": "Exportar", "hostsTitle": "Editar seus arquivo hosts de forma fácil", "linkLocate": "Localizar", "linkAdvancedEdit": "Editor avançado", "linkRestoreDefault": "Restaurar para o padrão", "lblIP": "Endereço IP", "lblDomain": "Domínio", "chkBlock": "Bloquear", "addHostB": "Adicionar", "lblLock": "Proteja seu arquivo HOSTS bloqueando-o", "chkReadOnly": "Apenas leitura", "lblAdblock": "AdBlock padrões", "lblAdblockSub": "(irá remover sua configuração atual)", "adblockS": "AdBlock + Social", "adblockP": "AdBlock + Pornografia", "removeHostB": "Remover", "refreshHostsB": "Atualizar", "removeAllHostsB": "Remover tudo", "regFixB": "Corrigir", "regLbl": "(algumas mudanças podem precisar disso)", "checkRestartExplorer": "Reinicie também o Explorer para aplicar a mudanças", "checkRegistryEditor": "Editor de Registros", "checkFirewall": "Firewall do Windows", "checkContextMenu": "Botão direito no Menu", "checkRunDialog": "Iniciar Diálogo", "checkFolderOptions": "Opções de pastas", "checkControlPanel": "Painel de Controle", "checkCommandPrompt": "Prompt de Comando", "checkTaskManager": "Gerenciador de Tarefas", "checkEnableAll": "Habilitar Tudo", "registryTitle": "Corrigir problemas de registro", "quickAccessToggle": "Visualizar menu de Acesso Rápido", "helpTipsToggle": "Visualizar mensagens de ajuda", "lblTheming": "Escolha um tema", "radioOcean": "Oceano", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime Green", "radioMinimal": "Minimalista", "lblUpdating": "Verificar e Atualizar", "btnUpdate": "Verificar atualizações", "btnChangelog": "Visualizar alterações", "lblUpdateDisabled": "Desativar a versão de experimento", "lblTroubleshoot": "Solução de problemas", "btnViewLog": "Visualizar erros", "btnOpenConf": "Visualizar configurações de pasta", "btnResetConfig": "Reparar", "integrator1": "O Integrator pode adicionar itens totalmente personalizados\nna área de trabalho, clique com o botão direito no menu:", "integrator2": "• Alguns programas", "integrator3": "• Atalhos para pastas", "integrator4": "• Links da internet", "integrator5": "• Algum tipo de arquivo", "integrator6": "• Comandos", "integrator7": "Os itens podem ter ícones e posição personalizados.\nEles também podem estar ocultos, acessíveis apenas\npressionando a tecla SHIFT.\nEle também pode criar comandos personalizados\npara Executar Diálogo, facilitando o lançamento\nqualquer aplicativo apenas digitando a palavra-chave desejada.", "integratorInfoTab": "Informações", "tabPage8": "Adicionar/Modificar", "tabPage9": "Remover", "tabPage10": "Menus de Leitura", "tabPage11": "Executar Palavra Chave", "addItemL": "Adicionar ou modificar um item", "itemtype": "Tipo de Item", "radioProgram": "Programa", "radioFolder": "Pasta", "radioLink": "Link", "radioFile": "Arquivo", "radioCommand": "Comando", "itemtoaddgroup": "Programa para adicionar", "folderToAdd": "Pasta para adicionar", "linkToAdd": "Link para adicionar", "fileToAdd": "Arquivo para adicionar", "commandToAdd": "Comando para adicionar", "icontoaddgroup": "Ícone para adicionar", "checkDefaultIcon": "Use um programa de ícone", "checkDefaultFolderIcon": "Usar ícone padrão para pastas", "checkFavicon": "Baixar o ícone de site (favicon)", "checkNoIcon": "Sem ícone", "dnsCacheM": "O DNS Cache está sendo gerado, tente mais tarde!", "itemposition": "Posição do ícone", "radioTop": "Em cima", "radioMiddle": "No meio", "radioBottom": "Em baixo", "security": "Segurança", "checkShift": "Mostrar apenas quando SHIFT é pressionado", "itemnamegroup": "Nome do item no menu", "btnAddItem": "Adicionar/Modificar", "removeIntegratorItemsL": "Remover itens existentes da área de trabalho", "removeDIB": "Remover", "refreshIIB": "Atualizar", "removeAllIIB": "Remover todos", "PMB": "Adicionar Menu Power", "STB": "Adicionar Ferramentas do sistema", "WAB": "Adicionar Windows Apps", "SSB": "Adicionar Atalhos do sistema", "DSB": "Adicionar atalhos da área de trabalho", "AddOwnerB": "Adicionar 'Take Ownership'", "RemoveOwnerB": "Remover 'Take Ownership'", "AddCMDB": "Adicionar 'Open with CMD'", "DeleteCMDB": "Remover 'Open with CMD'", "readyMenusL": "Adicionar menus úteis pré-definidos", "refreshCCB": "Atualizar", "removeCCB": "Remover", "removeCCL": "Remover comandos existentes", "btnCreateCustomCommand": "Criar", "ccKeywordL": "Palavra chave", "ccFileL": "Local do arquivo", "ccL": "Defina seus comandos de execução personalizados", "btnYes": "Sim", "btnNo": "Não", "btnOk": "Ok", "HostsEditorForm": "Editor de Hosts", "savebtn": "Salvar", "closebtn": "Fechar", "alreadyRunningMsg": "O Otimizador está sendo executado em segundo plano", "adminMissingMsg": "O Otimizador precisa ser executado como administrador.\nO aplicativo será finalizado...", "unsupportedMsg": "O Otimizador funciona apenas no Windows 7 ou superior.\nO aplicativo será finalizado...", "confInvalidVersionMsg": "A versão do Windows não é compatível!", "confInvalidFormatMsg": "O arquivo de configuração está em formato inválido!", "confNotFoundMsg": "O arquivo de configuração não existe!", "argInvalidMsg": "Argumentos inválidos! Use o exemplo: Optimizer.exe /template.json", "StartupPreviewForm": "Visualização dos itens de inicialização", "StartupRestoreForm": "Restaurar itens de inicialização", "backupL": "Recupere seus itens de inicialização", "txtNoBackups": "Nenhum backup encontrado", "previewBackupB": "Pré visualizar", "restoreBackupB": "Restaurar", "deleteBackupB": "Deletar", "noNewVersion": "Você já está na última versão!", "betaVersion": "Você está usando uma versão experimental!", "removeAllStartup": "Tem certeza que deseja deletar todos os itens de inicialização?", "removeAllHosts": "Você tem certeza que deseja apagar todas as entradas de hosts?", "removeAllItems": "Tem certeza de que deseja excluir todos os itens da área de trabalho?", "removeModernApps": "Tem certeza de que deseja desinstalar os seguintes aplicativos?", "errorModernApps": "Não foi possível desinstalar os seguintes aplicativos:\n", "resetMessage": "O aplicativo sairá e tentará se reparar.", "newVersion": "Existe uma nova versão disponível! Deseja fazer o download agora para atualizar?\nO aplicativo irá R em alguns segundos.", "downloadsFinished": "Finalizado", "latestVersionM": "Versão mais recente: {LATEST}", "currentVersionM": "Versão instalada: {CURRENT}", "downloadDirInvalid": "A pasta de download especificada não é válida", "no64Download": "Nenhum download disponível para 64-bit, baixando 32-bit", "no32Download": "Nenhum download disponível para 32-bit, pular", "installing": "Instalando", "linkInvalid": "Link inválido", "noErrorsM": "Não há erros para mostrar", "hostNotFound": "Não foi possível encontrar o HOST", "pinging": "Realizando o Ping 9 vezes...", "latency": "Latência", "lblSystemTools": "Sistema && Ferramentas", "lblInternet": "Internet", "lblCoding": "Codificação", "lblVideoSound": "Video && Aúdio", "min": "Mínimo", "max": "Máximo", "avg": "Média", "timeout": "Tempo de solicitação expirou", "languagesL": "Idiomas:", "trayStartup": "Gerenciador de inicialização", "trayCleaner": "Limpeza de unidade", "trayPinger": "Ferramenta de Ping", "trayHosts": "Editor de HOSTS", "trayAD": "Download de Aplicativos", "trayOptions": "Opções", "trayRegistry": "Reparar registro", "trayRestartExplorer": "Reinicie o Explorer", "trayExit": "Sair", "tipWhatsThis": "O que é isso?", "hwDetailed": "Visão Detalhada", "btnCopyHW": "Copiar", "btnSaveHW": "Salve", "indiciumTab": "Hardware", "toolHWCopy": "Copiar", "toolHWGoogle": "Procurar Google", "toolHWDuck": "Procurar DuckDuckGo", "trayHW": "Hardware", "os": "Sistema operacional", "cpu": "Processadores", "ram": "Memoria", "gpu": "Graficos", "mobo": "Placas-mãe", "disk": "Armazenar", "inet": "Adaptadores de rede", "audio": "Audio", "dev": "Periféricos", "vm": "Memoria virtual", "drives": "Unidades de disco", "volumes": "Partições", "opticals": "Unidades ópticas", "removables": "Unidades removiveis", "physicalAdapters": "Adaptadores fisicos", "virtualAdapters": "Adaptadores virtuais", "keyboards": "Teclados", "pointings": "Dispositivos apontadores", "performanceTip": "Coleção de configurações internas do Windows para otimizar o desempenho. Completamente seguro para aplicar. - Reduz o tempo de espera antes de eliminar processos que não respondem. - Diminui o tempo de atraso da exibição do menu. - Desativar notificação de verificação de pouco espaço em disco. - Desativa o recurso de 'agitar' para minimizar. - Sempre mostra as extensões dos arquivos. - Mostra todos arquivos ocultos", "networkTip": "O Windows implementa um mecanismo de limitação de rede que restringe tráfego de rede ao executar aplicativos de multimídia. Ele também pode reduzir o desempenho da rede ao jogar jogos online.", "defenderTip": "O Windows Defender é o antivírus integrado nos sistemas Windows.", "smartScreenTip": "O SmartScreen verifica automaticamente arquivos, downloads e sites, bloqueando conteúdo perigoso já conhecido e avisa antes de abrir/executar.", "systemRestoreTip": "A Restauração do Sistema é um recurso que permite reverter o estado do Windows para uma versão anterior para se recuperar de vários ou outros problemas.", "reportingTip": "O Relatador de Erros/Problemas coleta travamentos e erros do aplicativo e os envia para a Microsoft.", "telemetryTasksTip": "Os serviços de Telemetria enviam periodicamente dados de uso e desempenho para a Microsoft, para melhorias futuras.", "officeTelemetryTip": "A Telemetria do Office envia periodicamente o uso e dados de desempenho para a Microsoft, para melhorias futuras.", "ffTelemetryTip": "Desativa os servicos de telemetria e relatorios de dados do Firefox.", "vsTip": "Desabilita os recursos de telemetria e feedback do Visual Studio.", "chromeTelemetryTip": "Desativa a ferramenta de relatório de software e telemetria do Chrome (conhecida por causar alto uso da CPU).", "printTip": "O serviço de impressão é responsável por detectar, instalar e utilizar impressoras.", "faxTip": "O serviço de fax é responsável por enviar e receber faxes.", "mediaSharingTip": "O Compartilhamento de Media Player fornece compartilhamento de mídia doméstica para o Windows Media Player.", "stickyTip": "Sticky Keys é um recurso de acessibilidade para ajudar os usuários do Windows com deficiências físicas reduzindo o tipo de movimento associado a lesão por esforço repetitivo.", "homegroupTip": "Grupo doméstico é um recurso que permite compartilhar arquivos em uma rede doméstica usando o Windows Explorer.", "superfetchTip": "O superfetch pré-carrega aplicativos comumente usados na RAM, causando alto uso do disco, especificamente em HDs.", "compatTip": "O serviço Compatibility Assistant detecta problemas de compatibilidade conhecidos em programas mais antigos.", "disableOneDriveTip": "Desativa a integração de armazenamento em nuvem OneDrive.", "oldMixerTip": "Restaura o painel de controle clássico do mixer de volume.", "oldExplorerTip": "Desative o Acesso rápido e remova arquivos frequentes no Windows Explorer.", "adsTip": "Impede que anúncios apareçam no Menu Iniciar.", "uODTip": "Remove completamente a integração de armazenamento em nuvem OneDrive.", "peopleTip": "My People é um novo recurso que mostra os contatos recentes na barra de tarefas.", "longPathsTip": "Remove a limitação do comprimento máximo do caminho de 256 caracteres.", "inkTip": "O Windows Ink oferece suporte para canetas digitais para desenhar na tela.", "spellTip": "Recursos apenas do teclado de toque como: - Auto correção - Sugestões de texto - Verificação ortográfica", "xboxTip": "Os serviços do Xbox Live oferecem streaming, gravação e recursos sociais para os jogos do Xbox.", "actionTip": "A Central de Notificações é um local central para notificações e blocos de ação rápida, como Wi-Fi, Bluetooth, etc.", "autoUpdatesTip": "Desativa o download e a instalação automáticos de atualizações do Windows. Em vez disso, há uma notificação quando novas atualizações estão disponíveis. Ele também desativa o serviço de otimização de entrega.", "driversTip": "Útil quando o Windows Update substitui constantemente um driver funcionando, porém com um defeito.", "telemetryServicesTip": "Os serviços de telemetria rastreiam e registram dados de uso enviando feedback para análise à Microsoft.", "privacyTip": "Ajustes de privacidade extra desativa o seguinte: - Biometria - Geolocalização - Compartilhamento de aplicativos entre dispositivos - Registrador de texto - Diagnósticos", "ccTip": "Cloud Clipboard compartilha dados da área de transferência em seus dispositivos. Permite copiar em um dispositivo e colar em outro. Requer login em uma conta Microsoft.", "cortanaTip": "Cortana é um assistente virtual baseado em IA. - Desative a Cortana. - Desative a pesquisa na web no menu Iniciar - Impede de manter o histórico de pesquisa", "sensorTip": "Serviços que gerenciam a funcionalidade dos sensores, como rotação automática, brilho automático, etc. Útil apenas para tablets ou dispositivos com tela de toque.", "castTip": "Remove o clique com o botão direito para compartilhar conteúdo de mídia com dispositivos Miracast.", "gameBarTip": "Barra de jogos é um menu de acesso rápido para serviços de jogos Xbox.", "insiderTip": "O programa Windows Insider permite que você teste os recursos mais recentes antes de serem divulgados ao público. É considerado um serviço desnecessário para usuários que não desejam participar.", "tpmTip": "Ignora os requisitos de inicialização segura e TPM 2.0, permitindo a atualização para o Windows 11.", "leftTaskbarTip": "Alinha os ícones da barra de tarefas à esquerda.", "snapAssistTip": "Desative Snap Assist Flyout ao passar o mouse sobre os botões de maximização.", "widgetsTip": "Desativa o recurso Widgets e remove o ícone Widgets da barra de tarefas.", "chatTip": "Remove o ícone de bate-papo da barra de tarefas.", "smallerTaskbarTip": "Diminui o tamanho e os ícones da barra de tarefas.", "classicRibbonTip": "Restaura a barra de fita clássica do Windows 10 no File Explorer.", "classicContextTip": "Restaura o menu clássico do botão direito, removendo 'Mostrar mais opções'.", "gameModeSw": "Ativar o modo de jogo", "gameModeTip": "Ativa o modo de jogo em combinação com o agendamento de GPU acelerado por hardware.", "compactModeSw": "Ativar o modo compacto no Explorer", "compactModeTip": "Reduz o espaço extra e o preenchimento entre os arquivos no Explorador de Arquivos.", "stickersTip": "Stickers são emojis grandes que aparecem em papéis de parede, sendo usados em mensageiros sociais.", "hibernateSw": "Desativar hibernação", "hibernateTip": "Desativa o recurso de hibernação do Windows.", "smb1Sw": "Desativar protocolo SMBv1", "smb2Sw": "Desativar protocolo SMBv2", "smbTip": "O protocolo SMB{v} é responsável pelo compartilhamento de arquivos entre computadores Windows. Ele foi substituído pelo SMBv3, que é mais seguro.", "ntfsStampSw": "Desativar carimbo de data/hora NTFS", "ntfsStampTip": "Indica o último carimbo de acesso do arquivo. Desabilitar pode reduzir as operações de E/S nos discos.", "autoStartToggle": "Comece com o Windows", "nvidiaTelemetrySw": "Desativar a telemetria NVIDIA", "dnsTitle": "Altere rapidamente o servidor DNS", "vbsSw": "Desativar segurança baseada em virtualização", "vbsTip": "Recurso de kernel que impede a injeção de drivers mal-intencionados nos processos. Tem efeito negativo no desempenho.", "winSearchSw": "Desativar pesquisa", "winSearchTip": "Desativa o serviço de pesquisa do Windows.", "storeUpdatesSw": "Desativar atualizações da Microsoft Store", "storeUpdatesTip": "Desativa a funcionalidade de atualizações automáticas da Microsoft Store.", "btnRestoreUwp": "Restaurar todos os UWP", "restoreUwpMessage": "Você tem certeza de que quer fazer isso?", "telemetrySvcToggle": "Desativar a telemetria do otimizador", "edgeAiSw": "Desativar descoberta de borda", "edgeTelemetrySw": "Desativar telemetria de borda", "edgeAiTip": "Remove a barra de descoberta no Edge.", "edgeTelemetryTip": "Desativa os serviços SmartScreen, Spotlight e Telemetria no Edge.", "hpetSw": "Desativar HPET", "loginVerboseSw": "Ativar tela de login detalhada", "advancedTab": "Avançado", "btnRestartSafe": "Reiniciar no modo de segurança", "btnRestart": "Reiniciar no modo normal", "btnRestartDisableDefender": "Reiniciar && Desativar Defender", "classicPhotoViewerSw": "Restaurar visualizador de fotos clássico", "tabPage3": "Fontes", "fontSetTitle": "Defina sua fonte favorita como fonte padrão do Windows", "label11": "Fonte atual:", "btnSetGlobalFont": "Definir como padrão", "lblFontsCount": "Fontes disponíveis:", "btnRestoreFont": "Restaurar para o padrão", "btnRefreshFonts": "Atualizar", "chkAllNics": "Definido para todos os adaptadores de rede", "chkCustomDns": "Definir DNS personalizado", "btnSetDns": "Definir DNS", "copilotSw": "Desativar CoPilot AI", "copilotTip": "Desativa completamente a funcionalidade CoPilot AI.", "btnReinforce": "Reforçar Políticas", "msgReinforce": "Tem certeza de que deseja reaplicar suas políticas atuais?", "newsInterestsSw": "Desativar notícias e interesses", "allTrayIconsSw": "Mostrar todos os ícones de notificação", "noMenuDelaySw": "Remover atraso de menus", "hideSearchSw": "Ocultar pesquisa na barra de tarefas", "enableUtcSw": "Ativar Hora UTC", "hideWeatherSw": "Ocultar clima na barra de tarefas", "autoUpdateToggle": "Atualizar no lançamento", "modernStandbySw": "Desativar Modo de Espera Moderno", "label24": "Editor de Variáveis do Sistema", "label23": "Novo caminho de variável do sistema:", "button3": "Adicionar", "label21": "Variáveis do Sistema", "button1": "Excluir", "button2": "Atualizar" } ================================================ FILE: Optimizer/Resources/i18n/RO.json ================================================ { "subSystem": "Sistem", "subPrivacy": "Confidențialitate", "subGaming": "Jocuri", "subTouch": "Atingere", "subTaskbar": "Bara de activități", "subExtras": "In plus", "btnAbout": "Bine", "restartButton": "Reporniți acum", "restartButton8": "Reporniți acum", "restartButton10": "Reporniți acum", "btnFind": "Găsește", "btnKill": "Terminati", "trayUnlocker": "Mânere de fișiere", "restartAndApply": "Reporniți pentru a aplica modificările", "regBackupSw": "Activați copiile de rezervă ale registrului", "txtVersion": "Versiunea: {VN}", "txtBitness": "Tu esti pe {BITS}", "linkUpdate": "Actualizare disponibilă!", "lblLab": "Construcție experimentală\n(șterge după testare.)", "performanceSw": "Activează trucuri de performanță", "networkSw": "Dezactivati Limitare Retea", "defenderSw": "Dezactivează Securitatea Windows", "systemRestoreSw": "Dezactivati Restaurarea Sistemului", "printSw": "Dezactivati Serviciul de Printare", "mediaSharingSw": "Dezactivati Partajarea Programului de Video-uri", "faxSw": "Dezactivati Serviciul de Fax", "reportingSw": "Dezactivati Rapoarte De Eroare", "homegroupSw": "Dezactivati Grupul de Domiciliu", "superfetchSw": "Dezactivati Superfetch", "telemetryTasksSw": "Dezactivati Sarcini Telemetrie", "officeTelemetrySw": "Dezactivati Telemetria Office-ului", "vsSW": "Dezactivati Telemetria Visual Studio-ului", "ffTelemetrySw": "Dezactiva Telemetria Mozilla Firefox-ului", "chromeTelemetrySw": "Dezactiva Telemetria Google Chrome-ului", "compatSw": "Dezactivati Asistent Compatibilitate", "smartScreenSw": "Dezactivati SmartScreen", "stickySw": "Dezactivati Chei Lipicioase", "universalTab": "Universale", "modernAppsTab": "Aplicație Ne", "startupTab": "Startup-uri", "appsTab": "Aplicații Comune", "cleanerTab": "Curățător", "pingerTab": "Contactor", "registryFixerTab": "Registrie", "integratorTab": "Integrator", "CleanPreviewForm": "Previzualizare ce se va curata", "optionsTab": "Opțiuni", "oldMixerSw": "Activati Mixer de Volum Clasic", "oldExplorerSw": "Restaurati Bara Explorer Clasica", "adsSw": "Dezactivati Anunțuri în Meniul de Start", "uODSw": "Deinstalati OneDrive", "peopleSw": "Dezactivati Contactele Mele", "longPathsSw": "Activează Căi Lungi in Explorer", "autoUpdatesSw": "Dezactivati Actualizarea Automata", "driversSw": "Excludeți Driverele din Actualizări", "telemetryServicesSw": "Dezactivați Serviciile Telemetrie", "privacySw": "Spori Confidențialitatea", "ccSw": "Dezactivati Bordul Copy Paste din cloud", "cortanaSw": "Dezactivati Cortana", "sensorSw": "Dezactivati Servicile de Senzori", "castSw": "Eliminați Trimitere Ecran pe Dispozitiv", "inkSw": "Dezactivati Scurtatura Windows", "spellSw": "Dezactivati Verificarea Ortografiei", "xboxSw": "Dezactivati Xbox Live", "gameBarSw": "Dezactivati Bara de Jocuri", "insiderSw": "Dezactivati Serviciul Windows Insider", "actionSw": "Dezactiva Centrul de Notificări", "disableOneDriveSw": "Dezactivati OneDrive", "tpmSw": "Dezactivtia Verificarea de TPM 2.0", "leftTaskbarSw": "Aliniati TaskBar-ul la stanga", "snapAssistSw": "Dezactivati Asistența Ferestre", "widgetsSw": "Dezactivati Widgeturi", "chatSw": "Dezactivati Mesaje", "smallerTaskbarSw": "Fa Taskbar-ul Mai Mic", "classicRibbonSw": "Activati Panglica Clasică în Explorer", "classicContextSw": "Activati Meniul Clic-Dreapta Clasic", "refreshModernAppsButton": "Actualizați", "uninstallModernAppsButton": "Dezinstalează", "txtModernAppsTitle": "Dezinstalează Aplicațiile Nedorite UW", "chkSelectAllModernApps": "Selectați Toate", "chkOnlyRemovable": "Numai Lucruri Care pot fi Dezinstalate", "onedriveM": "Sigur doriți să dezinstalați OneDrive? Aceasta va șterge fișierele desktop și documentele! Folosiți această opțiune doar pe un cont local!", "startupTitle": "Alegeți programele de pornire", "removeStartupItemB": "Ștergeți", "locateFileB": "Localizează fișierul", "findInRegB": "Găsește în registru", "analyzeDriveB": "Analizare", "refreshStartupB": "Reîmprospătare", "restoreStartupB": "Restaurare", "backupStartupB": "Copie de Rezerva", "lblBackupTitle": "Titlu de rezervă:", "doBackup": "Incepe Copia de Rezerva", "cancelBackup": "Anulare", "startupItemName": "Nume", "startupItemLocation": "Locație", "startupItemType": "Tip", "txtFeedError": "Fără conexiune la internet, încercați din nou să reîmprospătați linkurile", "appsTitle": "Descărcați și instalați rapid aplicații utile", "btnGetFeed": "Actualizează linkurile", "bitPref": "Setați preferințele de biți", "linkWarnings": "Vezi avertismente la link-uri", "txtDownloadStatus": "Inactiv", "goToDownloadsB": "Accesați Descărcările", "btnDownloadApps": "Descărcați", "cAutoInstall": "Instalați după descărcare", "setDownDirLbl": "Setați folderul de descărcare", "c64": "64-biți", "c32": "32-biți", "checkSelectAll": "Selectează tot", "checkTemp": "Fișiere temporare", "checkLogs": "Jurnalele Windows", "checkMiniDumps": "Minihale de depozitare de la Ecranul Albastru", "checkBin": "Goliți coșul de reciclare", "checkMediaCache": "Gunoi de la Media Player", "checkErrorReports": "Rapoarte de eroare", "cleanDriveB": "Curățați drive-ul", "lblPretext": "Dimensiunea maximă de curatat:", "cleanerTitle": "Curățați hard disk-ul de sistem", "pingerTitle": "Contactati adresele IP și evaluați-vă Latenta", "lblPinger": "IP / Nume de domeniu", "btnOpenNetwork": "Deschideți Conexiuni de rețea", "copyIPB": "Copiati", "copyB": "Copiati IP-ul", "btnShodan": "Verificați pe SHODAN.io", "btnPing": "Contactati", "lblResults": "Rezultate", "flushCacheB": "Goliți memoria cache DNS", "btnExport": "Exportati Setariile", "hostsTitle": "Editați fișierul host în mod eficient", "linkLocate": "Locație", "linkAdvancedEdit": "Editor-ul Avansat", "linkRestoreDefault": "Restaurati Setariile implicite", "lblIP": "Adresa IP", "lblDomain": "Domeniu", "chkBlock": "Blochează", "addHostB": "Adăuga", "lblLock": "Protejați-vă fișierul HOSTS blocându-l", "chkReadOnly": "Doar Citire", "lblAdblock": "Blocator de anunțuri", "lblAdblockSub": "(O sa ștearga configurația curentă)", "adblockS": "Bloceaza Anunturile + Sociale", "adblockP": "Bloceaza Anunturile + Porn", "removeHostB": "Șterge", "refreshHostsB": "Reîmprospăteaza", "removeAllHostsB": "Șterge tot", "regFixB": "Reparare", "regLbl": "(unele modificări ar putea avea nevoie de acest lucru)", "checkRestartExplorer": "De asemenea, reporniți Explorer pentru a aplica modificările", "checkRegistryEditor": "Editor de registru", "checkFirewall": "Firewall Windows", "checkContextMenu": "Meniu de clic dreapta", "checkRunDialog": "Dialog de Rulare", "checkFolderOptions": "Opțiuni pentru foldere", "checkControlPanel": "Panou de control", "checkCommandPrompt": "Programul de Comenzi", "checkTaskManager": "Manager de Activitati", "checkEnableAll": "Permite pe toate", "registryTitle": "Reparați problemele comune ale registrului", "quickAccessToggle": "Afișați meniul de acces rapid", "helpTipsToggle": "Afișați mesajele de ajutor", "lblTheming": "Alege-ți tema", "radioOcean": "Ocean", "radioMagma": "Magmă", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lămăie verde", "radioMinimal": "Minim", "lblUpdating": "Verificați și actualizați", "btnUpdate": "Verificați pentru actualizare", "btnChangelog": "Vedeți modificările", "lblUpdateDisabled": "Dezactivat în versiunile experimentale", "lblTroubleshoot": "Depanare Erori", "btnViewLog": "Vizualizați erorile", "btnOpenConf": "Afișează folderul de configurare", "btnResetConfig": "Reparare", "integrator1": "Integrator poate adăuga elemente\ncomplet personalizate în meniul de clic dreapta pe desktop:", "integrator2": "• Orice program", "integrator3": "• Comenzi rapide la foldere", "integrator4": "• Link-uri către web", "integrator5": "• Orice tip de fișier", "integrator6": "• Comanduri", "integrator7": "Articolele pot avea pictograme și poziție personalizate.\nde asemenea, pot fi ascunse, accesibile numai\n prin apăsarea tastei SHIFT.\nde asemenea, poate crea comenzi personalizate\n pentru Dialogul de rulare, făcând mai ușoară lansarea\n orice aplicație doar tastând cuvântul cheie dorit.", "integratorInfoTab": "Info", "tabPage8": "Adăugați/Modificați", "tabPage9": "Ștergeți", "tabPage10": "Meniuri gata", "tabPage11": "Dialog de Rulare", "addItemL": "Adăugați sau modificați un articol", "itemtype": "Categorie de articol", "radioProgram": "Program", "radioFolder": "Folderul", "radioLink": "Linkul", "radioFile": "Fisier", "radioCommand": "Comanda", "itemtoaddgroup": "Adaugați un program", "folderToAdd": "Adaugați un folder", "linkToAdd": "Adaugați un link", "fileToAdd": "Adaugați un fisier", "commandToAdd": "Adaugați o comandă", "icontoaddgroup": "Adaugați o pictograma", "checkDefaultIcon": "Folosește pictograme de program", "checkDefaultFolderIcon": "Utilizați pictograme de folder implicit", "checkFavicon": "Descărcați pictograme de la website (iconita)", "checkNoIcon": "Fără pictogramă", "dnsCacheM": "Cache ul DNS este în curs de generare, încercați din nou mai târziu!", "itemposition": "Poziția articolului", "radioTop": "Sus", "radioMiddle": "Mijloc", "radioBottom": "Jos", "security": "Securitatea", "checkShift": "Afișați numai când este apăsat SHIFT", "itemnamegroup": "Numele articolului din meniu", "btnAddItem": "Adauga/modifica", "removeIntegratorItemsL": "Ștergeți elementele desktop existente", "removeDIB": "Ștergeți", "refreshIIB": "Reîmprospătati", "removeAllIIB": "Sterge tot", "PMB": "Adăugați meniul de putere", "STB": "Adăugați instrumentele de sistem", "WAB": "Adăugați Aplicațiile de Windows", "SSB": "Adăugați comenzi rapide de sistem", "DSB": "Adăugați comenzi rapide pe desktop", "AddOwnerB": "Adăugați 'Preluare proprietate'", "RemoveOwnerB": "Ștergeți 'Preluare proprietate'", "AddCMDB": "Adăugați 'Deschide cu CMD'", "DeleteCMDB": "Ștergeți 'Deschide cu CMD'", "readyMenusL": "Adăugați meniuri utile prefabricate,", "refreshCCB": "Reîmprospătare", "removeCCB": "Ștergeți", "removeCCL": "Ștergeți comenzi existente", "btnCreateCustomCommand": "Creare", "ccKeywordL": "Cuvânt cheie", "ccFileL": "Locație de fisier", "ccL": "Definiți-vă comenzi personalizate pe care le puteți rula", "btnYes": "Da", "btnNo": "Nu", "btnOk": "Ok", "HostsEditorForm": "Editor de Host", "savebtn": "Salvare", "closebtn": "Închide", "adminMissingMsg": "Optimizer trebuie rulat că administrator!\naplicația se va închide acum...", "unsupportedMsg": "Optimizer funcționează în Windows 7 sau o versiune mai noua!\naplicația se va închide acum...", "confInvalidVersionMsg": "Versiunea Windows este invalida", "confInvalidFormatMsg": "Fișierul de configurare este în format invalid!", "confNotFoundMsg": "Fișierul de configurare nu există!", "argInvalidMsg": "Argument invalid! Exemplu: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer rulează deja în fundal!", "StartupPreviewForm": "Previzualizare programele de pornire", "StartupRestoreForm": "Restaurați programele de pornire", "backupL": "Recuperează-ți programele de pornire", "txtNoBackups": "Nu s-au găsit copii de rezervă", "previewBackupB": "Previzualizare", "restoreBackupB": "Restaureaza", "deleteBackupB": "Șterge", "noNewVersion": "Ai deja cea mai recentă versiune!", "betaVersion": "Folosiți o versiune experimentală!", "removeAllStartup": "Sigur doriți să ștergeți toate programele de pornire?", "removeAllHosts": "Sigur doriți să ștergeți toate intrările Host?", "removeAllItems": "Sigur doriți să ștergeți toate elementele de pe desktop?", "removeModernApps": "Sigur doriți să dezinstalați următoarea aplicație(ții)", "errorModernApps": "Următoarele aplicație(ții) nu au putut fi dezinstalate:\n", "latestVersionM": "Cea mai recentă versiune: {Latest Version}", "currentVersionM": "Versiunea curentă: {Current Version}", "resetMessage": "Aplicația va ieși și va încerca să se repare singură.", "newVersion": "Există o nouă versiune disponibilă! Doriți să o descărcați acum?\nAplicația va reporni în câteva secunde.", "flushDNSMessage": "Sigur doriți să ștergeți memoria cache DNS din Windows?\nși acest lucru vă cauza deconectarea de la internet pentru un moment și poate fi necesară o repornire pentru a funcționa corect.", "downloadsFinished": "Terminat", "downloadDirInvalid": "Dosarul de descărcare specificat nu este valid", "no64Download": "64 de biți nu este disponibil, se descarcă pe 32 de biți", "no32Download": "32 de biți nu este disponibil, săriți peste", "installing": "Se instalează", "linkInvalid": "Linkul nu mai este valid", "noErrorsM": "Nu există erori de afișat! :)", "hostNotFound": "Host-ul nu a putut fi găsit", "pinging": "Ping cu 32 de Octeti - de 9 ori...", "latency": "Latenta", "lblSystemTools": "Sistem și instrumente", "lblInternet": "Internet", "lblCoding": "Programat", "lblVideoSound": "Video și sunet", "min": "Minim", "max": "Maxim", "avg": "Medie", "timeout": "Cererea a expirat", "languagesL": "Alegeți limba", "trayStartup": "Manager de pornire", "trayCleaner": "Curățător de hard disk", "trayPinger": "Instrumentul Pinger", "trayHosts": "Editorul Host", "trayAD": "Descărcător de aplicații", "trayOptions": "Opțiune", "trayRegistry": "Repararea registrului", "trayRestartExplorer": "Reporniți Explorer", "trayExit": "Ieșire", "tipWhatsThis": "Ce-i asta?", "hwDetailed": "Vedere detaliată", "btnCopyHW": "Copie", "btnSaveHW": "Salvează", "indiciumTab": "Hardware", "toolHWCopy": "Copie", "toolHWGoogle": "Căutati cu Google", "toolHWDuck": "Căutati cu DuckDuckGo", "trayHW": "Informația hardware-ului", "os": "Sistem de operare", "cpu": "Procesoare", "ram": "Memorie", "gpu": "Grafică", "mobo": "Plăcile de baza", "disk": "Stocare", "inet": "adaptorul de rețea", "audio": "Audio", "dev": "Periferice", "vm": "Memorie virtuala", "drives": "Dispozitive de stocare", "volumes": "Partiții", "opticals": "Unitățile Optice", "removables": "Unităţile stocare detaşabile", "physicalAdapters": "Adaptoare fizice", "virtualAdapters": "Adaptoare virtual", "keyboards": "Tastaturi", "pointings": "Dispozitive de mișcare a cursorului", "performanceTip": "Colecție de setări interne Windows pentru a optimiza performanța. Complet sigur de aplicat. - Reduce timpul de așteptare înainte de a termina procesele care nu răspund. - Reduce timpul de întârziere pentru afișarea meniului. - Dezactivează notificarea verificării spațiului pe disc redus. - Dezactivați funcția de scuturare pentru a minimiza - Afișează întotdeauna extensiile de fișiere - Afișează fișierele ascunse", "networkTip": "Windows implementează un mecanism de limitare a rețelei care va restricționa traficul în rețea atunci când rulează aplicații multimedia. De asemenea, poate reduce performanța rețelei atunci când jucați jocuri online.", "defenderTip": "Windows Defendor este un antivirus încorporat în sistemele Windows.", "smartScreenTip": "SmartScreenul scanează automat fișierele, descărcările și site-urile web, blocând. Conținut periculos deja cunoscut și vă avertizează înainte de a le rula.", "systemRestoreTip": "Restaurarea sistemului este o caracteristică care permite revenirea la starea Windows. La una anterioară pentru a recupera de la defecțiuni sau alte probleme.", "reportingTip": "Raportarea erorilor colectează blocările și erorile aplicațiilor și le trimite la Microsoft.", "telemetryTasksTip": "Serviciile de telemetrie trimit periodic date de utilizare și performanță către Microsoft, pentru îmbunătățirea ulterioară.", "officeTelemetryTip": "Telemetria de Office Microsoft trimite periodic date de utilizare și performanță la Microsoft, pentru îmbunătățirea ulterioară.", "ffTelemetryTip": "Dezactivează serviciile de telemetrie și raportare a datelor Mozilla Firefox.", "vsTip": "Dezactivează telemetria Visual Studio și caracteristicile de feedback, inclusiv client SQM.", "chromeTelemetryTip": "Dezactivează telemetrie Google Chrome și instrumentul de raportare a software-ului (cunoscut pentru faptul că provoacă o utilizare ridicată a procesorului).", "printTip": "Serviciul de imprimare este responsabil pentru detectarea, instalarea și utilizarea imprimantelor.", "faxTip": "Serviciul de fax este responsabil pentru trimiterea și primirea faxurilor.", "mediaSharingTip": "Media Player Sharing oferă partajare media acasă pentru Windows Media Player.", "stickyTip": "Tastele lipicioase este o caracteristică de accesibilitate pentru a ajuta utilizatorii Windows cu handicap fizic reducerea tipul de mișcare asociat cu. Leziuni repetitive tulpina.", "homegroupTip": "Grupul de domiciliu este o caracteristică care permite partajarea fișierelor Într-o rețea de domiciliu utilizând Windows Explorer.", "superfetchTip": "SuperFetch pre încarcă aplicațiile utilizate în mod obișnuit pentru RAM, provocând multe utilizarea pe disc , în special pe HDD-uri.", "compatTip": "Serviciul asistent de compatibilitate detectează probleme de compatibilitate cunoscute în programele mai vechi.", "disableOneDriveTip": "Dezactivează integrato de Stocarea în cloud OneDrive", "oldMixerTip": "Restabilește panoul de control clasic al mixerului de volum.", "oldExplorerTip": "- Dezactivați istoricul de acces rapid - Setează vizualizarea implicită a File Explorer la Acest PC - Dezactivează fișierele recente - Elimină Căutarea, Sarcina și Vremea din bara de activități - Dezactivați Istoricul fișierelor", "adsTip": "Împiedică reclamele să apară în meniul Start.", "uODTip": "Tastatura tactilă nu mai funcții precum:", "peopleTip": "Oamenii mei este o funcție nouă care arată contacte recente în bara de activități.", "longPathsTip": "Elimină limita maximă de lungime a căii de 256 de caractere.", "inkTip": "Windows Ink oferă suport pentru pixuri digitale, pentru a desena pe ecran.", "spellTip": "Tastatura tactilă numai funcții precum: - Corecții automate - Sugestii de text - Verificare a ortografiei", "xboxTip": "Serviciile Xbox Live oferă streaming, înregistrare și funcții sociale pentru jocurile Xbox.", "actionTip": "Centrul de notificări este un loc central pentru notificări și acțiuni rapide, cum ar fi Wi-Fi, Bluetooth etc.", "autoUpdatesTip": "Dezactivează descărcarea și instalarea automată a actualizărilor Windows. În schimb, există o notificare când sunt disponibile noi actualizări. De asemenea, dezactivează serviciul de optimizare a livrării.", "driversTip": "Util atunci când Windows Update înlocuiește în mod constant un driver corespunzător. Driver de lucru cu unul defect.", "telemetryServicesTip": "Serviciile de telemetrie urmăresc și înregistrează datele de utilizare trimițând feedback pentru analiză către Microsoft.", "privacyTip": "Ajustări suplimentare de confidențialitate care dezactivează următoarele: - Biometrie - Geolocație - Partajați aplicații pe dispozitive - Text loggerul - Diagnosticare", "ccTip": "Cloud clipboardul partajează datele clipboard pe dispozitivele dvs. Acesta permite copierea pe un dispozitiv și lipirea pe altul.. Necesită conectare la contul Microsoft.", "cortanaTip": "Cortana este un asistent virtual bazat pe AI. - Dezactiva Cortana. - Dezactivați căutarea pe web în meniul Start - Împiedică păstrarea istoricului de căutare", "sensorTip": "Servicii care gestionează funcționalitatea senzorilor, cum ar fi rotația automată, luminozitatea automată etc. Util numai pentru tablete sau dispozitive cu ecran tactil.", "castTip": "Elimină clic dreapta pentru a partaja conținutul media pe dispozitivele Miracast.", "gameBarTip": "Bara de jocuri este un meniu cu acces rapid pentru serviciile de jocuri Xbox.", "insiderTip": "Programul Windows Insider vă permite să testați cele mai recente caracteristici Înainte de a fi lansat în public.. Este considerat un serviciu inutil pentru utilizatorii care nu doresc să participe.", "tpmTip": "Ocolește cerințele Secure Boot și TPM 2.0, permițând upgrade-ul la Windows 11.", "leftTaskbarTip": "Aliniază pictogramele barei de activități la stânga.", "snapAssistTip": "Dezactivați asistență la snap Flyout când treceți cu mouse-ul pe butoanele de maximizare.", "widgetsTip": "Dezactivează funcția Widgeturi și elimină pictograma Widgeturi din bara de activități.", "chatTip": "Elimină pictograma Chat din bara de activități.", "smallerTaskbarTip": "Face dimensiunea barei de activități și pictogramele mai mici.", "classicRibbonTip": "Restabilește bara clasică de panglică din Windows 10 în Explorer.", "classicContextTip": "Restabilește meniul clasic cu clic dreapta, eliminând 'arată mai multe opțiuni'.", "gameModeSw": "Activează modul de joc", "gameModeTip": "Activează modul Gaming în combinație cu programarea accelerată hardware a GPU-ului.", "systemRestoreM": "Sunteți sigur că doriți să dezactivați restaura de sistem? Acest lucru va șterge imaginile de backup curente!", "compactModeSw": "Activați Modul Compact în Explorer", "compactModeTip": "Reduce spațiul suplimentar și umplutura între fișierele din File Explorer.", "stickersTip": "Stickerele sunt emoji-uri mari care apar pe imagini de fundal, fiind folosite în mesageria socială.", "hibernateSw": "Dezactivați Hibernarea", "hibernateTip": "Dezactivează funcția de hibernare Windows.", "smb1Sw": "Dezactivați protocolul SMBv1", "smb2Sw": "Dezactivați protocolul SMBv2", "smbTip": "Protocolul SMB{v} este responsabil pentru partajarea fișierelor între computerele Windows. A fost înlocuit cu SMBv3, care este mai sigur.", "ntfsStampSw": "Dezactivați marcajul de timp NTFS", "ntfsStampTip": "Indică ștampila la care a fost accesat ultima dată fișierul. Dezactivarea acestuia poate reduce operațiunile I/O pe discuri.", "autoStartToggle": "Începeți cu Windows", "nvidiaTelemetrySw": "Dezactivați telemetria NVIDIA", "dnsTitle": "Schimbați rapid serverul DNS", "vbsSw": "Dezactivați securitatea bazată pe virtualizare", "vbsTip": "Caracteristica kernel care previne injectarea driverelor rău intenționate în procese. Are un efect negativ asupra performanței.", "winSearchw": "Dezactivați căutarea", "winSearchTip": "Dezactivează serviciul de căutare Windows.", "storeUpdatesSw": "Dezactivați actualizările Microsoft Store", "storeUpdatesTip": "Dezactivează funcționalitatea de actualizări automate din Microsoft Store.", "btnRestoreUwp": "Restaurați toate Aplicatiile Nedorite", "restoreUwpMessage": "Ești sigur că vrei să faci asta?", "telemetrySvcToggle": "Dezactivați telemetria Optimizer", "edgeAiSw": "Dezactiveaza Descoperirea pe Edge", "edgeTelemetrySw": "Dezactiveaza Telemetria pentru Edge", "edgeAiTip": "Scoate Bara de Descoperire din Edge", "edgeTelemetryTip": "Dezactiveaza SmartScreen, reflectoarele si Serviciile de Telemetrie din Edge", "hpetSw": "Dezactivați HPET", "loginVerboseSw": "Activeaza Ecranul Detaliat de conectare.", "advancedTab": "Avansat", "btnRestartSafe": "Reporniți în modul sigur", "btnRestart": "Reporniți în modul normal", "btnRestartDisableDefender": "Reporniți && Dezactivați Defender", "classicPhotoViewerSw": "Restaurați vizualizatorul foto clasic", "tabPage3": "Fonturi", "fontSetTitle": "Setați fontul preferat ca font implicit Windows", "label11": "Font curent:", "btnSetGlobalFont": "Set as default", "lblFontsCount": "Setați ca implicit:", "btnRestoreFont": "Restaurati Setariile implicite", "btnRefreshFonts": "Reîmprospăteaza", "chkAllNics": "Setați pentru toate adaptoarele de rețea", "chkCustomDns": "Setați DNS personalizat", "btnSetDns": "Setați DNS", "copilotSw": "Dezactivează funcția CoPilot AI", "copilotTip": "Dezactivează complet funcționalitatea CoPilot AI.", "btnReinforce": "Consolidarea politicilor", "msgReinforce": "Sunteți sigur că doriți să reaplicați politicile actuale?", "newsInterestsSw": "Dezactivați știrile și interesele", "allTrayIconsSw": "Afișați toate iconurile de notificare", "noMenuDelaySw": "Eliminați întârzierea meniului", "enableUtcSw": "Activare Timp UTC", "hideSearchSw": "Ascundeți căutarea în bara de activități", "hideWeatherSw": "Ascundeți vremea în bara de activități", "autoUpdateToggle": "Actualizare la pornire", "modernStandbySw": "Dezactivați Standby modern", "label24": "Editor variabile de sistem", "label23": "Noua cale a variabilei de sistem:", "button3": "Adăugați", "label21": "Variabile de sistem", "button1": "Șterge", "button2": "Actualizare" } ================================================ FILE: Optimizer/Resources/i18n/RU.json ================================================ { "subSystem": "Система", "subPrivacy": "Конфиденциальность", "subGaming": "Игры", "subTouch": "Сенсорный экран", "subTaskbar": "Панель задач", "subExtras": "Дополнительно", "btnAbout": "OK", "restartButton": "Перезапустить сейчас", "restartButton8": "Перезапустить сейчас", "restartButton10": "Перезапустить сейчас", "restartAndApply": "Перезапустить, чтобы применить изменения", "regBackupSw": "Включить резервное копирование реестра", "txtVersion": "Версия: {VN}", "btnFind": "Находить", "btnKill": "Убийство", "trayUnlocker": "Дескрипторы файлов", "txtBitness": "У вас {BITS} битная система", "systemRestoreM": "Вы уверены, что хотите отключить восстановление системы? Это удалит ваши текущие точки восстановления!", "onedriveM": "Вы уверены, что хотите удалить OneDrive? Это удалит все ваши OneDrive файлы и папки!", "linkUpdate": "Доступно новое обновление", "lblLab": "Экспериментальная версия\n(удалить после тестирования)", "performanceSw": "Оптимизация производительности", "networkSw": "Оптимизация сети, троттлинга", "defenderSw": "Отключить функцию Windows Defender", "systemRestoreSw": "Отключить восстановление системы", "printSw": "Отключить службу печати (принтер)", "mediaSharingSw": "Отключить общий доступ к медиаплееру", "faxSw": "Отключить службу факса (Fax)", "reportingSw": "Отключить отчеты об ошибках", "homegroupSw": "Отключить обмен файлами через домашнюю группу", "superfetchSw": "Отключить Superfetch (супервыборка)", "telemetryTasksSw": "Отключить телеметрию", "officeTelemetrySw": "Отключить телеметрию Office", "vsSW": "Отключить телеметрию Visual Studio", "ffTelemetrySw": "Отключить телеметрию Mozilla Firefox", "chromeTelemetrySw": "Отключить телеметрию Google Chrome", "compatSw": "Отключить службу проверки совместимости", "smartScreenSw": "Отключить SmartScreen", "stickySw": "Отключить залипание клавиш", "universalTab": "Универсальное", "modernAppsTab": "UWP Приложения", "analyzeDriveB": "Анализировать", "startupTab": "Автозапуск", "appsTab": "Начальные приложения", "cleanerTab": "Очистка", "pingerTab": "Пингер", "registryFixerTab": "Реестр", "integratorTab": "Интегратор", "CleanPreviewForm": "Чистое превью", "optionsTab": "Настройки", "oldMixerSw": "Вернуть классический микшер громкости", "oldExplorerSw": "Вернуть классический проводник", "adsSw": "Выключить рекламу в Проводнике", "uODSw": "Удалить OneDrive", "peopleSw": "Выключить отображение контактов в Проводнике", "longPathsSw": "Выключить ограничение в 260 символов в пути к файлу", "autoUpdatesSw": "Выключить автоматическое обновление", "driversSw": "Исключить драйвера из обновления", "telemetryServicesSw": "Выключить телеметрию", "privacySw": "Улучшение конфиденциальности", "ccSw": "Отключить облачный буфер обмена", "cortanaSw": "Выключить Cortana", "sensorSw": "Выключить сенсорные датчики", "castSw": "Выключить обмен контентом Miracast", "inkSw": "Выключить режим рисования/сенсорного ввода", "spellSw": "Выключить проверку правописания", "xboxSw": "Выключить Xbox Live", "gameBarSw": "Выключить Game Bar", "insiderSw": "Выключить Insider Service", "actionSw": "Выключить систему обновления", "disableOneDriveSw": "Выключить OneDrive", "tpmSw": "Выключить проверку TPM 2.0", "leftTaskbarSw": "Выровнять панель задач по левому краю", "snapAssistSw": "Отключить Snap Assist", "widgetsSw": "Отключить виджеты", "chatSw": "Выключить иконку чата на панели задач", "smallerTaskbarSw": "Сделать панель задач меньше", "classicRibbonSw": "Вернуть классическую панель инструментов", "classicContextSw": "Вернуть классическое контекстное меню", "refreshModernAppsButton": "Обновить", "uninstallModernAppsButton": "Удалить", "txtModernAppsTitle": "Удалить ненужные UWP приложения", "chkSelectAllModernApps": "Выбрать все", "chkOnlyRemovable": "Только с возможностью удаления", "startupTitle": "Выберите элементы автозапуска", "removeStartupItemB": "Удалить", "locateFileB": "Найти файл в проводнике", "findInRegB": "Найти в Реестре", "refreshStartupB": "Обновить список", "restoreStartupB": "Восстановить", "backupStartupB": "Создать резервную копию", "lblBackupTitle": "Название резервной копии:", "doBackup": "OK", "cancelBackup": "Отменить", "startupItemName": "Название элемента", "startupItemLocation": "Путь к файлу", "startupItemType": "Тип", "txtFeedError": "Ошибка при получении ссылок, попробуйте позже", "appsTitle": "Быстрое скачивание полезных приложений", "btnGetFeed": "Обновить ссылки", "bitPref": "Выберите битность приложений для скачивания", "linkWarnings": "См. предупреждения", "txtDownloadStatus": "Статус загрузки", "goToDownloadsB": "Перейти к загрузкам", "btnDownloadApps": "Скачать", "cAutoInstall": "Установить после скачивания", "setDownDirLbl": "Папка куда будут скачиваться приложения:", "c64": "64-бит", "c32": "32-бит", "checkSelectAll": "Выбрать все", "checkTemp": "Временные файлы", "checkLogs": "Журналы(логи/logs) Windows", "checkMiniDumps": "Мини-дампы", "checkBin": "Очистить корзину", "checkMediaCache": "Кэш медиаплеера", "checkErrorReports": "Отчеты об ошибках", "cleanDriveB": "Очистить", "lblPretext": "Размер файлов, которые будут удалены:", "cleanerTitle": "Очистить системный диск", "pingerTitle": "Проверьте доступность IP адреса и узнайте вашу задержку", "lblPinger": "Введите IP адрес или доменное имя:", "btnOpenNetwork": "Открыть сетевые настройки", "copyIPB": "Скопировать", "copyB": "Скопировать IP", "btnShodan": "Проверка через SHODAN.io", "btnPing": "Проверить", "lblResults": "Результат", "flushCacheB": "Очистить кэш DNS", "flushDNSMessage": "Вы уверены, что хотите очистить кэш DNS Windows?\n\nЭто приведёт к кратковременному отключению от Интернета, и для корректной работы может потребоваться перезагрузка системы", "btnExport": "Сохранить результат", "hostsTitle": "Редактор файла HOSTS", "linkLocate": "Открыть расположение файла", "linkAdvancedEdit": "Расширенный редактор", "linkRestoreDefault": "Восстановить по умолчанию", "lblIP": "IP адрес", "lblDomain": "Доменное имя", "chkBlock": "Заблокировать", "addHostB": "Добавить в список", "lblLock": "Защитите файл HOSTS от редактирования", "chkReadOnly": "Только для чтения", "lblAdblock": "Пре-настроенные блокировки рекламы", "lblAdblockSub": "(удалит вашу текущую конфигурацию)", "adblockS": "Заблокировать рекламу и соц. сети", "adblockP": "Заблокировать рекламу и материал для взрослых(порно)", "removeHostB": "Удалить", "refreshHostsB": "Обновить", "removeAllHostsB": "Удалить всё", "regFixB": "Исправить", "regLbl": "(для некоторых изменений это может понадобиться)", "checkRestartExplorer": "Перезапустить проводник, чтобы применить изменения", "checkRegistryEditor": "Редактор реестра", "checkFirewall": "Windows Firewall", "checkContextMenu": "Контекстное меню (правая кнопка мыши)", "checkRunDialog": "Диалог \"Выполнить\"", "checkFolderOptions": "Параметры/свойства папки", "checkControlPanel": "Панель управления", "checkCommandPrompt": "Командная строка", "checkTaskManager": "Диспетчер задач", "checkEnableAll": "Включить все", "registryTitle": "Исправление популярных ошибок реестра", "quickAccessToggle": "Показать меню быстрого доступа", "helpTipsToggle": "Показать справочные сообщения", "lblTheming": "Настройте тему приложения", "radioOcean": "Океан", "radioMagma": "Магма", "radioZerg": "Зерг", "radioCaramel": "Карамель", "radioLime": "Лайм", "radioMinimal": "Минималистичная", "lblUpdating": "Обновление приложения", "btnUpdate": "Проверить доступные обновления", "btnChangelog": "Посмотреть изменения", "lblUpdateDisabled": "Недоступно для бета-версий", "lblTroubleshoot": "Устранение ошибок", "btnViewLog": "Просмотреть ошибки системы", "btnOpenConf": "Открыть папку с конфигурацией", "btnResetConfig": "Починить приложение", "integrator1": "Интегратор может добавить элементы в контекстное меню, как:", "integrator2": "• Программы", "integrator3": "• Ярлыки папок", "integrator4": "• Ссылки сайтов", "integrator5": "• Файлы", "integrator6": "• Команды", "integrator7": "Элементы могут иметь собственные значки и положение.\nОни также могут быть скрыты и доступными только\nпри нажатии клавиши SHIFT.\nТак-же вы можете добавить пользовательские команды\nчто позволит вам запускать программы просто введя ключевое слово.", "integratorInfoTab": "Информация", "tabPage8": "Добавить/Изменить", "tabPage9": "Удаление элементов", "tabPage10": "Готовые настройки", "tabPage11": "Запустить диалог 'Выполнить'", "addItemL": "Добавить или изменить элемент", "itemtype": "Тип элемента", "radioProgram": "Программа", "radioFolder": "Папка", "radioLink": "Ссылка", "radioFile": "Файл", "radioCommand": "Команда", "itemtoaddgroup": "Программа для добавления", "folderToAdd": "Папка для добавления", "linkToAdd": "Ссылка для добавления", "fileToAdd": "Файл для добавления", "commandToAdd": "Команда для добавления", "icontoaddgroup": "Значок для добавления", "checkDefaultIcon": "Использовать стандартный значок элемента", "checkDefaultFolderIcon": "Использовать стандартный значок папки", "checkFavicon": "Использовать значок сайта", "checkNoIcon": "Не использовать значок", "dnsCacheM": "Создается DNS кэш, повторите попытку позже!", "itemposition": "Положение элемента", "radioTop": "Сверху", "radioMiddle": "По центру", "radioBottom": "Снизу", "security": "Настройка отображения", "checkShift": "Показывать только при нажатии клавиши SHIFT", "itemnamegroup": "Название пункта в меню", "btnAddItem": "Добавить/Изменить", "removeIntegratorItemsL": "Удалить существующие элементы интегратора", "removeDIB": "Удалить выбранные элементы", "refreshIIB": "Обновить список", "removeAllIIB": "Удалить всё", "PMB": "Добавить меню энерго-потребления", "STB": "Добавить системные инструменты", "WAB": "Добавить приложения для Windows", "SSB": "Добавить системные ярлыки", "DSB": "Отображать ярлыки на рабочий стол", "AddOwnerB": "Добавить «Взять на себя ответственность»", "RemoveOwnerB": "Удалить «Взять на себя ответственность»", "AddCMDB": "Открыть с помощью командной строки", "DeleteCMDB": "Удалить «Открыть с помощью командной строки»", "readyMenusL": "Готовые настройки меню", "refreshCCB": "Обновить", "removeCCB": "Удалить", "removeCCL": "Удалить существующие команды", "btnCreateCustomCommand": "Создать", "ccKeywordL": "Ключевое слово для запуска", "ccFileL": "Файл для запуска", "ccL": "Настройка собственных команд для запуска программ", "btnYes": "Да", "btnNo": "Нет", "btnOk": "OK", "HostsEditorForm": "Редактор файла HOSTS", "savebtn": "Сохранить", "closebtn": "Закрыть", "adminMissingMsg": "Приложение должно быть запущена от имени администратора!\nПриложение закрывается...", "unsupportedMsg": "Ваша версия Windows не поддерживается!\nПриложение закрывается...", "confInvalidVersionMsg": "Версия Windows не совпадает!", "confInvalidFormatMsg": "Файл конфигурации поврежден!", "confNotFoundMsg": "Файл конфигурации отсутствует!", "argInvalidMsg": "Недействительный параметр! Пример: Optimizer.exe /template.json", "alreadyRunningMsg": "Приложение уже запущено!", "StartupPreviewForm": "Предварительный просмотр элементов автозагрузки", "StartupRestoreForm": "Восстановить элементы автозагрузки", "backupL": "Восстановите элементы автозагрузки", "txtNoBackups": "Резервные копии не найдены", "previewBackupB": "Предварительный просмотр", "restoreBackupB": "Восстановить", "deleteBackupB": "Удалить", "noNewVersion": "Обновлений не найдено, Вы используете последнюю версию!", "betaVersion": "Вы используете бета-версию!", "removeAllStartup": "Вы уверены, что хотите удалить все элементы автозагрузки?", "removeAllHosts": "Вы уверены, что хотите удалить все записи файла HOSTS?", "removeAllItems": "Вы уверены, что хотите удалить все элементы рабочего стола?", "removeModernApps": "Вы уверены, что хотите удалить следующие приложения?", "errorModernApps": "Не удалось удалить следующие приложения:\n", "resetMessage": "Приложение перезапустится для восстановления.", "newVersion": "Доступна новая версия! Вы хотите загрузить её сейчас?\nПриложение перезапустится через несколько секунд.", "downloadsFinished": "Загрузка завершена!", "latestVersionM": "Последняя доступная версия: {LATEST}", "currentVersionM": "Текущая версия: {CURRENT}", "downloadDirInvalid": "Указанная папка загрузки недействительна!", "no64Download": "64-битная версия недоступна, скачиваю 32-битную", "no32Download": "32-битная версия недоступна", "installing": "Установка", "linkInvalid": "Ссылка больше не действительна", "noErrorsM": "Нет ошибок для отображения", "hostNotFound": "Не удалось найти хост", "pinging": "Отправляем 32 байтный запрос 9 раз...", "latency": "ЗАДЕРЖКА", "lblSystemTools": "Системные инструменты", "lblInternet": "Интернет", "lblCoding": "Программирование", "lblVideoSound": "Видео и звук", "min": "Мин.", "max": "Макс.", "avg": "Сред.", "timeout": "Время запроса истекло", "languagesL": "Выберите язык", "trayStartup": "Менеджер автозагрузки", "trayCleaner": "Очистка дисков", "trayPinger": "Пингер", "trayHosts": "Редактор файла HOSTS", "trayAD": "Загрузка приложений", "trayOptions": "Настройки", "trayRegistry": "Восстановление реестра", "trayRestartExplorer": "Перезапустить проводник", "trayExit": "Выйти", "tipWhatsThis": "Что это?", "hwDetailed": "Подробная информация", "btnCopyHW": "Скопировать", "btnSaveHW": "Сохранить", "indiciumTab": "Системные характеристики", "toolHWCopy": "Скопировать", "toolHWGoogle": "Поиск с помощью Google", "toolHWDuck": "Поиск с помощью DuckDuckGo", "trayHW": "Системные характеристики", "os": "Операционная система", "cpu": "Процессор(ы)", "ram": "Оперативная память", "gpu": "Графический адаптер(ы)", "mobo": "Материнская плата", "disk": "Накопители", "inet": "Сетевые адаптеры", "audio": "Звук", "dev": "Периферия", "vm": "Виртуальная память", "drives": "Дисковый привод", "volumes": "Партиции дисков", "opticals": "Оптические приводы", "removables": "Съемные носители", "physicalAdapters": "Физические адаптеры", "virtualAdapters": "Виртуальные адаптеры", "keyboards": "Клавиатура", "pointings": "Мышь", "performanceTip": "Базовые настройки Windows для улучшений производительности.\nБезопасно для системы.\n - Сокращает время ожидания перед уничтожением не отвечающих процессов; - Уменьшает время задержки отображения меню; - Отключает уведомление о нехватке места на диске; - Отключает функцию встряхивания для минимизации; - Всегда показывать расширения файлов; - Отображает скрытые файлы", "networkTip": "Это может уменьшить нагрузку на сеть, и увеличить производительность в онлайн-играх.", "defenderTip": "Защитник Windows — это встроенный антивирус в системах Windows.", "smartScreenTip": "SmartScreen автоматически сканирует файлы, загрузки и веб-сайты \nи блокирует известный опасный контент и предупреждает вас перед его запуском.", "systemRestoreTip": "Восстановление системы — это функция, которая позволяет вернуть состояние Windows до последнего сохранения состояний системы.", "reportingTip": "Система собирает информацию об ошибках и отправляет ее в Microsoft.", "telemetryTasksTip": "Службы телеметрии периодически отправляют данные об использовании и производительности в Microsoft для дальнейшего улучшения.", "officeTelemetryTip": "Телеметрия Office периодически отправляет данные об использовании и данные о производительности в Microsoft для дальнейшего улучшения.", "ffTelemetryTip": "Отключает службы телеметрии и отчетов данных браузера Mozilla Firefox.", "vsTip": "Отключает функции телеметрии и обратной связи Visual Studio, включая клиент SQM.", "chromeTelemetryTip": "Отключает телеметрию браузера Google Chrome и инструмент отчетности программного обеспечения.", "printTip": "Служба печати отвечает за обнаружение, установку и использование принтеров.", "faxTip": "Служба Fax отвечает за отправку и получение факсов.", "mediaSharingTip": "Media Player Sharing — обеспечивает общий доступ к домашнему медиа для Windows Media Player.", "stickyTip": "Sticky Keys — это функция специальных возможностей, помогающая пользователям Windows которые имеют проблемы с нажатием клавиш.", "homegroupTip": "Домашняя группа — это функция, позволяющая обмениваться файламив домашней сети\nс помощью проводника Windows.", "superfetchTip": "Superfetch — предварительно загружает часто используемые приложения и файлы\nв оперативную память, чтобы ускорить их запуск.", "compatTip": "Служба Compatibility Assistant обнаруживает известные проблемы совместимости в старых программах.", "disableOneDriveTip": "Отключает облако хранения данных OneDrive.", "oldMixerTip": "Восстанавливает классический микшер для управления громкостью.", "oldExplorerTip": "- Отключает историю быстрого доступа; - Проводник будет открываться в разделе «Этот компьютер»; - Отключает историю недавных файлов; - Удаляет поиск, задачи и погоду с панели задач;", "adsTip": "Отключает рекламу в меню «Пуск».", "uODTip": "Удаляет облачное хранение OneDrive.", "peopleTip": "People — это новая функция, показывающая недавние контакты на панели задач.", "longPathsTip": "Убирает ограничение в 256 символов для путей к файлам и папкам.", "inkTip": "Windows Ink - обеспечивает поддержку цифровых ручек/перьев/кисточек для рисования на экране.", "spellTip": "Сенсорная клавиатура имеет функции такие как: - Автокоррекция (Т9) - Текстовые предложения - Проверка орфографии", "xboxTip": "Xbox Live - функция потоковой передачи, записи и социальных сетей для игр Xbox.", "actionTip": "Центр уведомлений — это центральное место, где Windows 10 отображает уведомления о событиях, которые могут быть важны для вас.", "autoUpdatesTip": "Отключает автоматическую загрузку и установку обновлений. Уведомление о доступных обновлениях будет появляться в панели задач.", "driversTip": "При работе этой функции, Windows может заменить работающий драйвер на неисправный.", "telemetryServicesTip": "Службы телеметрии периодически отправляют данные об использовании и производительности в Microsoft для дальнейшего улучшения.", "privacyTip": "Для повышения конфиденциальности следует отключить следующие функции: - Биометрия; - Геолокация; - Делитесь приложениями на разных устройствах; - Регистратор текста; - Диагностика.", "ccTip": "Облачный буфер обмена — это функция, которая позволяет сохранять и синхронизировать буфер обмена между устройствами Windows.", "cortanaTip": "Cortana - это функция, которая позволяет вам управлять устройством с помощью голоса и получать информацию из Интернета.", "sensorTip": "Отключить сенсоры такие как автояркость, автокоррекция цвета и т.д.", "castTip": "Убирает возможность делиться медиа-контентом с другими устройствами с помощью Miracast.", "gameBarTip": "Game Bar — это меню быстрого доступа к игровым сервисам Xbox.", "insiderTip": "Windows Insider — это программа, которая позволяет пользователям получать бета-версии Windows.", "tpmTip": "Обходит требования безопасной загрузки и TPM 2.0, позволяя выполнить обновление до Windows 11.", "leftTaskbarTip": "Выравнивает значки панели задач по левому краю.", "snapAssistTip": "Отключает всплывающее окно Snap Assist при наведении на кнопки максимизации.", "widgetsTip": "Отключает функцию виджетов и удаляет значок виджетов с панели задач.", "chatTip": "Удаляет значок чата с панели задач.", "smallerTaskbarTip": "Уменьшает размер панели задач и значков.", "classicRibbonTip": "Восстанавливает классическую панель ленты в проводнике.", "classicContextTip": "Восстанавливает классическое контекстное меню, удаляя «Показать дополнительные параметры».", "gameModeSw": "Включить игровой режим", "gameModeTip": "Включает игровой режим в сочетании с аппаратным ускорением планирования графического процессора для улучшений производительности игр.", "compactModeSw": "Включить компактный режим в Проводнике.", "compactModeTip": "Уменьшает дополнительное пространство и отступы между файлами в проводнике.", "stickersTip": "Стикеры — это большие смайлики, которые появляются на обоях и используются в социальных мессенджерах.", "hibernateSw": "Отключить спящий режим", "hibernateTip": "Отключает функцию гибернации Windows.", "smb1Sw": "Отключить протокол SMBv1", "smb2Sw": "Отключить протокол SMBv2", "smbTip": "Протокол SMB{v} отвечает за обмен файлами между компьютерами в сети. Рекомендуется отключить версии SMB 1.0 и 2.0 для повышения безопасности.", "ntfsStampSw": "Отключить отметку времени NTFS", "ntfsStampTip": "Указывает отметку времени NTFS, которая используется для отслеживания последнего изменения файла.", "autoStartToggle": "Начните с Windows", "nvidiaTelemetrySw": "Отключить телеметрию NVIDIA", "dnsTitle": "Быстрая смена DNS сервера", "vbsSw": "Отключить безопасность на основе виртуализации", "vbsTip": "Функция ядра, которая предотвращает внедрение вредоносных драйверов в систему. Может негативно сказаться на производительность.", "winSearchSw": "Отключить поиск", "winSearchTip": "Отключает службу поиска Windows.", "storeUpdatesSw": "Отключить обновления магазина Microsoft", "storeUpdatesTip": "Отключает функцию автоматического обновления Microsoft Store.", "btnRestoreUwp": "Восстановить все UWP", "restoreUwpMessage": "Вы уверены, что хотите это сделать?", "telemetrySvcToggle": "Отключить телеметрию данного приложения", "edgeAiSw": "Отключить обнаружение Edge", "edgeTelemetrySw": "Отключить пограничную телеметрию", "edgeAiTip": "Удаляет панель обнаружения в Edge.", "edgeTelemetryTip": "Отключает службы SmartScreen, Spotlight и Telemetry в Edge.", "hpetSw": "Отключить HPET", "loginVerboseSw": "Включить подробный экран входа в систему", "advancedTab": "Передовой", "btnRestartSafe": "Перезапустите в безопасном режиме", "btnRestart": "Перезапустите в обычном режиме", "btnRestartDisableDefender": "Перезапустить и отключить Защитник", "classicPhotoViewerSw": "Восстановить классический просмотрщик фотографий", "tabPage3": "Шрифты", "fontSetTitle": "Установите ваш любимый шрифт в качестве шрифта Windows по умолчанию", "label11": "Текущий шрифт:", "btnSetGlobalFont": "Установите по умолчанию", "lblFontsCount": "Доступные шрифты:", "btnRestoreFont": "Восстановить по умолчанию", "btnRefreshFonts": "Обновить", "chkAllNics": "Установить для всех сетевых адаптеров", "chkCustomDns": "Установить собственный DNS", "btnSetDns": "Установить DNS", "copilotSw": "Отключить CoPilot AI", "copilotTip": "Полностью отключает функцию CoPilot AI.", "btnReinforce": "Укрепить политику", "msgReinforce": "Вы уверены, что хотите повторно применить текущие политики?", "newsInterestsSw": "Отключить новости и интересы", "allTrayIconsSw": "Показать все значки уведомлений", "noMenuDelaySw": "Убрать задержку меню", "hideSearchSw": "Скрыть поиск на панели задач", "hideWeatherSw": "Скрыть погоду на панели задач", "autoUpdateToggle": "Обновление при запуске", "enableUtcSw": "Включить ВСЕВРЕМЕННОЕ", "modernStandbySw": "Отключить режим современного ожидания", "label24": "Редактор системных переменных", "label23": "Новый путь системной переменной:", "button3": "Добавить", "label21": "Системные переменные", "button1": "Удалить", "button2": "Обновить" } ================================================ FILE: Optimizer/Resources/i18n/TR.json ================================================ { "subSystem": "Sistem", "subPrivacy": "Mahremiyet", "subGaming": "Oyun", "subTouch": "Dokunmak", "subTaskbar": "Görev çubuğu", "subExtras": "Ekstralar", "btnAbout": "OK", "restartButton": "şimdi yeniden başlat", "restartButton8": "şimdi yeniden başlat", "restartButton10": "şimdi yeniden başlat", "restartAndApply": "Değişiklikleri uygulamak için yeniden başlatılsın mı", "onedriveM": "OneDrive'ı kaldırmak istediğinizden emin misiniz? Bu, Masaüstü ve Belge dosyalarınızı siler! Bu seçeneği yalnızca yerel bir hesapta kullanın!", "regBackupSw": "Kayıt Yedeklemelerini Etkinleştir", "txtVersion": "Versiyon: {VN}", "txtBitness": "{BITS} ile çalışıyor.", "btnFind": "Bulmak", "btnKill": "Öldürmek", "trayUnlocker": "Dosya Tutamaçları", "CleanPreviewForm": "Temiz Önizleme", "systemRestoreM": "Sistem Geri Yükleme'yi devre dışı bırakmak istediğinizden emin misiniz? Bu, mevcut yedek resimlerinizi siler!", "linkUpdate": "Güncelleme Mevcut", "lblLab": "Deneysel Yapı\n(Testten sonra silin)", "performanceSw": "Performans Ayarlarını Etkinleştir", "networkSw": "Ağ Kısıtlamasını Devre Dışı Bırak", "defenderSw": "Windows Defender'ı Devre Dışı Bırakın", "systemRestoreSw": "Sistem Geri Yüklemeyi Devre Dışı Bırak", "printSw": "Print(Yazdırma) Hizmetini Devre Dışı Bırak", "mediaSharingSw": "Medya Oynatıcı Paylaşımını Devre Dışı Bırak", "faxSw": "Fax Hizmetini Devre Dışı Bırak", "reportingSw": "Hata Raporunu Devre Dışı Bırak", "homegroupSw": "Ev Grubunu Devre Dışı Bırak", "superfetchSw": "Superfetch'i Devre Dışı Bırak", "telemetryTasksSw": "Telemetri Görevlerini Devre Dışı Bırak", "officeTelemetrySw": "Office Telemetrisini Devre Dışı Bırak", "vsSW": "Visual Studio Telemetrisini Devre Dışı Bırak", "ffTelemetrySw": "Firefox Telemetrisini Devre Dışı Bırakın", "chromeTelemetrySw": "Chrome Telemetrisini Devre Dışı Bırak", "compatSw": "Uyumluluk Asistanını Devre Dışı Bırak", "smartScreenSw": "SmartScreen'i Devre Dışı Bırak", "stickySw": "Yapışkan Tuşları Devre Dışı Bırak", "universalTab": "Evrensel", "modernAppsTab": "UWP Uygulamalar", "analyzeDriveB": "Analiz et", "startupTab": "Başlangıç", "appsTab": "Ortak Uygulamalar", "cleanerTab": "Temizleyici", "pingerTab": "Pinger", "registryFixerTab": "Kayıt Defteri", "integratorTab": "Entegratör", "optionsTab": "Seçenekler", "oldMixerSw": "Klasik Hacim Karıştırıcısını Etkinleştir", "oldExplorerSw": "Hızlı Erişim Geçmişini Devre Dışı Bırak", "adsSw": "Başlat Menüsü Reklamlarını Devre Dışı Bırak", "uODSw": "OneDrive'ı Kaldır", "peopleSw": "Kişilerimi Devre Dışı Bırak", "longPathsSw": "Uzun Yolları(Long Path) Etkinleştir", "autoUpdatesSw": "Otomatik Güncellemeleri Devre Dışı Bırak", "driversSw": "Sürücüleri Güncellemelerden Çıkarın", "telemetryServicesSw": "Telemetri Hizmetlerini Devre Dışı Bırak", "privacySw": "Gizliliği Geliştirin", "ccSw": "Bulut Panosunu Devre Dışı Bırak", "cortanaSw": "Cortana'yı Devre Dışı Bırak", "sensorSw": "Sensör Hizmetlerini Devre Dışı Bırak", "castSw": "Cihaza Yayını(Cast to device) Kaldır", "inkSw": "Windows Mürekkebini Devre Dışı Bırak", "spellSw": "Yazım Denetimini Devre Dışı Bırak", "xboxSw": "Xbox Live'ı Devre Dışı Bırak", "gameBarSw": "Oyun Çubuğunu Devre Dışı Bırak", "insiderSw": "İçeriden Bilgilendirme Hizmetini Devre Dışı Bırak", "actionSw": "Bildirim Merkezini Devre Dışı Bırak", "disableOneDriveSw": "OneDrive'ı Devre Dışı Bırak", "tpmSw": "TPM 2.0 Kontrolünü Devre Dışı Bırak", "leftTaskbarSw": "Görev Çubuğunu Sola Hizala", "snapAssistSw": "Snap Assist'i devre dışı bırak", "widgetsSw": "Widgets Devre Dışı Bırak", "chatSw": "Sohbeti Devre Dışı Bırak", "smallerTaskbarSw": "Görev Çubuğunu Küçült", "classicRibbonSw": "Explorer'da Klasik Şeridi Etkinleştir", "classicContextSw": "Klasik Sağ Tıklama Menüsünü Etkinleştir", "refreshModernAppsButton": "Yenile", "uninstallModernAppsButton": "Kaldır", "txtModernAppsTitle": "İstenmeyen UWP Uygulamalarını Kaldırın", "chkSelectAllModernApps": "Hepsini seç", "chkOnlyRemovable": "Yalnızca Kaldırılabilir Olanlar", "flushDNSMessage": "Windows'un DNS önbelleğini temizlemek istediğinizden emin misiniz?\n\nBu, bir an için internet bağlantısının kesilmesine neden olur ve düzgün çalışması için yeniden başlatma gerekebilir.", "startupTitle": "Başlangıç öğelerinizi seçin", "removeStartupItemB": "Kaldır", "locateFileB": "Dosyayı bul", "findInRegB": "Kayıt Defterinde Bul", "refreshStartupB": "Yenile", "restoreStartupB": "Onar", "backupStartupB": "Yedekle(Backup)", "lblBackupTitle": "Yedekleme Başlığı:", "doBackup": "TAMAM", "cancelBackup": "İptal", "startupItemName": "İsim", "startupItemLocation": "Konum", "startupItemType": "Tür", "txtFeedError": "İnternet bağlantısı yok, bağlantıları yenilemeyi tekrar deneyin", "appsTitle": "Yararlı uygulamaları indirin ve kurun", "btnGetFeed": "Bağlantıları yenile", "bitPref": "Bit tercihini ayarla", "linkWarnings": "Uyarılara Bakın", "txtDownloadStatus": "Boşta", "goToDownloadsB": "İndirilenler'e git", "btnDownloadApps": "İndir", "cAutoInstall": "İndirdikten sonra kurun", "setDownDirLbl": "İndirme klasörünü ayarla", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Hepsini seç", "checkTemp": "Geçici Dosyalar", "checkLogs": "Windows Logları", "checkMiniDumps": "BSOD Minidumps", "checkBin": "Geri Dönüşüm Kutusu", "checkMediaCache": "Medya Oynatıcı Önbelleği", "checkErrorReports": "Hata Raporları", "cleanDriveB": "Temiz", "lblPretext": "Serbest bırakılacak boyut:", "cleanerTitle": "Sistem sürücünüzü temizleyin", "pingerTitle": "IP adreslerine ping atın ve gecikmenizi değerlendirin", "lblPinger": "IP / Domain adı", "btnOpenNetwork": "Ağ Bağlantılarını Aç", "copyIPB": "Kopyala", "copyB": "IP Kopyala", "btnShodan": "SHODAN.io'dan Kontrol Et", "btnPing": "Ping", "lblResults": "Sonuçlar", "flushCacheB": "DNS Önbelleğini Temizle", "btnExport": "Dışarı Aktar", "hostsTitle": "Hosts dosyanızı verimli bir şekilde düzenleyin", "linkLocate": "Belirle", "linkAdvancedEdit": "Gelişmiş Düzenleyici(Editor)", "linkRestoreDefault": "Varsayılana Döndür", "lblIP": "IP adresi", "lblDomain": "Domain", "chkBlock": "Blok", "addHostB": "Ekle", "lblLock": "HOSTS dosyanızı kilitleyerek koruyun", "chkReadOnly": "Read-only", "lblAdblock": "Önceden Hazırlanmış Reklam Blokları", "lblAdblockSub": "(geçerli yapılandırmanızı{config} siler)", "adblockS": "Reklam Engelleyici + Sosyal", "adblockP": "Reklam Engelleyici + Porno", "removeHostB": "Kaldır", "refreshHostsB": "Yenile", "removeAllHostsB": "Hepsini Kaldır", "regFixB": "Düzelt", "regLbl": "(bazı değişiklikler buna ihtiyaç duyabilir)", "checkRestartExplorer": "Ayrıca değişiklikleri uygulamak için Explorer'ı yeniden başlatın", "checkRegistryEditor": "Kayıt Defteri Düzenleyici", "checkFirewall": "Windows Güvenlik Duvarı", "checkContextMenu": "Sağ Tık Menüsü", "checkRunDialog": "Çalıştır(Run Dialog Box)", "checkFolderOptions": "Dosya Seçenekleri", "checkControlPanel": "Denetim Masası", "checkCommandPrompt": "Komut İstemi", "checkTaskManager": "Görev Yöneticisi", "checkEnableAll": "Hepsini Etkinleştir", "registryTitle": "Yaygın kayıt defteri sorunlarını düzeltin", "quickAccessToggle": "Hızlı Erişim Menüsünü Göster", "helpTipsToggle": "Yardım Mesajlarını Göster", "lblTheming": "Temanızı seçin", "radioOcean": "Ocean", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Lime", "radioMinimal": "Minimal", "lblUpdating": "Kontrol et ve güncelle", "btnUpdate": "Güncellemeleri kontrol et", "btnChangelog": "Değişiklikleri görüntüle", "lblUpdateDisabled": "Deneysel yapılarda devre dışı bırakıldı", "lblTroubleshoot": "Sorun giderme", "btnViewLog": "Hataları görüntüle", "btnOpenConf": "Yapılandırma klasörünü göster", "btnResetConfig": "Onarım", "integrator1": "Entegratör tamamen özelleştirilmiş ekleyebilir\nMasaüstü sağ tıklama menüsündeki öğeler:", "integrator2": "• Herhangi bir program", "integrator3": "• Klasörlere kısayollar", "integrator4": "• Web bağlantıları", "integrator5": "• Herhangi bir dosya türü", "integrator6": "• Komutlar", "integrator7": "Öğelerin özel simgeleri ve konumu olabilir.\nGizlenebilir öğeler, yalnızca SHIFT tuşuna basılarak erişilebilirler.\nAyrıca Diyalog için özel komutlar oluşturarak,\nbir uygulamayı istediğiniz anahtar kelimeyi yazarak başlatmayı kolaylaştırır.", "integratorInfoTab": "Bilgi", "tabPage8": "Ekle/Değiştir", "tabPage9": "Kaldır", "tabPage10": "Hazır Menüler", "tabPage11": "Özel Çalıştır(Run Dialog Box) Komutları", "addItemL": "Öğe ekle veya değiştir", "itemtype": "Öğe türü", "radioProgram": "Program", "radioFolder": "Klasör", "radioLink": "Link", "radioFile": "Dosya", "radioCommand": "Komut", "itemtoaddgroup": "Eklenecek program", "folderToAdd": "Eklenecek klasör", "linkToAdd": "Eklenecek bağlantı", "fileToAdd": "Eklenecek dosya", "commandToAdd": "Eklenecek komut", "icontoaddgroup": "Eklenecek simge", "checkDefaultIcon": "Programın simgesini kullanın", "checkDefaultFolderIcon": "Varsayılan klasör simgesini kullan", "checkFavicon": "Web sitesi simgesini (favicon) indirin", "checkNoIcon": "Simge yok", "dnsCacheM": "DNS Önbelleği oluşturuluyor, daha sonra tekrar deneyin!", "itemposition": "Öğe konumu", "radioTop": "Üst", "radioMiddle": "Orta", "radioBottom": "Alt", "security": "Güvenlik", "checkShift": "Yalnızca SHIFT'e basıldığında göster", "itemnamegroup": "Menüdeki öğe adı", "btnAddItem": "Ekle/Değiştir", "removeIntegratorItemsL": "Mevcut Masaüstü öğelerini kaldırın", "removeDIB": "Kaldır", "refreshIIB": "Yenile", "removeAllIIB": "Hepsini kaldır", "PMB": "Güç Menüsü Ekle", "STB": "Sistem Araçları Ekle", "WAB": "Windows Uygulamaları Ekle", "SSB": "Sistem Kısayolları Ekle", "DSB": "Masaüstü Kısayolları Ekle", "AddOwnerB": "Sahip Ekle", "RemoveOwnerB": "Sahip Kaldır", "AddCMDB": "CMD ile aç Ekle", "DeleteCMDB": "CMD ile aç Kaldır", "readyMenusL": "Kullanışlı, önceden hazırlanmış menüler ekleyin", "refreshCCB": "Yenile", "removeCCB": "Kaldır", "removeCCL": "Mevcut komutları kaldır", "btnCreateCustomCommand": "Oluştur", "ccKeywordL": "anahtar kelime", "ccFileL": "Dosya konumu", "ccL": "Özel Çalıştır(Run Dialog Box) komutlarınızı tanımlayın", "btnYes": "Evet", "btnNo": "Hayır", "btnOk": "Tamam", "HostsEditorForm": "Hosts Düzenleyici(Editor)", "savebtn": "Kaydet", "closebtn": "Kapat", "alreadyRunningMsg": "Optimizer edici zaten arka planda çalışıyor!", "adminMissingMsg": "Optimize edicinin yönetici olarak çalıştırılması gerekiyor!\nUygulama şimdi kapanacak...", "unsupportedMsg": "Optimize Edici, Windows 7 veya sonraki sürümlerde çalışır!\nUygulama şimdi kapanacak...", "confInvalidVersionMsg": "Windows sürümü eşleşmiyor!", "confInvalidFormatMsg": "Yapılandırma(Config) dosyası geçersiz biçimde!", "confNotFoundMsg": "Yapılandırma(Config) dosyası mevcut değil!", "argInvalidMsg": "Geçersiz argüman! Örnek: Optimizer.exe /template.json", "StartupPreviewForm": "Başlangıç Öğeleri Önizlemesi", "StartupRestoreForm": "Başlangıç Öğelerini Geri Yükle", "backupL": "Başlangıç Öğelerinizi Kurtarın", "txtNoBackups": "Yedek bulunamadı", "previewBackupB": "Önizleme", "restoreBackupB": "Onar", "deleteBackupB": "Sil", "noNewVersion": "Zaten en son sürüme sahipsiniz!", "betaVersion": "Deneysel bir sürüm kullanıyorsunuz!", "removeAllStartup": "Tüm başlangıç öğelerini silmek istediğinizden emin misiniz?", "removeAllHosts": "Tüm ana bilgisayar(hosts) girişlerini silmek istediğinizden emin misiniz?", "removeAllItems": "Tüm masaüstü öğelerini silmek istediğinizden emin misiniz?", "removeModernApps": "Seçilen uygulamaları kaldırmak istediğinizden emin misiniz?", "errorModernApps": "Seçilen uygulamalar kaldırılamadı:\n", "resetMessage": "Uygulama çıkacak ve kendini onarmaya çalışacak.", "newVersion": "Yeni bir sürüm mevcut! Şimdi indirmek istiyor musunuz?\nUygulama birkaç saniye içinde yeniden başlayacaktır.", "downloadsFinished": "Tamamlandı", "latestVersionM": "En son sürüm: {LATEST}", "currentVersionM": "Şimdiki versiyonu: {CURRENT}", "downloadDirInvalid": "Belirtilen indirme klasörü geçerli değil", "no64Download": "64 bit mevcut değil, 32 bit indiriliyor", "no32Download": "32 bit mevcut değil, atlanıyor", "installing": "Kuruluyor", "linkInvalid": "Bağlantı artık geçerli değil", "noErrorsM": "Gösterilecek hata yok!", "hostNotFound": "Ana bilgisayar(host) bulunamadı", "pinging": "32 baytla pingleniyor - 9 defa...", "latency": "GECİKME", "lblSystemTools": "Sistem ve Araçlar", "lblInternet": "Internet", "lblCoding": "Kodlama", "lblVideoSound": "Video ve Ses", "min": "Minimum", "max": "Maks.", "avg": "Ortalama", "timeout": "İstek zaman aşımına uğradı", "languagesL": "Dil seçiniz", "trayStartup": "Başlangıç Yöneticisi", "trayCleaner": "Sürücü Temizleyici", "trayPinger": "Pinger Aracı", "trayHosts": "HOSTS Editor", "trayAD": "Uygulama İndirici", "trayOptions": "Seçenekler", "trayRegistry": "Kayıt defteri onarımı", "trayRestartExplorer": "Explorer'ı yeniden başlatın", "trayExit": "Çıkış", "tipWhatsThis": "Bu nedir?", "hwDetailed": "Detaylı gorunum", "btnCopyHW": "kopyala", "btnSaveHW": "Kayıt etmek", "indiciumTab": "Donanım", "toolHWCopy": "kopyala", "toolHWGoogle": "Aramak Google", "toolHWDuck": "Aramak DuckDuckGo", "trayHW": "Donanım", "os": "İşletim sistemi", "cpu": "işlemciler", "ram": "Hafıza", "gpu": "Grafik", "mobo": "Anakartlar", "disk": "Depolamak", "inet": "Ag Bagdaştırıcıları", "audio": "Ses", "dev": "Cevre birimleri", "vm": "Sanal bellek", "drives": "Disk suruculeri", "volumes": "Bolumler", "opticals": "Optik suruculer", "removables": "Cıkarılabilir suruculer", "physicalAdapters": "Fiziksel Adaptorler", "virtualAdapters": "Sanal Bagdastırıcılar", "keyboards": "Klavyeler", "pointings": "Isaret Aygıtları", "performanceTip": "Performansı optimize etmek için dahili Windows ayarlarının toplanması. Uygulanması tamamen güvenlidir. - Yanıt vermeyen süreçleri öldürmeden önce bekleme süresini azaltır. - Menü gösterme gecikme süresini azaltır. - Düşük disk alanı kontrol bildirimini devre dışı bırakır - En aza indirmek için salla özelliğini devre dışı bırakır - Her zaman dosya uzantılarını gösterir - Gizli dosyaları gösterir", "networkTip": "Windows, multimedya uygulamalarını çalıştırırken ağ trafiğini kısıtlayacak bir ağ kısıtlama mekanizması uygular. Ayrıca çevrimiçi oyunlar oynarken ağın performansını da düşürebilir.", "defenderTip": "Windows Defender, Windows sistemlerinde yerleşik antivirüs yazılımıdır.", "smartScreenTip": "SmartScreen dosyaları, indirmeleri ve web sitelerini otomatik olarak tarar. Zaten bilinen tehlikeli içeriği engeller ve çalıştırmadan önce sizi uyarır.", "systemRestoreTip": "Sistem Geri Yükleme, arızalardan veya diğer sorunlardan kurtulmak için Windows'un durumunu bir öncekine döndürmeyi sağlayan bir özelliktir.", "reportingTip": "Hata Raporlama, uygulama çökmelerini ve hatalarını toplar ve bunları Microsoft'a gönderir.", "telemetryTasksTip": "Telemetri hizmetleri, gelecekteki iyileştirmeler için düzenli aralıklarla kullanım ve performans verilerini Microsoft'a gönderir.", "officeTelemetryTip": "Office telemetrisi, gelecekteki iyileştirmeler için düzenli aralıklarla kullanım ve performans verilerini Microsoft'a gönderir.", "ffTelemetryTip": "Mozilla Firefox telemetri ve veri raporlama hizmetlerini devre dısı bırakır.", "vsTip": "SQM istemcisi de dahil olmak üzere Visual Studio telemetri ve geri bildirim ozelliklerini devre dısı bırakır.", "chromeTelemetryTip": "Google Chrome telemetri ve yazılım raporlama aracını devre dısı bırakır (yuksek CPU kullanımına neden oldugu bilinmektedir).", "printTip": "Yazıcıların algılanmasından, kurulmasından ve kullanılmasından yazdırma hizmeti sorumludur.", "faxTip": "Faks servisi, faks gönderip almaktan sorumludur..", "mediaSharingTip": "Media Player Sharing, Windows Media Player için ev medyası paylaşımı sağlar.", "stickyTip": "Yapışkan Tuşlar, fiziksel engelli Windows kullanıcılarının tekrarlayan zorlanma yaralanmalarıyla ilişkili hareket türünü azaltmasına yardımcı olan bir erişilebilirlik özelliğidir.", "homegroupTip": "Ev Grubu, Windows Gezgini'ni kullanarak bir ev ağındaki dosyaların paylaşılmasına izin veren bir özelliktir.", "superfetchTip": "Superfetch, yaygın olarak kullanılan uygulamaları RAM'e önceden yükler ve özellikle HDD'lerde yüksek disk kullanımına neden olur.", "compatTip": "Uyumluluk Yardımcısı hizmeti, eski programlarda bilinen uyumluluk sorunlarını algılar.", "disableOneDriveTip": "OneDrive bulut depolama entegrasyonunu devre dışı bırakır.", "oldMixerTip": "Klasik ses mikseri kontrol panelini geri yükler.", "oldExplorerTip": "Windows Gezgini'nde Hızlı Erişim'i devre dışı bırakın ve sık dosyaları kaldırın.", "adsTip": "Başlat Menüsünde reklamların görünmesini engeller.", "uODTip": "OneDrive bulut depolama entegrasyonunu tamamen kaldırır.", "peopleTip": "Kişilerim, görev çubuğunda en son kişileri gösteren yeni bir özelliktir.", "longPathsTip": "256 karakterlik maksimum yol uzunluğu sınırlamasını kaldırır.", "inkTip": "Windows Ink, ekranda çizim yapmak için dijital kalemler için destek sağlar.", "spellTip": "Yalnızca dokunmatik klavye gibi özellikler: - Otomatik düzeltme - Metin önerileri - Yazım denetimi", "xboxTip": "Xbox Live hizmetleri, Xbox oyunları için akış, kayıt ve sosyal özellikler sunar.", "actionTip": "Bildirim Merkezi, bildirimler ve hızlı eylem kutucukları için merkezi bir yerdir. Wi-Fi, Bluetooth vb.", "autoUpdatesTip": "Windows güncellemelerinin otomatik olarak indirilmesini ve yüklenmesini devre dışı bırakır. Bunun yerine, yeni güncellemeler mevcut olduğunda bir bildirim var. Ayrıca Teslimat Optimizasyonu hizmetini de devre dışı bırakır.", "driversTip": "Windows Update, düzgün çalışan bir sürücüyü sürekli olarak hatalı bir sürücüyle değiştirdiğinde kullanışlıdır.", "telemetryServicesTip": "Telemetri hizmetleri, Microsoft'a analiz için geri bildirim göndererek kullanım verilerini izler ve günlüğe kaydeder.", "privacyTip": "Aşağıdakileri devre dışı bırakan ekstra gizlilik ayarları: - Biyometri - Coğrafi konum - Uygulamaları cihazlar arasında paylaşın - Metin kaydedici - Teşhis", "ccTip": "Cloud Clipboard, pano verilerini cihazlarınız arasında paylaşır. Bir cihaza kopyalayıp diğerine yapıştırmaya izin verir. Microsoft hesabında oturum açmayı gerektirir.", "cortanaTip": "Cortana, sanal bir AI tabanlı asistandır. - Cortana'yı devre dışı bırakın. - Başlat Menüsünde web aramasını devre dışı bırakın - Arama geçmişinin tutulmasını engeller", "sensorTip": "Sensörlerin işlevselliğini yöneten hizmetler, otomatik döndürme, otomatik parlaklık vb. Yalnızca dokunmatik ekranlı tabletler veya cihazlar için kullanışlıdır.", "castTip": "Medya içeriğini Miracast cihazlarıyla paylaşmak için sağ tıklamayı kaldırır.", "gameBarTip": "Oyun Çubuğu, Xbox oyun hizmetleri için hızlı erişim menüsüdür.", "insiderTip": "Windows Insider programı, en son özellikleri halka açıklanmadan önce test etmenize olanak tanır. Katılmak istemeyen kullanıcılar için gereksiz bir hizmet olarak kabul edilir.", "tpmTip": "Güvenli Önyükleme ve TPM 2.0 gereksinimlerini atlayarak Windows 11'e yükseltmeye izin verir.", "leftTaskbarTip": "Görev çubuğu simgelerini sola hizalar.", "snapAssistTip": "Büyütme düğmeleri üzerinde gezinirken Snap Assist Flyout'u devre dışı bırakın.", "widgetsTip": "Widget'lar özelliğini devre dışı bırakır ve Widget'lar simgesini görev çubuğundan kaldırır.", "chatTip": "Görev çubuğundan Sohbet simgesini kaldırır.", "smallerTaskbarTip": "Görev çubuğunun boyutunu ve simgelerini küçültür.", "classicRibbonTip": "Dosya Gezgini'nde Windows 10'dan klasik şerit çubuğunu geri yükler.", "classicContextTip": "'Daha fazla seçenek göster' seçeneğini kaldırarak klasik sağ tıklama menüsünü geri yükler.", "gameModeSw": "Oyun Modunu Etkinleştir", "gameModeTip": "Donanım hızlandırmalı GPU zamanlaması ile birlikte Oyun modunu etkinleştirir.", "compactModeSw": "Explorer'da Kompakt Modu Etkinleştir", "compactModeTip": "Dosya Gezgini'ndeki dosyalar arasındaki fazladan boşluğu ve dolguyu azaltır.", "stickersTip": "Çıkartmalar, sosyal mesajlaşma programlarında kullanılan duvar kağıtlarında görünen büyük emojilerdir.", "hibernateSw": "Hazırda Bekletmeyi Devre Dışı Bırak", "hibernateTip": "Windows hazırda bekletme özelliğini devre dışı bırakır.", "smb1Sw": "SMBv1 Protokolünü Devre Dışı Bırak", "smb2Sw": "SMBv2 Protokolünü Devre Dışı Bırak", "smbTip": "SMB{v} protokolü, Windows bilgisayarlar arasında dosya paylaşımından sorumludur. Daha güvenli olan SMBv3 ile değiştirildi.", "ntfsStampSw": "NTFS Zaman Damgasını Devre Dışı Bırak", "ntfsStampTip": "Dosyanın en son erişilen damgasını gösterir. Devre dışı bırakmak, disklerdeki G/Ç işlemlerini azaltabilir.", "autoStartToggle": "Windows başla", "nvidiaTelemetrySw": "NVIDIA Telemetrisini Devre Dışı Bırak", "dnsTitle": "DNS sunucusunu hızla değiştirin", "vbsSw": "Sanallaştırma Tabanlı Güvenliği Devre Dışı Bırak", "vbsTip": "Kötü amaçlı sürücülerin işlemlere eklenmesini önleyen çekirdek özelliği. Performansa olumsuz etkisi vardır.", "winSearchSw": "Aramayı Devre Dışı Bırak", "winSearchTip": "Windows arama hizmetini devre dışı bırakır.", "storeUpdatesSw": "Microsoft Store Güncellemelerini Devre Dışı Bırak", "storeUpdatesTip": "Microsoft Mağazası otomatik güncellemeler işlevini devre dışı bırakır.", "btnRestoreUwp": "Tüm UWP'yi geri yükle", "restoreUwpMessage": "Bunu yapmak istediğinizden emin misiniz?", "telemetrySvcToggle": "Optimize Edici Telemetriyi Devre Dışı Bırak", "edgeAiSw": "Edge Discover'ı Devre Dışı Bırak", "edgeTelemetrySw": "Edge Telemetrisini Devre Dışı Bırak", "edgeAiTip": "Edge'deki Discover Bar'ı kaldırır.", "edgeTelemetryTip": "Edge'de SmartScreen, Spotlight ve Telemetri hizmetlerini devre dışı bırakır.", "hpetSw": "HPET'i devre dışı bırak", "loginVerboseSw": "Ayrıntılı Oturum Açma Ekranını Etkinleştir", "advancedTab": "Gelişmiş", "btnRestartSafe": "Güvenli Modda Yeniden Başlatın", "btnRestart": "Normal Modda Yeniden Başlat", "btnRestartDisableDefender": "Yeniden Başlat && Defender'ı Devre Dışı Bırak", "classicPhotoViewerSw": "Klasik Fotoğraf Görüntüleyiciyi Geri Yükle", "tabPage3": "Yazı Tipleri", "fontSetTitle": "Favori yazı tipinizi Windows varsayılan yazı tipi olarak ayarlayın", "label11": "Geçerli yazı tipi:", "btnSetGlobalFont": "Varsayılan olarak ayarla", "lblFontsCount": "Kullanılabilir yazı tipleri:", "btnRestoreFont": "Varsayılana Döndür", "btnRefreshFonts": "Yenile", "chkAllNics": "Tüm ağ bağdaştırıcıları için ayarla", "chkCustomDns": "Özel DNS ayarla", "btnSetDns": "DNS ayarla", "copilotSw": "CoPilot AI'yı Devre Dışı Bırak", "copilotTip": "CoPilot AI özelliğini tamamen kapatır.", "btnReinforce": "Politikaları Güçlendir", "msgReinforce": "Şu anki politikalarınızı tekrar uygulamak istediğinizden emin misiniz?", "newsInterestsSw": "Başlıkları ve ilgileri devre dışı bırak", "allTrayIconsSw": "Tüm bildirim simgelerini göster", "noMenuDelaySw": "Menü gecikmesini kaldır", "hideSearchSw": "Görev çubuğundaki aramayı gizle", "hideWeatherSw": "Görev çubuğundaki hava durumunu gizle", "autoUpdateToggle": "Başlangıçta güncelle", "enableUtcSw": "UTC Saati Etkinleştir", "modernStandbySw": "Modern bekleme modunu devre dışı bırak", "label24": "Sistem Değişkenleri düzenleyicisi", "label23": "Yeni sistem değişkeni yolu:", "button3": "Ekle", "label21": "Sistem Değişkenleri", "button1": "Sil", "button2": "Yenile" } ================================================ FILE: Optimizer/Resources/i18n/TW.json ================================================ { "subSystem": "系統", "subPrivacy": "隱私", "subGaming": "遊戲", "subTouch": "觸控", "subTaskbar": "工作列", "subExtras": "額外功能", "btnAbout": "確定", "restartButton": "立即重新啟動", "restartButton8": "立即重新啟動", "restartButton10": "立即重新啟動", "restartAndApply": "重新啟動以套用變更", "onedriveM": "您確定要移除 OneDrive 嗎?這將刪除您的桌面和文件檔案!僅在本機帳戶上使用此選項!", "txtVersion": "版本:{VN}", "systemRestoreM": "您確定要停用系統還原嗎?這將刪除您目前的備份映像!", "regBackupSw": "啟用註冊表備份", "txtBitness": "您正在使用 {BITS}", "btnFind": "尋找", "btnKill": "結束", "trayUnlocker": "檔案控制", "linkUpdate": "有可用更新", "lblLab": "實驗性建置\n(測試後刪除)", "performanceSw": "最佳化效能", "networkSw": "停用網路節流", "defenderSw": "停用 Windows Defender", "systemRestoreSw": "停用系統還原", "printSw": "停用列印服務", "mediaSharingSw": "停用媒體播放器共享", "faxSw": "停用傳真服務", "reportingSw": "停用錯誤報告", "homegroupSw": "停用家庭群組", "superfetchSw": "停用 Superfetch", "telemetryTasksSw": "停用遙測任務", "officeTelemetrySw": "停用 Office 遙測", "vsSW": "停用 Visual Studio 遙測", "ffTelemetrySw": "停用 Mozilla Firefox 遙測", "chromeTelemetrySw": "停用 Google Chrome 遙測", "compatSw": "停用相容性助理", "smartScreenSw": "停用 SmartScreen", "stickySw": "停用相黏鍵", "universalTab": "通用", "modernAppsTab": "UWP 應用程式", "analyzeDriveB": "分析", "startupTab": "開機自啟動", "appsTab": "常用應用程式", "cleanerTab": "磁碟清理", "pingerTab": "Ping 工具", "registryFixerTab": "登錄檔", "integratorTab": "選單整合", "CleanPreviewForm": "清理預覽", "optionsTab": "偏好設定", "oldMixerSw": "啟用傳統音量混合器", "oldExplorerSw": "還原傳統檔案總管", "adsSw": "停用開始功能表廣告", "uODSw": "移除 OneDrive", "peopleSw": "停用我的人脈", "longPathsSw": "停用路徑長度限制", "autoUpdatesSw": "停用自動更新", "driversSw": "從更新中排除驅動程式", "telemetryServicesSw": "停用遙測服務", "privacySw": "加強隱私", "ccSw": "停用雲端剪貼簿", "cortanaSw": "停用 Cortana", "sensorSw": "停用感應器服務", "castSw": "移除投射至裝置", "inkSw": "停用 Windows Ink", "spellSw": "停用拼字檢查", "xboxSw": "停用 Xbox Live", "gameBarSw": "停用遊戲列", "insiderSw": "停用 Insider 服務", "actionSw": "停用通知中心", "disableOneDriveSw": "停用 OneDrive", "tpmSw": "停用 TPM 檢查", "leftTaskbarSw": "工作列向左對齊", "snapAssistSw": "停用 Snap 助理", "widgetsSw": "停用小工具", "chatSw": "停用聊天", "stickersSw": "停用貼圖", "smallerTaskbarSw": "縮小工作列大小", "classicRibbonSw": "在檔案總管中啟用傳統功能區", "classicContextSw": "啟用傳統右鍵選單", "refreshModernAppsButton": "重新整理", "uninstallModernAppsButton": "移除", "txtModernAppsTitle": "移除不需要的 UWP 應用程式", "chkSelectAllModernApps": "全選", "chkOnlyRemovable": "僅可移除的應用程式", "flushDNSMessage": "您確定要清除 Windows 的 DNS 快取嗎?\n\n這將會短暫地中斷網路連線,並可能需要重新啟動才能正常運作。", "startupTitle": "選擇開機自啟動項目", "removeStartupItemB": "刪除", "locateFileB": "定位檔案", "findInRegB": "在登錄檔中搜尋", "refreshStartupB": "重新整理", "restoreStartupB": "還原", "backupStartupB": "備份", "lblBackupTitle": "備份標題:", "doBackup": "確定", "cancelBackup": "取消", "startupItemName": "名稱", "startupItemLocation": "位置", "startupItemType": "類型", "txtFeedError": "無網路連線,請再次嘗試重新整理連結", "appsTitle": "快速下載 && 安裝實用應用程式", "btnGetFeed": "更新連結", "bitPref": "設定系統架構", "linkWarnings": "查看警告", "txtDownloadStatus": "閒置狀態", "goToDownloadsB": "前往下載資料夾", "btnDownloadApps": "下載", "cAutoInstall": "下載後自動安裝", "setDownDirLbl": "設定下載資料夾", "c64": "64 位元", "c32": "32 位元", "checkSelectAll": "全選", "checkTemp": "暫存檔案", "checkLogs": "Windows 日誌", "checkMiniDumps": "BSOD 最小轉儲", "checkBin": "清空資源回收筒", "checkMediaCache": "媒體播放器快取", "checkErrorReports": "錯誤報告", "cleanDriveB": "清理", "lblPretext": "可釋放的檔案大小:", "cleanerTitle": "清理您的系統磁碟", "pingerTitle": "Ping IP 位址並評估您的延遲", "lblPinger": "IP / 網域", "btnOpenNetwork": "開啟網路連線設定", "copyIPB": "複製", "copyB": "複製 IP", "btnShodan": "在網站檢查 IP", "btnPing": "Ping", "lblResults": "結果", "flushCacheB": "重新整理 DNS 快取", "btnExport": "匯出", "hostsTitle": "有效編輯您的 hosts 檔案", "linkLocate": "定位", "linkAdvancedEdit": "進階編輯", "linkRestoreDefault": "還原預設值", "lblIP": "IP 位址", "lblDomain": "網域", "chkBlock": "封鎖", "addHostB": "新增", "lblLock": "鎖定您的 HOSTS 檔案以保護", "chkReadOnly": "唯讀", "lblAdblock": "預先設定好的廣告封鎖", "lblAdblockSub": "(將刪除您目前的設定)", "adblockS": "廣告封鎖 + 社交網站", "adblockP": "廣告封鎖 + 色情網站", "removeHostB": "刪除", "refreshHostsB": "重新整理", "removeAllHostsB": "刪除全部", "regFixB": "修復", "regLbl": "(可能需要這樣做的一些變更)", "checkRestartExplorer": "同時重新啟動檔案總管以套用變更", "checkRegistryEditor": "登錄檔編輯器", "checkFirewall": "Windows 防火牆", "checkContextMenu": "右鍵選單", "checkRunDialog": "執行對話框", "checkFolderOptions": "資料夾選項", "checkControlPanel": "控制台", "checkCommandPrompt": "命令提示字元", "checkTaskManager": "工作管理員", "checkEnableAll": "全部啟用", "registryTitle": "修復常見登錄檔問題", "quickAccessToggle": "顯示快速存取選單", "helpTipsToggle": "顯示說明訊息", "lblTheming": "選擇主題", "radioOcean": "海洋", "radioMagma": "岩漿", "radioZerg": "蟲族", "radioCaramel": "焦糖", "radioLime": "萊姆", "radioMinimal": "極簡", "lblUpdating": "檢查 && 更新", "btnUpdate": "檢查更新", "btnChangelog": "查看更新日誌", "lblUpdateDisabled": "實驗版本中停用", "lblTroubleshoot": "故障排除", "btnViewLog": "查看錯誤", "btnOpenConf": "顯示設定資料夾", "btnResetConfig": "修復", "integrator1": "整合器能夠在桌面右鍵選單中新增完全自訂的項目:", "integrator2": "• 任何程式", "integrator3": "• 資料夾捷徑", "integrator4": "• 網路連結", "integrator5": "• 任意類型檔案", "integrator6": "• 命令", "integrator7": "項目可以具有自訂的圖示和位置。它們還可以被隱藏,僅在按下 SHIFT 鍵時可存取。它還可以為「執行」對話框建立自訂命令,方便僅通過輸入所需關鍵字即可啟動任意應用程式。", "integratorInfoTab": "資訊", "tabPage8": "新增/修改", "tabPage9": "刪除", "tabPage10": "右鍵選單", "tabPage11": "執行對話框", "addItemL": "新增或修改項目", "itemtype": "項目類型", "radioProgram": "程式", "radioFolder": "資料夾", "radioLink": "連結", "radioFile": "檔案", "radioCommand": "命令", "itemtoaddgroup": "要新增的項目", "folderToAdd": "要新增的資料夾", "linkToAdd": "要新增的連結", "fileToAdd": "要新增的檔案", "commandToAdd": "要新增的命令", "icontoaddgroup": "要新增的圖示", "checkDefaultIcon": "使用程式的圖示", "checkDefaultFolderIcon": "使用預設資料夾圖示", "checkFavicon": "下載網站圖示(favicon)", "checkNoIcon": "無圖示", "dnsCacheM": "DNS 快取正在生成,請稍後再試!", "itemposition": "項目位置", "radioTop": "頂端", "radioMiddle": "中間", "radioBottom": "底端", "security": "安全性", "checkShift": "僅在按下 SHIFT 時顯示", "itemnamegroup": "選單中的項目名稱", "btnAddItem": "新增/修改", "removeIntegratorItemsL": "刪除現有桌面項目", "removeDIB": "刪除", "refreshIIB": "重新整理", "removeAllIIB": "刪除全部", "PMB": "新增「電源選單」", "STB": "新增「系統工具」", "WAB": "新增「Windows 應用程式」", "SSB": "新增「系統捷徑」", "DSB": "新增「桌面捷徑」", "AddOwnerB": "新增「取得擁有權」", "RemoveOwnerB": "刪除「取得擁有權」", "AddCMDB": "新增「使用 CMD 開啟」", "DeleteCMDB": "刪除「使用 CMD 開啟」", "readyMenusL": "新增實用的右鍵選單", "refreshCCB": "重新整理", "removeCCB": "刪除", "removeCCL": "刪除現有命令", "btnCreateCustomCommand": "建立", "ccKeywordL": "關鍵字", "ccFileL": "檔案位置", "ccL": "定義自訂的執行命令", "btnYes": "是", "btnNo": "否", "btnOk": "確定", "HostsEditorForm": "Hosts 編輯器", "savebtn": "儲存", "closebtn": "關閉", "adminMissingMsg": "最佳化器需要以管理員身份執行!\n應用程式現在將關閉...", "unsupportedMsg": "最佳化器僅適用於 Windows 7 及更高版本!\n應用程式現在將關閉...", "confInvalidVersionMsg": "系統版本不符!", "confInvalidFormatMsg": "設定檔案格式無效!", "confNotFoundMsg": "找不到設定檔案!", "argInvalidMsg": "無效的參數!範例:Optimizer.exe /template.json", "alreadyRunningMsg": "最佳化器已在背景執行!", "StartupPreviewForm": "啟動項目預覽", "StartupRestoreForm": "還原啟動項目", "backupL": "還原啟動項", "txtNoBackups": "找不到備份", "previewBackupB": "預覽", "restoreBackupB": "還原", "deleteBackupB": "刪除", "noNewVersion": "您已經擁有最新版本!", "betaVersion": "您正在使用實驗版本!", "removeAllStartup": "您確定要刪除所有啟動項目嗎?", "removeAllHosts": "您確定要刪除所有 hosts 條目嗎?", "removeAllItems": "您確定要刪除所有桌面項目嗎?", "removeModernApps": "您確定要解除安裝以下應用程式嗎?", "errorModernApps": "以下應用程式無法解除安裝:\n", "resetMessage": "應用程式將退出並嘗試自行修復。", "newVersion": "有新版本可用!您是否要立即下載?\n應用程式將在幾秒鐘後重新啟動。", "latestVersionM": "最新版本:{LATEST}", "currentVersionM": "目前版本:{CURRENT}", "downloadsFinished": "已完成", "downloadDirInvalid": "指定的下載資料夾無效", "no64Download": "沒有 64 位元版本可用,正在下載 32 位元版本", "no32Download": "沒有 32 位元版本可用,跳過", "installing": "正在安裝", "linkInvalid": "連結已失效", "noErrorsM": "沒有要顯示的錯誤!", "hostNotFound": "找不到主機", "pinging": "使用 32 位元組 Ping - 9 次...", "latency": "延遲", "lblSystemTools": "系統 && 工具", "lblInternet": "網路", "lblCoding": "程式設計", "lblVideoSound": "影片 && 音訊", "min": "最小", "max": "最大", "avg": "平均", "timeout": "請求超時", "languagesL": "選擇語言", "trayStartup": "啟動管理器", "trayCleaner": "磁碟清理", "trayPinger": "Ping 工具", "trayHosts": "HOSTS 編輯器", "trayAD": "應用程式下載器", "trayOptions": "偏好設定", "trayRegistry": "登錄檔修復", "trayRestartExplorer": "重新啟動檔案總管", "trayExit": "退出", "tipWhatsThis": "這是什麼?", "hwDetailed": "詳細檢視", "btnCopyHW": "複製", "btnSaveHW": "儲存", "indiciumTab": "硬體", "toolHWCopy": "複製", "toolHWGoogle": "使用 Google 搜尋", "toolHWDuck": "使用 DuckDuckGo 搜尋", "trayHW": "硬體資訊", "os": "作業系統", "cpu": "處理器", "ram": "記憶體", "gpu": "顯示卡", "mobo": "主機板", "disk": "儲存裝置", "inet": "網路卡", "audio": "音訊", "dev": "周邊裝置", "vm": "虛擬記憶體", "drives": "磁碟", "volumes": "分區", "opticals": "光碟機", "removables": "可移除裝置", "physicalAdapters": "實體網路卡", "virtualAdapters": "虛擬網路卡", "keyboards": "鍵盤", "performanceTip": "收集內部 Windows 設定以最佳化效能。 使用上完全安全。 - 減少強制終止無回應應用程式之前的等待時間。 - 減少選單顯示延遲時間。 - 停用低磁碟空間檢查通知 - 停用搖晃視窗最小化功能 - 始終顯示檔案副檔名 - 顯示隱藏檔案", "networkTip": "Windows 實現了一個網路節流機制,該機制將限制 執行多媒體應用程式時的網路流量。它還可以降低網路的佔用 在玩網路遊戲時的表現。", "defenderTip": "Windows Defender 是 Windows 系統內建的防病毒軟體。", "smartScreenTip": "SmartScreen 自動掃描檔案、下載和網站,阻擋 已知的危險內容,並在執行它們之前警告您。", "systemRestoreTip": "系統還原是一個功能,允許將 Windows 的狀態 還原到先前的狀態以還原故障或其他問題。", "reportingTip": "錯誤報告收集應用程式崩潰和錯誤並將它們傳送給微軟。", "telemetryTasksTip": "遙測服務定期向微軟傳送使用和效能資料, 以便未來改進。", "officeTelemetryTip": "Office 遙測定期傳送使用情況和 效能資料到微軟,以便未來改進。", "ffTelemetryTip": "停用 Mozilla Firefox 遙測和資料報告服務。", "vsTip": "停用 Visual Studio 遙測和回饋功能,包括 SQM 用戶端。", "chromeTelemetryTip": "停用 Google Chrome 遙測和軟體報告工具 (可能會導致 CPU 使用率變高)。", "printTip": "列印服務負責檢測、安裝和使用印表機。", "faxTip": "傳真服務負責傳送和接收傳真。", "mediaSharingTip": "媒體播放器分享為 Windows 媒體播放器提供家庭媒體分享。", "stickyTip": "相黏鍵是一個幫助 Windows 使用者的輔助功能 對於身心障礙使用者減少了與之相關的運動以避免重複使力傷害。", "homegroupTip": "家庭群組是一個允許分享檔案的功能 在家庭網路中使用 Windows 檔案總管。", "superfetchTip": "Superfetch 會將常用應用程式預先載入到記憶體中,導致磁碟佔用率高, 尤其是在機械硬碟上更為明顯。", "compatTip": "相容性助理服務檢測舊程式中的已知相容性問題。", "disableOneDriveTip": "停用 OneDrive 雲端儲存整合。", "oldMixerTip": "恢復傳統的音量混合器控制面板。", "oldExplorerTip": "- 停用快速存取歷史記錄 - 將檔案總管預設檢視設定為「本機」 - 停用最近檔案 - 從工作列移除搜尋、任務和天氣 - 停用檔案歷史記錄功能", "adsTip": "阻止廣告顯示在開始選單。", "uODTip": "完全移除 OneDrive 雲端儲存整合。", "peopleTip": "我的人脈是一個在工作列顯示最近聯絡人的新功能。", "longPathsTip": "移除 256 個字元的最大路徑長度限制。", "inkTip": "Windows Ink 提供數位筆支援,可在螢幕上繪圖。", "spellTip": "僅使用觸控鍵盤的功能包括: - 自動校正 - 文字建議 - 拼字檢查", "xboxTip": "Xbox Live 服務為 Xbox 遊戲提供串流、錄製和社交功能。", "actionTip": "通知中心是一個通知和快速操作磁貼的中心位置, 例如 Wi-Fi、藍牙等。", "autoUpdatesTip": "停用自動下載和安裝 Windows 更新。 相反,當有新的更新可用時,會有一個通知。 它還停用了傳送最佳化服務。", "driversTip": "當 Windows 更新不斷替換一個適當的 有故障的工作磁碟。", "telemetryServicesTip": "遙測服務追蹤並記錄使用資料,傳送回饋 供微軟分析。", "privacyTip": "額外的隱私調整停用以下: - 生物識別技術 - 地理位置 - 跨裝置分享應用程式 - 文字日誌記錄器 - 診斷", "ccTip": "雲端剪貼簿在您的裝置上分享剪貼簿資料。 它允許在一個裝置上複製並黏貼到另一個裝置上。 需要微軟帳戶登入。", "cortanaTip": "Cortana 是一個基於人工智慧的虛擬助理。 - 停用 Cortana。 - 停用開始選單中的網路搜尋 - 禁止保留搜尋歷史記錄", "sensorTip": "管理感測器功能的服務, 如自動旋轉、自動亮度等。 僅適用於平板電腦或帶有觸控螢幕的裝置。", "castTip": "移除右鍵以分享媒體內容到 Miracast 裝置。", "gameBarTip": "遊戲列是 Xbox 遊戲服務的快速存取選單。", "insiderTip": "Windows Insider 計畫允許您在它們公開發布之前測試最新功能 。 對於不想參與的使用者來說,它被認為是不必要的服務。", "tpmTip": "繞過安全開機和 TPM 2.0 要求,允許升級到 Windows 11。", "leftTaskbarTip": "將工作列圖示向左對齊。", "snapAssistTip": "當滑鼠懸停最大化按鈕時停用 Snap Assist 彈出視窗。", "widgetsTip": "停用小工具功能並從工作列移除小工具圖示。", "chatTip": "從工作列移除聊天圖示。", "smallerTaskbarTip": "使工作列大小和圖示更小。", "classicRibbonTip": "在檔案總管中還原 Windows 10 的傳統功能區。", "classicContextTip": "還原傳統右鍵選單,移除「顯示更多選項」。", "gameModeSw": "啟用遊戲模式", "gameModeTip": "結合硬體加速 GPU 調度啟用遊戲模式。", "compactModeSw": "在檔案總管中啟用精簡模式", "compactModeTip": "減少檔案總管中檔案之間的額外空間和填充。", "stickersTip": "貼圖是出現在桌布上的大型表情符號,用於社交通訊軟體。", "hibernateSw": "停用休眠", "hibernateTip": "停用 Windows 休眠功能。", "smb1Sw": "停用 SMBv1 協定", "smb2Sw": "停用 SMBv2 協定", "smbTip": "SMB{v} 協定負責 Windows 系統之間的檔案共享。 它已被更安全的 SMBv3 取代。", "ntfsStampSw": "停用 NTFS 時間戳記", "ntfsStampTip": "指示檔案的最後一次存取時間戳記。 停用它可以減少磁碟上的 I/O 操作。", "autoStartToggle": "隨 Windows 啟動", "nvidiaTelemetrySw": "停用 NVIDIA 遙測", "dnsTitle": "快速更改 DNS 伺服器", "vbsSw": "停用基於虛擬化的安全性", "vbsTip": "核心功能,防止惡意驅動程式注入處理程序。 它對效能有負面影響。", "winSearchSw": "停用搜尋", "winSearchTip": "停用 Windows 搜尋服務。", "storeUpdatesSw": "停用 Microsoft Store 更新", "storeUpdatesTip": "停用 Microsoft Store 自動更新功能。", "btnRestoreUwp": "還原所有 UWP", "restoreUwpMessage": "您確定要這麼做嗎?", "telemetrySvcToggle": "停用 Optimizer 遙測", "edgeAiSw": "停用 Edge 探索", "edgeTelemetrySw": "停用 Edge 遙測", "edgeAiTip": "移除 Edge 中的探索欄。", "edgeTelemetryTip": "在 Edge 中停用 SmartScreen、Spotlight 和遙測服務。", "hpetSw": "停用 HPET", "loginVerboseSw": "啟用詳細登入畫面", "advancedTab": "進階", "btnRestartSafe": "以安全模式重新啟動", "btnRestart": "以正常模式重新啟動", "btnRestartDisableDefender": "重新啟動並停用 Defender", "classicPhotoViewerSw": "還原傳統相片檢視器", "tabPage3": "字体", "fontSetTitle": "将您喜欢的字体设置为 Windows 默认字体", "label11": "当前字体:", "btnSetGlobalFont": "设置为默认", "lblFontsCount": "可用字体:", "btnRestoreFont": "還原預設值", "btnRefreshFonts": "重新整理", "chkAllNics": "為所有網絡適配器設置", "chkCustomDns": "設置自定義 DNS", "btnSetDns": "設置DNS", "copilotSw": "停用 CoPilot AI", "copilotTip": "完全關閉 CoPilot AI 功能。", "btnReinforce": "加強政策", "msgReinforce": "您確定要重新應用目前的政策嗎?", "newsInterestsSw": "停用新聞和興趣", "allTrayIconsSw": "顯示所有通知圖示", "noMenuDelaySw": "移除選單延遲", "hideSearchSw": "隱藏工作列搜尋", "enableUtcSw": "啟用協調世界時間", "hideWeatherSw": "隱藏工作列天氣", "autoUpdateToggle": "啟動時更新", "modernStandbySw": "停用現代待機", "label24": "系統變量編輯器", "label23": "新系統變量路徑:", "button3": "添加", "label21": "系統變量", "button1": "刪除", "button2": "刷新" } ================================================ FILE: Optimizer/Resources/i18n/UA.json ================================================ { "subSystem": "Система", "subPrivacy": "Конфіденційність", "subGaming": "Ігри", "subTouch": "Дотик", "subTaskbar": "Панель задач", "subExtras": "Доповнення", "btnAbout": "OK", "restartButton": "Перезапустити зараз", "restartButton8": "Перезапустити зараз", "restartButton10": "Перезапустити зараз", "btnFind": "Знайти", "btnKill": "Вимкнути примусово", "trayUnlocker": "Дескриптор файлів", "restartAndApply": "Перезапустити для застосування змін", "regBackupSw": "Увімкнути резервне копіювання реєстру", "txtVersion": "Версія: {VN}", "txtBitness": "Ви працюєте з {BITS}", "linkUpdate": "Оновлення доступне", "lblLab": "Експериментальна збірка\n(видалити після тестування)", "performanceSw": "Оптимізувати продуктивність", "networkSw": "Оптимізувати мережу", "defenderSw": "Відключити захисник Windows", "systemRestoreSw": "Відключити можливість відновлення системи", "printSw": "Відключити службу принтера", "mediaSharingSw": "Вимкнути спільний доступ до медіаплеєра", "faxSw": "Відключити службу факсу", "reportingSw": "Вимкнути повідомлення про помилки", "homegroupSw": "Вимкнути домашню групу", "superfetchSw": "Відключити супер-виборку", "telemetryTasksSw": "Відключити функції телеметрії", "officeTelemetrySw": "Відключити телеметрію Office", "vsSW": "Відключити телеметрію Visual Studio", "ffTelemetrySw": "Відключити телеметрію Mozilla Firefox", "chromeTelemetrySw": "Відключити телеметрію Google Chrome", "compatSw": "Вимкнути помічника по Сумісності", "smartScreenSw": "Відключити Розумний екран", "stickySw": "Відключити залипання клавіш", "universalTab": "Загальні", "modernAppsTab": "Програми UWP", "startupTab": "Пуск", "appsTab": "Програми", "cleanerTab": "Очищувач", "pingerTab": "Пінгер", "registryFixerTab": "Реєстр", "integratorTab": "Інтегратор", "CleanPreviewForm": "Чистий попередній перегляд", "optionsTab": "Параметри", "oldMixerSw": "Увімкнути класичний мікшер гучності", "oldExplorerSw": "Відновити класичний файловий провідник", "adsSw": "Вимкнути рекламу в меню 'Пуск'", "uODSw": "Видалити OneDrive", "peopleSw": "Вимкнути Мої люди", "longPathsSw": "Увімкнути Довгі шляхи", "autoUpdatesSw": "Вимкнути автоматичні оновлення", "driversSw": "Виключити драйвери з оновлень", "telemetryServicesSw": "Відключити служби телеметрії", "privacySw": "Підвищити конфіденційність", "ccSw": "Вимкнути хмарний буфер обміну", "cortanaSw": "Вимкнути Cortana", "sensorSw": "Відключити служби датчиків", "castSw": "Видалити графічний образ на пристрій", "inkSw": "Відключити чорнило Windows", "spellSw": "Відключити перевірку орфографії", "xboxSw": "Вимкнути Xbox Live", "gameBarSw": "Вимкнути ігрову панель", "insiderSw": "Відключити інсайдерську службу", "actionSw": "Відключити центр повідомлень", "disableOneDriveSw": "Відключити OneDrive", "tpmSw": "Відключити перевірку TPM 2.0", "leftTaskbarSw": "Вирівняти панель завдань вліво", "snapAssistSw": "Вимкнути допомогу при прив'язці", "widgetsSw": "Вимкнути віджети", "chatSw": "Вимкнути чат", "smallerTaskbarSw": "Зменшити панель завдань", "classicRibbonSw": "Увімкнути класичну стрічку в Провіднику", "classicContextSw": "Увімкнути класичне контекстне меню правою кнопкою миші", "refreshModernAppsButton": "Оновити", "uninstallModernAppsButton": "Видалити", "txtModernAppsTitle": "Видалити непотрібні UWP-додатки", "chkSelectAllModernApps": "Вибрати всі", "chkOnlyRemovable": "Тільки ті, що можна видалити", "onedriveM": "Ви впевнені, що хочете видалити OneDrive? Це призведе до видалення файлів Робочого столу та документів! Використовуйте цю опцію лише для локального облікового запису!", "startupTitle": "Виберіть елементи запуску", "removeStartupItemB": "Видалити", "locateFileB": "Знайти файл", "findInRegB": "Знайти в реєстрі", "analyzeDriveB": "Проаналізувати", "refreshStartupB": "Оновити", "restoreStartupB": "Відновити", "backupStartupB": "Резервна копія", "lblBackupTitle": "Заголовок резервної копії:", "doBackup": "OK", "cancelBackup": "Скасувати", "startupItemName": "Ім'я", "startupItemLocation": "Розташування", "startupItemType": "Тип", "txtFeedError": "Немає з'єднання з інтернетом, спробуйте оновити посилання ще раз", "appsTitle": "Швидко завантажуйте та встановлюйте корисні програми", "btnGetFeed": "Оновити посилання", "bitPref": "Встановити перевагу бітів", "linkWarnings": "Дивитися попередження", "txtDownloadStatus": "Порожній", "goToDownloadsB": "Перейти до завантажень", "btnDownloadApps": "Завантажити", "cAutoInstall": "Встановити після завантаження", "setDownDirLbl": "Встановити папку для завантаження", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Виділити все", "checkTemp": "Тимчасові файли", "checkLogs": "Журнали Windows", "checkMiniDumps": "Міні-дампи BSOD", "checkBin": "Порожній кошик", "checkMediaCache": "Кеш медіаплеєра", "checkErrorReports": "Звіти про помилки", "cleanDriveB": "Очистити", "lblPretext": "Максимальний розмір для звільнення:", "cleanerTitle": "Очистити системний диск", "pingerTitle": "Пінгувати IP-адреси та оцінити вашу латентність", "lblPinger": "IP / доменне ім'я", "btnOpenNetwork": "Відкриті мережеві підключення", "copyIPB": "Копіювати", "copyB": "Копіювати IP", "btnShodan": "Перевірити SHODAN.io", "btnPing": "Пінг", "lblResults": "Результати", "flushCacheB": "Очистити кеш DNS", "btnExport": "Експорт", "hostsTitle": "Ефективне редагування файлу hosts", "linkLocate": "Знайти", "linkAdvancedEdit": "Розширений редактор", "linkRestoreDefault": "Відновити за замовчуванням", "lblIP": "IP-адреса", "lblDomain": "Домен", "chkBlock": "Блок", "addHostB": "Додати", "lblLock": "Захистити ваш файл HOSTS, заблокувавши його", "chkReadOnly": "Тільки для читання", "lblAdblock": "Заздалегідь встановлені рекламні блоки", "lblAdblockSub": "(видалить ваш поточний конфіг)", "adblockS": "AdBlock + Соціальні", "adblockP": "AdBlock + Порно", "removeHostB": "Видалити", "refreshHostsB": "Оновити", "removeAllHostsB": "Видалити всі", "regFixB": "Виправити", "regLbl": "(деякі зміни можуть потребувати цього)", "checkRestartExplorer": "Також перезапустіть Провідник, щоб застосувати зміни", "checkRegistryEditor": "Редактор реєстру", "checkFirewall": "Брандмауер Windows", "checkContextMenu": "Контекстне меню", "checkRunDialog": "Запустити Діалогове вікно", "checkFolderOptions": "Параметри папки", "checkControlPanel": "Панель управління", "checkCommandPrompt": "Командний рядок", "checkTaskManager": "Диспетчер завдань", "checkEnableAll": "Увімкнути все", "registryTitle": "Виправити поширені проблеми з реєстром", "quickAccessToggle": "Показати меню швидкого доступу", "helpTipsToggle": "Показувати довідкові повідомлення", "lblTheming": "Вибрати тему", "radioOcean": "Океан", "radioMagma": "Магма", "radioZerg": "Зерг", "radioCaramel": "Карамель", "radioLime": "Лайм", "radioMinimal": "Мінімальний", "lblUpdating": "Перевірити та оновити", "btnUpdate": "Перевірити наявність оновлень", "btnChangelog": "Переглянути зміни", "lblUpdateDisabled": "Вимкнено в експериментальних збірках", "lblTroubleshoot": "Розв'язання проблем", "btnViewLog": "Перегляд помилок", "btnOpenConf": "Показати папку конфігурації", "btnResetConfig": "Відновити", "integrator1": "Інтегратор може додавати повністю кастомізовані\nпункти в контекстне меню Робочого столу:", "integrator2": "- Будь-яка програма", "integrator3": "- Ярлики до папок", "integrator4": "- Посилання на веб", "integrator5": "- Будь-який тип файлів", "integrator6": "- Команди", "integrator7": "Елементи можуть мати власні піктограми та положення.\nВони також можуть бути приховані, доступні лише при натисканні клавіші SHIFT.\nВін також може створювати власні команди\nдля діалогового вікна запуску, що дозволяє легко запускати\nбудь-яку програму, лише набравши потрібне ключове слово.", "integratorInfoTab": "Info", "tabPage8": "Додавання/зміна", "tabPage9": "Видалити", "tabPage10": "Готові меню", "tabPage11": "Запустити діалог", "addItemL": "Додати або змінити елемент", "itemtype": "Тип елемента", "radioProgram": "Програма", "radioFolder": "Папка", "radioLink": "Посилання", "radioFile": "Файл", "radioCommand": "Команда", "itemtoaddgroup": "Програму для додавання", "folderToAdd": "Папка для додавання", "linkToAdd": "Посилання для додавання", "fileToAdd": "Файл для додавання", "commandToAdd": "Команда для додавання", "icontoaddgroup": "Іконка для додавання", "checkDefaultIcon": "Використовувати іконку програми", "checkDefaultFolderIcon": "Використовувати іконку папки за замовчуванням", "checkFavicon": "Завантажити іконку сайту (favicon)", "checkNoIcon": "Немає іконки", "dnsCacheM": "Виконується генерація DNS-кешу, повторіть спробу пізніше!", "itemposition": "Позиція елемента", "radioTop": "Верхня", "radioMiddle": "Середня", "radioBottom": "Нижня", "security": "Безпека", "checkShift": "Показувати тільки при натиснутій клавіші SHIFT", "itemnamegroup": "Назва пункту в меню", "btnAddItem": "Додати/Змінити", "removeIntegratorItemsL": "Видалити існуючі елементи робочого столу", "removeDIB": "Видалити", "refreshIIB": "Оновити", "removeAllIIB": "Видалити все", "PMB": "Додати меню живлення", "STB": "Додати системні інструменти", "WAB": "Додати програми Windows", "SSB": "Додати системні ярлики", "DSB": "Додати ярлики на робочому столі", "AddOwnerB": "Додати 'Прийняти у власність'", "RemoveOwnerB": "Видалити ярлик 'Прийняти у власність'", "AddCMDB": "Додати Відкрити за допомогою CMD'", "DeleteCMDB": "Видалити 'Відкрити за допомогою CMD'", "readyMenusL": "Додати корисні, заздалегідь зроблені меню", "refreshCCB": "Оновити", "removeCCB": "Видалити", "removeCCL": "Видалити існуючі команди", "btnCreateCustomCommand": "Створити", "ccKeywordL": "ключове слово", "ccFileL": "Розташування файлу", "ccL": "Визначте свої власні команди запуску", "btnYes": "Так", "btnNo": "Ні", "btnOk": "ОК", "HostsEditorForm": "Редактор хостів", "savebtn": "Зберегти", "closebtn": "Закрити", "adminMissingMsg": "Оптимізатор потрібно запустити від імені адміністратора!\nApp буде закрито...", "unsupportedMsg": "Оптимізатор працює з Windows 7 і вище!\nApp буде закрито...", "confInvalidVersionMsg": "Версія Windows не відповідає!", "confInvalidFormatMsg": "Конфігураційний файл у невірному форматі!", "confNotFoundMsg": "Файл конфігурації не існує!", "argInvalidMsg": "Недійсний аргумент! Приклад: Optimizer.exe /template.json", "alreadyRunningMsg": "Оптимізатор вже працює у фоновому режимі!", "StartupPreviewForm": "Попередній перегляд елементів запуску", "StartupRestoreForm": "Відновити елементи запуску", "backupL": "Відновити елементи запуску", "txtNoBackups": "Резервних копій не знайдено", "previewBackupB": "Попередній перегляд", "restoreBackupB": "Відновити", "deleteBackupB": "Видалити", "noNewVersion": "У вас вже є найновіша версія!", "betaVersion": "Ви використовуєте експериментальну версію!", "removeAllStartup": "Ви впевнені, що хочете видалити всі елементи запуску?", "removeAllHosts": "Ви впевнені, що хочете видалити всі записи хостів?", "removeAllItems": "Ви впевнені, що хочете видалити всі елементи робочого столу?", "removeModernApps": "Ви впевнені, що хочете видалити наступні програми?", "errorModernApps": "Не вдалося видалити наступні програми:\n", "latestVersionM": "Остання версія: {LATEST}", "currentVersionM": "Поточна версія: {CURRENT}", "resetMessage": "Додаток завершить роботу і спробує відновити роботу самостійно.", "newVersion": "Доступна нова версія! Ви хочете завантажити її зараз?\nApp перезапуститься через декілька секунд.", "flushDNSMessage": "Ви впевнені, що хочете очистити кеш DNS Windows?\n\nЦе призведе до відключення інтернету на деякий час, і може знадобитися перезапуск для належного функціонування.", "downloadsFinished": "Завершено", "downloadDirInvalid": "Вказана папка для завантаження є недійсною", "no64Download": "Немає 64-бітної версії, завантажуємо 32-бітну", "no32Download": "Немає 32-бітної версії, пропускаємо", "installing": "Встановлення", "linkInvalid": "Посилання більше не дійсне", "noErrorsM": "Немає помилок для відображення!", "hostNotFound": "Не вдалося знайти хост", "pinging": "Пінг з 32 байтами - 9 разів...", "latency": "ЗАТРИМКА", "lblSystemTools": "Система та Інструменти", "lblInternet": "Інтернет", "lblCoding": "Кодування", "lblVideoSound": "Відео та звук", "min": "Мінімум", "max": "Максимум", "avg": "Середнє", "timeout": "Час очікування запиту закінчився", "languagesL": "Виберіть мову", "trayStartup": "Менеджер запуску", "trayCleaner": "Очищувач дисків", "trayPinger": "Пінгер", "trayHosts": "Редактор хостів", "trayAD": "Завантажувач додатків", "trayOptions": "Параметри", "trayRegistry": "Відновлення реєстру", "trayRestartExplorer": "Перезапустити Провідник", "trayExit": "Вихід", "tipWhatThis": "Що це?", "hwDetailed": "Детальний перегляд", "btnCopyHW": "Копіювати", "btnSaveHW": "Зберегти", "indiciumTab": "Обладнання", "toolHWCopy": "Копіювати", "toolHWGoogle": "Пошук за допомогою Google", "toolHWDuck": "Пошук за допомогою DuckDuckGo", "trayHW": "Інформація про обладнання", "os": "Операційна система", "cpu": "Процесори", "ram": "Пам'ять", "gpu": "Графіка", "mobo": "Материнські плати", "disk": "Сховище", "inet": "Мережеві адаптери", "audio": "Аудіо", "dev": "Периферія", "vm": "Віртуальна пам'ять", "drives": "Дискові накопичувачі", "volumes": "Розділи", "opticals": "Оптичні приводи", "removables": "Знімні диски", "physicalAdapters": "Фізичні адаптери", "virtualAdapters": "Віртуальні адаптери", "keyboards": "Клавіатури", "pointing": "Пристрої вказівки", "performanceTip": "Збірник внутрішніх налаштувань Windows для оптимізації продуктивності. Повністю безпечний для застосування. - Зменшує час очікування перед завершенням процесів, що не реагують. - Зменшує час затримки відображення меню. - Вимикає сповіщення про низький рівень вільного місця на диску - Вимикає функцію струшування для мінімізації - Завжди показує розширення файлів - Показує приховані файли", "networkTip": "У Windows реалізовано механізм мережевого дроселювання, який обмежує мережевий трафік під час запуску мультимедійних програм. Це також може знизити продуктивність мережі продуктивність мережі під час гри в онлайн-ігри.", "defenderTip": "Windows Defender - це вбудований антивірус у системах Windows.", "smartScreenTip": "SmartScreen автоматично сканує файли, завантаження та веб-сайти, блокуючи вже відомий небезпечний вміст і попереджає вас перед їх запуском.", "systemTip": "SmartScreen автоматично сканує файли, завантаження і веб-сайти, блокуючи їх", "systemRestoreTip": "Відновлення системи - це функція, яка дозволяє повернути стан Windows до попереднього для відновлення після збоїв або інших проблем.", "reportingTip": "Звітування про помилки збирає дані про збої та помилки програми та надсилає їх до Microsoft.", "telemetryTasksTip": "Служби телеметрії періодично надсилають дані про використання та продуктивність до корпорації Майкрософт, для подальшого покращення.", "officeTelemetryTip": "Служба телеметрії офісу періодично надсилає дані про використання Офісу та його продктивність та надсилає Майкрасофт", "ffTelemetryTip": "Вимкнути служби телеметрії та звітування даних Mozilla Firefox.", "vsTip": "Вимикає функції телеметрії та зворотного зв'язку Visual Studio, включаючи клієнт SQM.", "chromeTelemetryTip": "Вимикає телеметрію Google Chrome та інструмент звітування про програмне забезпечення (відомий тим, що спричиняє високе використання процесора).", "printTip": "Служба друку відповідає за виявлення, встановлення та використання принтерів.", "faxTip": "Служба факсу відповідає за надсилання та отримання факсів.", "mediaSharingTip": "Спільний доступ до медіапрогравача забезпечує спільний доступ до домашніх медіафайлів для Windows Media Player.", "stickyTip": "Sticky Keys - це функція доступності, яка допомагає користувачам Windows з з обмеженими фізичними можливостями, зменшуючи кількість рухів, пов'язаних пов'язаних з повторюваним напруженням.", "homegroupTip": "HomeGroup - це функція, яка дозволяє надавати спільний доступ до файлів у домашній мережі за допомогою провідника Windows.", "superfetchTip": "Перевибірка попередньо завантажує часто використовувані програми в оперативну пам'ять, що спричиняє високе використання диска, особливо на жорстких дисках.", "compatTip": "Служба Compatibility Assistant виявляє відомі проблеми сумісності у старих програмах.", "disableOneDriveTip": "Вимикає інтеграцію з хмарним сховищем OneDrive.", "oldMixerTip": "Відновлює класичну панель керування мікшером гучності.", "oldExplorerTip": "- Вимикає історію швидкого доступу - Встановлює типовий вигляд Провідника файлів на цьому комп'ютері - Вимикає нещодавні файли - Видаляє Пошук, Завдання та Погоду з панелі завдань - Вимикає історію файлів", "adsTip": "Запобігає появі реклами у меню 'Пуск'.", "uODTip": "Повністю видаляє інтеграцію з хмарним сховищем OneDrive.", "peopleTip": "My People - нова функція, що показує нещодавні контакти на панелі завдань.", "longPathsTip": "Знято обмеження на максимальну довжину шляху у 256 символів.", "inkTip": "Windows Ink забезпечує підтримку цифрових ручок для малювання на екрані.", "spellTip": "На сенсорній клавіатурі доступні лише такі функції, як: - Автокорекція - Підказки до тексту - Перевірка орфографії", "xboxTip": "Служби Xbox Live пропонують потокову передачу, запис і соціальні функції для ігор Xbox.", "actionTip": "Центр сповіщень - це центральне місце для сповіщень і плиток швидких дій, таких як Wi-Fi, Bluetooth і т.д.", "autoUpdatesTip": "Вимикає автоматичне завантаження та встановлення оновлень Windows. Замість цього з'являється сповіщення, коли доступні нові оновлення. Також відключає службу оптимізації доставки.", "driversTip": "Доречно, коли Windows Update постійно замінює належним чином драйвер на несправний.", "telemetryServicesTip": "Служби телеметрії відстежують і реєструють дані про використання, надсилаючи відгуки для аналізу в корпорацію Майкрософт.", "privacyTip": "Додаткові налаштування конфіденційності, що відключають наступне: - Біометрія - Геолокацію - Спільний доступ до програм на різних пристроях - Текстовий реєстратор - Діагностика", "ccTip": "Хмарний буфер обміну надає спільний доступ до даних буфера обміну на ваших пристроях. Це дозволяє копіювати на одному пристрої та вставляти на іншому. Потрібен вхід в обліковий запис Microsoft.", "cortanaTip": "Cortana - це віртуальний помічник на основі штучного інтелекту. - Вимкнути Cortana. - Вимикає веб-пошук у меню Пуск - Перешкоджає збереженню історії пошуку", "sensorTip": "Служби, які керують функціональністю сенсорів, наприклад, автоповоротом, автояскравістю тощо. Корисні лише для планшетів або пристроїв з сенсорним екраном.", "castTip": "Прибирає клік правою кнопкою миші для передачі медіаконтенту на пристрої Miracast.", "gameBarTip": "Підказка", "gameBarTip": "Game Bar - це меню швидкого доступу до ігрових сервісів Xbox.", "insiderTip": "Програма Windows Insider дозволяє тестувати найновіші функції до того, як вони будуть випущені для широкого загалу. Вважається непотрібною послугою для користувачів, які не бажають брати в ній участь.", "tpmTip": "Обходить вимоги безпечного завантаження та TPM 2.0, дозволяючи оновитися до Windows 11.", "leftTaskbarTip": "Вирівнює піктограми панелі завдань ліворуч.", "snapAssistTip": "Вимикає спливаюче вікно Snap Assist при наведенні на кнопки розгортання.", "widgetsTip": "Вимикає функцію віджетів та видаляє іконку віджетів з панелі завдань.", "chatTip": "Прибирає піктограму чату з панелі завдань.", "smallerTaskbarTip": "Зменшує розмір панелі завдань та іконок.", "classicRibbonTip": "Відновлює класичну стрічку з Windows 10 у провіднику файлів.", "classicContextTip": "Відновлює класичне контекстне меню правою кнопкою миші, видаляючи 'Показати більше опцій'.", "gameModeSw": "Увімкнути ігровий режим", "gameModeTip": "Вмикає ігровий режим у поєднанні з апаратним прискоренням графічного процесора.", "systemRestoreM": "Ви впевнені, що хочете вимкнути Відновлення системи?, Це видалить ваші поточні резервні копії!", "compactModeSw": "Увімкнути компактний режим у провіднику", "compactModeTip": "Зменшує зайвий простір та проміжки між файлами у Провіднику.", "stickersTip": "Стікери - це великі емодзі, які з'являються на шпалерах, що використовуються у соціальних месенджерах.", "hibernateSw": "Вимкнути сплячий режим", "hibernateTip": "Вимкнути функцію сплячого режиму Windows.", "smb1Sw": "Вимкнути протокол SMBv1", "smb2Sw": "Вимкнути протокол SMBv2", "smbTip": "Протокол SMB{v} відповідає за обмін файлами між комп'ютерами Windows. Він був замінений на SMBv3, який є більш безпечним.", "ntfsStampSw": "Вимкнути мітку часу NTFS", "ntfsStampTip": "Показує мітку останнього доступу до файлу. Вимкнення може зменшити кількість операцій вводу/виводу на дисках.", "autoStartToggle": "Запускати з Windows", "nvidiaTelemetrySw": "Вимкнути NVIDIA Telemetry", "dnsTitle": "Швидко змінити DNS сервер", "vbsSw": "Вимкнути безпеку на основі віртуалізації", "vbsTip": "Функція ядра, яка запобігає впровадженню шкідливих драйверів у процеси. Це негативно впливає на продуктивність.", "winSearchSw": "Вимкнути пошук", "winSearchTip": "Вимкнення служби пошуку Windows.", "storeUpdatesSw": "Вимкніть оновлення Microsoft Store", "storeUpdatesTip": "Вимикає функцію автоматичного оновлення Microsoft Store.", "btnRestoreUwp": "Відновити всі UWP", "restoreUwpMessage": "Ви впевнені, що хочете це зробити?", "telemetrySvcToggle": "Вимкніть оптимізатор телеметрії", "edgeAiSw": "Вимкнути Edge Discover", "edgeTelemetrySw": "Вимкніть Edge Telemetry", "edgeAiTip": "Видаляє панель Discover в Edge.", "edgeTelemetryTip": "Вимикає служби SmartScreen, Spotlight і Telemetry в Edge.", "hpetSw": "Вимкніть HPET", "loginVerboseSw": "Увімкнути детальний екран входу", "advancedTab": "Просунутий", "btnRestartSafe": "Перезапустіть у безпечному режимі", "btnRestart": "Перезапустіть у звичайному режимі", "btnRestartDisableDefender": "Перезапустіть && Вимкніть Defender", "classicPhotoViewerSw": "Відновити Classic Photo Viewer", "tabPage3": "Шрифти", "fontSetTitle": "Установіть свій улюблений шрифт як стандартний шрифт Windows", "label11": "Поточний шрифт:", "btnSetGlobalFont": "Установіть за замовчуванням", "lblFontsCount": "Доступні шрифти:", "btnRestoreFont": "Відновити за замовчуванням", "btnRefreshFonts": "Оновити", "chkAllNics": "Набір для всіх мережевих адаптерів", "chkCustomDns": "Встановити спеціальний DNS", "btnSetDns": "Встановити DNS", "copilotSw": "Повністю вимкнути функцію CoPilot AI", "copilotTip": "Повністю вимикає функцію CoPilot AI.", "btnReinforce": "Підсилити політику", "msgReinforce": "Ви впевнені, що хочете повторно застосувати поточну політику?", "newsInterestsSw": "Вимкнути новини та інтереси", "allTrayIconsSw": "Показати всі піктограми сповіщень", "noMenuDelaySw": "Видалити затримку меню", "hideSearchSw": "Приховати пошук на панелі завдань", "hideWeatherSw": "Приховати погоду на панелі завдань", "autoUpdateToggle": "Оновлення при запуску", "enableUtcSw": "Увімкнути UTC-час", "modernStandbySw": "Вимкнути сучасний режим очікування", "label24": "Редактор системних змінних", "label23": "Новий шлях системної змінної:", "button3": "Додати", "label21": "Системні змінні", "button1": "Видалити", "button2": "Оновити" } ================================================ FILE: Optimizer/Resources/i18n/UR.json ================================================ { "subSystem": "سسٹم", "subPrivacy": "رازداری", "subGaming": "گیمنگ", "subTouch": "ٹچ", "subTaskbar": "ٹاسک بار", "subExtras": "اضافی", "btnAbout": "ٹھیک ہے", "restartButton": "ابھی دوبارہ شروع کریں", "restartButton8": "ابھی دوبارہ شروع کریں", "restartButton10": "ابھی دوبارہ شروع کریں", "btnFind": "تلاش کریں", "btnKill": "مار ڈالو", "trayUnlocker": "فائل ہینڈلز", "restartAndApply": "تبدیلیاں لاگو کرنے کے لیے دوبارہ شروع کریں", "regBackupSw": "رجسٹری بیک اپ کو فعال کریں", "txtVersion": "ورژن: {VN}", "txtBitness": "آپ {BITS} کے ساتھ کام کر رہے ہیں", "linkUpdate": "اپ ڈیٹ دستیاب ہے", "lblLab": "تجرباتی تعمیر\n(ٹیسٹ کرنے کے بعد حذف کریں)", "performanceSw": "کارکردگی کو بہتر بنائیں", "networkSw": "آپٹیمائزر نیٹ ورک", "defenderSw": "ونڈوز ڈیفنڈر کو غیر فعال کریں", "systemRestoreSw": "نظام کی بحالی کو غیر فعال کریں", "printSw": "پرنٹ سروس کو غیر فعال کریں", "mediaSharingSw": "میڈیا پلیئر شیئرنگ کو غیر فعال کریں", "faxSw": "فیکس سروس کو غیر فعال کریں", "reportingSw": "خرابی کی اطلاع دہندگی کو غیر فعال کریں", "homegroupSw": "ہوم گروپ کو غیر فعال کریں", "superfetchSw": "سپر فیچ کو غیر فعال کریں", "telemetryTasksSw": "ٹیلی میٹری ٹاسکس کو غیر فعال کریں", "officeTelemetrySw": "آفس ٹیلی میٹری کو غیر فعال کریں", "vsSW": "بصری اسٹوڈیو ٹیلی میٹری کو غیر فعال کریں", "ffTelemetrySw": "موزیلا فائر فاکس ٹیلی میٹری کو غیر فعال کریں", "chromeTelemetrySw": "گوگل کروم ٹیلی میٹری کو غیر فعال کریں", "compatSw": "مطابقت کے معاون کو غیر فعال کریں", "smartScreenSw": "اسمارٹ اسکرین کو غیر فعال کریں", "stickySw": "اسٹکی کیز کو غیر فعال کریں", "universalTab": "جنرل", "modernAppsTab": "UWP ایپس", "startupTab": "اسٹارٹ اپ", "appsTab": "ایپس", "cleanerTab": "صاف کرنے والا", "pingerTab": "نیٹ ورک", "registryFixerTab": "رجسٹری", "integratorTab": "انٹیگریٹر", "CleanPreviewForm": "صاف پیش نظارہ", "optionsTab": "اختیارات", "oldMixerSw": "کلاسیکی والیوم مکسر کو فعال کریں", "oldExplorerSw": "کلاسیکی فائل ایکسپلورر کو بحال کریں", "adsSw": "اسٹارٹ مینو اشتہارات کو غیر فعال کریں", "uODSw": "OneDrive کو اَن انسٹال کریں", "peopleSw": "میرے لوگوں کو غیر فعال کریں", "longPathsSw": "لمبے راستے فعال کریں", "autoUpdatesSw": "خودکار اپ ڈیٹس کو غیر فعال کر دیں", "driversSw": "ڈرائیوروں کو اپ ڈیٹس سے خارج کریں", "telemetryServicesSw": "ٹیلی میٹری سروسز کو غیر فعال کریں", "privacySw": "رازداری میں اضافہ کریں", "ccSw": "کلاؤڈ کلپ بورڈ کو غیر فعال کریں", "cortanaSw": "کورٹانا کو غیر فعال کریں", "sensorSw": "سینسر سروسز کو غیر فعال کریں", "castSw": "ڈیوائس سے کاسٹ ہٹائیں", "inkSw": "ونڈوز انک کو غیر فعال کریں", "spellSw": "ہجے کی جانچ کو غیر فعال کریں", "xboxSw": "Xbox لائیو کو غیر فعال کریں", "gameBarSw": "گیم بار کو غیر فعال کریں", "insiderSw": "اندرونی سروس کو غیر فعال کریں", "actionSw": "اطلاعاتی مرکز کو غیر فعال کریں", "disableOneDriveSw": "OneDrive کو غیر فعال کریں", "tpmSw": "TPM چیک کو غیر فعال کریں", "leftTaskbarSw": "ٹاسک بار کو بائیں سیدھ میں لائیں", "snapAssistSw": "اسنیپ اسسٹ کو غیر فعال کریں", "widgetsSw": "وجیٹس کو غیر فعال کریں", "chatSw": "چیٹ کو غیر فعال کریں", "smallerTaskbarSw": "ٹاسک بار کو چھوٹا بنائیں", "classicRibbonSw": "ایکسپلورر میں کلاسک ربن کو فعال کریں", "classicContextSw": "کلاسک رائٹ کلک مینو کو فعال کریں", "refreshModernAppsButton": "ریفریش کریں", "uninstallModernAppsButton": "ان انسٹال کریں", "txtModernAppsTitle": "غیر مطلوبہ UWP ایپس اَن انسٹال کریں", "chkSelectAllModernApps": "سب کو منتخب کریں", "chkOnlyRemovable": "صرف اَن انسٹال کرنے کے قابل", "onedriveM": "کیا آپ واقعی OneDrive کو اَن انسٹال کرنا چاہتے ہیں؟ یہ آپ کے ڈیسک ٹاپ اور دستاویز کی فائلوں کو حذف کر دے گا! یہ اختیار صرف مقامی اکاؤنٹ پر استعمال کریں!", "startupTitle": "اپنی شروعاتی اشیاء کا انتخاب کریں", "removeStartupItemB": "حذف کریں", "locateFileB": "فائل تلاش کریں", "findInRegB": "رجسٹری میں تلاش کریں", "analyzeDriveB": "تجزیہ کریں", "refreshStartupB": "ریفریش کریں", "restoreStartupB": "بحال کریں", "backupStartupB": "بیک اپ", "lblBackupTitle": "بیک اپ ٹائٹل:", "doBackup": "ٹھیک ہے", "cancelBackup": "منسوخ کریں", "startupItemName": "نام", "startupItemLocation": "مقام", "startupItemType": "قسم", "txtFeedError": "کوئی انٹرنیٹ کنکشن نہیں، لنکس کو دوبارہ تازہ کرنے کی کوشش کریں", "appsTitle": "مفید ایپس کو جلدی سے ڈاؤن لوڈ اور انسٹال کریں", "btnGetFeed": "روابط تازہ کریں", "bitPref": "بٹ ترجیح مقرر کریں", "linkWarnings": "انتباہات دیکھیں", "txtDownloadStatus": "بیکار", "goToDownloadsB": "ڈاؤن لوڈز پر جائیں", "btnDownloadApps": "ڈاؤن لوڈ کریں", "cAutoInstall": "ڈاؤن لوڈ کرنے کے بعد انسٹال کریں", "setDownDirLbl": "ڈاؤن لوڈ فولڈر سیٹ کریں", "c64": "64 بٹ", "c32": "32 بٹ", "checkSelectAll": "سب کو منتخب کریں", "checkTemp": "عارضی فائلیں", "checkLogs": "ونڈوز لاگز", "checkMiniDumps": "BSOD minidumps", "checkBin": "ری سائیکل بن خالی کریں", "checkMediaCache": "میڈیا پلیئر کیشے", "checkErrorReports": "خرابی رپورٹس", "cleanDriveB": "صاف", "lblPretext": "آزاد کرنے کے لیے زیادہ سے زیادہ سائز:", "cleanerTitle": "اپنے سسٹم ڈرائیو کو صاف کریں", "pingerTitle": "IP پتوں کو پنگ کریں اور اپنی تاخیر کا اندازہ لگائیں", "lblPinger": "IP / ڈومین کا نام", "btnOpenNetwork": "نیٹ ورک کنکشن کھولیں", "copyIPB": "کاپی", "copyB": "IP کاپی کریں", "btnShodan": "SHODAN.io پر چیک کریں", "btnPing": "پنگ", "lblResults": "نتائج", "flushCacheB": "DNS کیشے کو فلش کریں", "btnExport": "برآمد کریں", "hostsTitle": "اپنی میزبان فائل میں مؤثر طریقے سے ترمیم کریں", "linkLocate": "تلاش کریں", "linkAdvancedEdit": "جدید ایڈیٹر", "linkRestoreDefault": "ڈیفالٹ کو بحال کریں", "lblIP": "IP ایڈریس", "lblDomain": "ڈومین", "chkBlock": "بلاک", "addHostB": "شامل کریں", "lblLock": "اپنی HOSTS فائل کو لاک کرکے اس کی حفاظت کریں", "chkReadOnly": "صرف پڑھنے کے لیے", "lblAdblock": "پہلے سے تیار کردہ ایڈ بلاکس", "lblAdblockSub": "(آپ کی موجودہ تشکیل کو حذف کر دے گا)", "adblockS": "ایڈ بلاک + سوشل", "adblockP": "AdBlock + Porn", "removeHostB": "حذف کریں", "refreshHostsB": "ریفریش کریں", "removeAllHostsB": "سب کو حذف کریں", "regFixB": "ٹھیک کریں", "regLbl": "(کچھ تبدیلیوں کی ضرورت ہو سکتی ہے)", "checkRestartExplorer": "تبدیلیاں لاگو کرنے کے لیے ایکسپلورر کو بھی دوبارہ شروع کریں", "checkRegistryEditor": "رجسٹری ایڈیٹر", "checkFirewall": "ونڈوز فائر وال", "checkContextMenu": "دائیں کلک مینو", "checkRunDialog": "ڈائیلاگ چلائیں", "checkFolderOptions": "فولڈر کے اختیارات", "checkControlPanel": "کنٹرول پینل", "checkCommandPrompt": "کمانڈ پرامپٹ", "checkTaskManager": "ٹاسک مینیجر", "checkEnableAll": "سب کو چالو کریں", "registryTitle": "رجسٹری کے عام مسائل کو حل کریں", "quickAccessToggle": "فوری رسائی کا مینو دکھائیں", "helpTipsToggle": "مدد کے پیغامات دکھائیں", "lblTheming": "اپنا تھیم منتخب کریں", "radioOcean": "سمندر", "radioMagma": "میگما", "radioZerg": "Zerg", "radioCaramel": "کیریمل", "radioLime": "چونا", "radioMinimal": "کم سے کم", "lblUpdating": "چیک اور اپ ڈیٹ کریں", "btnUpdate": "اپ ڈیٹ کے لیے چیک کریں", "btnChangelog": "تبدیلیاں دیکھیں", "lblUpdateDisabled": "تجرباتی تعمیرات میں غیر فعال", "lblTroubleshoot": "مسائل حل کرنا", "btnViewLog": "غلطیاں دیکھیں", "btnOpenConf": "کنفیگریشن فولڈر دکھائیں", "btnResetConfig": "مرمت", "integrator1": "انٹیگریٹر ڈیسک ٹاپ کے رائٹ کلک مینو میں مکمل طور پر اپنی مرضی کے مطابق اشیاء شامل کرنے کے قابل ہے", "integrator2": "کوئی بھی پروگرام •", "integrator3": "فولڈرز کے شارٹ کٹ •", "integrator4": "ویب کے لنکس •", "integrator5": "کسی بھی قسم کی فائل •", "integrator6": "کمانڈز •", "integrator7": "آئٹمز میں حسب ضرورت شبیہیں اور پوزیشن ہو سکتی ہے۔\nانہیں چھپایا بھی جا سکتا ہے، قابل رسائی\nصرف SHIFT کلید کو دبانے سے۔\nیہ اپنی مرضی کے مطابق کمانڈز بھی بنا سکتا ہے\nرن ڈائیلاگ کے لیے، جس سے کسی بھی ایپلیکیشن کو لانچ کرنا آسان ہو جاتا ہے۔ اپنا مطلوبہ کلیدی لفظ ٹائپ کرکے۔", "integratorInfoTab": "معلومات", "tabPage8": "شامل/ترمیم کریں", "tabPage9": "حذف کریں", "tabPage10": "تیار مینو", "tabPage11": "ڈائیلاگ چلائیں", "addItemL": "ایک آئٹم شامل کریں یا اس میں ترمیم کریں", "itemtype": "آئٹم کی قسم", "radioProgram": "پروگرام", "radioFolder": "فولڈر", "radioLink": "لنک", "radioFile": "فائل", "radioCommand": "کمانڈ", "itemtoaddgroup": "شامل کرنے کا پروگرام", "folderToAdd": "شامل کرنے کے لیے فولڈر", "linkToAdd": "شامل کرنے کے لیے لنک", "fileToAdd": "شامل کرنے کے لیے فائل", "commandToAdd": "شامل کرنے کا حکم", "icontoaddgroup": "شامل کرنے کے لیے آئیکن", "checkDefaultIcon": "پروگرام کا آئیکن استعمال کریں", "checkDefaultFolderIcon": "پہلے سے طے شدہ فولڈر آئیکن استعمال کریں", "checkFavicon": "ویب سائٹ کا آئیکن ڈاؤن لوڈ کریں (فیوی کون)", "checkNoIcon": "کوئی آئیکن نہیں", "dnsCacheM": "DNS کیش تیار ہو رہا ہے، بعد میں دوبارہ کوشش کریں!", "itemposition": "آئٹم کی پوزیشن", "radioTop": "اوپر", "radioMiddle": "درمیانی", "radioBottom": "نیچے", "security": "سیکیورٹی", "checkShift": "صرف اس وقت دکھائیں جب شفٹ دبایا جائے", "itemnamegroup": "مینو میں آئٹم کا نام", "btnAddItem": "شامل/ترمیم کریں", "removeIntegratorItemsL": "موجودہ ڈیسک ٹاپ آئٹمز کو حذف کریں", "removeDIB": "حذف کریں", "refreshIIB": "ریفریش کریں", "removeAllIIB": "سب حذف کریں", "PMB": "پاور مینو شامل کریں", "STB": "سسٹم ٹولز شامل کریں", "WAB": "ونڈوز ایپس شامل کریں", "SSB": "سسٹم شارٹ کٹ شامل کریں", "DSB": "ڈیسک ٹاپ شارٹ کٹ شامل کریں", "AddOwnerB": "'Take Ownership' شامل کریں", "RemoveOwnerB": "'Take Ownership' کو حذف کریں", "AddCMDB": "'CMD کے ساتھ کھولیں' شامل کریں", "DeleteCMDB": "ڈیلیٹ کریں 'سی ایم ڈی کے ساتھ کھولیں'", "readyMenusL": "مفید، پہلے سے تیار کردہ مینوز شامل کریں", "refreshCCB": "ریفریش کریں", "removeCCB": "حذف کریں", "removeCCL": "موجودہ کمانڈز کو حذف کریں", "btnCreateCustomCommand": "تخلیق کریں", "ccKeywordL": "مطلوبہ لفظ", "ccFileL": "فائل کا مقام", "ccL": "اپنی مرضی کے مطابق رن کمانڈز کی وضاحت کریں", "btnYes": "ہاں", "btnNo": "نہیں", "btnOk": "ٹھیک ہے", "HostsEditorForm": "میزبان ایڈیٹر", "savebtn": "محفوظ کریں", "closebtn": "بند کریں", "adminMissingMsg": "آپٹیمائزر کو ایڈمنسٹریٹر کے طور پر چلانے کی ضرورت ہے!\nایپ اب بند ہو جائے گی...", "unsupportedMsg": "Optimizer Windows 7 اور اعلی کے ساتھ کام کرتا ہے!\nایپ اب بند ہو جائے گی...", "confInvalidVersionMsg": "ونڈوز ورژن مماثل نہیں ہے!", "confInvalidFormatMsg": "کنفیگ فائل غلط فارمیٹ میں ہے!", "confNotFoundMsg": "کنفیگ فائل موجود نہیں ہے!", "argInvalidMsg": "غلط دلیل! مثال: Optimizer.exe /template.json", "alreadyRunningMsg": "آپٹمائزر پہلے ہی پس منظر میں چل رہا ہے!", "StartupPreviewForm": "اسٹارٹ اپ آئٹمز کا پیش نظارہ", "StartupRestoreForm": "اسٹارٹ اپ اشیاء کو بحال کریں", "backupL": "اپنی سٹارٹ اپ اشیاء دوبارہ حاصل کریں", "txtNoBackups": "کوئی بیک اپ نہیں ملا", "previewBackupB": "پیش نظارہ", "restoreBackupB": "بحال کریں", "deleteBackupB": "حذف کریں", "noNewVersion": "آپ کے پاس پہلے سے ہی تازہ ترین ورژن ہے!", "betaVersion": "آپ تجرباتی ورژن استعمال کر رہے ہیں!", "removeAllStartup": "کیا آپ واقعی تمام اسٹارٹ اپ آئٹمز کو حذف کرنا چاہتے ہیں؟", "removeAllHosts": "کیا آپ واقعی میزبان کے تمام اندراجات کو حذف کرنا چاہتے ہیں؟", "removeAllItems": "کیا آپ واقعی تمام ڈیسک ٹاپ آئٹمز کو حذف کرنا چاہتے ہیں؟", "removeModernApps": "کیا آپ واقعی درج ذیل ایپ کو ان انسٹال کرنا چاہتے ہیں؟", "errorModernApps": "مندرجہ ذیل ایپس کو ان انسٹال نہیں کیا جا سکا:\n", "latestVersionM": "تازہ ترین ورژن: {LATEST}", "currentVersionM": "موجودہ ورژن: {CURRENT}", "resetMessage": "ایپ باہر نکل جائے گی اور خود کو ٹھیک کرنے کی کوشش کرے گی۔", "newVersion": "ایک نیا ورژن دستیاب ہے! کیا آپ اسے ابھی ڈاؤن لوڈ کرنا چاہتے ہیں؟\nایپ چند سیکنڈ میں دوبارہ شروع ہو جائے گی۔", "flushDNSMessage": "کیا آپ واقعی ونڈوز کے DNS کیش کو فلش کرنا چاہتے ہیں؟\n\nیہ ایک لمحے کے لیے انٹرنیٹ منقطع ہو جائے گا اور اسے صحیح طریقے سے کام کرنے کے لیے دوبارہ شروع کرنے کی ضرورت پڑ سکتی ہے۔", "downloadsFinished": "ختم", "downloadDirInvalid": "ڈاؤن لوڈ فولڈر کی وضاحت درست نہیں ہے", "no64Download": "کوئی 64 بٹ دستیاب نہیں، 32 بٹ ڈاؤن لوڈ کر رہا ہے", "no32Download": "کوئی 32 بٹ دستیاب نہیں، چھوڑنا", "installing": "انسٹال کرنا", "linkInvalid": "لنک اب درست نہیں رہا", "noErrorsM": "دکھانے کے لیے کوئی غلطی نہیں ہے!", "hostNotFound": "میزبان نہیں مل سکا", "pinging": "32 بائٹس کے ساتھ پنگ کرنا - 9 بار...", "lateency": "لیٹنسی", "lblSystemTools": "نظام اور ٹولز", "lblInternet": "انٹرنیٹ", "lblCoding": "کوڈنگ", "lblVideoSound": "ویڈیو اور اور آواز", "min": "منٹ", "max": "زیادہ سے زیادہ", "avg": "اوسط", "timeout": "درخواست کا وقت ختم", "languagesL": "زبان کا انتخاب کریں", "trayStartup": "اسٹارٹ اپ مینیجر", "trayCleaner": "ڈرائیو کلینر", "trayPinger": "نیٹ ورک", "trayHosts": "HOSTS ایڈیٹر", "trayAD": "ایپس ڈاؤنلوڈر", "trayOptions": "اختیارات", "trayRegistry": "رجسٹری کی مرمت", "trayRestartExplorer": "ایکسپلورر کو دوبارہ شروع کریں", "trayExit": "باہر نکلیں", "tipWhatsThis": "یہ کیا ہے؟", "hwDetailed": "تفصیلی نظارہ", "btnCopyHW": "کاپی", "btnSaveHW": "محفوظ کریں", "indiciumTab": "ہارڈ ویئر", "toolHWCopy": "کاپی", "toolHWGoogle": "گوگل سے تلاش کریں", "toolHWDuck": "DuckDuckGo کے ساتھ تلاش کریں", "trayHW": "ہارڈ ویئر کی معلومات", "os": "آپریٹنگ سسٹم", "cpu": "پروسیسرز", "ram": "میموری", "gpu": "گرافکس", "mobo": "مدر بورڈز", "disk": "ذخیرہ", "inet": "نیٹ ورک اڈاپٹر", "audio": "آڈیو", "dev": "پیری فیرلز", "vm": "ورچوئل میموری", "drives": "ڈسک ڈرائیوز", "volumes": "پارٹیشنز", "opticals": "آپٹیکل ڈرائیوز", "removables": "ہٹانے کے قابل ڈرائیوز", "physicalAdapters": "جسمانی اڈاپٹر", "virtualAdapters": "ورچوئل ایڈاپٹرز", "keyboards": "کی بورڈز", "pointings": "پوائنٹنگ ڈیوائسز", "performanceTip": "کارکردگی کو بہتر بنانے کے لیے اندرونی ونڈوز سیٹنگز کا مجموعہ۔ لاگو کرنے کے لئے مکمل طور پر محفوظ. - غیر ذمہ دارانہ عمل کو مارنے سے پہلے انتظار کے وقت کو کم کرتا ہے۔ - مینو شو میں تاخیر کا وقت کم کرتا ہے۔ - کم ڈسک اسپیس چیک نوٹیفکیشن کو غیر فعال کرتا ہے۔ - ہلانے سے کم سے کم کرنے کی خصوصیت کو غیر فعال کرتا ہے۔ - ہمیشہ فائل ایکسٹینشن دکھاتا ہے۔ - چھپی ہوئی فائلیں دکھاتا ہے", "networkTip": "ونڈوز ایک نیٹ ورک تھروٹلنگ میکانزم کو نافذ کرتا ہے جو محدود کر دے گا۔ ملٹی میڈیا ایپس چلاتے وقت نیٹ ورک ٹریفک۔ یہ نیٹ ورک کو بھی کم کر سکتا ہے۔ آن لائن گیمز کھیلتے وقت کارکردگی۔", "defenderTip": "Windows Defender ونڈوز سسٹم میں بلٹ ان اینٹی وائرس ہے۔", "smartScreenTip": "اسمارٹ اسکرین فائلوں، ڈاؤن لوڈز اور ویب سائٹس کو خود بخود اسکین کرتی ہے، بلاک کرنا پہلے سے معلوم خطرناک مواد اور انہیں چلانے سے پہلے آپ کو خبردار کرتا ہے۔", "systemRestoreTip": "سسٹم کی بحالی ایک خصوصیت ہے جو ونڈوز کی حالت کو واپس کرنے کی اجازت دیتی ہے خرابیوں یا دیگر مسائل سے ٹھیک ہونے کے لیے پچھلے سے۔", "reportingTip": "خرابی کی اطلاع دینا ایپلیکیشن کے کریشوں اور خامیوں کو جمع کرتا ہے اور انہیں مائیکروسافٹ کو بھیجتا ہے۔", "telemetryTasksTip": "ٹیلی میٹری خدمات وقتاً فوقتاً مائیکروسافٹ کو استعمال اور کارکردگی کا ڈیٹا بھیجتی ہیں مستقبل کی بہتری کے لیے۔", "officeTelemetryTip": "آفس ٹیلی میٹری وقفے وقفے سے استعمال بھیجتی ہے اور مائیکروسافٹ کو کارکردگی کا ڈیٹا، مستقبل میں بہتری کے لیے۔", "ffTelemetryTip": "موزیلا فائر فاکس ٹیلی میٹری اور ڈیٹا رپورٹنگ سروسز کو غیر فعال کرتا ہے۔", "vsTip": "SQM کلائنٹ سمیت بصری اسٹوڈیو ٹیلی میٹری اور فیڈ بیک فیچرز کو غیر فعال کرتا ہے۔", "chromeTelemetryTip": "گوگل کروم ٹیلی میٹری اور سافٹ ویئر رپورٹنگ ٹول کو غیر فعال کرتا ہے (سی پی یو کے زیادہ استعمال کی وجہ سے مشہور ہے)۔", "printTip": "پرنٹ سروس پرنٹرز کا پتہ لگانے، انسٹال کرنے اور استعمال کرنے کی ذمہ دار ہے۔", "faxTip": "فیکس سروس فیکس بھیجنے اور وصول کرنے کی ذمہ دار ہے۔", "mediaSharingTip": "میڈیا پلیئر شیئرنگ ونڈوز میڈیا پلیئر کے لیے ہوم میڈیا شیئرنگ فراہم کرتا ہے۔", "stickyTip": "اسٹکی کیز ایک قابل رسائی خصوصیت ہے جو ونڈوز کے صارفین کی مدد کرتی ہے۔ جسمانی معذوری جس سے وابستہ حرکت کو کم کرنا بار بار تناؤ کی چوٹ۔", "homegroupTip": "ہوم گروپ ایک فیچر ہے جو فائلوں کو شیئر کرنے کی اجازت دیتا ہے۔ ونڈوز ایکسپلورر کا استعمال کرتے ہوئے گھریلو نیٹ ورک پر۔", "superfetchTip": "Superfetch عام طور پر استعمال ہونے والی ایپس کو RAM پر پہلے سے لوڈ کرتا ہے، جس کی وجہ سے ڈسک کا زیادہ استعمال ہوتا ہے، خاص طور پر HDDs پر۔", "compatTip": "مطابقت کی اسسٹنٹ سروس پرانے پروگراموں میں معروف مطابقت کے مسائل کا پتہ لگاتی ہے۔", "disableOneDriveTip": "OneDrive کلاؤڈ اسٹوریج انضمام کو غیر فعال کرتا ہے۔", "oldMixerTip": "کلاسک والیوم مکسر کنٹرول پینل کو بحال کرتا ہے۔", "oldExplorerTip": "- فوری رسائی کی تاریخ کو غیر فعال کرتا ہے۔ - اس پی سی پر فائل ایکسپلورر کا ڈیفالٹ ویو سیٹ کرتا ہے۔ - حالیہ فائلوں کو غیر فعال کرتا ہے۔ - ٹاسک بار سے تلاش، کام اور موسم کو ہٹاتا ہے۔ - فائل کی تاریخ کو غیر فعال کرتا ہے", "adsTip": "اشتہارات کو اسٹارٹ مینو میں ظاہر ہونے سے روکتا ہے۔", "uODTip": "OneDrive کلاؤڈ اسٹوریج انضمام کو مکمل طور پر ہٹاتا ہے۔", "peopleTip": "میرے لوگ ایک نئی خصوصیت ہے جو ٹاسک بار میں حالیہ رابطے دکھاتی ہے۔", "longPathsTip": "256 حروف کی زیادہ سے زیادہ راستے کی لمبائی کی حد کو ہٹاتا ہے۔", "inkTip": "Windows Ink ڈیجیٹل قلموں کو سکرین پر کھینچنے کے لیے مدد فراہم کرتی ہے۔", "spellTip": "صرف ٹچ کی بورڈ کی خصوصیات جیسے: - خودکار اصلاح - متن کی تجاویز - ہجوں کی پڑتال", "xboxTip": "Xbox Live سروسز Xbox گیمز کے لیے سٹریمنگ، ریکارڈنگ اور سماجی خصوصیات پیش کرتی ہیں۔", "actionTip": "اطلاعات کا مرکز اطلاعات اور فوری ایکشن ٹائلز کے لیے ایک مرکزی جگہ ہے جیسے وائی فائی، بلوٹوتھ وغیرہ۔", "autoUpdatesTip": "ونڈوز اپ ڈیٹس کی خودکار ڈاؤن لوڈ اور انسٹالیشن کو غیر فعال کرتا ہے۔ اس کے بجائے، نئی اپ ڈیٹس دستیاب ہونے پر ایک اطلاع ہے۔ یہ ڈیلیوری آپٹیمائزیشن سروس کو بھی غیر فعال کر دیتا ہے۔", "driversTip": "اس وقت مفید ہے جب ونڈوز اپ ڈیٹ مسلسل کسی کو صحیح طریقے سے تبدیل کرتا ہے۔ ایک ناقص ڈرائیور کے ساتھ کام کر رہا ہے۔", "telemetryServicesTip": "ٹیلی میٹری سروسز فیڈ بیک بھیجنے والے استعمال کے ڈیٹا کو ٹریک اور لاگ کرتی ہیں مائیکروسافٹ کے تجزیہ کے لیے۔", "privacyTip": ":پرائیویسی کے اضافی موافقتیں درج ذیل کو غیر فعال کرتی ہیں - بایومیٹرکس - جغرافیائی محل وقوع - تمام آلات پر ایپس کا اشتراک کریں۔ - ٹیکسٹ لاگر - تشخیص", "ccTip": "کلاؤڈ کلپ بورڈ آپ کے تمام آلات پر کلپ بورڈ ڈیٹا کا اشتراک کرتا ہے۔ یہ ایک ڈیوائس پر کاپی کرنے اور دوسرے پر پیسٹ کرنے کی اجازت دیتا ہے۔ اکاؤنٹ میں سائن ان کی ضرورت ہے۔ Microsoft", "cortanaTip": "کورٹانا ایک ورچوئل AI پر مبنی اسسٹنٹ ہے۔ - کورٹانا کو غیر فعال کرتا ہے۔ - اسٹارٹ مینو میں ویب سرچ کو غیر فعال کرتا ہے۔ - تلاش کی سرگزشت رکھنے سے روکتا ہے", "sensorTip": "سروسز جو سینسر کی فعالیت کو منظم کرتی ہیں، جیسے آٹو روٹیشن، آٹو برائٹنس وغیرہ۔ صرف ٹیبلیٹ یا ٹچ اسکرین والے آلات کے لیے مفید ہے۔", "castTip": "میراکاسٹ آلات پر میڈیا مواد کا اشتراک کرنے کے لیے دائیں کلک کو ہٹاتا ہے۔", "gameBarTip": "گیم بار ایکس بکس گیمنگ سروسز کے لیے فوری رسائی والا مینو ہے۔", "insiderTip": "پروگرام آپ کو تازہ ترین خصوصیات کو جانچنے کی اجازت دیتا ہے۔ Windows Insider اس سے پہلے کہ وہ عوام کے لیے جاری کیے جائیں۔ اسے ان صارفین کے لیے ایک غیر ضروری سروس سمجھا جاتا ہے جو شرکت نہیں کرنا چاہتے۔", "storeUpdatesSw": "مائیکروسافٹ اسٹور اپڈیٹس کو غیر فعال کریں", "storeUpdatesTip": "مائیکروسافٹ سٹور کی خودکار اپڈیٹس کی فعالیت کو غیر فعال کرتا ہے۔", "tpmTip": "Secure Boot اور TPM 2.0 کی ضروریات کو نظرانداز کرتا ہے، جو ونڈوز 11 میں اپ گریڈ کرنے کی اجازت دیتا ہے۔", "leftTaskbarTip": "ٹاسک بار کے آئیکنز کو بائیں طرف سیدھ میں کرتا ہے۔", "snapAssistTip": "زیادہ سے زیادہ بٹنوں کو ہوور کرنے پر سنیپ اسسٹ فلائی آؤٹ کو غیر فعال کر دیتا ہے۔", "widgetsTip": "وجیٹس کی خصوصیت کو غیر فعال کرتا ہے اور ٹاسک بار سے وجیٹس کے آئیکن کو ہٹاتا ہے۔", "chatTip": "ٹاسک بار سے چیٹ آئیکن کو ہٹاتا ہے۔", "smallerTaskbarTip": "ٹاسک بار کا سائز اور شبیہیں چھوٹا بناتا ہے۔", "classicRibbonTip": "فائل ایکسپلورر میں ونڈوز 10 سے کلاسک ربن بار کو بحال کرتا ہے۔", "classicContextTip": "'مزید اختیارات دکھائیں' کو ہٹا کر کلاسک رائٹ کلک مینو کو بحال کرتا ہے۔", "gameModeSw": "گیمنگ موڈ کو فعال کریں", "gameModeTip": "گیمنگ موڈ کو ہارڈ ویئر ایکسلریٹڈ GPU شیڈولنگ کے ساتھ فعال کرتا ہے۔", "systemRestoreM": "کیا آپ واقعی سسٹم کی بحالی کو غیر فعال کرنا چاہتے ہیں؟ یہ آپ کی موجودہ بیک اپ تصاویر کو حذف کر دے گا!", "compactModeSw": "ایکسپلورر میں کومپیکٹ موڈ کو فعال کریں", "compactModeTip": "فائلز ایکسپلورر میں فائلوں کے درمیان اضافی جگہ اور پیڈنگ کو کم کرتا ہے۔", "stickersTip": "اسٹیکرز بڑے ایموجیز ہیں جو وال پیپرز پر ظاہر ہوتے ہیں، جو سوشل میسنجر میں استعمال ہوتے ہیں۔", "hibernateSw": "ہائبرنیشن کو غیر فعال کریں", "hibernateTip": "ونڈوز کے ہائبرنیٹ فیچر کو غیر فعال کرتا ہے۔", "smb1Sw": "SMBv1 پروٹوکول کو غیر فعال کریں", "smb2Sw": "SMBv2 پروٹوکول کو غیر فعال کریں", "smbTip": "SMB{v} پروٹوکول ونڈوز کمپیوٹرز کے درمیان فائل شیئرنگ کے لیے ذمہ دار ہے۔ اسے SMBv3 سے بدل دیا گیا ہے، جو زیادہ محفوظ ہے۔", "ntfsStampSw": "NTFS ٹائم اسٹیمپ کو غیر فعال کریں", "ntfsStampTip": "فائل کی آخری بار رسائی کرنے والے ڈاک ٹکٹ کی نشاندہی کرتا ہے۔ اسے غیر فعال کرنے سے ڈسکوں پر I/O آپریشنز کم ہو سکتے ہیں۔", "autoStartToggle": "ونڈوز کے ساتھ شروع کریں", "nvidiaTelemetrySw": "NVIDIA ٹیلی میٹری کو غیر فعال کریں", "dnsTitle": "DNS سرور کو تیزی سے تبدیل کریں", "vbsSw": "ورچوئلائزیشن پر مبنی سیکیورٹی کو غیر فعال کریں", "vbsTip": "کرنل کی خصوصیت جو عمل میں نقصان دہ ڈرائیوروں کے انجیکشن کو روکتی ہے۔ اس کا کارکردگی پر منفی اثر پڑتا ہے۔", "winSearchSw": "تلاش کو غیر فعال کریں", "winSearchTip": "ونڈوز سرچ سروس کو غیر فعال کرتا ہے۔", "btnRestoreUwp": "تمام UWP بحال کریں", "restoreUwpMessage": "کیا آپ واقعی یہ کرنا چاہتے ہیں؟", "telemetrySvcToggle": "آپٹیمائزر بصیرت کو غیر فعال کریں", "edgeAiSw": "Edge Discover کو غیر فعال کریں", "edgeTelemetrySw": "ایج ٹیلی میٹری کو غیر فعال کریں", "edgeAiTip": "کنارے میں موجود ڈسکور بار کو ہٹاتا ہے۔", "edgeTelemetryTip": "ایج میں اسمارٹ اسکرین، اسپاٹ لائٹ اور ٹیلی میٹری خدمات کو غیر فعال کرتا ہے۔", "hpetSw": "HPET کو غیر فعال کریں", "loginVerboseSw": "تفصیلی لاگ ان اسکرین کو فعال کریں", "advancedTab": "اعلی درجے کی", "btnRestartSafe": "محفوظ موڈ میں دوبارہ شروع کریں", "btnRestart": "نارمل موڈ میں دوبارہ شروع کریں", "btnRestartDisableDefender": "ڈیفنڈر کو دوبارہ شروع کریں اور غیر فعال کریں", "classicPhotoViewerSw": "کلاسیکی تصویر دیکھنے والے کو بحال کریں", "tabPage3": "فونٹس", "fontSetTitle": "اپنے پسندیدہ فونٹ کو ونڈوز ڈیفالٹ فونٹ کے طور پر سیٹ کریں", "label11": ":موجودہ فونٹ", "btnSetGlobalFont": "بطور ڈیفالٹ سیٹ کریں", "lblFontsCount": "دستیاب فونٹس:", "btnRestoreFont": "ڈیفالٹ بحال کریں", "btnRefreshFonts": "ریفریش کریں", "chkAllNics": "تمام نیٹ ورک اڈاپٹر کے لیے سیٹ کریں", "chkCustomDns": "حسب ضرورت DNS سیٹ کریں", "btnSetDns": "DNS سیٹ کریں", "copilotSw": "کو پائلٹ AI کو غیر فعال کریں", "copilotTip": "CoPilot AI فیچر کو مکمل طور پر بند کر دیتا ہے۔", "btnReinforce": "پالیسیوں کو تقویت دیں", "msgReinforce": "کیا آپ واقعی اپنی موجودہ فعال پالیسیوں کو دوبارہ لاگو کرنا چاہتے ہیں؟", "newsInterestsSw": "خبروں اور دلچسپیوں کو غیرفعال کریں", "allTrayIconsSw": "تمام اطلاعیہ آئیکنز دکھائیں", "noMenuDelaySw": "مینو کی دیر کو ختم کریں", "hideSearchSw": "ٹاسک بار تلاش چھپائیں", "hideWeatherSw": "ٹاسک بار موسم چھپائیں", "autoUpdateToggle": "شروع میں اپ ڈیٹ", "enableUtcSw": "یو ای ٹی سمت ان کریں", "modernStandbySw": "جدید استعداد کو غیر فعال کریں", "label24": "سسٹم متغیرات ایڈیٹر", "label23": "نیا سسٹم متغیر راستہ:", "button3": "شامل کریں", "label21": "سسٹم متغیرات", "button1": "حذف کریں", "button2": "تازہ کریں" } ================================================ FILE: Optimizer/Resources/i18n/VN.json ================================================ { "subSystem": "Hệ thống", "subPrivacy": "Quyền riêng tư", "subGaming": "Gaming", "subTouch": "Cảm ứng", "subTaskbar": "Taskbar", "subExtras": "Extras", "btnAbout": "OK", "restartButton": "Khởi động lại ngay", "restartButton8": "Khởi động lại ngay", "restartButton10": "Khởi động lại ngay", "btnFind": "Tìm", "btnKill": "Dừng", "trayUnlocker": "Xử lý tệp", "restartAndApply": "Khởi động lại để áp dụng thay đổi", "txtVersion": "Phiên bản: {VN}", "txtBitness": "Bạn đang sử dụng {BITS}", "linkUpdate": "Có phiên bản mới", "lblLab": "Phiên bản thử nghiệm\n(sẽ xoá sau khi đã test)", "regBackupSw": "Bật sao lưu sổ đăng ký", "performanceSw": "Tối ưu hiệu năng", "networkSw": "Tối ưu mạng", "defenderSw": "Tắt Windows Defender", "systemRestoreSw": "Tắt System Restore", "printSw": "Tắt dịch vụ In", "mediaSharingSw": "Tắt hệ thống chia sẻ trình phát đa phương tiện", "faxSw": "Tắt dịch vụ Fax", "reportingSw": "Tắt báo cáo lỗi", "homegroupSw": "Tắt HomeGroup", "superfetchSw": "Tắt Superfetch", "telemetryTasksSw": "Tắt hệ thống đo lường", "officeTelemetrySw": "Tắt hệ thống đo lường của Office", "vsSW": "Tắt hệ thống đo lường của Visual Studio", "ffTelemetrySw": "Tắt hệ thống đo lường của Mozilla Firefox", "chromeTelemetrySw": "Tắt hệ thống đo lường của Google Chrome", "compatSw": "Tắt kiểm tra tính tương thích", "smartScreenSw": "Tắt SmartScreen", "stickySw": "Tắt Sticky Keys", "universalTab": "Chung", "modernAppsTab": "Ứng dụng UWP", "startupTab": "Khởi động", "appsTab": "Ứng dụng", "cleanerTab": "Dọn dẹp", "pingerTab": "Mạng", "registryFixerTab": "Registry", "integratorTab": "Tích hợp", "CleanPreviewForm": "Xem trước", "optionsTab": "Tuỳ chọn", "oldMixerSw": "Bật giao diện điều chỉnh âm lượng cũ", "oldExplorerSw": "Khôi phục File Explorer cũ", "adsSw": "Tắt quảng cáo trong Menu Start", "uODSw": "Gỡ cài đặt OneDrive", "peopleSw": "Tắt My People", "longPathsSw": "Bật tên đường dẫn tệp dài", "autoUpdatesSw": "Tắt tự động cập nhật", "driversSw": "Không tự động cập nhật driver thông qua", "telemetryServicesSw": "Tắt dịch vụ đo lường", "privacySw": "Nâng cao tính riêng tư", "ccSw": "Tắt Clipboard đám mây", "cortanaSw": "Tắt Cortana", "sensorSw": "Tắt dịch vụ cảm biến", "castSw": "Gỡ truyền tới thiết bị ", "inkSw": "Tắt Windows Ink", "spellSw": "Tắt kiểm tra chính tả", "xboxSw": "Tắt Xbox Live", "gameBarSw": "Tắt Game Bar", "insiderSw": "Tắt dịch vụ thử nghiệm", "actionSw": "Tắt trung tâm thông báo", "disableOneDriveSw": "Tắt OneDrive", "tpmSw": "Tắt kiểm tra TPM", "leftTaskbarSw": "Căn chỉnh thanh Taskbar sang trái", "snapAssistSw": "Tắt hỗ trợ chia đôi màn mình", "widgetsSw": "Tắt Widgets", "chatSw": "Tắt Chat", "smallerTaskbarSw": "Làm thanh Taskbar nhỏ hơn", "classicRibbonSw": "Bật thanh ribbon cũ trong File Explorer", "classicContextSw": "Bật menu chuột phải cũ", "refreshModernAppsButton": "Làm mới", "uninstallModernAppsButton": "Gỡ cài đặt", "txtModernAppsTitle": "Gỡ cài đặt các ứng dụng UWP không mong muốn", "chkSelectAllModernApps": "Chọn tất cả", "chkOnlyRemovable": "Chỉ các ứng dụng có thể gỡ cài đặt", "onedriveM": "Bạn có muốn gỡ cài đặt OneDrive không? Nó sẽ xoá tất cả tệp trong Desktop và Documents! Chỉ sử dụng tuỳ chọn này cho tài khoản cục bộ (Local account)!", "startupTitle": "Chọn những ứng dụng khởi động cùng hệ thống", "removeStartupItemB": "Xoá", "locateFileB": "Tìm tệp", "findInRegB": "Tìm trong Registry", "analyzeDriveB": "Phân tích", "refreshStartupB": "Làm mới", "restoreStartupB": "Khôi phục", "backupStartupB": "Sao lưu", "lblBackupTitle": "Tiêu để bản sao lưu:", "doBackup": "OK", "cancelBackup": "Huỷ", "startupItemName": "Tên", "startupItemLocation": "Vị trí", "startupItemType": "Loại", "txtFeedError": "Không có kết nối mạng, đang thử làm mới lại liên kết", "appsTitle": "Tải và cài đặt những ứng dụng hữu ích", "btnGetFeed": "Làm mới các liên kết", "bitPref": "Phiên bản bit của ứng dụng", "linkWarnings": "Xem các cảnh báo", "txtDownloadStatus": "Chờ", "goToDownloadsB": "Mở Downloads", "btnDownloadApps": "Tải xuống", "cAutoInstall": "Cài đặt sau khi tải xuống", "setDownDirLbl": "Đặt thư mục tải xuống", "c64": "64-bit", "c32": "32-bit", "checkSelectAll": "Chọn tất cả", "checkTemp": "Các tệp tạm thời", "checkLogs": "Nhật ký Windows", "checkMiniDumps": "BSOD minidumps", "checkBin": "Dọn sạch thùng rác", "checkMediaCache": "Bộ nhớ đệm của trình phát đa phương tiện", "checkErrorReports": "Báo cáo lỗi", "cleanDriveB": "Dọn dẹp", "lblPretext": "Kích thước tối đa có thể giải phóng:", "cleanerTitle": "Dọn dẹp ổ đĩa hệ thống", "pingerTitle": "Ping địa chỉ IP và đánh giá độ trễ", "lblPinger": "IP / Tên miền", "btnOpenNetwork": "Mở Các kết nối mạng", "copyIPB": "Sao chép", "copyB": "Sao chép IP", "btnShodan": "Kiểm tra SHODAN.io", "btnPing": "Ping", "lblResults": "Kết quả", "flushCacheB": "Xoá bộ nhớ đệm của DNS", "btnExport": "Xuất", "hostsTitle": "Chỉnh sửa tệp hosts của bạn một cách có hiệu quả", "linkLocate": "Tìm", "linkAdvancedEdit": "Trình chỉnh sửa nâng cao", "linkRestoreDefault": "Khôi phục về ban đầu", "lblIP": "Địa chỉ IP", "lblDomain": "Tên miền", "chkBlock": "Chặn", "addHostB": "Thêm", "lblLock": "Bảo vệ file HOSTS của bạn bằng cách khoá nó", "chkReadOnly": "Chỉ đọc", "lblAdblock": "Chặn quảng cáo đã làm sẵn", "lblAdblockSub": "(sẽ xoá cấu hình hiện tại của bạn)", "adblockS": "Chặn quảng cáo + mạng xã hội", "adblockP": "Chặn quảng cáo + khiêu dâm", "removeHostB": "Xoá", "refreshHostsB": "Làm mới", "removeAllHostsB": "Xoá tất cả", "regFixB": "Sửa", "regLbl": "(một số thay đổi sẽ cần tới nó)", "checkRestartExplorer": "Và còn phải khởi động lại File Explorer để lưu cài đặt", "checkRegistryEditor": "Trình chỉnh sửa Registry", "checkFirewall": "Windows Firewall", "checkContextMenu": "Menu chuột phải", "checkRunDialog": "Hộp thoại Run", "checkFolderOptions": "Tuỳ chọn thư mục", "checkControlPanel": "Control Panel", "checkCommandPrompt": "Dấu nhắc lệnh (Command Prompt)", "checkTaskManager": "Trình quản lý tác vụ (Task Manager)", "checkEnableAll": "Bật tất cả", "registryTitle": "Sửa các vấn đề chung của registry", "quickAccessToggle": "Hiện menu truy cập nhanh", "helpTipsToggle": "Hiện Trợ giúp", "lblTheming": "Chọn chủ đề", "radioOcean": "Đại dương", "radioMagma": "Magma", "radioZerg": "Zerg", "radioCaramel": "Caramel", "radioLime": "Chanh", "radioMinimal": "Tối giản", "lblUpdating": "Kiểm tra và cập nhật", "btnUpdate": "Kiểm tra cập nhật", "btnChangelog": "Xem nhật ký thay đổi", "lblUpdateDisabled": "Đã tắt trong bản thử nghiệm", "lblTroubleshoot": "Khắc phục sự cố", "btnViewLog": "Xem nhật ký lỗi", "btnOpenConf": "Xem thư mục cấu hình", "btnResetConfig": "Sửa", "integrator1": "Bộ tích hợp có thể thêm để tuỳ biến sâu các mục trong\n danh mục chuột phải trên màn hình làm việc:", "integrator2": "• Bất kỳ chương trình", "integrator3": "• Lối tắt tới thư mục", "integrator4": "• Liên kết tới trang web", "integrator5": "• Bất kỳ loại tệp", "integrator6": "• Các lệnh", "integrator7": "Các mục có thể tuỳ chỉnh biểu tượng và vị trí.\nChúng có thể được ẩn, chỉ truy cập\nbằng cách nhất phím SHIFT.\nNó còn có thể tạo các lệnh tuỳ chọn\n cho hộp thoại chạy, làm cho nó có thể dễ dàng chạy\nbất kì ứng dụng bằng cách chỉ cần cần nhập ký tự mong muốn của bạn.", "integratorInfoTab": "Thông tin", "tabPage8": "Thêm/Chỉnh sửa", "tabPage9": "Xoá", "tabPage10": "Danh mục sẵn sàng", "tabPage11": "Chạy hộp thoại", "addItemL": "Thêm hoặc chỉnh một mục", "itemtype": "Loại mục", "radioProgram": "Chương trình", "radioFolder": "Thư mục", "radioLink": "Liên kết", "radioFile": "Tệp", "radioCommand": "Lệnh", "itemtoaddgroup": "Ứng dụng để thêm", "folderToAdd": "Thư mục để thêm", "linkToAdd": "Liên kết để thêm", "fileToAdd": "Tệp để thêm", "commandToAdd": "Lệnh để thêm", "icontoaddgroup": "Biểu tượng để thêm", "checkDefaultIcon": "Sử dụng biểu tượng của chính chương trình đó", "checkDefaultFolderIcon": "Sử dụng biểu tượng thư mục mặc định", "checkFavicon": "Tải xuống biểu tượng của trang web (favicon)", "checkNoIcon": "Không biểu tượng", "dnsCacheM": "Bộ nhớ đệm của DNS đang được tạo, hãy thử lại sau!", "itemposition": "Ví trí của mục", "radioTop": "Trên", "radioMiddle": "Giữa", "radioBottom": "Dưới", "security": "Bảo mật", "checkShift": "Chỉ hiện nếu phím SHIFT được nhấn", "itemnamegroup": "Tên mục trong danh mục", "btnAddItem": "Thêm/Chỉnh sửa", "removeIntegratorItemsL": "Xoá những mục đã có trên Desktop", "removeDIB": "Xoá", "refreshIIB": "Làm mới", "removeAllIIB": "Xoá tất cả", "PMB": "Thêm danh mục nguồn", "STB": "Thêm các công cụ hệ thống", "WAB": "Thêm các ứng dụng của Windows", "SSB": "Thêm lối tắt hệ thống", "DSB": "Thêm lối tắt màn hình làm việc", "AddOwnerB": "Thêm 'Lấy quyền sở hữu'", "RemoveOwnerB": "Xoá 'Lấy quyền sở hữu'", "AddCMDB": "Thêm 'Mở cùng với CMD'", "DeleteCMDB": "Xoá 'Mở cùng với CMD'", "readyMenusL": "Thêm các danh mục đã làm sẵn, có ích", "refreshCCB": "Làm mới", "removeCCB": "Xoá", "removeCCL": "Xoá các lệnh đang có", "btnCreateCustomCommand": "Tạo", "ccKeywordL": "từ khoá", "ccFileL": "Vị trí tệp", "ccL": "Định nghĩa lệnh chạy của bạn", "btnYes": "Có", "btnNo": "Không", "btnOk": "OK", "HostsEditorForm": "Trình chỉnh sửa tệp Hosts", "savebtn": "Lưu", "closebtn": "Đóng", "adminMissingMsg": "Optimizer cần được chạy với quyền quản trị viên\nỨng dụng sẽ đóng ngay bây giờ...", "unsupportedMsg": "Optimizer chỉ chạy từ Windows 7 hoặc cao hơn\nỨng dụng sẽ đóng ngay bây giờ...", "confInvalidVersionMsg": "Phiên bản Windows không trùng khớp!", "confInvalidFormatMsg": "Định dạng tệp cấu hình không đúng", "confNotFoundMsg": "Tệp cấu hình không tồn tại!", "argInvalidMsg": "Đối số không phù hợp! Ví dụ: Optimizer.exe /template.json", "alreadyRunningMsg": "Optimizer đã chạy trong nền rồi!", "StartupPreviewForm": "Xem trước các mục khởi chạy", "StartupRestoreForm": "Khôi phục các mục khởi chạy", "backupL": "Khôi phục các mục khởi chạy của bạn", "txtNoBackups": "Không tìm thấy bản sao lưu", "previewBackupB": "Xem trước", "restoreBackupB": "Khôi phục", "deleteBackupB": "Xoá", "noNewVersion": "Bạn đang sử dụng phiên bản mới nhất!", "betaVersion": "Bạn đang sử dụng phiên bản thử nghiệm!", "removeAllStartup": "Bạn có muốn xoá hết tất cả các mục khởi chạy?", "removeAllHosts": "Bạn có muốn xoá hết tất cả các mục hosts?", "removeAllItems": "Bạn có muốn xoá hết tất cả các mục trên Desktop?", "removeModernApps": "Bạn có muốn xoá các ứng dụng sau đây?", "errorModernApps": "Các ứng dụng sau đây không thể gỡ bỏ:\n", "latestVersionM": "Phiên bản mới nhất: {LATEST}", "currentVersionM": "Phiên bản hiện tại: {CURRENT}", "resetMessage": "Ứng dụng sẽ thoát ngay để tự động sửa chữa.", "newVersion": "Đã có phiên bản mới! Bạn có muốn tải xuống ngay không?\nỨng dụng sẽ tự động khởi động lại sau một vài giây.", "flushDNSMessage": "Bạn có muốn xoá bộ nhớ đệm DNS của Windows không?\n\nSẽ gây ra ngắt kết nối mạng trong một thời gian và có thể phải khởi động lại để hoạt động ổn định.", "downloadsFinished": "Hoàn tất", "downloadDirInvalid": "Thư mục tải xuống không hợp lệ", "no64Download": "64-bit không có sẵn, đang tải xuống 32-bit", "no32Download": "32-bit không có sẵn, bỏ qua", "installing": "Đang cài đặt", "linkInvalid": "Liên kết không còn tồn tại", "noErrorsM": "Không có lỗi để hiện thị!", "hostNotFound": "Không thể tìm thấy máy chủ", "pinging": "Đang ping với 32 bytes - 9 lần...", "latency": "ĐỘ TRỄ", "lblSystemTools": "Hệ thống và công cụ", "lblInternet": "Mạng", "lblCoding": "Lập trình", "lblVideoSound": "Hình ảnh và âm thanh", "min": "Nhỏ nhất", "max": "Lớn nhất", "avg": "Trung bình", "timeout": "Quá thời gian yêu cầu", "languagesL": "Lựa chọn ngôn ngữ", "trayStartup": "Quản lý khởi động", "trayCleaner": "Dọn dẹp ổ đĩa", "trayPinger": "Mạng", "trayHosts": "Trình chỉnh sửa HOSTS", "trayAD": "Trình tải ứng dụng", "trayOptions": "Tuỳ chọn", "trayRegistry": "Sửa chữa Registry", "trayRestartExplorer": "Khởi động lại File Explorer", "trayExit": "Thoát", "tipWhatsThis": "Đây là gì?", "hwDetailed": "Xem chi tiết", "btnCopyHW": "Sao chép", "btnSaveHW": "Lưu", "indiciumTab": "Phần cứng", "toolHWCopy": "Sao chép", "toolHWGoogle": "Tìm kiếm với Google", "toolHWDuck": "Tìm kiếm với DuckDuckGo", "trayHW": "Thông tin phần cứng", "os": "Hệ điều hành", "cpu": "Bộ xử lý", "ram": "Bộ nhớ", "gpu": "Bộ xử lý đồ hoạ", "mobo": "Bo mạch chủ", "disk": "Bộ nhớ lưu trữ", "inet": "Bộ điều hợp mạng", "audio": "Âm thanh", "dev": "Thiết bị ngoại vi", "vm": "Bộ nhớ ảo", "drives": "Ổ cứng", "volumes": "Phân vùng", "opticals": "Ổ đĩa quang", "removables": "Ổ đĩa gắn ngoài", "physicalAdapters": "Bộ điều hợp vật lý", "virtualAdapters": "Bộ điều hợp ảo", "keyboards": "Bàn phím", "pointings": "Thiết bị điều khiển con trỏ", "performanceTip": "Các cài đặt của Windows để tối ưu hóa hiệu suất.\nHoàn toàn an toàn để sử dụng.\n\n- Giảm thời gian chờ khi tắt các tác vụ không phản hồi.\n- Giảm thời gian trễ hiển thị danh mục.\n- Tắt thông báo kiểm tra dung lượng ổ đĩa thấp\n- Tắt tính năng lắc để ẩn (shake-to-minimize)\n- Luôn hiển thị định dạng (đuôi) của tệp\n- Hiển thị tệp tin ẩn", "networkTip": "Windows triển khai cơ chế điều chỉnh mạng sẽ hạn chế lưu lượng mạng khi chạy các ứng dụng đa phương tiện.\nNó cũng có thể làm giảm hiệu suất mạng khi chơi trò chơi.", "defenderTip": "Windows Defender là trình diệt vi rút được tích hợp sẵn trong hệ thống Windows.", "smartScreenTip": "SmartScreen quét các tệp, nội dung tải xuống và trang web,\nchặn nội dung nguy hiểm và cảnh báo bạn trước khi chạy chúng.", "systemRestoreTip": "Khôi phục Hệ thống (System Restore) là một tính năng cho phép khôi phục lại trạng thái của Windows\nvề trạng thái trước đó để khôi phục sau các trục trặc hoặc các sự cố khác.", "reportingTip": "Error Reporting (Báo cáo Lỗi) thu thập các sự cố và lỗi của ứng dụng rồi gửi chúng tới Microsoft.", "telemetryTasksTip": "Telemetry services (Dịch vụ thu thập dữ liệu đo lường) định kỳ gửi dữ liệu sử dụng và hiệu suất đến Microsoft để cải thiện trong tương lai.", "officeTelemetryTip": "Telemetry của Office định kỳ gửi dữ liệu sử dụng và hiệu suất đến Microsoft để cải thiện trong tương lai.", "ffTelemetryTip": "Tắt dịch vụ thông tin đo lường và báo cáo dữ liệu của Mozilla Firefox.", "vsTip": "Tắt đo lường và tính năng phản hồi của Visual Studio, bao gồm cả SQM client.", "chromeTelemetryTip": "Tắt dịch vụ thông tin đo lường và công cụ báo cáo phần mềm của Google Chrome (có thể sẽ giúp giảm mức sử dụng CPU).", "printTip": "Dịch vụ in làm nhiệm vụ phát hiện, cài đặt và sử dụng máy in.", "faxTip": "Dịch vụ fax làm nhiệm vụ gửi và nhận fax.", "mediaSharingTip": "Chia sẻ truyền thông của Media Player cung cấp chia sẻ truyền thông gia đình cho Windows Media Player.", "stickyTip": "Sticky Keys là tính năng trợ giúp người sử dụng Windows với khuyết tật về thể chất giảm thiểu loại di chuyển liên quan đến chấn thương lặp lại.", "homegroupTip": "HomeGroup là tính năng cho phép chia sẻ tập tin trên mạng gia đình thông qua Windows Explorer.", "superfetchTip": "Superfetch tải trước các ứng dụng thường xuyên được sử dụng vào RAM, gây tăng mức sử dụng đĩa, đặc biệt là trên HDD.", "compatTip": "Dịch vụ Trợ giúp Tương thích phát hiện vấn đề tương thích đã biết trong các chương trình cũ.", "disableOneDriveTip": "Tắt tích hợp lưu trữ đám mây OneDrive.", "oldMixerTip": "Khôi phục điều khiển bàn trộn âm lượng cổ điển.", "oldExplorerTip": "- Tắt lịch sử Truy cập Nhanh\n- Đặt chế độ xem mặc định của File Explorer thành This PC\n- Tắt Recent Places\n- Loại bỏ Tìm kiếm, Nhiệm vụ và Thời tiết khỏi thanh công cụ\n- Tắt File History", "adsTip": "Ngăn quảng cáo xuất hiện trong Menu Start.", "uODTip": "Loại bỏ hoàn toàn tích hợp lưu trữ đám mây OneDrive.", "peopleTip": "My People là tính năng hiển thị danh bạ liên lạc gần đây trong thanh tác vụ.", "longPathsTip": "Loại bỏ giới hạn độ dài đường dẫn tối đa (256 ký tự).", "inkTip": "Windows Ink hỗ trợ bút kỹ thuật số, cho phép vẽ trên màn hình.", "spellTip": "Các tính năng chỉ dành cho bàn phím cảm ứng như:\n- Tự động sửa lỗi\n- Đề xuất văn bản\n- Kiểm tra chính tả", "xboxTip": "Dịch vụ Xbox Live cung cấp tính năng phát trực tuyến, ghi hình và xã hội cho trò chơi Xbox.", "actionTip": "Action Center là nơi tập trung thông báo và biểu tượng hành động nhanh, chẳng hạn như Wi-Fi, Bluetooth, v.v.", "autoUpdatesTip": "Tắt tải và cài đặt tự động các cập nhật Windows.\nThay vào đó, có thông báo khi có cập nhật mới.\nNó cũng tắt dịch vụ Delivery Optimization.", "driversTip": "Hữu ích khi Windows Update liên tục thay thế trình điều khiển hoạt động đúng cách bằng một trình điều khiển lỗi.", "telemetryServicesTip": "Dịch vụ đo lường theo dõi và lưu dữ liệu sử dụng để gửi phản hồi\nđể phân tích đến Microsoft.", "privacyTip": "Các điều chỉnh riêng tư bổ sung vô hiệu hóa các tính năng sau đây:\n- Nhận dạng sinh trắc học\n- Định vị địa lý\n- Chia sẻ ứng dụng qua thiết bị\n- Trình ghi văn bản\n- Chẩn đoán", "ccTip": "Cloud Clipboard chia sẻ dữ liệu clipboard trên tất cả các thiết bị của bạn.\nNó cho phép sao chép trên một thiết bị và dán trên thiết bị khác.\nYêu cầu đăng nhập tài khoản Microsoft.", "cortanaTip": "Cortana là một trợ lý ảo dựa trên trí tuệ nhân tạo.\n- Tắt Cortana.\n- Tắt tìm kiếm web trong Menu Bắt đầu\n- Ngăn chặn lưu trữ lịch sử tìm kiếm", "sensorTip": "Dịch vụ quản lý chức năng cảm biến,\nnhư tự động quay, tự động điều chỉnh độ sáng, v.v.\nHữu ích chỉ đối với máy tính bảng hoặc thiết bị có màn hình cảm ứng.", "castTip": "Loại bỏ cách nhấp chuột phải để chia sẻ nội dung truyền thông với thiết bị Miracast.", "gameBarTip": "Game Bar là một menu truy cập nhanh cho các dịch vụ chơi trò chơi Xbox.", "insiderTip": "Chương trình Windows Insider cho phép bạn thử nghiệm các tính năng mới\ntrước khi chúng được phát hành cho công chúng.\nĐược xem là một dịch vụ không cần thiết đối với người dùng không muốn tham gia.", "storeUpdatesSw": "Tắt Cập nhật Microsoft Store", "storeUpdatesTip": "Tắt chức năng cập nhật tự động của Microsoft Store.", "tpmTip": "Bỏ qua yêu cầu Secure Boot và TPM 2.0, cho phép nâng cấp lên Windows 11.", "leftTaskbarTip": "Căn chỉnh biểu tượng thanh công cụ sang bên trái.", "snapAssistTip": "Tắt Snap Assist Flyout khi di chuột qua nút tối đa hóa.", "widgetsTip": "Tắt tính năng Widgets và loại bỏ biểu tượng Widgets khỏi thanh công cụ.", "chatTip": "Loại bỏ biểu tượng Chat khỏi thanh công cụ.", "smallerTaskbarTip": "Thu nhỏ kích thước thanh công cụ và biểu tượng.", "classicRibbonTip": "Khôi phục thanh ribbon cổ điển từ Windows 10 trong File Explorer.", "classicContextTip": "Khôi phục menu nhấp chuột phải cổ điển, loại bỏ 'Hiển thị thêm tùy chọn'.", "gameModeSw": "Bật Game Mode", "gameModeTip": "Kích hoạt Game Mode kết hợp với lập lịch GPU tăng tốc phần cứng.", "systemRestoreM": "Bạn có chắc chắn muốn tắt System Restore không? Điều này sẽ xóa các bản sao lưu hiện tại của bạn!", "compactModeSw": "Bật Chế độ Compact trong Explorer", "compactModeTip": "Giảm khoảng trống giữa các tệp trong File Explorer.", "stickersTip": "Stickers là các biểu tượng cảm xúc lớn xuất hiện trên hình nền, được sử dụng trong các ứng dụng nhắn tin.", "hibernateSw": "Tắt Chế độ ngủ đông", "hibernateTip": "Tắt tính năng ngủ đông của Windows.", "smb1Sw": "Tắt Giao thức SMBv1", "smb2Sw": "Tắt Giao thức SMBv2", "smbTip": "Giao thức SMB{v} chịu trách nhiệm chia sẻ tệp giữa các máy tính Windows.\nHiện đã được thay thế bằng SMBv3 có độ an toàn cao hơn.", "ntfsStampSw": "Tắt Dấu thời gian NTFS", "ntfsStampTip": "Chỉ định dấu thời gian truy cập cuối cùng của tệp.\nTắt nó có thể giảm thiểu các hoạt động I/O trên đĩa.", "autoStartToggle": "Khởi động cùng Windows", "nvidiaTelemetrySw": "Tắt đo lường của NVIDIA", "dnsTitle": "Thay đổi nhanh chóng máy chủ DNS", "vbsSw": "Tắt Bảo mật Dựa trên Ảo hóa", "vbsTip": "Tính năng kernel ngăn chặn việc đưa trình điều khiển độc hại vào các tiến trình.\nNó có ảnh hưởng tiêu cực đối với hiệu suất.", "winSearchSw": "Tắt Search", "winSearchTip": "Tắt dịch vụ tìm kiếm Windows.", "btnRestoreUwp": "Khôi phục tất cả ứng dụng UWP", "restoreUwpMessage": "Bạn có chắc chắn muốn làm điều này không?", "telemetrySvcToggle": "Tắt Optimizer Insights", "edgeAiSw": "Tắt Edge Discover", "edgeTelemetrySw": "Tắt Telemetry của Edge", "edgeAiTip": "Loại bỏ thanh Discover Bar trong Edge.", "edgeTelemetryTip": "Tắt SmartScreen, Spotlight và dịch vụ Telemetry trong Edge.", "hpetSw": "Tắt HPET", "loginVerboseSw": "Bật Màn hình đăng nhập chi tiết", "advancedTab": "Nâng cao", "btnRestartSafe": "Khởi động ở Chế độ An toàn (Safe Mode)", "btnRestart": "Khởi động ở Chế độ Bình thường", "btnRestartDisableDefender": "Khởi động && Tắt Defender", "classicPhotoViewerSw": "Khôi phục Photo Viewer cổ điển (Windows 7, Windows 8)", "tabPage3": "Phông chữ", "fontSetTitle": "Thiết lập phông chữ yêu thích của bạn làm phông chữ mặc định của Windows", "label11": "Phông chữ hiện tại:", "btnSetGlobalFont": "Thiết lập làm mặc định", "lblFontsCount": "Số lượng phông chữ có sẵn:", "btnRestoreFont": "Khôi phục mặc định", "btnRefreshFonts": "Làm mới", "chkAllNics": "Thiết lập cho tất cả các bộ chuyển mạng", "chkCustomDns": "Thiết lập DNS tùy chỉnh", "btnSetDns": "Thiết lập DNS", "copilotSw": "Tắt Copilot AI", "copilotTip": "Tắt hoàn toàn tính năng Copilot AI.", "btnReinforce": "Cập nhật các chính sách", "msgReinforce": "Bạn có chắc muốn áp dụng lại các chính sách hoạt động hiện tại của bạn không?", "newsInterestsSw": "Tắt News and Interests", "allTrayIconsSw": "Hiển thị tất cả biểu tượng thông báo", "noMenuDelaySw": "Xóa độ trễ của menu", "hideSearchSw": "Ẩn tìm kiếm trên thanh taskbar", "hideWeatherSw": "Ẩn thời tiết trên thanh taskbar", "enableUtcSw": "Bật thời gian UTC", "autoUpdateToggle": "Cập nhật khi khởi động", "modernStandbySw": "Tắt Chế độ chờ hiện đại", "label24": "Trình chỉnh sửa Biến hệ thống", "label23": "Đường dẫn biến hệ thống mới:", "button3": "Thêm", "label21": "Biến hệ thống", "button1": "Xóa", "button2": "Làm mới" } ================================================ FILE: Optimizer/SilentOps.cs ================================================ using Newtonsoft.Json; using System; using System.IO; using System.Linq; namespace Optimizer { internal static class SilentOps { internal static SilentConfig CurrentSilentConfig; internal static SilentConfig GetSilentConfig(string path) { try { CurrentSilentConfig = JsonConvert.DeserializeObject(File.ReadAllText(path)); } catch (Exception ex) { Logger.LogError("SilentOps.GetSilentConfig", ex.Message, ex.StackTrace); CurrentSilentConfig = null; } return CurrentSilentConfig; } internal static void ProcessAllActions() { Logger.InitializeSilentReport(); if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows7) { ProcessTweaksGeneral(); Logger.LogInfoSilent("Tweaks | Windows 7"); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows8) { ProcessTweaksGeneral(); ProcessTweaksWindows8(); Logger.LogInfoSilent("Tweaks | Windows 8.1"); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows10) { ProcessTweaksGeneral(); ProcessTweaksWindows10(); Logger.LogInfoSilent("Tweaks | Windows 10"); } if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows11) { ProcessTweaksGeneral(); ProcessTweaksWindows10(); ProcessTweaksWindows11(); Logger.LogInfoSilent("Tweaks | Windows 11"); } ProcessAdvancedTweaks(); ProcessHosts(); ProcessPinger(); ProcessProcessControl(); ProcessIntegrator(); ProcessRegistryFix(); ProcessCleaner(); Logger.GenerateSilentReport(); ProcessPostAction(); } internal static bool ProcessWindowsVersionCompatibility() { return CurrentSilentConfig.WindowsVersion == ((int)Utilities.CurrentWindowsVersion); } internal static void ProcessPostAction() { if (CurrentSilentConfig.PostAction.Restart.HasValue && CurrentSilentConfig.PostAction.Restart.Value == true) { string restartType = CurrentSilentConfig.PostAction.RestartType; if (!string.IsNullOrEmpty(restartType)) { if (restartType == RestartType.Normal.ToString()) { Program.RestartInNormalMode(); } if (restartType == RestartType.SafeMode.ToString()) { Program.RestartInSafeMode(); } if (restartType == RestartType.DisableDefender.ToString()) { Program.SetRunOnceDisableDefender(); } if (restartType == RestartType.EnableDefender.ToString()) { Program.SetRunOnceEnableDefender(); } } } } internal static void ProcessCleaner() { if (CurrentSilentConfig.Cleaner.TempFiles.HasValue && CurrentSilentConfig.Cleaner.TempFiles.Value) CleanHelper.PreviewTemp(); if (CurrentSilentConfig.Cleaner.BsodDumps.HasValue && CurrentSilentConfig.Cleaner.BsodDumps.Value) CleanHelper.PreviewMinidumps(); if (CurrentSilentConfig.Cleaner.ErrorReports.HasValue && CurrentSilentConfig.Cleaner.ErrorReports.Value) CleanHelper.PreviewErrorReports(); if (CurrentSilentConfig.Cleaner.InternetExplorer.HasValue && CurrentSilentConfig.Cleaner.InternetExplorer.Value) CleanHelper.PreviewInternetExplorerCache(); bool chromeCache = (CurrentSilentConfig.Cleaner.GoogleChrome.Cache.HasValue) ? CurrentSilentConfig.Cleaner.GoogleChrome.Cache.Value : false; bool chromeCookies = (CurrentSilentConfig.Cleaner.GoogleChrome.Cookies.HasValue) ? CurrentSilentConfig.Cleaner.GoogleChrome.Cookies.Value : false; bool chromeHistory = (CurrentSilentConfig.Cleaner.GoogleChrome.History.HasValue) ? CurrentSilentConfig.Cleaner.GoogleChrome.History.Value : false; bool chromeSession = (CurrentSilentConfig.Cleaner.GoogleChrome.Session.HasValue) ? CurrentSilentConfig.Cleaner.GoogleChrome.Session.Value : false; bool chromePasswords = (CurrentSilentConfig.Cleaner.GoogleChrome.Passwords.HasValue) ? CurrentSilentConfig.Cleaner.GoogleChrome.Passwords.Value : false; bool ffCache = (CurrentSilentConfig.Cleaner.MozillaFirefox.Cache.HasValue) ? CurrentSilentConfig.Cleaner.MozillaFirefox.Cache.Value : false; bool ffCookies = (CurrentSilentConfig.Cleaner.MozillaFirefox.Cookies.HasValue) ? CurrentSilentConfig.Cleaner.MozillaFirefox.Cookies.Value : false; bool ffHistory = (CurrentSilentConfig.Cleaner.MozillaFirefox.History.HasValue) ? CurrentSilentConfig.Cleaner.MozillaFirefox.History.Value : false; bool braveCache = (CurrentSilentConfig.Cleaner.BraveBrowser.Cache.HasValue) ? CurrentSilentConfig.Cleaner.BraveBrowser.Cache.Value : false; bool braveCookies = (CurrentSilentConfig.Cleaner.BraveBrowser.Cookies.HasValue) ? CurrentSilentConfig.Cleaner.BraveBrowser.Cookies.Value : false; bool braveHistory = (CurrentSilentConfig.Cleaner.BraveBrowser.History.HasValue) ? CurrentSilentConfig.Cleaner.BraveBrowser.History.Value : false; bool braveSession = (CurrentSilentConfig.Cleaner.BraveBrowser.Session.HasValue) ? CurrentSilentConfig.Cleaner.BraveBrowser.Session.Value : false; bool bravePasswords = (CurrentSilentConfig.Cleaner.BraveBrowser.Passwords.HasValue) ? CurrentSilentConfig.Cleaner.BraveBrowser.Passwords.Value : false; bool edgeCache = (CurrentSilentConfig.Cleaner.MicrosoftEdge.Cache.HasValue) ? CurrentSilentConfig.Cleaner.MicrosoftEdge.Cache.Value : false; bool edgeCookies = (CurrentSilentConfig.Cleaner.MicrosoftEdge.Cookies.HasValue) ? CurrentSilentConfig.Cleaner.MicrosoftEdge.Cookies.Value : false; bool edgeHistory = (CurrentSilentConfig.Cleaner.MicrosoftEdge.History.HasValue) ? CurrentSilentConfig.Cleaner.MicrosoftEdge.History.Value : false; bool edgeSession = (CurrentSilentConfig.Cleaner.MicrosoftEdge.Session.HasValue) ? CurrentSilentConfig.Cleaner.MicrosoftEdge.Session.Value : false; CleanHelper.PreviewChromeClean(chromeCache, chromeCookies, chromeHistory, chromeSession, chromePasswords); CleanHelper.PreviewFireFoxClean(ffCache, ffCookies, ffHistory); CleanHelper.PreviewEdgeClean(edgeCache, edgeCookies, edgeHistory, edgeSession); CleanHelper.PreviewBraveClean(braveCache, braveCookies, braveHistory, braveSession, bravePasswords); CleanHelper.Clean(); if (CurrentSilentConfig.Cleaner.RecycleBin.HasValue && CurrentSilentConfig.Cleaner.RecycleBin.Value) CleanHelper.EmptyRecycleBin(); Logger.LogInfoSilent($"Cleaner | Options"); } internal static void ProcessHosts() { var addList = CurrentSilentConfig.HostsEditor.Add.Where(x => !string.IsNullOrEmpty(x.Domain) && !string.IsNullOrEmpty(x.IpAddress)); var blockList = CurrentSilentConfig.HostsEditor.Block.Where(x => !string.IsNullOrEmpty(x)); var removeList = CurrentSilentConfig.HostsEditor.Remove.Where(x => !string.IsNullOrEmpty(x)); var includeWwwCname = CurrentSilentConfig.HostsEditor.IncludeWwwCname.HasValue ? CurrentSilentConfig.HostsEditor.IncludeWwwCname.Value : false; foreach (AddHostsEntry x in addList) { HostsHelper.AddEntry(HostsHelper.SanitizeEntry(x.IpAddress) + " " + HostsHelper.SanitizeEntry(x.Domain)); if (includeWwwCname) { HostsHelper.AddEntry(HostsHelper.SanitizeEntry(x.IpAddress) + " www." + HostsHelper.SanitizeEntry(x.Domain)); } Logger.LogInfoSilent($"Hosts | Add entry: {x.IpAddress} {x.Domain}"); } foreach (string x in blockList) { HostsHelper.AddEntry("0.0.0.0 " + HostsHelper.SanitizeEntry(x)); Logger.LogInfoSilent($"Hosts | Block entry: {x}"); } foreach (string x in removeList) { HostsHelper.RemoveEntryFromTemplate(x); Logger.LogInfoSilent($"Hosts | Remove entry: {x}"); } } internal static void ProcessPinger() { string dnsOption = CurrentSilentConfig.Pinger.SetDns; if (dnsOption == Constants.CustomDNS) { bool atLeastOnePrimary4 = CurrentSilentConfig.Pinger.CustomDNSv4.Length > 0 && CurrentSilentConfig.Pinger.CustomDNSv4.Length < 3; bool atLeastOnePrimary6 = CurrentSilentConfig.Pinger.CustomDNSv6.Length > 0 && CurrentSilentConfig.Pinger.CustomDNSv6.Length < 3; bool notEmptyDNS4 = Array.Exists(CurrentSilentConfig.Pinger.CustomDNSv4, (x => !string.IsNullOrEmpty(x))); bool notEmptyDNS6 = Array.Exists(CurrentSilentConfig.Pinger.CustomDNSv6, (x => !string.IsNullOrEmpty(x))); if (atLeastOnePrimary4 && atLeastOnePrimary6 && notEmptyDNS4 && notEmptyDNS6) { PingerHelper.SetDNSForAllNICs(CurrentSilentConfig.Pinger.CustomDNSv4, CurrentSilentConfig.Pinger.CustomDNSv6); Logger.LogInfoSilent("Pinger | Set DNS to custom:"); Logger.LogInfoSilent($"Pinger | IPv4: {string.Join(", ", CurrentSilentConfig.Pinger.CustomDNSv4)}"); Logger.LogInfoSilent($"Pinger | IPv6: {string.Join(", ", CurrentSilentConfig.Pinger.CustomDNSv6)}"); } } if (!string.IsNullOrEmpty(dnsOption) && PingerHelper.DNSOptions.Contains(dnsOption)) { if (dnsOption == Constants.AutomaticDNS) { PingerHelper.ResetDefaultDNSForAllNICs(); } if (dnsOption == Constants.CloudflareDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.CloudflareDNSv4, PingerHelper.CloudflareDNSv6); } if (dnsOption == Constants.OpenDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.OpenDNSv4, PingerHelper.OpenDNSv6); } if (dnsOption == Constants.Quad9DNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.Quad9DNSv4, PingerHelper.Quad9DNSv6); } if (dnsOption == Constants.GoogleDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.GoogleDNSv4, PingerHelper.GoogleDNSv6); } if (dnsOption == Constants.AlternateDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.AlternateDNSv4, PingerHelper.AlternateDNSv6); } if (dnsOption == Constants.AdguardDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.AdguardDNSv4, PingerHelper.AdguardDNSv6); } if (dnsOption == Constants.CleanBrowsingDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.CleanBrowsingDNSv4, PingerHelper.CleanBrowsingDNSv6); } if (dnsOption == Constants.CleanBrowsingAdultFilterDNS) { PingerHelper.SetDNSForAllNICs(PingerHelper.CleanBrowsingAdultDNSv4, PingerHelper.CleanBrowsingAdultDNSv6); } Logger.LogInfoSilent($"Pinger | Set DNS to: {dnsOption}"); } if (CurrentSilentConfig.Pinger.FlushDnsCache.HasValue && CurrentSilentConfig.Pinger.FlushDnsCache.Value == true) { PingerHelper.FlushDNSCache(); Logger.LogInfoSilent($"Pinger | Flush DNS cache"); } } internal static void ProcessProcessControl() { var allowList = CurrentSilentConfig.ProcessControl.Allow.Where(x => !string.IsNullOrEmpty(x)); var blockList = CurrentSilentConfig.ProcessControl.Prevent.Where(x => !string.IsNullOrEmpty(x)); foreach (string x in allowList) { Utilities.AllowProcessToRun(x); Logger.LogInfoSilent($"ProcessControl | Allow process: {x}"); } foreach (string x in blockList) { Utilities.PreventProcessFromRunning(x); Logger.LogInfoSilent($"ProcessControl | Prevent process: {x}"); } } internal static void ProcessRegistryFix() { if (CurrentSilentConfig.RegistryFix.TaskManager.HasValue && CurrentSilentConfig.RegistryFix.TaskManager.Value == true) { Utilities.EnableTaskManager(); Logger.LogInfoSilent($"RegistryFix | EnableTaskManager"); } if (CurrentSilentConfig.RegistryFix.CommandPrompt.HasValue && CurrentSilentConfig.RegistryFix.CommandPrompt.Value == true) { Utilities.EnableCommandPrompt(); Logger.LogInfoSilent($"RegistryFix | EnableCommandPrompt"); } if (CurrentSilentConfig.RegistryFix.ControlPanel.HasValue && CurrentSilentConfig.RegistryFix.ControlPanel.Value == true) { Utilities.EnableControlPanel(); Logger.LogInfoSilent($"RegistryFix | EnableControlPanel"); } if (CurrentSilentConfig.RegistryFix.FolderOptions.HasValue && CurrentSilentConfig.RegistryFix.FolderOptions.Value == true) { Utilities.EnableFolderOptions(); Logger.LogInfoSilent($"RegistryFix | EnableFolderOptions"); } if (CurrentSilentConfig.RegistryFix.RunDialog.HasValue && CurrentSilentConfig.RegistryFix.RunDialog.Value == true) { Utilities.EnableRunDialog(); Logger.LogInfoSilent($"RegistryFix | EnableRunDialog"); } if (CurrentSilentConfig.RegistryFix.RightClickMenu.HasValue && CurrentSilentConfig.RegistryFix.RightClickMenu.Value == true) { Utilities.EnableContextMenu(); Logger.LogInfoSilent($"RegistryFix | EnableContextMenu"); } if (CurrentSilentConfig.RegistryFix.WindowsFirewall.HasValue && CurrentSilentConfig.RegistryFix.WindowsFirewall.Value == true) { Utilities.EnableFirewall(); Logger.LogInfoSilent($"RegistryFix | EnableFirewall"); } if (CurrentSilentConfig.RegistryFix.RegistryEditor.HasValue && CurrentSilentConfig.RegistryFix.RegistryEditor.Value == true) { Utilities.EnableRegistryEditor(); Logger.LogInfoSilent($"RegistryFix | EnableRegistryEditor"); } } internal static void ProcessIntegrator() { if (CurrentSilentConfig.Integrator.OpenWithCmd.HasValue) { if (CurrentSilentConfig.Integrator.OpenWithCmd.Value) { IntegratorHelper.InstallOpenWithCMD(); Logger.LogInfoSilent($"Integrator | InstallOpenWithCMD"); } else { IntegratorHelper.DeleteOpenWithCMD(); Logger.LogInfoSilent($"Integrator | DeleteOpenWithCMD"); } } if (CurrentSilentConfig.Integrator.TakeOwnership.HasValue) { IntegratorHelper.InstallTakeOwnership(!CurrentSilentConfig.Integrator.TakeOwnership.Value); Logger.LogInfoSilent($"Integrator | TakeOwnership to {CurrentSilentConfig.Integrator.TakeOwnership.Value}"); } } internal static void ProcessAdvancedTweaks() { if (CurrentSilentConfig.AdvancedTweaks.UnlockAllCores.HasValue && CurrentSilentConfig.AdvancedTweaks.UnlockAllCores.Value == true) { Utilities.UnlockAllCores(); Logger.LogInfoSilent("AdvancedTweaks | UnlockAllCores"); } if (CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Disable.HasValue) { if (CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Disable.Value && CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Ram.HasValue && CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Ram > 0) { Utilities.DisableSvcHostProcessSplitting(CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Ram.Value); Logger.LogInfoSilent($"AdvancedTweaks | DisableSvcHostProcessSplitting | RAM capacity: {CurrentSilentConfig.AdvancedTweaks.SvchostProcessSplitting.Ram.Value} GB"); } else { Utilities.EnableSvcHostProcessSplitting(); Logger.LogInfoSilent("AdvancedTweaks | EnableSvcHostProcessSplitting"); } } if (CurrentSilentConfig.AdvancedTweaks.DisableHPET.HasValue) { if (CurrentSilentConfig.AdvancedTweaks.DisableHPET.Value) { Utilities.DisableHPET(); } else { Utilities.EnableHPET(); } OptionsHelper.CurrentOptions.DisableHPET = CurrentSilentConfig.AdvancedTweaks.DisableHPET.Value; } if (CurrentSilentConfig.AdvancedTweaks.EnableLoginVerbose.HasValue) { if (CurrentSilentConfig.AdvancedTweaks.EnableLoginVerbose.Value) { Utilities.EnableLoginVerbose(); } else { Utilities.DisableLoginVerbose(); } OptionsHelper.CurrentOptions.EnableLoginVerbose = CurrentSilentConfig.AdvancedTweaks.EnableLoginVerbose.Value; } if (CurrentSilentConfig.AdvancedTweaks.EnableRegistryBackups.HasValue) { if (CurrentSilentConfig.AdvancedTweaks.EnableRegistryBackups.Value) { OptimizeHelper.EnablePeriodicRegistryBackup(); } else { OptimizeHelper.DisablePeriodicRegistryBackup(); } } } #region General Tweaks internal static void ProcessTweaksGeneral() { if (CurrentSilentConfig.Tweaks.EnablePerformanceTweaks.HasValue) { if (CurrentSilentConfig.Tweaks.EnablePerformanceTweaks.Value) { OptimizeHelper.EnablePerformanceTweaks(); } else { OptimizeHelper.DisablePerformanceTweaks(); } OptionsHelper.CurrentOptions.EnablePerformanceTweaks = CurrentSilentConfig.Tweaks.EnablePerformanceTweaks.Value; } if (CurrentSilentConfig.Tweaks.DisableNetworkThrottling.HasValue) { if (CurrentSilentConfig.Tweaks.DisableNetworkThrottling.Value) { OptimizeHelper.DisableNetworkThrottling(); } else { OptimizeHelper.EnableNetworkThrottling(); } OptionsHelper.CurrentOptions.DisableNetworkThrottling = CurrentSilentConfig.Tweaks.DisableNetworkThrottling.Value; } if (CurrentSilentConfig.Tweaks.DisableWindowsDefender.HasValue) { if (CurrentSilentConfig.Tweaks.DisableWindowsDefender.Value) { OptimizeHelper.DisableDefender(); } else { OptimizeHelper.EnableDefender(); } OptionsHelper.CurrentOptions.DisableWindowsDefender = CurrentSilentConfig.Tweaks.DisableWindowsDefender.Value; } if (CurrentSilentConfig.Tweaks.DisableSystemRestore.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSystemRestore.Value) { OptimizeHelper.DisableSystemRestore(); } else { OptimizeHelper.EnableSystemRestore(); } OptionsHelper.CurrentOptions.DisableSystemRestore = CurrentSilentConfig.Tweaks.DisableSystemRestore.Value; } if (CurrentSilentConfig.Tweaks.DisablePrintService.HasValue) { if (CurrentSilentConfig.Tweaks.DisablePrintService.Value) { OptimizeHelper.DisablePrintService(); } else { OptimizeHelper.EnablePrintService(); } OptionsHelper.CurrentOptions.DisablePrintService = CurrentSilentConfig.Tweaks.DisablePrintService.Value; } if (CurrentSilentConfig.Tweaks.DisableMediaPlayerSharing.HasValue) { if (CurrentSilentConfig.Tweaks.DisableMediaPlayerSharing.Value) { OptimizeHelper.DisableMediaPlayerSharing(); } else { OptimizeHelper.EnableMediaPlayerSharing(); } OptionsHelper.CurrentOptions.DisableMediaPlayerSharing = CurrentSilentConfig.Tweaks.DisableMediaPlayerSharing.Value; } if (CurrentSilentConfig.Tweaks.DisableErrorReporting.HasValue) { if (CurrentSilentConfig.Tweaks.DisableErrorReporting.Value) { OptimizeHelper.DisableErrorReporting(); } else { OptimizeHelper.EnableErrorReporting(); } OptionsHelper.CurrentOptions.DisableErrorReporting = CurrentSilentConfig.Tweaks.DisableErrorReporting.Value; } if (CurrentSilentConfig.Tweaks.DisableHomeGroup.HasValue) { if (CurrentSilentConfig.Tweaks.DisableHomeGroup.Value) { OptimizeHelper.DisableHomeGroup(); } else { OptimizeHelper.EnableHomeGroup(); } OptionsHelper.CurrentOptions.DisableHomeGroup = CurrentSilentConfig.Tweaks.DisableHomeGroup.Value; } if (CurrentSilentConfig.Tweaks.DisableSuperfetch.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSuperfetch.Value) { OptimizeHelper.DisableSuperfetch(); } else { OptimizeHelper.EnableSuperfetch(); } OptionsHelper.CurrentOptions.DisableSuperfetch = CurrentSilentConfig.Tweaks.DisableSuperfetch.Value; } if (CurrentSilentConfig.Tweaks.DisableTelemetryTasks.HasValue) { if (CurrentSilentConfig.Tweaks.DisableTelemetryTasks.Value) { OptimizeHelper.DisableTelemetryTasks(); } else { OptimizeHelper.EnableTelemetryTasks(); } OptionsHelper.CurrentOptions.DisableTelemetryTasks = CurrentSilentConfig.Tweaks.DisableTelemetryTasks.Value; } if (CurrentSilentConfig.Tweaks.DisableOffice2016Telemetry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableOffice2016Telemetry.Value) { OptimizeHelper.DisableOffice2016Telemetry(); } else { OptimizeHelper.EnableOffice2016Telemetry(); } OptionsHelper.CurrentOptions.DisableOffice2016Telemetry = CurrentSilentConfig.Tweaks.DisableOffice2016Telemetry.Value; } if (CurrentSilentConfig.Tweaks.DisableCompatibilityAssistant.HasValue) { if (CurrentSilentConfig.Tweaks.DisableCompatibilityAssistant.Value) { OptimizeHelper.DisableCompatibilityAssistant(); } else { OptimizeHelper.EnableCompatibilityAssistant(); } OptionsHelper.CurrentOptions.DisableCompatibilityAssistant = CurrentSilentConfig.Tweaks.DisableCompatibilityAssistant.Value; } if (CurrentSilentConfig.Tweaks.DisableFaxService.HasValue) { if (CurrentSilentConfig.Tweaks.DisableFaxService.Value) { OptimizeHelper.DisableFaxService(); } else { OptimizeHelper.EnableFaxService(); } OptionsHelper.CurrentOptions.DisableFaxService = CurrentSilentConfig.Tweaks.DisableFaxService.Value; } if (CurrentSilentConfig.Tweaks.DisableSmartScreen.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSmartScreen.Value) { OptimizeHelper.DisableSmartScreen(); } else { OptimizeHelper.EnableSmartScreen(); } OptionsHelper.CurrentOptions.DisableSmartScreen = CurrentSilentConfig.Tweaks.DisableSmartScreen.Value; } if (CurrentSilentConfig.Tweaks.DisableStickyKeys.HasValue) { if (CurrentSilentConfig.Tweaks.DisableStickyKeys.Value) { OptimizeHelper.DisableStickyKeys(); } else { OptimizeHelper.EnableStickyKeys(); } OptionsHelper.CurrentOptions.DisableStickyKeys = CurrentSilentConfig.Tweaks.DisableStickyKeys.Value; } if (CurrentSilentConfig.Tweaks.DisableHibernation.HasValue) { if (CurrentSilentConfig.Tweaks.DisableHibernation.Value) { Utilities.DisableHibernation(); } else { Utilities.EnableHibernation(); } OptionsHelper.CurrentOptions.DisableHibernation = CurrentSilentConfig.Tweaks.DisableHibernation.Value; } if (CurrentSilentConfig.Tweaks.DisableSMB1.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSMB1.Value) { OptimizeHelper.DisableSMB("1"); } else { OptimizeHelper.EnableSMB("1"); } OptionsHelper.CurrentOptions.DisableSMB1 = CurrentSilentConfig.Tweaks.DisableSMB1.Value; } if (CurrentSilentConfig.Tweaks.DisableSMB2.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSMB2.Value) { OptimizeHelper.DisableSMB("2"); } else { OptimizeHelper.EnableSMB("2"); } OptionsHelper.CurrentOptions.DisableSMB2 = CurrentSilentConfig.Tweaks.DisableSMB2.Value; } if (CurrentSilentConfig.Tweaks.DisableNTFSTimeStamp.HasValue) { if (CurrentSilentConfig.Tweaks.DisableNTFSTimeStamp.Value) { OptimizeHelper.DisableNTFSTimeStamp(); } else { OptimizeHelper.EnableNTFSTimeStamp(); } OptionsHelper.CurrentOptions.DisableNTFSTimeStamp = CurrentSilentConfig.Tweaks.DisableNTFSTimeStamp.Value; } if (CurrentSilentConfig.Tweaks.DisableSearch.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSearch.Value) { OptimizeHelper.DisableSearch(); } else { OptimizeHelper.EnableSearch(); } OptionsHelper.CurrentOptions.DisableSearch = CurrentSilentConfig.Tweaks.DisableSearch.Value; } if (CurrentSilentConfig.Tweaks.DisableChromeTelemetry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableChromeTelemetry.Value) { OptimizeHelper.DisableChromeTelemetry(); } else { OptimizeHelper.EnableChromeTelemetry(); } OptionsHelper.CurrentOptions.DisableChromeTelemetry = CurrentSilentConfig.Tweaks.DisableChromeTelemetry.Value; } if (CurrentSilentConfig.Tweaks.DisableFirefoxTemeletry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableFirefoxTemeletry.Value) { OptimizeHelper.DisableFirefoxTelemetry(); } else { OptimizeHelper.EnableFirefoxTelemetry(); } OptionsHelper.CurrentOptions.DisableFirefoxTemeletry = CurrentSilentConfig.Tweaks.DisableFirefoxTemeletry.Value; } if (CurrentSilentConfig.Tweaks.DisableVisualStudioTelemetry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableVisualStudioTelemetry.Value) { OptimizeHelper.DisableVisualStudioTelemetry(); } else { OptimizeHelper.EnableVisualStudioTelemetry(); } OptionsHelper.CurrentOptions.DisableVisualStudioTelemetry = CurrentSilentConfig.Tweaks.DisableVisualStudioTelemetry.Value; } if (CurrentSilentConfig.Tweaks.DisableNVIDIATelemetry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableNVIDIATelemetry.Value) { OptimizeHelper.DisableNvidiaTelemetry(); } else { OptimizeHelper.EnableNvidiaTelemetry(); } OptionsHelper.CurrentOptions.DisableNVIDIATelemetry = CurrentSilentConfig.Tweaks.DisableNVIDIATelemetry.Value; } if (CurrentSilentConfig.Tweaks.RemoveMenusDelay.HasValue) { if (CurrentSilentConfig.Tweaks.RemoveMenusDelay.Value) { OptimizeHelper.RemoveMenusDelay(); } else { OptimizeHelper.RestoreMenusDelay(); } OptionsHelper.CurrentOptions.RemoveMenusDelay = CurrentSilentConfig.Tweaks.RemoveMenusDelay.Value; } if (CurrentSilentConfig.Tweaks.ShowAllTrayIcons.HasValue) { if (CurrentSilentConfig.Tweaks.ShowAllTrayIcons.Value) { OptimizeHelper.ShowAllTrayIcons(); } else { OptimizeHelper.HideTrayIcons(); } OptionsHelper.CurrentOptions.ShowAllTrayIcons = CurrentSilentConfig.Tweaks.ShowAllTrayIcons.Value; } if (CurrentSilentConfig.Tweaks.EnableUtcTime.HasValue) { if (CurrentSilentConfig.Tweaks.EnableUtcTime.Value) { OptimizeHelper.EnableUTCTime(); } else { OptimizeHelper.DisableUTCTime(); } OptionsHelper.CurrentOptions.EnableUtcTime = CurrentSilentConfig.Tweaks.EnableUtcTime.Value; } } #endregion #region Windows 8 Tweaks internal static void ProcessTweaksWindows8() { if (CurrentSilentConfig.Tweaks.DisableOneDrive.HasValue) { if (CurrentSilentConfig.Tweaks.DisableOneDrive.Value) { OptimizeHelper.DisableOneDrive(); } else { OptimizeHelper.EnableOneDrive(); } OptionsHelper.CurrentOptions.DisableOneDrive = CurrentSilentConfig.Tweaks.DisableOneDrive.Value; } } #endregion #region Windows 10 Tweaks internal static void ProcessTweaksWindows10() { if (CurrentSilentConfig.Tweaks.EnableGamingMode.HasValue) { if (CurrentSilentConfig.Tweaks.EnableGamingMode.Value) { OptimizeHelper.EnableGamingMode(); } else { OptimizeHelper.DisableGamingMode(); } OptionsHelper.CurrentOptions.EnableGamingMode = CurrentSilentConfig.Tweaks.EnableGamingMode.Value; } if (CurrentSilentConfig.Tweaks.EnableLegacyVolumeSlider.HasValue) { if (CurrentSilentConfig.Tweaks.EnableLegacyVolumeSlider.Value) { OptimizeHelper.EnableLegacyVolumeSlider(); } else { OptimizeHelper.DisableLegacyVolumeSlider(); } OptionsHelper.CurrentOptions.EnableLegacyVolumeSlider = CurrentSilentConfig.Tweaks.EnableLegacyVolumeSlider.Value; } if (CurrentSilentConfig.Tweaks.DisableQuickAccessHistory.HasValue) { if (CurrentSilentConfig.Tweaks.DisableQuickAccessHistory.Value) { OptimizeHelper.DisableQuickAccessHistory(); } else { OptimizeHelper.EnableQuickAccessHistory(); } OptionsHelper.CurrentOptions.DisableQuickAccessHistory = CurrentSilentConfig.Tweaks.DisableQuickAccessHistory.Value; } if (CurrentSilentConfig.Tweaks.DisableStartMenuAds.HasValue) { if (CurrentSilentConfig.Tweaks.DisableStartMenuAds.Value) { OptimizeHelper.DisableStartMenuAds(); } else { OptimizeHelper.EnableStartMenuAds(); } OptionsHelper.CurrentOptions.DisableStartMenuAds = CurrentSilentConfig.Tweaks.DisableStartMenuAds.Value; } if (CurrentSilentConfig.Tweaks.UninstallOneDrive.HasValue) { if (CurrentSilentConfig.Tweaks.UninstallOneDrive.Value) { OptimizeHelper.UninstallOneDrive(); } else { OptimizeHelper.InstallOneDrive(); } OptionsHelper.CurrentOptions.UninstallOneDrive = CurrentSilentConfig.Tweaks.UninstallOneDrive.Value; } if (CurrentSilentConfig.Tweaks.DisableMyPeople.HasValue) { if (CurrentSilentConfig.Tweaks.DisableMyPeople.Value) { OptimizeHelper.DisableMyPeople(); } else { OptimizeHelper.EnableMyPeople(); } OptionsHelper.CurrentOptions.DisableMyPeople = CurrentSilentConfig.Tweaks.DisableMyPeople.Value; } if (CurrentSilentConfig.Tweaks.EnableLongPaths.HasValue) { if (CurrentSilentConfig.Tweaks.EnableLongPaths.Value) { OptimizeHelper.EnableLongPaths(); } else { OptimizeHelper.DisableLongPaths(); } OptionsHelper.CurrentOptions.EnableLongPaths = CurrentSilentConfig.Tweaks.EnableLongPaths.Value; } if (CurrentSilentConfig.Tweaks.DisableAutomaticUpdates.HasValue) { if (CurrentSilentConfig.Tweaks.DisableAutomaticUpdates.Value) { OptimizeHelper.DisableAutomaticUpdates(); } else { OptimizeHelper.EnableAutomaticUpdates(); } OptionsHelper.CurrentOptions.DisableAutomaticUpdates = CurrentSilentConfig.Tweaks.DisableAutomaticUpdates.Value; } if (CurrentSilentConfig.Tweaks.ExcludeDrivers.HasValue) { if (CurrentSilentConfig.Tweaks.ExcludeDrivers.Value) { OptimizeHelper.ExcludeDrivers(); } else { OptimizeHelper.IncludeDrivers(); } OptionsHelper.CurrentOptions.ExcludeDrivers = CurrentSilentConfig.Tweaks.ExcludeDrivers.Value; } if (CurrentSilentConfig.Tweaks.DisableTelemetryServices.HasValue) { if (CurrentSilentConfig.Tweaks.DisableTelemetryServices.Value) { OptimizeHelper.DisableTelemetryServices(); } else { OptimizeHelper.EnableTelemetryServices(); } OptionsHelper.CurrentOptions.DisableTelemetryServices = CurrentSilentConfig.Tweaks.DisableTelemetryServices.Value; } if (CurrentSilentConfig.Tweaks.DisablePrivacyOptions.HasValue) { if (CurrentSilentConfig.Tweaks.DisablePrivacyOptions.Value) { OptimizeHelper.EnhancePrivacy(); } else { OptimizeHelper.CompromisePrivacy(); } OptionsHelper.CurrentOptions.DisablePrivacyOptions = CurrentSilentConfig.Tweaks.DisablePrivacyOptions.Value; } if (CurrentSilentConfig.Tweaks.DisableCortana.HasValue) { if (CurrentSilentConfig.Tweaks.DisableCortana.Value) { OptimizeHelper.DisableCortana(); } else { OptimizeHelper.EnableCortana(); } OptionsHelper.CurrentOptions.DisableCortana = CurrentSilentConfig.Tweaks.DisableCortana.Value; } if (CurrentSilentConfig.Tweaks.DisableSensorServices.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSensorServices.Value) { OptimizeHelper.DisableSensorServices(); } else { OptimizeHelper.EnableSensorServices(); } OptionsHelper.CurrentOptions.DisableSensorServices = CurrentSilentConfig.Tweaks.DisableSensorServices.Value; } if (CurrentSilentConfig.Tweaks.DisableWindowsInk.HasValue) { if (CurrentSilentConfig.Tweaks.DisableWindowsInk.Value) { OptimizeHelper.DisableWindowsInk(); } else { OptimizeHelper.EnableWindowsInk(); } OptionsHelper.CurrentOptions.DisableWindowsInk = CurrentSilentConfig.Tweaks.DisableWindowsInk.Value; } if (CurrentSilentConfig.Tweaks.DisableSpellingTyping.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSpellingTyping.Value) { OptimizeHelper.DisableSpellingAndTypingFeatures(); } else { OptimizeHelper.EnableSpellingAndTypingFeatures(); } OptionsHelper.CurrentOptions.DisableSpellingTyping = CurrentSilentConfig.Tweaks.DisableSpellingTyping.Value; } if (CurrentSilentConfig.Tweaks.DisableXboxLive.HasValue) { if (CurrentSilentConfig.Tweaks.DisableXboxLive.Value) { OptimizeHelper.DisableXboxLive(); } else { OptimizeHelper.EnableXboxLive(); } OptionsHelper.CurrentOptions.DisableXboxLive = CurrentSilentConfig.Tweaks.DisableXboxLive.Value; } if (CurrentSilentConfig.Tweaks.DisableGameBar.HasValue) { if (CurrentSilentConfig.Tweaks.DisableGameBar.Value) { OptimizeHelper.DisableGameBar(); } else { OptimizeHelper.EnableGameBar(); } OptionsHelper.CurrentOptions.DisableGameBar = CurrentSilentConfig.Tweaks.DisableGameBar.Value; } if (CurrentSilentConfig.Tweaks.DisableInsiderService.HasValue) { if (CurrentSilentConfig.Tweaks.DisableInsiderService.Value) { OptimizeHelper.DisableInsiderService(); } else { OptimizeHelper.EnableInsiderService(); } OptionsHelper.CurrentOptions.DisableInsiderService = CurrentSilentConfig.Tweaks.DisableInsiderService.Value; } if (CurrentSilentConfig.Tweaks.DisableStoreUpdates.HasValue) { if (CurrentSilentConfig.Tweaks.DisableStoreUpdates.Value) { OptimizeHelper.DisableStoreUpdates(); } else { OptimizeHelper.EnableStoreUpdates(); } OptionsHelper.CurrentOptions.DisableStoreUpdates = CurrentSilentConfig.Tweaks.DisableStoreUpdates.Value; } if (CurrentSilentConfig.Tweaks.DisableCloudClipboard.HasValue) { if (CurrentSilentConfig.Tweaks.DisableCloudClipboard.Value) { OptimizeHelper.DisableCloudClipboard(); } else { OptimizeHelper.EnableCloudClipboard(); } OptionsHelper.CurrentOptions.DisableCloudClipboard = CurrentSilentConfig.Tweaks.DisableCloudClipboard.Value; } if (CurrentSilentConfig.Tweaks.RemoveCastToDevice.HasValue) { if (CurrentSilentConfig.Tweaks.RemoveCastToDevice.Value) { OptimizeHelper.RemoveCastToDevice(); } else { OptimizeHelper.AddCastToDevice(); } OptionsHelper.CurrentOptions.RemoveCastToDevice = CurrentSilentConfig.Tweaks.RemoveCastToDevice.Value; } if (CurrentSilentConfig.Tweaks.DisableEdgeTelemetry.HasValue) { if (CurrentSilentConfig.Tweaks.DisableEdgeTelemetry.Value) { OptimizeHelper.DisableEdgeTelemetry(); } else { OptimizeHelper.EnableEdgeTelemetry(); } OptionsHelper.CurrentOptions.DisableEdgeTelemetry = CurrentSilentConfig.Tweaks.DisableEdgeTelemetry.Value; } if (CurrentSilentConfig.Tweaks.DisableEdgeDiscoverBar.HasValue) { if (CurrentSilentConfig.Tweaks.DisableEdgeDiscoverBar.Value) { OptimizeHelper.DisableEdgeDiscoverBar(); } else { OptimizeHelper.EnableEdgeDiscoverBar(); } OptionsHelper.CurrentOptions.DisableEdgeDiscoverBar = CurrentSilentConfig.Tweaks.DisableEdgeDiscoverBar.Value; } if (CurrentSilentConfig.Tweaks.RestoreClassicPhotoViewer.HasValue) { if (CurrentSilentConfig.Tweaks.RestoreClassicPhotoViewer.Value) { OptimizeHelper.RestoreClassicPhotoViewer(); } else { OptimizeHelper.DisableClassicPhotoViewer(); } OptionsHelper.CurrentOptions.RestoreClassicPhotoViewer = CurrentSilentConfig.Tweaks.RestoreClassicPhotoViewer.Value; } if (CurrentSilentConfig.Tweaks.DisableNewsInterests.HasValue) { if (CurrentSilentConfig.Tweaks.DisableNewsInterests.Value) { OptimizeHelper.DisableNewsInterests(); } else { OptimizeHelper.EnableNewsInterests(); } OptionsHelper.CurrentOptions.DisableNewsInterests = CurrentSilentConfig.Tweaks.DisableNewsInterests.Value; } if (CurrentSilentConfig.Tweaks.HideTaskbarSearch.HasValue) { if (CurrentSilentConfig.Tweaks.HideTaskbarSearch.Value) { OptimizeHelper.HideTaskbarSearch(); } else { OptimizeHelper.ShowTaskbarSearch(); } OptionsHelper.CurrentOptions.HideTaskbarSearch = CurrentSilentConfig.Tweaks.HideTaskbarSearch.Value; } if (CurrentSilentConfig.Tweaks.HideTaskbarWeather.HasValue) { if (CurrentSilentConfig.Tweaks.HideTaskbarWeather.Value) { OptimizeHelper.HideTaskbarWeather(); } else { OptimizeHelper.ShowTaskbarWeather(); } OptionsHelper.CurrentOptions.HideTaskbarWeather = CurrentSilentConfig.Tweaks.HideTaskbarWeather.Value; } if (CurrentSilentConfig.Tweaks.DisableModernStandby.HasValue) { if (CurrentSilentConfig.Tweaks.DisableModernStandby.Value) { OptimizeHelper.DisableModernStandby(); } else { OptimizeHelper.EnableModernStandby(); } OptionsHelper.CurrentOptions.DisableModernStandby = CurrentSilentConfig.Tweaks.DisableModernStandby.Value; } } #endregion #region Windows 11 Tweaks internal static void ProcessTweaksWindows11() { if (CurrentSilentConfig.Tweaks.TaskbarToLeft.HasValue) { if (CurrentSilentConfig.Tweaks.TaskbarToLeft.Value) { OptimizeHelper.AlignTaskbarToLeft(); } else { OptimizeHelper.AlignTaskbarToCenter(); } OptionsHelper.CurrentOptions.TaskbarToLeft = CurrentSilentConfig.Tweaks.TaskbarToLeft.Value; } if (CurrentSilentConfig.Tweaks.DisableStickers.HasValue) { if (CurrentSilentConfig.Tweaks.DisableStickers.Value) { OptimizeHelper.DisableStickers(); } else { OptimizeHelper.EnableStickers(); } OptionsHelper.CurrentOptions.DisableStickers = CurrentSilentConfig.Tweaks.DisableStickers.Value; } if (CurrentSilentConfig.Tweaks.CompactMode.HasValue) { if (CurrentSilentConfig.Tweaks.CompactMode.Value) { OptimizeHelper.EnableFilesCompactMode(); } else { OptimizeHelper.DisableFilesCompactMode(); } OptionsHelper.CurrentOptions.CompactMode = CurrentSilentConfig.Tweaks.CompactMode.Value; } if (CurrentSilentConfig.Tweaks.DisableSnapAssist.HasValue) { if (CurrentSilentConfig.Tweaks.DisableSnapAssist.Value) { OptimizeHelper.DisableSnapAssist(); } else { OptimizeHelper.EnableSnapAssist(); } OptionsHelper.CurrentOptions.DisableSnapAssist = CurrentSilentConfig.Tweaks.DisableSnapAssist.Value; } if (CurrentSilentConfig.Tweaks.DisableWidgets.HasValue) { if (CurrentSilentConfig.Tweaks.DisableWidgets.Value) { OptimizeHelper.DisableWidgets(); } else { OptimizeHelper.EnableWidgets(); } OptionsHelper.CurrentOptions.DisableWidgets = CurrentSilentConfig.Tweaks.DisableWidgets.Value; } if (CurrentSilentConfig.Tweaks.DisableChat.HasValue) { if (CurrentSilentConfig.Tweaks.DisableChat.Value) { OptimizeHelper.DisableChat(); } else { OptimizeHelper.EnableChat(); } OptionsHelper.CurrentOptions.DisableChat = CurrentSilentConfig.Tweaks.DisableChat.Value; } if (CurrentSilentConfig.Tweaks.DisableVirtualizationBasedTechnology.HasValue) { if (CurrentSilentConfig.Tweaks.DisableVirtualizationBasedTechnology.Value) { OptimizeHelper.DisableVirtualizationBasedSecurity(); } else { OptimizeHelper.EnableVirtualizationBasedSecurity(); } OptionsHelper.CurrentOptions.DisableVBS = CurrentSilentConfig.Tweaks.DisableVirtualizationBasedTechnology.Value; } if (CurrentSilentConfig.Tweaks.ClassicMenu.HasValue) { if (CurrentSilentConfig.Tweaks.ClassicMenu.Value) { OptimizeHelper.DisableShowMoreOptions(); } else { OptimizeHelper.EnableShowMoreOptions(); } OptionsHelper.CurrentOptions.ClassicMenu = CurrentSilentConfig.Tweaks.ClassicMenu.Value; } if (CurrentSilentConfig.Tweaks.DisableTPMCheck.HasValue) { if (CurrentSilentConfig.Tweaks.DisableTPMCheck.Value) { OptimizeHelper.DisableTPMCheck(); } else { OptimizeHelper.EnableTPMCheck(); } OptionsHelper.CurrentOptions.DisableTPMCheck = CurrentSilentConfig.Tweaks.DisableTPMCheck.Value; } if (CurrentSilentConfig.Tweaks.DisableCoPilotAI.HasValue) { if (CurrentSilentConfig.Tweaks.DisableCoPilotAI.Value) { OptimizeHelper.DisableCoPilotAI(); } else { OptimizeHelper.EnableCoPilotAI(); } OptionsHelper.CurrentOptions.DisableCoPilotAI = CurrentSilentConfig.Tweaks.DisableCoPilotAI.Value; } } #endregion } } ================================================ FILE: Optimizer/StartupHelper.cs ================================================ using Microsoft.Win32; using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace Optimizer { internal static class StartupHelper { internal static readonly string LocalMachineRun = "Software\\Microsoft\\Windows\\CurrentVersion\\Run"; internal static readonly string LocalMachineRunOnce = "Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce"; internal static readonly string LocalMachineRunWoW = "Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Run"; internal static readonly string LocalMachineRunOnceWow = "Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\RunOnce"; internal static readonly string CurrentUserRun = "Software\\Microsoft\\Windows\\CurrentVersion\\Run"; internal static readonly string CurrentUserRunOnce = "Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce"; internal static readonly string LocalMachineStartupFolder = CleanHelper.ProgramData + "\\Microsoft\\Windows\\Start Menu\\Programs\\Startup"; internal static readonly string CurrentUserStartupFolder = CleanHelper.ProfileAppDataRoaming + "\\Microsoft\\Windows\\Start Menu\\Programs\\Startup"; private static void GetRegistryStartupItemsHelper(ref List list, StartupItemLocation location, StartupItemType type) { string keyPath = string.Empty; RegistryKey hive = null; if (location == StartupItemLocation.HKLM) { hive = Registry.LocalMachine; if (type == StartupItemType.Run) { keyPath = LocalMachineRun; } else if (type == StartupItemType.RunOnce) { keyPath = LocalMachineRunOnce; } } else if (location == StartupItemLocation.HKLMWoW) { hive = Registry.LocalMachine; if (type == StartupItemType.Run) { keyPath = LocalMachineRunWoW; } else if (type == StartupItemType.RunOnce) { keyPath = LocalMachineRunOnceWow; } } else if (location == StartupItemLocation.HKCU) { hive = Registry.CurrentUser; if (type == StartupItemType.Run) { keyPath = CurrentUserRun; } else if (type == StartupItemType.RunOnce) { keyPath = CurrentUserRunOnce; } } if (hive != null) { try { RegistryKey key = hive.OpenSubKey(keyPath, true); if (key != null) { string[] valueNames = key.GetValueNames(); foreach (string x in valueNames) { try { RegistryStartupItem item = new RegistryStartupItem(); item.Name = x; item.FileLocation = key.GetValue(x).ToString(); item.Key = key; item.RegistryLocation = location; item.StartupType = type; list.Add(item); } catch (Exception ex) { Logger.LogError("Utilities.GetRegistryStartupItemsHelper", ex.Message, ex.StackTrace); } } } } catch (Exception ex) { Logger.LogError("Utilities.GetRegistryStartupItemsHelper", ex.Message, ex.StackTrace); } } } private static void GetFolderStartupItemsHelper(ref List list, IEnumerable files, IEnumerable shortcuts, StartupItemLocation folderOrigin) { foreach (string file in files) { try { FolderStartupItem item = new FolderStartupItem(); item.Name = Path.GetFileNameWithoutExtension(file); item.FileLocation = file; item.Shortcut = file; item.RegistryLocation = folderOrigin; list.Add(item); } catch (Exception ex) { Logger.LogError("Utilities.GetFolderStartupItemsHelper", ex.Message, ex.StackTrace); } } foreach (string shortcut in shortcuts) { try { FolderStartupItem item = new FolderStartupItem(); item.Name = Path.GetFileNameWithoutExtension(shortcut); item.FileLocation = Utilities.GetShortcutTargetFile(shortcut); item.Shortcut = shortcut; item.RegistryLocation = folderOrigin; list.Add(item); } catch (Exception ex) { Logger.LogError("Utilities.GetFolderStartupItemsHelper", ex.Message, ex.StackTrace); } } } internal static List GetStartupItems() { List startupItems = new List(); GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKLM, StartupItemType.Run); GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKLM, StartupItemType.RunOnce); GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKCU, StartupItemType.Run); GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKCU, StartupItemType.RunOnce); if (Environment.Is64BitOperatingSystem) { GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKLMWoW, StartupItemType.Run); GetRegistryStartupItemsHelper(ref startupItems, StartupItemLocation.HKLMWoW, StartupItemType.RunOnce); } if (Directory.Exists(CurrentUserStartupFolder)) { IEnumerable currentUserFiles = Directory.EnumerateFiles(CurrentUserStartupFolder, "*.*", SearchOption.AllDirectories) .Where(s => s.EndsWith(".exe") || s.EndsWith(".bat") || s.EndsWith(".cmd")); IEnumerable currentUserShortcuts = Directory.GetFiles(CurrentUserStartupFolder, "*.lnk", SearchOption.AllDirectories); GetFolderStartupItemsHelper(ref startupItems, currentUserFiles, currentUserShortcuts, StartupItemLocation.CUStartupFolder); } if (Directory.Exists(LocalMachineStartupFolder)) { IEnumerable localMachineFiles = Directory.EnumerateFiles(LocalMachineStartupFolder, "*.*", SearchOption.AllDirectories) .Where(s => s.EndsWith(".exe") || s.EndsWith(".bat") || s.EndsWith(".cmd")); IEnumerable localMachineShortcuts = Directory.GetFiles(LocalMachineStartupFolder, "*.lnk", SearchOption.AllDirectories); GetFolderStartupItemsHelper(ref startupItems, localMachineFiles, localMachineShortcuts, StartupItemLocation.LMStartupFolder); } return startupItems; } } } ================================================ FILE: Optimizer/TelemetryHelper.cs ================================================ //using Newtonsoft.Json; //using System; //using System.Net.Http; //using System.Net.Http.Headers; //using System.Text; //using System.Threading.Tasks; //namespace Optimizer //{ // internal static class TelemetryHelper // { // const string GEO_LOOKUP_URL = "http://ip-api.com/json/"; // static TelemetryData telemetryEntry = new TelemetryData(); // internal static HttpClient TelemetryClient; // internal const string TELEMETRY_API_URL = ""; // internal const string TELEMETRY_KEY = @"{OPTIMIZER-0EFC7B8A-D1FC-467F-B4B1-0117C643FE19-TELEMETRY}"; // internal static async void EnableTelemetryService() // { // TelemetryClient = new HttpClient(); // TelemetryClient.BaseAddress = new Uri(TELEMETRY_API_URL); // TelemetryClient.DefaultRequestHeaders.Add("Optimizertelemetrykey", TELEMETRY_KEY); // TelemetryClient.DefaultRequestHeaders // .Accept // .Add(new MediaTypeWithQualityHeaderValue("application/json")); // await CacheTelemetryData(); // } // internal static async Task GetSessionCountry() // { // try // { // string result = await TelemetryClient.GetStringAsync(GEO_LOOKUP_URL); // GeoLookupResult x = JsonConvert.DeserializeObject(result); // if (x.status == "success") // { // return x.country; // } // else // { // return "Unknown"; // } // } // catch // { // return "Unknown"; // } // } // internal static async Task CacheTelemetryData() // { // telemetryEntry.Country = await GetSessionCountry(); // telemetryEntry.WindowsVersion = Utilities.GetWindowsDetails(); // telemetryEntry.DotNetVersion = Utilities.GetNETFramework(); // telemetryEntry.OptimizerVersion = Program.GetCurrentVersionTostring(); // telemetryEntry.UnsafeMode = Program.UNSAFE_MODE.ToString(); // telemetryEntry.ExperimentalBuild = Program.EXPERIMENTAL_BUILD.ToString(); // telemetryEntry.TelemetryID = Options.CurrentOptions.TelemetryClientID; // } // internal static void GenerateTelemetryData(string functionName, string errorMessage, string errorStackTrace) // { // telemetryEntry.Timestamp = string.Format("{0:yyyy-MM-ddTHH:mm:ss.FFFZ}", DateTime.UtcNow); // telemetryEntry.LanguageCode = Enum.GetName(typeof(LanguageCode), Options.CurrentOptions.LanguageCode); // telemetryEntry.SavedOptions = JsonConvert.SerializeObject(Options.CurrentOptions, Formatting.Indented); // telemetryEntry.FunctionName = functionName; // telemetryEntry.ErrorMessage = errorMessage; // telemetryEntry.StackTrace = errorStackTrace; // SendTelemetryData(telemetryEntry); // } // internal static void SendTelemetryData(TelemetryData entry) // { // try // { // StringContent bodyContent = new StringContent(JsonConvert.SerializeObject(telemetryEntry, Formatting.Indented), Encoding.UTF8, "application/json"); // TelemetryClient.PostAsync(TelemetryClient.BaseAddress, bodyContent); // } // catch { } // } // } //} ================================================ FILE: Optimizer/TokenPrivilegeHelper.cs ================================================ using System; using System.Runtime.InteropServices; using System.Security; namespace Optimizer { /* * Allows clients to obtain a Windows token privilege for a well-defined scope simply by "using" an instance of this class. */ sealed class TokenPrivilegeHelper : IDisposable { private enum PrivilegeAction : uint { Disable = 0x0, Enable = 0x2 } public static TokenPrivilegeHelper Backup => new TokenPrivilegeHelper("SeBackupPrivilege"); public static TokenPrivilegeHelper Restore => new TokenPrivilegeHelper("SeRestorePrivilege"); public static TokenPrivilegeHelper TakeOwnership => new TokenPrivilegeHelper("SeTakeOwnershipPrivilege"); private readonly string privilegeName; private TokenPrivilegeHelper(string privilegeName) { this.privilegeName = privilegeName; Apply(PrivilegeAction.Enable); } private void Apply(PrivilegeAction action) { OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, out IntPtr tokenHandle); LookupPrivilegeValue(null, privilegeName, out Luid luid); var tokenPrivilege = new TokenPrivileges(luid, (uint)action); UpdateTokenPrivileges(tokenHandle, tokenPrivilege); } private void UpdateTokenPrivileges(IntPtr tokenHandle, TokenPrivileges privilegeInfo) { bool successful = AdjustTokenPrivileges(tokenHandle, false, ref privilegeInfo, 0, IntPtr.Zero, IntPtr.Zero); if (!successful || Marshal.GetLastWin32Error() == ERROR_NOT_ALL_ASSIGNED) throw new SecurityException($"Can't adjust token privilege {privilegeName}"); } public void Dispose() { Apply(PrivilegeAction.Disable); } #region P/Invoke structs and methods private const int ERROR_NOT_ALL_ASSIGNED = 1300; [StructLayout(LayoutKind.Sequential)] private struct TokenPrivileges { // We can use this struct only with one privilege since CLR doesn't support marshalling dynamic-sized arrays public TokenPrivileges(Luid luid, uint attributes) { Count = 1; Privileges = new[] { new LuidAndAttributes(luid, attributes) }; } private uint Count; [MarshalAs(UnmanagedType.ByValArray, SizeConst = 1)] private LuidAndAttributes[] Privileges; } [StructLayout(LayoutKind.Sequential)] private readonly struct LuidAndAttributes { public LuidAndAttributes(Luid luid, uint attributes) { Luid = luid; Attributes = attributes; } private readonly Luid Luid; private readonly uint Attributes; } [StructLayout(LayoutKind.Sequential)] private readonly struct Luid { private readonly uint LowPart; private readonly int HighPart; } private const int TOKEN_QUERY = 0x8; private const int TOKEN_ADJUST_PRIVILEGES = 0x20; [DllImport("advapi32.dll", SetLastError = true)] private static extern bool AdjustTokenPrivileges(IntPtr tokenHandle, bool disableAllPrivileges, ref TokenPrivileges newState, int bufferLength, IntPtr previousState, IntPtr returnLength); [DllImport("kernel32.dll")] private static extern IntPtr GetCurrentProcess(); [DllImport("advapi32.dll", SetLastError = true)] private static extern bool OpenProcessToken(IntPtr processHandle, int desiredAccess, out IntPtr tokenHandle); [DllImport("advapi32.dll", SetLastError = true)] private static extern bool LookupPrivilegeValue(string systemName, string privilegeName, out Luid privilegeLuid); #endregion } } ================================================ FILE: Optimizer/UWPHelper.cs ================================================ using System.Collections.Generic; using System.Collections.ObjectModel; using System.Management.Automation; namespace Optimizer { internal static class UWPHelper { internal static List> GetUWPApps(bool showAll) { List> modernApps = new List>(); if (Utilities.CurrentWindowsVersion == WindowsVersion.Windows8) { showAll = true; } using (PowerShell script = PowerShell.Create()) { if (showAll) { script.AddScript("Get-AppxPackage | Select Name,InstallLocation"); } else { script.AddScript(@"Get-AppxPackage | Where {$_.NonRemovable -like ""False""} | Select Name,InstallLocation"); } string[] tmp; Collection psResult; try { psResult = script.Invoke(); } catch { return modernApps; } if (psResult == null) return modernApps; foreach (PSObject x in psResult) { tmp = x.ToString().Replace("@", string.Empty).Replace("{", string.Empty).Replace("}", string.Empty).Replace("Name=", string.Empty).Replace("InstallLocation=", string.Empty).Trim().Split(';'); if (!modernApps.Exists(i => i.Key == tmp[0])) { modernApps.Add(new KeyValuePair(tmp[0], tmp[1])); } } } return modernApps; } internal static bool UninstallUWPApp(string appName) { using (PowerShell script = PowerShell.Create()) { script.AddScript(string.Format("Get-AppxPackage -AllUsers '{0}' | Remove-AppxPackage", appName)); script.Invoke(); return script.Streams.Error.Count > 0; // not working on Windows 7 anymore //return script.HadErrors; } } internal static bool RestoreAllUWPApps() { string cmd = "Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register \"$($_.InstallLocation)\\AppXManifest.xml\"}"; using (PowerShell script = PowerShell.Create()) { script.AddScript(cmd); script.Invoke(); return script.Streams.Error.Count > 0; } } } } ================================================ FILE: Optimizer/Utilities.cs ================================================ using Microsoft.Win32; using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using System.IO; using System.Reflection; using System.Security.AccessControl; using System.Security.Principal; using System.ServiceProcess; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace Optimizer { internal static class Utilities { // DEPRECATED //internal readonly static string DefaultEdgeDownloadFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Downloads"); internal static WindowsVersion CurrentWindowsVersion = WindowsVersion.Unsupported; static string productName = string.Empty; static string buildNumber = string.Empty; internal delegate void SetControlPropertyThreadSafeDelegate(Control control, string propertyName, object propertyValue); internal static void SetControlPropertyThreadSafe(Control control, string propertyName, object propertyValue) { if (control.InvokeRequired) { control.Invoke(new SetControlPropertyThreadSafeDelegate(SetControlPropertyThreadSafe), new object[] { control, propertyName, propertyValue }); } else { control.GetType().InvokeMember(propertyName, BindingFlags.SetProperty, null, control, new object[] { propertyValue }); } } internal static IEnumerable GetSelfAndChildrenRecursive(Control parent) { List controls = new List(); foreach (Control child in parent.Controls) { controls.AddRange(GetSelfAndChildrenRecursive(child)); } controls.Add(parent); return controls; } internal static Color ToGrayScale(this Color originalColor) { if (originalColor.Equals(Color.Transparent)) return originalColor; int grayScale = (int)((originalColor.R * .299) + (originalColor.G * .587) + (originalColor.B * .114)); return Color.FromArgb(grayScale, grayScale, grayScale); } internal static string GetWindowsDetails() { string bitness = Environment.Is64BitOperatingSystem ? "64-bit" : "32-bit"; if (CurrentWindowsVersion == WindowsVersion.Windows10 || CurrentWindowsVersion == WindowsVersion.Windows11) { return string.Format("{0} - {1} ({2})", GetOS(), GetWindows10Build(), bitness); } else { return string.Format("{0} - ({1})", GetOS(), bitness); } } internal static string GetWindows10Build() { return (string)Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", "DisplayVersion", ""); } internal static string GetOS() { productName = (string)Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", "ProductName", ""); if (productName.Contains("Windows 7")) { CurrentWindowsVersion = WindowsVersion.Windows7; } if ((productName.Contains("Windows 8")) || (productName.Contains("Windows 8.1"))) { CurrentWindowsVersion = WindowsVersion.Windows8; } if (productName.Contains("Windows 10")) { buildNumber = (string)Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", "CurrentBuild", ""); if (Convert.ToInt32(buildNumber) >= 22000) { productName = productName.Replace("Windows 10", "Windows 11"); CurrentWindowsVersion = WindowsVersion.Windows11; } else { CurrentWindowsVersion = WindowsVersion.Windows10; } } if (Program.UNSAFE_MODE) { if (productName.Contains("Windows Server 2008")) { CurrentWindowsVersion = WindowsVersion.Windows7; } if (productName.Contains("Windows Server 2012")) { CurrentWindowsVersion = WindowsVersion.Windows8; } if (productName.Contains("Windows Server 2016") || productName.Contains("Windows Server 2019") || productName.Contains("Windows Server 2022")) { CurrentWindowsVersion = WindowsVersion.Windows10; } } return productName; } internal static string GetBitness() { string bitness; if (Environment.Is64BitOperatingSystem) { bitness = "You are working with 64-bit"; } else { bitness = "You are working with 32-bit"; } return bitness; } internal static bool IsAdmin() { return new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator); } internal static bool IsCompatible() { bool legit; string os = GetOS(); if ((os.Contains("XP")) || (os.Contains("Vista")) || os.Contains("Server 2003")) { legit = false; } else { legit = true; } return legit; } // DEPRECATED //internal static string GetEdgeDownloadFolder() //{ // string current = string.Empty; // try // { // current = Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "DownloadDirectory", DefaultEdgeDownloadFolder).ToString(); // } // catch (Exception ex) // { // current = DefaultEdgeDownloadFolder; // ErrorLogger.LogError("Utilities.GetEdgeDownloadFolder", ex.Message, ex.StackTrace); // } // return current; //} // DEPRECATED //internal static void SetEdgeDownloadFolder(string path) //{ // Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge", "DownloadDirectory", path, RegistryValueKind.String); //} internal static void RunBatchFile(string batchFile) { try { using (Process p = new Process()) { p.StartInfo.CreateNoWindow = true; p.StartInfo.FileName = batchFile; p.StartInfo.UseShellExecute = false; p.Start(); p.WaitForExit(); p.Close(); } } catch (Exception ex) { Logger.LogError("Utilities.RunBatchFile", ex.Message, ex.StackTrace); } } internal static void ImportRegistryScript(string scriptFile) { string path = "\"" + scriptFile + "\""; Process p = new Process(); try { p.StartInfo.FileName = "regedit.exe"; p.StartInfo.UseShellExecute = false; p = Process.Start("regedit.exe", "/s " + path); p.WaitForExit(); } catch (Exception ex) { p.Dispose(); Logger.LogError("Utilities.ImportRegistryScript", ex.Message, ex.StackTrace); } finally { p.Dispose(); } } internal static void Reboot() { OptionsHelper.SaveSettings(); Process.Start("shutdown.exe", "/r /t 0"); } internal static void DisableHibernation() { Utilities.RunCommand("powercfg -h off"); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power", "HibernateEnabled", "0", RegistryValueKind.DWord); } internal static void EnableHibernation() { Utilities.TryDeleteRegistryValue(true, @"SYSTEM\CurrentControlSet\Control\Power", "HibernateEnabled"); Utilities.RunCommand("powercfg -h on"); } internal static void ActivateMainForm() { Program._MainForm.Activate(); } internal static bool ServiceExists(string serviceName) { return Array.Exists(ServiceController.GetServices(), (serviceController => serviceController.ServiceName.Equals(serviceName))); } internal static void StopService(string serviceName) { if (ServiceExists(serviceName)) { ServiceController sc = new ServiceController(serviceName); if (sc.CanStop) { sc.Stop(); } } } internal static void StartService(string serviceName) { if (ServiceExists(serviceName)) { ServiceController sc = new ServiceController(serviceName); try { sc.Start(); } catch (Exception ex) { Logger.LogError("Utilities.StartService", ex.Message, ex.StackTrace); } } } internal static void EnableFirewall() { RunCommand("netsh advfirewall set currentprofile state on"); } internal static void EnableCommandPrompt() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Policies\\Microsoft\\Windows\\System")) { key.SetValue("DisableCMD", 0, RegistryValueKind.DWord); } } internal static void EnableControlPanel() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer")) { key.SetValue("NoControlPanel", 0, RegistryValueKind.DWord); } } internal static void EnableFolderOptions() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer")) { key.SetValue("NoFolderOptions", 0, RegistryValueKind.DWord); } } internal static void EnableRunDialog() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer")) { key.SetValue("NoRun", 0, RegistryValueKind.DWord); } } internal static void EnableContextMenu() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer")) { key.SetValue("NoViewContextMenu", 0, RegistryValueKind.DWord); } } internal static void EnableTaskManager() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System")) { key.SetValue("DisableTaskMgr", 0, RegistryValueKind.DWord); } } internal static void EnableRegistryEditor() { using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System")) { key.SetValue("DisableRegistryTools", 0, RegistryValueKind.DWord); } } internal static void RunCommand(string command) { if (string.IsNullOrEmpty(command)) return; using (Process p = new Process()) { p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; p.StartInfo.FileName = "cmd.exe"; p.StartInfo.Arguments = "/C " + command; p.StartInfo.CreateNoWindow = true; try { p.Start(); p.WaitForExit(); p.Close(); } catch (Exception ex) { Logger.LogError("Utilities.RunCommand", ex.Message, ex.StackTrace); } } } internal static void FindFile(string fileName) { if (File.Exists(fileName)) Process.Start("explorer.exe", $"/select, \"{fileName}\""); } internal static void FindFolder(string folder) { if (Directory.Exists(folder)) RunCommand($"explorer.exe \"{folder}\""); } internal static string GetShortcutTargetFile(string shortcutFilename) { string pathOnly = Path.GetDirectoryName(shortcutFilename); string filenameOnly = Path.GetFileName(shortcutFilename); Shell32.Shell shell = new Shell32.Shell(); Shell32.Folder folder = shell.NameSpace(pathOnly); Shell32.FolderItem folderItem = folder.ParseName(filenameOnly); if (folderItem != null) { Shell32.ShellLinkObject link = (Shell32.ShellLinkObject)folderItem.GetLink; return link.Path; } return string.Empty; } internal static void RestartExplorer() { const string explorer = "explorer.exe"; string explorerPath = string.Format("{0}\\{1}", Environment.GetEnvironmentVariable("WINDIR"), explorer); foreach (Process process in Process.GetProcesses()) { try { if (string.Compare(process.MainModule.FileName, explorerPath, StringComparison.OrdinalIgnoreCase) == 0) { process.Kill(); } } catch (Exception ex) { Logger.LogError("Utilities.RestartExplorer", ex.Message, ex.StackTrace); } } Thread.Sleep(TimeSpan.FromSeconds(1)); Process.Start(explorer); } internal static void FindKeyInRegistry(string key) { try { Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit", "LastKey", key); Process.Start("regedit"); } catch (Exception ex) { Logger.LogError("Utilities.FindKeyInRegistry", ex.Message, ex.StackTrace); } } internal static void Repair(bool withoutRestart = false) { try { Directory.Delete(CoreHelper.CoreFolder, true); } catch (Exception ex) { Logger.LogError("Utilities.ResetConfiguration", ex.Message, ex.StackTrace); } finally { if (!withoutRestart) { // BYPASS SINGLE-INSTANCE MECHANISM if (Program.MUTEX != null) { Program.MUTEX.ReleaseMutex(); Program.MUTEX.Dispose(); Program.MUTEX = null; } Application.Restart(); } } } internal static Task RunAsync(this Process process) { var tcs = new TaskCompletionSource(); process.EnableRaisingEvents = true; process.Exited += (s, e) => tcs.TrySetResult(null); if (!process.Start()) tcs.SetException(new Exception("Failed to start process.")); return tcs.Task; } internal static string SanitizeFileFolderName(string fileName) { char[] invalids = Path.GetInvalidFileNameChars(); return string.Join("_", fileName.Split(invalids, StringSplitOptions.RemoveEmptyEntries)).TrimEnd('.'); } // attempt to enable Local Group Policy Editor on Windows 10 Home editions internal static void EnableGPEDitor() { Utilities.RunBatchFile(CoreHelper.ScriptsFolder + "GPEditEnablerInHome.bat"); } internal static void TryDeleteRegistryValue(bool localMachine, string path, string valueName) { try { if (localMachine) Registry.LocalMachine.OpenSubKey(path, true).DeleteValue(valueName, false); if (!localMachine) Registry.CurrentUser.OpenSubKey(path, true).DeleteValue(valueName, false); } catch { } } internal static void TryDeleteRegistryValueDefaultUsers(string path, string valueName) { try { Registry.Users.OpenSubKey(path, true).DeleteValue(valueName, false); } catch { } } internal static void DisableProtectedService(string serviceName) { using (TokenPrivilegeHelper.TakeOwnership) { using (RegistryKey allServicesKey = Registry.LocalMachine.OpenSubKeyWritable(@"SYSTEM\CurrentControlSet\Services")) { allServicesKey.GrantFullControlOnSubKey(serviceName); using (RegistryKey serviceKey = allServicesKey.OpenSubKeyWritable(serviceName)) { if (serviceKey == null) return; foreach (string subkeyName in serviceKey.GetSubKeyNames()) { serviceKey.TakeOwnershipOnSubKey(subkeyName); serviceKey.GrantFullControlOnSubKey(subkeyName); } serviceKey.SetValue("Start", "4", RegistryValueKind.DWord); } } } } // old and untested method //internal static void RestoreWindowsPhotoViewer() //{ // const string PHOTO_VIEWER_SHELL_COMMAND = // @"%SystemRoot%\System32\rundll32.exe ""%ProgramFiles%\Windows Photo Viewer\PhotoViewer.dll"", ImageView_Fullscreen %1"; // const string PHOTO_VIEWER_CLSID = "{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}"; // Registry.SetValue(@"HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open", "MuiVerb", "@photoviewer.dll,-3043"); // Registry.SetValue( // @"HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\command", valueName: null, // PHOTO_VIEWER_SHELL_COMMAND, RegistryValueKind.ExpandString // ); // Registry.SetValue(@"HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\DropTarget", "Clsid", PHOTO_VIEWER_CLSID); // string[] imageTypes = { "Paint.Picture", "giffile", "jpegfile", "pngfile" }; // foreach (string type in imageTypes) // { // Registry.SetValue( // $@"HKEY_CLASSES_ROOT\{type}\shell\open\command", valueName: null, // PHOTO_VIEWER_SHELL_COMMAND, RegistryValueKind.ExpandString // ); // Registry.SetValue($@"HKEY_CLASSES_ROOT\{type}\shell\open\DropTarget", "Clsid", PHOTO_VIEWER_CLSID); // } //} internal static void EnableProtectedService(string serviceName) { using (TokenPrivilegeHelper.TakeOwnership) { using (RegistryKey allServicesKey = Registry.LocalMachine.OpenSubKeyWritable(@"SYSTEM\CurrentControlSet\Services")) { allServicesKey.GrantFullControlOnSubKey(serviceName); using (RegistryKey serviceKey = allServicesKey.OpenSubKeyWritable(serviceName)) { if (serviceKey == null) return; foreach (string subkeyName in serviceKey.GetSubKeyNames()) { serviceKey.TakeOwnershipOnSubKey(subkeyName); serviceKey.GrantFullControlOnSubKey(subkeyName); } serviceKey.SetValue("Start", "2", RegistryValueKind.DWord); } } } } public static RegistryKey OpenSubKeyWritable(this RegistryKey registryKey, string subkeyName, RegistryRights? rights = null) { RegistryKey subKey; if (rights == null) subKey = registryKey.OpenSubKey(subkeyName, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.FullControl); else subKey = registryKey.OpenSubKey(subkeyName, RegistryKeyPermissionCheck.ReadWriteSubTree, rights.Value); if (subKey == null) { Logger.LogError("Utilities.OpenSubKeyWritable", $"Subkey {subkeyName} not found.", "-"); } return subKey; } internal static SecurityIdentifier RetrieveCurrentUserIdentifier() => WindowsIdentity.GetCurrent().User ?? throw new Exception("Unable to retrieve current user SID."); internal static void GrantFullControlOnSubKey(this RegistryKey registryKey, string subkeyName) { using (RegistryKey subKey = registryKey.OpenSubKeyWritable(subkeyName, RegistryRights.TakeOwnership | RegistryRights.ChangePermissions )) { RegistrySecurity accessRules = subKey.GetAccessControl(); SecurityIdentifier currentUser = RetrieveCurrentUserIdentifier(); accessRules.SetOwner(currentUser); accessRules.ResetAccessRule( new RegistryAccessRule( currentUser, RegistryRights.FullControl, InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit, PropagationFlags.None, AccessControlType.Allow ) ); subKey.SetAccessControl(accessRules); } } internal static void TakeOwnershipOnSubKey(this RegistryKey registryKey, string subkeyName) { using (RegistryKey subKey = registryKey.OpenSubKeyWritable(subkeyName, RegistryRights.TakeOwnership)) { RegistrySecurity accessRules = subKey.GetAccessControl(); accessRules.SetOwner(RetrieveCurrentUserIdentifier()); subKey.SetAccessControl(accessRules); } } internal static string GetNETFramework() { string subkey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\"; int netRelease; using (RegistryKey ndpKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32).OpenSubKey(subkey)) { if (ndpKey != null && ndpKey.GetValue("Release") != null) { netRelease = (int)ndpKey.GetValue("Release"); } else { return "4.0"; } } if (netRelease >= 528040) return "4.8"; if (netRelease >= 461808) return "4.7.2"; if (netRelease >= 461308) return "4.7.1"; if (netRelease >= 460798) return "4.7"; if (netRelease >= 394802) return "4.6.2"; if (netRelease >= 394254) return "4.6.1"; if (netRelease >= 393295) return "4.6"; if (netRelease >= 379893) return "4.5.2"; if (netRelease >= 378675) return "4.5.1"; if (netRelease >= 378389) return "4.5"; return "4.0"; } internal static void SearchWith(string term, bool ddg) { try { if (ddg) Process.Start(string.Format("https://duckduckgo.com/?q={0}", term)); if (!ddg) Process.Start(string.Format("https://www.google.com/search?q={0}", term)); } catch { } } internal static void EnableLoginVerbose() { try { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "verbosestatus", 1, RegistryValueKind.DWord); } catch (Exception ex) { Logger.LogError("Utilities.EnableLoginVerbose", ex.Message, ex.StackTrace); } } internal static void DisableLoginVerbose() { Utilities.TryDeleteRegistryValue(true, @"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "verbosestatus"); } // [!!!] internal static void UnlockAllCores() { try { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Power\PowerSettings\54533251-82be-4824-96c1-47b60b740d00\0cc5b647-c1df-4637-891a-dec35c318583", "ValueMax", 0, RegistryValueKind.DWord); Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Power\PowerSettings\54533251-82be-4824-96c1-47b60b740d00\0cc5b647-c1df-4637-891a-dec35c318583", "ValueMin", 0, RegistryValueKind.DWord); } catch (Exception ex) { Logger.LogError("Utilities.UnlockAllCores", ex.Message, ex.StackTrace); } } // value = RAM in GB * 1024 * 1024 internal static void DisableSvcHostProcessSplitting(int ramInGb) { try { ramInGb = ramInGb * 1024 * 1024; Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control", "SvcHostSplitThresholdInKB", ramInGb, RegistryValueKind.DWord); } catch (Exception ex) { Logger.LogError("Utilities.DisableSvcHostProcessSplitting", ex.Message, ex.StackTrace); } } // reset the value to default internal static void EnableSvcHostProcessSplitting() { try { Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control", "SvcHostSplitThresholdInKB", 380000, RegistryValueKind.DWord); } catch (Exception ex) { Logger.LogError("Utilities.EnableSvcHostProcessSplitting", ex.Message, ex.StackTrace); } } internal static void DisableHPET() { Utilities.RunCommand("bcdedit /deletevalue useplatformclock"); Thread.Sleep(500); Utilities.RunCommand("bcdedit /set disabledynamictick yes"); } internal static void EnableHPET() { Utilities.RunCommand("bcdedit /set useplatformclock true"); Thread.Sleep(500); Utilities.RunCommand("bcdedit /set disabledynamictick no"); } internal static void RegisterAutoStart() { try { using (RegistryKey k = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) { k.SetValue("Optimizer", Assembly.GetEntryAssembly().Location); } } catch (Exception ex) { Logger.LogError("Utilities.AddToStartup", ex.Message, ex.StackTrace); } } internal static void UnregisterAutoStart() { try { using (RegistryKey k = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) { k.DeleteValue("Optimizer", false); } } catch (Exception ex) { Logger.LogError("Utilities.DeleteFromStartup", ex.Message, ex.StackTrace); } } internal static void AllowProcessToRun(string pName) { try { using (RegistryKey ifeo = Registry.LocalMachine.OpenSubKeyWritable(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", RegistryRights.FullControl)) { if (ifeo == null) return; ifeo.GrantFullControlOnSubKey("Image File Execution Options"); using (RegistryKey k = ifeo.OpenSubKeyWritable("Image File Execution Options", RegistryRights.FullControl)) { if (k == null) return; k.GrantFullControlOnSubKey(pName); k.DeleteSubKey(pName); } } } catch (Exception ex) { Logger.LogError("Utilities.AllowProcessToRun", ex.Message, ex.StackTrace); } } internal static void PreventProcessFromRunning(string pName) { try { using (RegistryKey ifeo = Registry.LocalMachine.OpenSubKeyWritable(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", RegistryRights.FullControl)) { if (ifeo == null) return; ifeo.GrantFullControlOnSubKey("Image File Execution Options"); using (RegistryKey k = ifeo.OpenSubKeyWritable("Image File Execution Options", RegistryRights.FullControl)) { if (k == null) return; k.CreateSubKey(pName); k.GrantFullControlOnSubKey(pName); using (RegistryKey f = k.OpenSubKeyWritable(pName, RegistryRights.FullControl)) { if (f == null) return; f.SetValue("Debugger", @"%windir%\System32\taskkill.exe"); } } } } catch (Exception ex) { Logger.LogError("Utilities.PreventProcessFromRunning", ex.Message, ex.StackTrace); } } internal static string GetUserDownloadsFolder() { try { return Registry.GetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders", "{374DE290-123F-4565-9164-39C4925E467B}", string.Empty).ToString(); } catch (Exception ex) { Logger.LogError("Utilities.GetUserDownloadsFolder", ex.Message, ex.StackTrace); return string.Empty; } } internal static void ReinforceCurrentTweaks() { SilentConfig silentConfig = new SilentConfig(); Tweaks silentConfigTweaks = new Tweaks(); silentConfig.Tweaks = silentConfigTweaks; #region Windows General silentConfig.Tweaks.EnablePerformanceTweaks = OptionsHelper.CurrentOptions.EnablePerformanceTweaks ? true : (bool?)null; silentConfig.Tweaks.EnableUtcTime = OptionsHelper.CurrentOptions.EnableUtcTime ? true : (bool?)null; silentConfig.Tweaks.ShowAllTrayIcons = OptionsHelper.CurrentOptions.ShowAllTrayIcons ? true : (bool?)null; silentConfig.Tweaks.RemoveMenusDelay = OptionsHelper.CurrentOptions.RemoveMenusDelay ? true : (bool?)null; silentConfig.Tweaks.DisableNetworkThrottling = OptionsHelper.CurrentOptions.DisableNetworkThrottling ? true : (bool?)null; silentConfig.Tweaks.DisableWindowsDefender = OptionsHelper.CurrentOptions.DisableWindowsDefender ? true : (bool?)null; silentConfig.Tweaks.DisableSystemRestore = OptionsHelper.CurrentOptions.DisableSystemRestore ? true : (bool?)null; silentConfig.Tweaks.DisablePrintService = OptionsHelper.CurrentOptions.DisablePrintService ? true : (bool?)null; silentConfig.Tweaks.DisableMediaPlayerSharing = OptionsHelper.CurrentOptions.DisableMediaPlayerSharing ? true : (bool?)null; silentConfig.Tweaks.DisableErrorReporting = OptionsHelper.CurrentOptions.DisableErrorReporting ? true : (bool?)null; silentConfig.Tweaks.DisableHomeGroup = OptionsHelper.CurrentOptions.DisableHomeGroup ? true : (bool?)null; silentConfig.Tweaks.DisableSuperfetch = OptionsHelper.CurrentOptions.DisableSuperfetch ? true : (bool?)null; silentConfig.Tweaks.DisableTelemetryTasks = OptionsHelper.CurrentOptions.DisableTelemetryTasks ? true : (bool?)null; silentConfig.Tweaks.DisableOffice2016Telemetry = OptionsHelper.CurrentOptions.DisableOffice2016Telemetry ? true : (bool?)null; silentConfig.Tweaks.DisableCompatibilityAssistant = OptionsHelper.CurrentOptions.DisableCompatibilityAssistant ? true : (bool?)null; silentConfig.Tweaks.DisableHibernation = OptionsHelper.CurrentOptions.DisableHibernation ? true : (bool?)null; silentConfig.Tweaks.DisableSMB1 = OptionsHelper.CurrentOptions.DisableSMB1 ? true : (bool?)null; silentConfig.Tweaks.DisableSMB2 = OptionsHelper.CurrentOptions.DisableSMB2 ? true : (bool?)null; silentConfig.Tweaks.DisableNTFSTimeStamp = OptionsHelper.CurrentOptions.DisableNTFSTimeStamp ? true : (bool?)null; silentConfig.Tweaks.DisableFaxService = OptionsHelper.CurrentOptions.DisableFaxService ? true : (bool?)null; silentConfig.Tweaks.DisableSmartScreen = OptionsHelper.CurrentOptions.DisableSmartScreen ? true : (bool?)null; silentConfig.Tweaks.DisableStickyKeys = OptionsHelper.CurrentOptions.DisableStickyKeys ? true : (bool?)null; silentConfig.Tweaks.DisableVisualStudioTelemetry = OptionsHelper.CurrentOptions.DisableVisualStudioTelemetry ? true : (bool?)null; silentConfig.Tweaks.DisableFirefoxTemeletry = OptionsHelper.CurrentOptions.DisableFirefoxTemeletry ? true : (bool?)null; silentConfig.Tweaks.DisableChromeTelemetry = OptionsHelper.CurrentOptions.DisableChromeTelemetry ? true : (bool?)null; silentConfig.Tweaks.DisableNVIDIATelemetry = OptionsHelper.CurrentOptions.DisableNVIDIATelemetry ? true : (bool?)null; silentConfig.Tweaks.DisableSearch = OptionsHelper.CurrentOptions.DisableSearch ? true : (bool?)null; #endregion #region Windows 8.1 silentConfig.Tweaks.DisableOneDrive = OptionsHelper.CurrentOptions.DisableOneDrive ? true : (bool?)null; #endregion #region Windows 10 silentConfig.Tweaks.DisableCloudClipboard = OptionsHelper.CurrentOptions.DisableCloudClipboard ? true : (bool?)null; silentConfig.Tweaks.EnableLegacyVolumeSlider = OptionsHelper.CurrentOptions.EnableLegacyVolumeSlider ? true : (bool?)null; silentConfig.Tweaks.DisableQuickAccessHistory = OptionsHelper.CurrentOptions.DisableQuickAccessHistory ? true : (bool?)null; silentConfig.Tweaks.DisableStartMenuAds = OptionsHelper.CurrentOptions.DisableStartMenuAds ? true : (bool?)null; silentConfig.Tweaks.UninstallOneDrive = OptionsHelper.CurrentOptions.UninstallOneDrive ? true : (bool?)null; silentConfig.Tweaks.DisableMyPeople = OptionsHelper.CurrentOptions.DisableMyPeople ? true : (bool?)null; silentConfig.Tweaks.DisableAutomaticUpdates = OptionsHelper.CurrentOptions.DisableAutomaticUpdates ? true : (bool?)null; silentConfig.Tweaks.ExcludeDrivers = OptionsHelper.CurrentOptions.ExcludeDrivers ? true : (bool?)null; silentConfig.Tweaks.DisableTelemetryServices = OptionsHelper.CurrentOptions.DisableTelemetryServices ? true : (bool?)null; silentConfig.Tweaks.DisablePrivacyOptions = OptionsHelper.CurrentOptions.DisablePrivacyOptions ? true : (bool?)null; silentConfig.Tweaks.DisableCortana = OptionsHelper.CurrentOptions.DisableCortana ? true : (bool?)null; silentConfig.Tweaks.DisableSensorServices = OptionsHelper.CurrentOptions.DisableSensorServices ? true : (bool?)null; silentConfig.Tweaks.DisableWindowsInk = OptionsHelper.CurrentOptions.DisableWindowsInk ? true : (bool?)null; silentConfig.Tweaks.DisableSpellingTyping = OptionsHelper.CurrentOptions.DisableSpellingTyping ? true : (bool?)null; silentConfig.Tweaks.DisableXboxLive = OptionsHelper.CurrentOptions.DisableXboxLive ? true : (bool?)null; silentConfig.Tweaks.DisableGameBar = OptionsHelper.CurrentOptions.DisableGameBar ? true : (bool?)null; silentConfig.Tweaks.DisableInsiderService = OptionsHelper.CurrentOptions.DisableInsiderService ? true : (bool?)null; silentConfig.Tweaks.DisableStoreUpdates = OptionsHelper.CurrentOptions.DisableStoreUpdates ? true : (bool?)null; silentConfig.Tweaks.EnableLongPaths = OptionsHelper.CurrentOptions.EnableLongPaths ? true : (bool?)null; silentConfig.Tweaks.RemoveCastToDevice = OptionsHelper.CurrentOptions.RemoveCastToDevice ? true : (bool?)null; silentConfig.Tweaks.EnableGamingMode = OptionsHelper.CurrentOptions.EnableGamingMode ? true : (bool?)null; silentConfig.Tweaks.DisableTPMCheck = OptionsHelper.CurrentOptions.DisableTPMCheck ? true : (bool?)null; silentConfig.Tweaks.DisableVirtualizationBasedTechnology = OptionsHelper.CurrentOptions.DisableVBS ? true : (bool?)null; silentConfig.Tweaks.DisableEdgeDiscoverBar = OptionsHelper.CurrentOptions.DisableEdgeDiscoverBar ? true : (bool?)null; silentConfig.Tweaks.DisableEdgeTelemetry = OptionsHelper.CurrentOptions.DisableEdgeTelemetry ? true : (bool?)null; silentConfig.Tweaks.RestoreClassicPhotoViewer = OptionsHelper.CurrentOptions.RestoreClassicPhotoViewer ? true : (bool?)null; silentConfig.Tweaks.DisableNewsInterests = OptionsHelper.CurrentOptions.DisableNewsInterests ? true : (bool?)null; silentConfig.Tweaks.HideTaskbarSearch = OptionsHelper.CurrentOptions.HideTaskbarSearch ? true : (bool?)null; silentConfig.Tweaks.HideTaskbarWeather = OptionsHelper.CurrentOptions.HideTaskbarWeather ? true : (bool?)null; silentConfig.Tweaks.DisableModernStandby = OptionsHelper.CurrentOptions.DisableModernStandby ? true : (bool?)null; #endregion #region Windows 11 silentConfig.Tweaks.TaskbarToLeft = OptionsHelper.CurrentOptions.TaskbarToLeft ? true : (bool?)null; silentConfig.Tweaks.DisableStickers = OptionsHelper.CurrentOptions.DisableStickers ? true : (bool?)null; silentConfig.Tweaks.CompactMode = OptionsHelper.CurrentOptions.CompactMode ? true : (bool?)null; silentConfig.Tweaks.DisableSnapAssist = OptionsHelper.CurrentOptions.DisableSnapAssist ? true : (bool?)null; silentConfig.Tweaks.DisableWidgets = OptionsHelper.CurrentOptions.DisableWidgets ? true : (bool?)null; silentConfig.Tweaks.DisableChat = OptionsHelper.CurrentOptions.DisableChat ? true : (bool?)null; silentConfig.Tweaks.ClassicMenu = OptionsHelper.CurrentOptions.ClassicMenu ? true : (bool?)null; silentConfig.Tweaks.DisableCoPilotAI = OptionsHelper.CurrentOptions.DisableCoPilotAI ? true : (bool?)null; #endregion SilentOps.CurrentSilentConfig = silentConfig; if (CurrentWindowsVersion == WindowsVersion.Windows7) { SilentOps.ProcessTweaksGeneral(); } if (CurrentWindowsVersion == WindowsVersion.Windows8) { SilentOps.ProcessTweaksGeneral(); SilentOps.ProcessTweaksWindows8(); } if (CurrentWindowsVersion == WindowsVersion.Windows10) { SilentOps.ProcessTweaksGeneral(); SilentOps.ProcessTweaksWindows10(); } if (CurrentWindowsVersion == WindowsVersion.Windows11) { SilentOps.ProcessTweaksGeneral(); SilentOps.ProcessTweaksWindows10(); SilentOps.ProcessTweaksWindows11(); } } } } ================================================ FILE: Optimizer/packages.config ================================================  ================================================ FILE: Optimizer.sln ================================================  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Optimizer", "Optimizer\Optimizer.csproj", "{96563750-9265-4ACC-8E9E-61930A208A4D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {96563750-9265-4ACC-8E9E-61930A208A4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {96563750-9265-4ACC-8E9E-61930A208A4D}.Debug|Any CPU.Build.0 = Debug|Any CPU {96563750-9265-4ACC-8E9E-61930A208A4D}.Release|Any CPU.ActiveCfg = Release|Any CPU {96563750-9265-4ACC-8E9E-61930A208A4D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ================================================ FILE: README.md ================================================ > ⚠ **Optimizer is now deprecated and replaced by OptimizerNXT!** > **Click on the banner below to go to the new project!** ---

ℹ️ Advanced Privacy and Security Configuration Utility

Welcome to Optimizer, an advanced configuration utility designed to enhance your privacy and security on Windows. This tool is highly recommended for use after a fresh installation of Windows to achieve maximum privacy and security benefits. Depending on your Windows version, Optimizer can also help you apply specific system tweaks.

🏗️ Key Features:

- Full multilingual support (24 languages available) - Enhance system and network performance - Disable unnecessary Windows services - Turn off Windows telemetry, Cortana, and more - Disable Office telemetry (works with Office 2016 or newer) - Stop automatic Windows 10/11 updates - Download multiple useful apps quickly - Disable CoPilot AI in Windows 11 & Edge - Enable UTC time globally - Advanced tweaks like disabling HPET, OneDrive, etc. - Uninstall UWP apps - Clean system drive and browser profiles - Fix common registry issues - Ping IPs and assess latency - Search IPs on SHODAN.io - Quickly change DNS server (from a pre-made list) - Flush DNS cache - Remove unwanted startup programs - Edit your HOSTS file - Edit your System Variables paths - Identify and terminate file lock handles - Hardware inspection tool - Add items to the desktop right-click menu - Define custom commands for the run dialog - Support silent runs using a template file

⬇️ Downloads

Find the latest release of Optimizer on the [Releases](https://github.com/hellzerg/optimizer/releases) page.

🖼️ Screenshots

View Optimizer in action through our [Screenshots](https://github.com/hellzerg/optimizer/blob/master/IMAGES.md) collection.

🆘 How to Disable Defender in Windows 10 1903 and Later

- Restart in SAFE-MODE and run Optimizer with `/disabledefender` switch - OR - - Execute Optimizer with `/restart=disabledefender` switch for automated disabling

🔨 Automation using Templating

Explore the possibilities of automation with Optimizer through our [Automation Guide](https://github.com/hellzerg/optimizer/blob/master/AUTOMATION.md).

🔨 Command-line Options

Check out the [Command-line Options](https://github.com/hellzerg/optimizer/blob/master/CONFS.md) available for Optimizer.

❓ Frequently Asked Questions

Find answers to common queries in the [FAQ Section](https://github.com/hellzerg/optimizer/blob/master/FAQ.md).

📰 Changelog

Stay updated with the latest changes through the [Changelog](https://github.com/hellzerg/optimizer/blob/master/CHANGELOG.md).

🛡️ Security Policy

Learn about our security measures in the [Security Policy](https://github.com/hellzerg/optimizer/blob/master/SECURITY.md).

💻 Compatibility

- Requires .NET Framework 4.8.1 - Compatible with Windows 7, 8, 8.1, 10, 11 - Can run on Windows Server 2008, 2012, 2016, 2019, 2022 using `/unsafe` switch

📊 Details

- Latest version: 16.7 (Released: August 18, 2024) - SHA256: 03A234060541B686AC4265754AFF43DF9325C21383F90E17F831E67965D717F8

☕ Buy me a delicious espresso

If you find this tool useful, consider showing your support by [donating through PayPal](https://www.paypal.com/paypalme/supportoptimizer).

🌐 Join our Community

Be a part of our [Discord](https://discord.gg/RmHYWMxWfJ) community.

❤️ Credits and Acknowledgments

- [ByteSize](https://github.com/omar/ByteSize) - A useful library by Omar Rahman - ColorPicker - Theme engine, courtesy of cat ([GitHub Profile](https://github.com/vadiscode))

❤️ Translations

We'd like to extend our gratitude to the following contributors for their translations: - Russian: mrkaban - German: theflamehd - Turkish: Kheasyque - Spanish: danielcshn - Portuguese: Cassio - French: RAFF47 - Italian: Ziocash - Chinese: btwise - Czech: Tom Longhorn - Taiwanese: H3XDaemon - Korean: VenusGirl - Polish: Wilamaxin - Arabic: MesterPerfect - Romanian: BeamingNG, DefaultUser9148 - Dutch: svanlaere - Ukrainian: Kirill Ermakov - Japanese: Yamada Hayao, creeper-0910 - Kurdish: Parwar Andam - Hungarian: Zan - Farsi: MjavadH - Nepali: chapagetti - Hellenic - Bulgarian - Indonesian: ftrsndrya - Croatian: zZan54

❤️ Contribute with a translation

If you would like to translate the app into your language, you can do so, by translating the EN.json and making a PR. Don't forget to mention your language's official name, as well as its national flag. - [EN.json](https://github.com/hellzerg/optimizer/blob/master/Optimizer/Resources/i18n/EN.json) ================================================ FILE: SECURITY.md ================================================ # Security Policy Thank you for choosing the Optimizer! We take security seriously and are committed to providing a safe and reliable product. Please read through the following information to ensure you are using the Optimizer to its fullest potential while maintaining a secure environment. ## Supported Versions We actively support the following version of the Optimizer: | Version | Supported | | ------- | ------------------ | | 16.x | ✅ | If you are using a version older than 15.x, we highly recommend upgrading to the latest version to benefit from the latest security enhancements and features. ## Staying Up to Date To ensure you are benefiting from the latest improvements and security fixes, we strongly advise using the most recent version of the Optimizer. You can easily download the latest version from our official GitHub repository or directly within the app. The app is designed to automatically check for updates each time you run it. If an update is available, an icon will be displayed, alerting you to the new version. Before updating, you'll have the opportunity to review the upcoming changes to make an informed decision. ## Authenticity Verification It's important to ensure that you are using the official version of the Optimizer. To verify the authenticity of the application, please refer to the SHA256 hash provided on the main page of our GitHub repository. This hash acts as a fingerprint and guarantees that the application has not been tampered with. ## Reporting Security Vulnerabilities If you discover a vulnerability or have security concerns, we encourage you to report them promptly. You can do so by opening an issue on our GitHub repository and providing all the necessary details. We take security-related matters seriously and will promptly address your concerns. **Note:** We prioritize the security of our users. Therefore, security-related issues reported within the first 24 hours will receive immediate attention. Our dedicated team will work to provide an update as swiftly as possible, typically within 7-10 days. Thank you for choosing the Optimizer and being proactive about security. Your collaboration helps us maintain a secure environment for all users. ================================================ FILE: feed.json ================================================ [{"Title":"Notepad++","Link64":"https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4/npp.8.4.Installer.x64.exe","Link":"https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4/npp.8.4.Installer.exe","Tag":"cNPP","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/notepadpp.png","Group":"Coding"},{"Title":"Sublime Text","Link64":"https://download.sublimetext.com/Sublime%20Text%20Build%203211%20x64%20Setup.exe","Link":"https://download.sublimetext.com/Sublime%20Text%20Build%203211%20Setup.exe","Tag":"cSublimeText","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/sublimetext.png","Group":"Coding"},{"Title":"Atom","Link64":"https://github.com/atom/atom/releases/download/v1.58.0/AtomSetup-x64.exe","Link":"https://github.com/atom/atom/releases/download/v1.58.0/AtomSetup.exe","Tag":"cAtom","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/atom.png","Group":"Coding"},{"Title":"VS Codium","Link64":"https://github.com/VSCodium/vscodium/releases/download/1.62.3/VSCodiumUserSetup-x64-1.62.3.exe","Link":"https://github.com/VSCodium/vscodium/releases/download/1.62.3/VSCodiumUserSetup-ia32-1.62.3.exe","Tag":"cCodium","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/vscodium.png","Group":"Coding"},{"Title":"GitHub","Link64":"https://desktop.githubusercontent.com/github-desktop/releases/2.9.4-24101633/GitHubDesktopSetup-x64.exe","Tag":"cGitHub","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/github.png","Group":"Coding"},{"Title":"Sublime Merge","Link64":"https://download.sublimetext.com/sublime_merge_build_2063_x64_setup.exe","Tag":"cSublimeMerge","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/sublimemerge.png","Group":"Coding"},{"Title":"FileZilla","Link64":"https://download.filezilla-project.org/client/FileZilla_3.59.0_win64-setup.exe","Link":"https://download.filezilla-project.org/client/FileZilla_3.59.0_win32-setup.exe","Tag":"cFileZilla","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/filezilla.png","Group":"Coding"},{"Title":"WinSCP","Link":"https://optimizer-downloader.azurewebsites.net/winscp","Tag":"cWinScp","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/winscp.png","Group":"Coding"},{"Title":"Postman","Link64":"https://dl.pstmn.io/download/latest/win64","Link":"https://dl.pstmn.io/download/latest/win32","Tag":"cPostman","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/postman.png","Group":"Coding"},{"Title":"NodeJS","Link":"https://nodejs.org/dist/v16.13.0/node-v16.13.0-x86.msi","Link64":"https://nodejs.org/dist/v16.13.0/node-v16.13.0-x64.msi","Tag":"cNode","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/nodejs.png","Group":"Coding"},{"Title":"XAMPP","Link64":"https://downloadsapachefriends.global.ssl.fastly.net/8.0.12/xampp-windows-x64-8.0.12-0-VS16-installer.exe","Tag":"cXAMPP","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/xampp.png","Group":"Coding"},{"Title":"Putty","Link64":"https://the.earth.li/~sgtatham/putty/latest/w64/putty-64bit-0.76-installer.msi","Link":"https://the.earth.li/~sgtatham/putty/latest/w32/putty-0.76-installer.msi","Tag":"cPutty","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/putty.png","Group":"Coding"},{"Title":"Visual Studio","Link":"https://download.visualstudio.microsoft.com/download/pr/20130c62-1bc8-43d6-b4f0-c20bb7c79113/bee2ebedafcbaaf0d4fe61c9bd50b5884e0149e953cbe2abb6cb142e8c60d389/vs_Community.exe","Tag":"cVS","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/visualstudio.png","Group":"Coding"},{"Title":"VS Code","Link64":"https://code.visualstudio.com/sha/download?build=stable&os=win32-x64-user","Link":"https://code.visualstudio.com/sha/download?build=stable&os=win32-user","Tag":"cVSCode","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/vscode.png","Group":"Coding"},{"Title":"Android Studio","Link64":"https://r6---sn-vuxbavcx-5ui6.gvt1.com/edgedl/android/studio/install/4.1.2.0/android-studio-ide-201.7042882-windows.exe?cms_redirect=yes&mh=N5&mip=85.75.185.149&mm=28&mn=sn-vuxbavcx-5ui6&ms=nvh&mt=1613332358&mv=u&mvi=6&pcm2cms=yes&pl=16&shardbypass=yes","Tag":"cAndroidStudio","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/androidstudio.png","Group":"Coding"},{"Title":"Eclipse","Link64":"https://ftp.snt.utwente.nl/pub/software/eclipse/oomph/epp/2021-09/R/eclipse-inst-jre-win64.exe","Tag":"cEclipse","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/eclipse.png","Group":"Coding"},{"Title":"Python 3","Link64":"https://www.python.org/ftp/python/3.10.0/python-3.10.0-amd64.exe","Link":"https://www.python.org/ftp/python/3.10.0/python-3.10.0.exe","Tag":"cPython3","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/python.png","Group":"Coding"},{"Title":"Python 2","Link64":"https://www.python.org/ftp/python/2.7.18/python-2.7.18.amd64.msi","Link":"https://www.python.org/ftp/python/2.7.18/python-2.7.18.msi","Tag":"cPython2","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/python.png","Group":"Coding"},{"Title":"Java 8 JDK","Link64":"https://javadl.oracle.com/webapps/download/AutoDL?BundleId=244584_d7fc238d0cbf4b0dac67be84580cfb4b","Link":"https://javadl.oracle.com/webapps/download/AutoDL?BundleId=244582_d7fc238d0cbf4b0dac67be84580cfb4b","Tag":"cJava","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/java.png","Group":"Coding"},{"Title":"Mozilla Firefox","Link64":"http://download.mozilla.org/?product=firefox-latest&os=Win64&lang=en-US","Link":"http://download.mozilla.org/?product=firefox-latest&os=Win&lang=en-US","Tag":"cFirefox","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/firefox.png","Group":"Internet"},{"Title":"Mozilla Firefox ESR","Link64":"https://download-installer.cdn.mozilla.net/pub/firefox/releases/91.3.0esr/win64/en-US/Firefox%20Setup%2091.3.0esr.exe","Link":"https://download-installer.cdn.mozilla.net/pub/firefox/releases/91.3.0esr/win32/en-US/Firefox%20Setup%2091.3.0esr.exe","Tag":"cFirefoxESR","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/firefox.png","Group":"Internet"},{"Title":"Chromium","Link64":"https://github.com/Hibbiki/chromium-win64/releases/download/v105.0.5195.127-r1027018/mini_installer.sync.exe","Link":"https://github.com/Hibbiki/chromium-win32/releases/download/v105.0.5195.127-r1027018/mini_installer.sync.exe","Tag":"cChromium","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/chromium.png","Group":"Internet"},{"Title":"Ungoogled Chromium","Link64":"https://github.com/macchrome/winchrome/releases/download/v105.0.5195.127-r1027018-Win64/105.0.5195.127_ungoogled_mini_installer.exe","Tag":"cUGChromium","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/chromium.png","Group":"Internet"},{"Title":"Vivaldi","Link64":"https://downloads.vivaldi.com/stable/Vivaldi.4.3.2439.65.x64.exe","Link":"https://downloads.vivaldi.com/stable/Vivaldi.4.3.2439.65.exe","Tag":"cVivaldi","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/vivaldi.png","Group":"Internet"},{"Title":"Brave","Link64":"https://referrals.brave.com/latest/BraveBrowserSetup.exe","Link":"https://referrals.brave.com/latest/BraveBrowserSetup32.exe","Tag":"cBrave","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/brave.png","Group":"Internet"},{"Title":"Tor Browser","Link64":"https://dist.torproject.org/torbrowser/11.0.11/torbrowser-install-win64-11.0.11_en-US.exe","Link":"https://dist.torproject.org/torbrowser/11.0.11/torbrowser-install-11.0.11_en-US.exe","Tag":"cTor","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/tor.png","Group":"Internet"},{"Title":"Google Chrome","Link64":"https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B96806E3D-7496-9303-FEC0-8299CB4E05AF%7D%26lang%3Den%26browser%3D3%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dx64-stable-statsdef_1%26installdataindex%3Dempty/chrome/install/ChromeStandaloneSetup64.exe","Link":"https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B96806E3D-7496-9303-FEC0-8299CB4E05AF%7D%26lang%3Den%26browser%3D3%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dstable-arch_x86-statsdef_1%26installdataindex%3Dempty/chrome/install/ChromeStandaloneSetup.exe","Tag":"cChrome","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/chrome.png","Group":"Internet"},{"Title":"Microsoft Edge","Link64":"https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/dc298968-ce66-4bf0-ac5b-c274bf03ee7e/MicrosoftEdgeEnterpriseX64.msi","Link":"https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/8d1fd468-c6d9-4ade-8870-d4e0dac4f0fb/MicrosoftEdgeEnterpriseX86.msi","Tag":"cEdge","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/edge.png","Group":"Internet"},{"Title":"Opera","Link64":"https://download3.operacdn.com/pub/opera/desktop/81.0.4196.54/win/Opera_81.0.4196.54_Setup_x64.exe","Link":"https://download3.operacdn.com/pub/opera/desktop/81.0.4196.54/win/Opera_81.0.4196.54_Setup.exe","Tag":"cOpera","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/opera.png","Group":"Internet"},{"Title":"Maxthon","Link64":"https://dl.maxthon.com/mx6/maxthon_6.1.2.3000_x64.exe","Link":"https://dl.maxthon.com/mx6/maxthon_6.1.2.3000_x86.exe","Tag":"cMaxthon","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/maxthon.png","Group":"Internet"},{"Title":"Discord","Link":"https://dl.discordapp.net/distro/app/stable/win/x86/1.0.9002/DiscordSetup.exe","Tag":"cDiscord","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/discord.png","Group":"Internet"},{"Title":"Signal","Link":"https://updates.signal.org/desktop/signal-desktop-win-5.24.0.exe","Tag":"cSignal","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/signal.png","Group":"Internet"},{"Title":"Session","Link":"https://github.com/oxen-io/session-desktop/releases/download/v1.9.1/session-desktop-win-1.9.1.exe","Tag":"cSession","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/session.png","Group":"Internet"},{"Title":"Skype","Link":"https://download.skype.com/s4l/download/win/Skype-8.78.0.159.exe","Tag":"cSkype","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/skype.png","Group":"Internet"},{"Title":"Telegram","Link":"https://telegram.org/dl/desktop/win","Link64":"https://telegram.org/dl/desktop/win64","Tag":"cTelegram","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/telegram.png","Group":"Internet"},{"Title":"Viber","Link":"https://download.cdn.viber.com/desktop/windows/ViberSetup.exe","Tag":"cViber","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/viber.png","Group":"Internet"},{"Title":"FreeTube","Link64":"https://github.com/FreeTubeApp/FreeTube/releases/download/v0.15.1-beta/freetube-0.15.1-setup-x64.exe","Tag":"cFreeTube","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/freetube.png","Group":"Internet"},{"Title":"RustDesk","Link":"https://github.com/rustdesk/rustdesk/releases/download/1.2.1/rustdesk-1.2.1-x86_64.exe","Tag":"cRustDesk","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/rustdesk.png","Group":"Internet"},{"Title":"TeamViewer","Link":"https://download.teamviewer.com/download/TeamViewer_Setup.exe","Tag":"cTV","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/teamviewer.png","Group":"Internet"},{"Title":"AnyDesk","Link":"https://download.anydesk.com/AnyDesk.exe","Tag":"cAnyDesk","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/anydesk.png","Group":"Internet"},{"Title":"Mozilla Thunderbird","Link64":"http://download.mozilla.org/?product=thunderbird-latest&os=Win64&lang=en-US","Link":"http://download.mozilla.org/?product=thunderbird-latest&os=Win&lang=en-US","Tag":"cThunderbird","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/thunderbird.png","Group":"Internet"},{"Title":"Evernote","Link":"https://cdn1.evernote.com/boron/win/builds/Evernote-10.25.6-win-ddl-ga-3073-setup.exe","Tag":"cEvernote","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/evernote.png","Group":"Internet"},{"Title":"MEGAsync","Link64":"https://mega.nz/MEGAsyncSetup64.exe","Link":"https://mega.nz/MEGAsyncSetup32.exe","Tag":"cMega","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/mega.png","Group":"Internet"},{"Title":"Google Zoom","Link":"https://zoom.us/client/latest/ZoomInstaller.exe","Tag":"cZoom","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/zoom.png","Group":"Internet"},{"Title":"Microsoft Teams","Link64":"https://statics.teams.cdn.office.net/production-windows-x64/1.3.00.32283/Teams_windows_x64.exe","Link":"https://statics.teams.cdn.office.net/production-windows/1.3.00.32283/Teams_windows.exe","Tag":"cMSTeams","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/teams.png","Group":"Internet"},{"Title":"OneDrive","Link":"https://oneclient.sfx.ms/Win/Prod/21.002.0104.0005/OneDriveSetup.exe","Tag":"cOneDrive","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/onedrive.png","Group":"Internet"},{"Title":"qBitTorrent","Link64":"https://deac-ams.dl.sourceforge.net/project/qbittorrent/qbittorrent-win32/qbittorrent-4.4.2/qbittorrent_4.4.2_x64_setup.exe","Link":"https://jztkft.dl.sourceforge.net/project/qbittorrent/qbittorrent-win32/qbittorrent-4.4.2/qbittorrent_4.4.2_setup.exe","Tag":"cQB","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/qbittorrent.png","Group":"Internet"},{"Title":"Motrix","Link":"https://github.com/agalwood/Motrix/releases/download/v1.6.11/Motrix-Setup-1.6.11.exe","Tag":"cMotrix","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/motrix.png","Group":"Internet"},{"Title":"Deluge","Link":"https://ftp.osuosl.org/pub/deluge/windows/deluge-1.3.15-win32-py2.7.exe","Tag":"cDeluge","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/deluge.png","Group":"Internet"},{"Title":"Steam","Link":"https://cdn.cloudflare.steamstatic.com/client/installer/SteamSetup.exe","Tag":"cSteam","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/steam.png","Group":"Internet"},{"Title":"Battle.net","Link":"https://eu.battle.net/download/getInstaller?os=win&installer=Battle.net-Setup.exe","Tag":"cBlizzard","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/blizzard.png","Group":"Internet"},{"Title":"Uplay","Link":"https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UbisoftConnectInstaller.exe","Tag":"cUbi","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/uplay.png","Group":"Internet"},{"Title":"EA Origin","Link":"https://origin-a.akamaihd.net/Origin-Client-Download/origin/live/OriginThinSetup.exe","Tag":"cOrigin","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/origin.png","Group":"Internet"},{"Title":"Epic Games","Link":"https://epicgames-download1.akamaized.net/Builds/UnrealEngineLauncher/Installers/Win32/EpicInstaller-10.19.2.msi?launcherfilename=EpicInstaller-10.19.2.msi","Tag":"cEpicStore","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/epic.png","Group":"Internet"},{"Title":"IrfanView","Link":"http://www.storage.programosy.pl/iview458_setup.exe","Tag":"cIrfan","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/irfanview.png","Group":"GraphicsSound"},{"Title":"qView","Link64":"https://github.com/jurplel/qView/releases/download/5.0/qView-5.0-win64.exe","Link":"https://github.com/jurplel/qView/releases/download/5.0/qView-5.0-win32.exe","Tag":"cQView","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/qview.png","Group":"GraphicsSound"},{"Title":"Foobar2000","Link":"https://www.foobar2000.org/getfile/foobar2000_v1.6.10.exe","Tag":"cFoobar","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/foobar.png","Group":"GraphicsSound"},{"Title":"VLC Media Player","Link64":"https://get.videolan.org/vlc/3.0.16/win64/vlc-3.0.16-win64.exe","Link":"https://get.videolan.org/vlc/3.0.16/win32/vlc-3.0.16-win32.exe","Tag":"cVLC","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/vlc.png","Group":"GraphicsSound"},{"Title":"PotPlayer","Link64":"https://t1.daumcdn.net/potplayer/PotPlayer/Version/Latest/PotPlayerSetup64.exe","Link":"https://t1.daumcdn.net/potplayer/PotPlayer/Version/Latest/PotPlayerSetup.exe","Tag":"cPot","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/potplayer.png","Group":"GraphicsSound"},{"Title":"GIMP","Link":"https://gemmei.ftp.acc.umu.se/pub/gimp/gimp/v2.10/windows/gimp-2.10.28-setup.exe","Tag":"cGIMP","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/gimp.png","Group":"GraphicsSound"},{"Title":"Gyazo","Link":"https://files.gyazo.com/setup/Gyazo-4.2.1.exe","Tag":"cGyazo","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/gyazo.png","Group":"GraphicsSound"},{"Title":"Lightshot","Link":"https://app.prntscr.com/build/setup-lightshot.exe","Tag":"cLightShot","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/lightshot.png","Group":"GraphicsSound"},{"Title":"Apple iTunes","Link64":"https://secure-appldnld.apple.com/itunes12/001-50023-20201019-A1CA6082-1239-11EB-990E-FA5946985FC9/iTunes64Setup.exe","Link":"https://secure-appldnld.apple.com/itunes12/001-50021-20201019-A1CAB6C2-1239-11EB-AE89-F95946985FC9/iTunesSetup.exe","Tag":"ciTunes","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/itunes.png","Group":"GraphicsSound"},{"Title":"Spotify","Link":"https://download.scdn.co/SpotifySetup.exe","Tag":"cSpotify","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/spotify.png","Group":"GraphicsSound"},{"Title":"BS.Player","Link":"http://download11.bsplayer.com/download/file/mirror1/bsplayer276.setup.exe","Tag":"cBS","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/bsplayer.png","Group":"GraphicsSound"},{"Title":"MP3 Tag","Link":"https://optimizer-downloader.azurewebsites.net/mp3tag86","Link64":"https://optimizer-downloader.azurewebsites.net/mp3tag64","Tag":"cMp3Tag","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/mp3tag.png","Group":"GraphicsSound"},{"Title":"Audacity","Link":"https://github.com/audacity/audacity/releases/download/Audacity-3.1.3/audacity-win-3.1.3-32bit.exe","Link64":"https://github.com/audacity/audacity/releases/download/Audacity-3.1.3/audacity-win-3.1.3-64bit.exe","Tag":"cAudacity","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/audacity.png","Group":"GraphicsSound"},{"Title":"Blender","Link64":"https://mirror.clarkson.edu/blender/release/Blender2.93/blender-2.93.6-windows-x64.msi","Tag":"cBlender","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/blender.png","Group":"GraphicsSound"},{"Title":"OBS Studio","Link64":"https://github.com/obsproject/obs-studio/releases/download/27.1.3/OBS-Studio-27.1.3-Full-Installer-x64.exe","Link":"https://github.com/obsproject/obs-studio/releases/download/27.1.3/OBS-Studio-27.1.3-Full-Installer-x86.exe","Tag":"cOBS","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/obs.png","Group":"GraphicsSound"},{"Title":"ShareX","Link":"https://github.com/ShareX/ShareX/releases/download/v13.7.0/ShareX-13.7.0-setup.exe","Tag":"cShareX","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/sharex.png","Group":"GraphicsSound"},{"Title":"Winamp","Tag":"cWinamp","Link":"https://download.nullsoft.com/winamp/misc/winamp58_3660_beta_full_en-us.exe","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/winamp.png","Group":"GraphicsSound"},{"Title":"ViPER4Windows","Link64":"https://optimizer-downloader.azurewebsites.net/viper64","Link":"https://optimizer-downloader.azurewebsites.net/viper86","Tag":"cViper","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/viper.png","Group":"GraphicsSound"},{"Title":"K-Lite Codec Pack","Link":"https://files2.codecguide.com/K-Lite_Codec_Pack_1653_Mega.exe","Tag":"cCodecs","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/klite.png","Group":"GraphicsSound"},{"Title":"7-zip","Link64":"https://www.7-zip.org/a/7z2107-x64.exe","Link":"https://www.7-zip.org/a/7z2107.exe","Tag":"c7zip","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/7zip.png","Group":"SystemTools"},{"Title":"PeaZip","Link64":"https://github.com/peazip/PeaZip/releases/download/8.3.0/peazip-8.3.0.WIN64.exe","Link":"https://github.com/peazip/PeaZip/releases/download/8.3.0/peazip-8.3.0.WINDOWS.exe","Tag":"cPeaZip","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/peazip.png","Group":"SystemTools"},{"Title":"WinRAR","Link64":"https://www.rarlab.com/rar/winrar-x64-602.exe","Link":"https://www.rarlab.com/rar/wrar602.exe","Tag":"cWinRar","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/winrar.png","Group":"SystemTools"},{"Title":"OpenShell","Link":"https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe","Tag":"cOpenShell","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/openshell.png","Group":"SystemTools"},{"Title":"LibreOffice","Link64":"https://optimizer-downloader.azurewebsites.net/libre64.msi","Link":"https://optimizer-downloader.azurewebsites.net/libre86.msi","Tag":"cLibreOffice","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/libreoffice.png","Group":"SystemTools"},{"Title":"Adobe Reader","Link64":"http://ardownload.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2100120135/AcroRdrDCx642100120135_en_US.exe","Link":"https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320074/AcroRdrDC2001320074_en_US.exe","Tag":"cAdobeReader","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/adobereader.png","Group":"SystemTools"},{"Title":"SumatraPDF","Link64":"https://kjkpubsf.sfo2.digitaloceanspaces.com/software/sumatrapdf/rel/SumatraPDF-3.3.3-64-install.exe","Link":"https://kjkpubsf.sfo2.digitaloceanspaces.com/software/sumatrapdf/rel/SumatraPDF-3.3.3-install.exe","Tag":"cSumatra","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/sumatrapdf.png","Group":"SystemTools"},{"Title":"Foxit Reader","Link":"https://cdn01.foxitsoftware.com/pub/foxit/reader/desktop/win/11.x/11.1/en_us/FoxitPDFReader111_Setup.exe","Tag":"cFoxit","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/foxit.png","Group":"SystemTools"},{"Title":".NET Framework 3.5","Link":"https://download.microsoft.com/download/2/0/E/20E90413-712F-438C-988E-FDAA79A8AC3D/dotnetfx35.exe","Tag":"cNF35","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/netfw.png","Group":"SystemTools"},{"Title":".NET Framework 4.0","Link":"https://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe","Tag":"cNF40","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/netfw.png","Group":"SystemTools"},{"Title":".NET Framework 4.5.2","Link":"https://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe","Tag":"cNF452","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/netfw.png","Group":"SystemTools"},{"Title":".NET Framework 4.7.2","Link":"https://download.visualstudio.microsoft.com/download/pr/1f5af042-d0e4-4002-9c59-9ba66bcf15f6/089f837de42708daacaae7c04b7494db/ndp472-kb4054530-x86-x64-allos-enu.exe","Tag":"cNF472","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/netfw.png","Group":"SystemTools"},{"Title":".NET Framework 4.8","Link":"https://download.visualstudio.microsoft.com/download/pr/2d6bb6b2-226a-4baa-bdec-798822606ff1/8494001c276a4b96804cde7829c04d7f/ndp48-x86-x64-allos-enu.exe","Tag":"cNF48","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/netfw.png","Group":"SystemTools"},{"Title":"Visual C++ AiO","Link":"https://optimizer-downloader.azurewebsites.net/vcpp","Tag":"cVCPP","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/visualcpp.png","Group":"SystemTools"},{"Title":"Everything","Link":"https://www.voidtools.com/Everything-1.4.1.1023.x86-Setup.exe","Link64":"https://www.voidtools.com/Everything-1.4.1.1023.x64-Setup.exe","Tag":"cEverything","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/everything.png","Group":"SystemTools"},{"Title":"DirectX","Link":"https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe","Tag":"cDX","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/directx.png","Group":"SystemTools"},{"Title":"F.lux","Link":"https://justgetflux.com/flux-setup.exe","Tag":"cFlux","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/flux.png","Group":"SystemTools"},{"Title":"WinCDEmu","Link":"https://github.com/sysprogs/WinCDEmu/releases/download/v4.1/WinCDEmu-4.1.exe","Tag":"cWCDE","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/wincdemu.png","Group":"SystemTools"},{"Title":"IObit Uninstaller","Link":"https://cdn.iobit.com/dl/iobituninstaller.exe","Tag":"cIObitU","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/iobituninstall.png","Group":"SystemTools"},{"Title":"IObit Smart Defrag","Link":"https://cdn.iobit.com/dl/smart-defrag-setup.exe","Tag":"cIObitSD","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/iobitdefrag.png","Group":"SystemTools"},{"Title":"IObit Software Updater","Link":"https://cdn.iobit.com/dl/iobit-software-updater-setup.exe","Tag":"cIObitSU","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/iobitupdater.png","Group":"SystemTools"},{"Title":"IObit Driver Booster","Link":"https://cdn.iobit.com/dl/driver_booster_setup.exe","Tag":"cIObitDB","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/iobitdrivers.png","Group":"SystemTools"},{"Title":"Revo Uninstaller","Link":"https://download.revouninstaller.com/download/revosetup.exe","Tag":"cRevo","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/revo.png","Group":"SystemTools"},{"Title":"DDU","Link":"https://www.wagnardsoft.com/DDU/download/DDU%20v18.0.4.6.exe","Tag":"cDDU","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/ddu.png","Group":"SystemTools"},{"Title":"Anti-Exploit","Link":"https://optimizer-downloader.azurewebsites.net/antiexploit","Tag":"cAntiExploit","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/antiexploit.png","Group":"SystemTools"},{"Title":"Malwarebytes","Link":"https://data-cdn.mbamupdates.com/web/mb4-setup-consumer/MBSetup.exe","Tag":"cMalwarebytes","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/malwarebytes.png","Group":"SystemTools"},{"Title":"Rufus","Link":"https://github.com/pbatard/rufus/releases/download/v3.18/rufus-3.18.exe","Tag":"cRufus","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/rufus.png","Group":"SystemTools"},{"Title":"Universal USB Installer","Link":"https://www.pendrivelinux.com/downloads/Universal-USB-Installer/Universal-USB-Installer-2.0.0.8.exe","Tag":"cUUI","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/uui.png","Group":"SystemTools"},{"Title":"Balena Etcher","Link":"https://github.com/balena-io/etcher/releases/download/v1.7.0/balenaEtcher-Setup-1.7.0.exe","Tag":"cBalena","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/balena.png","Group":"SystemTools"},{"Title":"TCP Optimizer","Link":"https://www.speedguide.net/files/TCPOptimizer.exe","Tag":"cTCPOptimizer","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/tcpoptimizer.png","Group":"SystemTools"},{"Title":"WireShark","Link64":"https://2.na.dl.wireshark.org/win64/Wireshark-win64-4.0.0.exe","Tag":"cWireshark","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/wireshark.png","Group":"Internet"},{"Title":"Bulk Crap Uninstaller","Link":"https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v5.1/BCUninstaller_5.1_setup.exe","Tag":"cBulkCrap","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/bulkcrapuninstaller.png","Group":"SystemTools"},{"Title":"VirtualBox","Link":"https://download.virtualbox.org/virtualbox/6.1.34/VirtualBox-6.1.34-150636-Win.exe","Tag":"cVirtualBox","Image":"https://raw.githubusercontent.com/hellzerg/optimizer/master/images/feed/virtualbox.png","Group":"SystemTools"}] ================================================ FILE: templates/template-windows10.json ================================================ { "WindowsVersion": 10, "PostAction": { "Restart": null, "RestartType": "Normal" }, "Cleaner": { "TempFiles": null, "BsodDumps": null, "ErrorReports": null, "RecycleBin": null, "InternetExplorer": null, "GoogleChrome": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null }, "MozillaFirefox": { "Cache": null, "Cookies": null, "History": null }, "MicrosoftEdge": { "Cache": null, "Cookies": null, "History": null, "Session": null }, "BraveBrowser": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null } }, "Pinger": { "SetDNS": "", "CustomDNSv4": [], "CustomDNSv6": [], "FlushDNSCache": null }, "ProcessControl": { "Prevent": [], "Allow": [] }, "HostsEditor": { "Block": [], "Add": [], "Remove": [], "IncludeWwwCname": null }, "RegistryFix": { "TaskManager": null, "CommandPrompt": null, "ControlPanel": null, "FolderOptions": null, "RunDialog": null, "RightClickMenu": null, "WindowsFirewall": null, "RegistryEditor": null }, "Integrator": { "TakeOwnership": null, "OpenWithCMD": null }, "AdvancedTweaks": { "UnlockAllCores": null, "DisableHPET": null, "EnableLoginVerbose": null, "EnableRegistryBackups": null, "SvchostProcessSplitting": { "Disable": null, "RAM": null } }, "Tweaks": { "EnablePerformanceTweaks": null, "DisableNetworkThrottling": null, "DisableSystemRestore": null, "DisablePrintService": null, "DisableMediaPlayerSharing": null, "DisableErrorReporting": null, "DisableHomeGroup": null, "DisableSuperfetch": null, "DisableTelemetryTasks": null, "DisableOffice2016Telemetry": null, "DisableCompatibilityAssistant": null, "DisableHibernation": null, "DisableSMB1": null, "DisableSMB2": null, "DisableNTFSTimeStamp": null, "DisableFaxService": null, "DisableSmartScreen": null, "DisableStickyKeys": null, "DisableCloudClipboard": null, "EnableLegacyVolumeSlider": null, "DisableQuickAccessHistory": null, "DisableStartMenuAds": null, "UninstallOneDrive": null, "DisableMyPeople": null, "DisableAutomaticUpdates": null, "ExcludeDrivers": null, "DisableTelemetryServices": null, "DisablePrivacyOptions": null, "DisableCortana": null, "DisableSensorServices": null, "DisableWindowsInk": null, "DisableSpellingTyping": null, "DisableXboxLive": null, "DisableGameBar": null, "DisableInsiderService": null, "DisableStoreUpdates": null, "EnableLongPaths": null, "RemoveCastToDevice": null, "EnableGamingMode": null, "DisableTPMCheck": null, "DisableVirtualizationBasedTechnology": null, "DisableVisualStudioTelemetry": null, "DisableFirefoxTemeletry": null, "DisableChromeTelemetry": null, "DisableNVIDIATelemetry": null, "DisableSearch": null, "DisableEdgeDiscoverBar": null, "DisableEdgeTelemetry": null, "RestoreClassicPhotoViewer": null, "EnableUtcTime": null, "ShowAllTrayIcons": null, "RemoveMenusDelay": null, "DisableModernStandby": null, "HideTaskbarWeather": null, "HideTaskbarSearch": null, "DisableNewsInterests": null } } ================================================ FILE: templates/template-windows11.json ================================================ { "WindowsVersion": 11, "PostAction": { "Restart": null, "RestartType": "Normal" }, "Cleaner": { "TempFiles": null, "BsodDumps": null, "ErrorReports": null, "RecycleBin": null, "InternetExplorer": null, "GoogleChrome": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null }, "MozillaFirefox": { "Cache": null, "Cookies": null, "History": null }, "MicrosoftEdge": { "Cache": null, "Cookies": null, "History": null, "Session": null }, "BraveBrowser": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null } }, "Pinger": { "SetDNS": "", "CustomDNSv4": [], "CustomDNSv6": [], "FlushDNSCache": null }, "ProcessControl": { "Prevent": [], "Allow": [] }, "HostsEditor": { "Block": [], "Add": [], "Remove": [], "IncludeWwwCname": null }, "RegistryFix": { "TaskManager": null, "CommandPrompt": null, "ControlPanel": null, "FolderOptions": null, "RunDialog": null, "RightClickMenu": null, "WindowsFirewall": null, "RegistryEditor": null }, "Integrator": { "TakeOwnership": null, "OpenWithCMD": null }, "AdvancedTweaks": { "UnlockAllCores": null, "DisableHPET": null, "EnableRegistryBackups": null, "EnableLoginVerbose": null, "SvchostProcessSplitting": { "Disable": null, "RAM": null } }, "Tweaks": { "EnablePerformanceTweaks": null, "DisableNetworkThrottling": null, "DisableWindowsDefender": null, "DisableSystemRestore": null, "DisablePrintService": null, "DisableMediaPlayerSharing": null, "DisableErrorReporting": null, "DisableHomeGroup": null, "DisableSuperfetch": null, "DisableTelemetryTasks": null, "DisableOffice2016Telemetry": null, "DisableCompatibilityAssistant": null, "DisableHibernation": null, "DisableSMB1": null, "DisableSMB2": null, "DisableNTFSTimeStamp": null, "DisableFaxService": null, "DisableSmartScreen": null, "DisableStickyKeys": null, "DisableCloudClipboard": null, "EnableLegacyVolumeSlider": null, "DisableQuickAccessHistory": null, "DisableStartMenuAds": null, "UninstallOneDrive": null, "DisableMyPeople": null, "DisableAutomaticUpdates": null, "ExcludeDrivers": null, "DisableTelemetryServices": null, "DisablePrivacyOptions": null, "DisableCortana": null, "DisableSensorServices": null, "DisableWindowsInk": null, "DisableSpellingTyping": null, "DisableXboxLive": null, "DisableGameBar": null, "DisableInsiderService": null, "DisableStoreUpdates": null, "EnableLongPaths": null, "RemoveCastToDevice": null, "EnableGamingMode": null, "TaskbarToLeft": null, "DisableSnapAssist": null, "DisableWidgets": null, "DisableChat": null, "TaskbarSmaller": null, "DisableStickers": null, "ClassicRibbon": null, "ClassicMenu": null, "DisableTPMCheck": null, "CompactMode": null, "DisableVirtualizationBasedTechnology": null, "DisableVisualStudioTelemetry": null, "DisableFirefoxTemeletry": null, "DisableChromeTelemetry": null, "DisableNVIDIATelemetry": null, "DisableSearch": null, "DisableEdgeDiscoverBar": null, "DisableEdgeTelemetry": null, "DisableCoPilotAI": null, "RestoreClassicPhotoViewer": null, "EnableUtcTime": null, "ShowAllTrayIcons": null, "RemoveMenusDelay": null, "DisableModernStandby": null, "HideTaskbarWeather": null, "HideTaskbarSearch": null, "DisableNewsInterests": null } } ================================================ FILE: templates/template-windows7.json ================================================ { "WindowsVersion": 7, "PostAction": { "Restart": null, "RestartType": "Normal" }, "Cleaner": { "TempFiles": null, "BsodDumps": null, "ErrorReports": null, "RecycleBin": null, "InternetExplorer": null, "GoogleChrome": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null }, "MozillaFirefox": { "Cache": null, "Cookies": null, "History": null }, "MicrosoftEdge": { "Cache": null, "Cookies": null, "History": null, "Session": null }, "BraveBrowser": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null } }, "Pinger": { "SetDNS": "", "CustomDNSv4": [], "CustomDNSv6": [], "FlushDNSCache": null }, "ProcessControl": { "Prevent": [], "Allow": [] }, "HostsEditor": { "Block": [], "Add": [], "Remove": [], "IncludeWwwCname": null }, "RegistryFix": { "TaskManager": null, "CommandPrompt": null, "ControlPanel": null, "FolderOptions": null, "RunDialog": null, "RightClickMenu": null, "WindowsFirewall": null, "RegistryEditor": null }, "Integrator": { "TakeOwnership": null, "OpenWithCMD": null }, "AdvancedTweaks": { "UnlockAllCores": null, "DisableHPET": null, "EnableLoginVerbose": null }, "Tweaks": { "EnablePerformanceTweaks": null, "DisableNetworkThrottling": null, "DisableWindowsDefender": null, "DisableSystemRestore": null, "DisablePrintService": null, "DisableMediaPlayerSharing": null, "DisableErrorReporting": null, "DisableHomeGroup": null, "DisableSuperfetch": null, "DisableTelemetryTasks": null, "DisableOffice2016Telemetry": null, "DisableCompatibilityAssistant": null, "DisableHibernation": null, "DisableSMB1": null, "DisableSMB2": null, "DisableNTFSTimeStamp": null, "DisableFaxService": null, "DisableSmartScreen": null, "DisableStickyKeys": null, "DisableVisualStudioTelemetry": null, "DisableFirefoxTemeletry": null, "DisableChromeTelemetry": null, "DisableNVIDIATelemetry": null, "DisableSearch": null, "EnableUtcTime": null, "ShowAllTrayIcons": null, "RemoveMenusDelay": null } } ================================================ FILE: templates/template-windows8.json ================================================ { "WindowsVersion": 8, "PostAction": { "Restart": null, "RestartType": "Normal" }, "Cleaner": { "TempFiles": null, "BsodDumps": null, "ErrorReports": null, "RecycleBin": null, "InternetExplorer": null, "GoogleChrome": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null }, "MozillaFirefox": { "Cache": null, "Cookies": null, "History": null }, "MicrosoftEdge": { "Cache": null, "Cookies": null, "History": null, "Session": null }, "BraveBrowser": { "Cache": null, "Cookies": null, "History": null, "Session": null, "Passwords": null } }, "Pinger": { "SetDNS": "", "CustomDNSv4": [], "CustomDNSv6": [], "FlushDNSCache": null }, "ProcessControl": { "Prevent": [], "Allow": [] }, "HostsEditor": { "Block": [], "Add": [], "Remove": [], "IncludeWwwCname": null }, "RegistryFix": { "TaskManager": null, "CommandPrompt": null, "ControlPanel": null, "FolderOptions": null, "RunDialog": null, "RightClickMenu": null, "WindowsFirewall": null, "RegistryEditor": null }, "Integrator": { "TakeOwnership": null, "OpenWithCMD": null }, "AdvancedTweaks": { "UnlockAllCores": null, "DisableHPET": null, "EnableLoginVerbose": null }, "Tweaks": { "EnablePerformanceTweaks": null, "DisableNetworkThrottling": null, "DisableWindowsDefender": null, "DisableSystemRestore": null, "DisablePrintService": null, "DisableMediaPlayerSharing": null, "DisableErrorReporting": null, "DisableHomeGroup": null, "DisableSuperfetch": null, "DisableTelemetryTasks": null, "DisableOffice2016Telemetry": null, "DisableCompatibilityAssistant": null, "DisableHibernation": null, "DisableSMB1": null, "DisableSMB2": null, "DisableNTFSTimeStamp": null, "DisableFaxService": null, "DisableSmartScreen": null, "DisableStickyKeys": null, "DisableVisualStudioTelemetry": null, "DisableFirefoxTemeletry": null, "DisableChromeTelemetry": null, "DisableNVIDIATelemetry": null, "DisableSearch": null, "EnableUtcTime": null, "ShowAllTrayIcons": null, "RemoveMenusDelay": null, "DisableOneDrive": null } } ================================================ FILE: version.txt ================================================ 16.7